aboutsummaryrefslogtreecommitdiff
path: root/src/map.cpp
AgeCommit message (Collapse)Author
2013-01-23Make mapgen factory setup more elegant, add mapgen_v6.hkwolekr
2013-01-21Use a string identifier for a mapgen instead of versionkwolekr
2013-01-21Removed Mapgen V7 for nowkwolekr
2013-01-21Finish and clean up mapgen configurationkwolekr
2013-01-21Clean up EmergeManager, do initial work on Mapgen configurationkwolekr
2013-01-21Readded and optimized mapgen V6kwolekr
2013-01-21The new mapgen, noise functions, et al.kwolekr
2013-01-21Only clear block modified flag if writing to db was successfulkwolekr
2013-01-12fix integer overflow (fixes #414)Jürgen Doser
liquid_kind was declared as an u8, but used to hold a content_t value, which is delcared to be a u16. changing this fixes (at least for me) the problem reported in bug #414.
2012-09-07Add liquid_renewable property.Ilya Zhuravlev
2012-09-04Reorganize ClientMap rendering code for a bit more performancePerttu Ahola
- Don't select blocks for drawing in every frame - Sort meshbuffers by material before drawing
2012-07-27Tweak rollback and liquidsPerttu Ahola
2012-07-27Tweak rollback stuffPerttu Ahola
2012-07-27ABM and liquid overload skipPerttu Ahola
2012-07-27Make the rollback system VERY FUCKING GOD DAMN POWERFULPerttu Ahola
2012-07-27Don't track liquids for rollback because of too much logPerttu Ahola
2012-07-27Experimental-ish rollback functionalityPerttu Ahola
2012-07-23Implement node timersdarkrose
2012-06-17Properly and efficiently use split utility headersPerttu Ahola
2012-06-05Switch the license to be LGPLv2/later, with small parts still remaining as ↵Perttu Ahola
GPLv2/later, by agreement of major contributors
2012-06-04Add ignore_world_load_errors configuration option and provide better error ↵Perttu Ahola
messages
2012-06-03NodeMetaRef:{to,from}_table and lua_api.txt additionsPerttu Ahola
2012-06-03WIP node metadata, node timersKahrl
2012-03-29Remove unnecessary debug outputPerttu Ahola
2012-03-29Reduce EnvRef:set_node() time tenfold by postponing the dayNightDiff update ↵Perttu Ahola
until it is actually needed
2012-03-27Re-implement and re-tune mapgen v2Perttu Ahola
2012-03-27Remove usage of mapgen::add_random_objects(block)Perttu Ahola
2012-03-27Remove some debug outputPerttu Ahola
2012-03-27Do post-mapgen lighting using the VoxelManipulator-based functions (causes ↵Perttu Ahola
glitches currently)
2012-03-27voxalgo::clearLightAndCollectSourcesPerttu Ahola
2012-03-27Post-mapgen lighting optimizationPerttu Ahola
2012-03-27Make mapgen generate stuff in chunks of 3^3 mapblocksPerttu Ahola
2012-03-16Move ClientMap to clientmap.{h,cpp}Perttu Ahola
2012-03-15MapBlockMesh, mesh animation system, urgent mesh updates, athmospheric ↵Kahrl
light, removed footprints
2012-03-11Clean up log messages everywherePerttu Ahola
2012-01-22Create node metadata when placing nodes againKahrl
2012-01-22Node placement / mineral / serialization / iron freq / node_dig callbackKahrl
- Node placement code moved to Lua - Mineral system removed (added default:stone_with_coal and default:stone_with_iron). - MapBlock and MapNode serialization updated. - Mapgen: Frequency of iron increased. - node_dig callback and related changes.
2011-11-29Print debug stacks to infostream rather than errorstream when placing ↵Perttu Ahola
CONTENT_IGNORE
2011-11-29Quick fix to a bug that makes it possible to raise water levels everywhere ↵Perttu Ahola
with one source
2011-11-29GenericNodeMetadata and an example furnacePerttu Ahola
2011-11-29Replace old active block random node modifying things with actual ↵Perttu Ahola
ActiveBlockModifiers
2011-11-29Fix a random commented-out piece of lighting code, altough it doesn't work ↵Perttu Ahola
any better
2011-11-29Make map generator as much threaded as possible (not much benefit with ↵Perttu Ahola
current generator because of small generator chunk size (a single MapBlock))
2011-11-29Print out number of blocks in memory at unloadPerttu Ahola
2011-11-29Don't allow placing CONTENT_IGNORE with Map::setNode() because it is never ↵Perttu Ahola
useful and is only caused by bugs.
2011-11-29Make liquid_alternative_* to be stringsPerttu Ahola
2011-11-29Store metadata as metadata name in node definitionPerttu Ahola
2011-11-29Default to saving stuff more often to minimize lag caused by a single savePerttu Ahola
2011-11-29Don't print 'Blocks modified by: ' in Map::timerUpdate if no blocks were writtenPerttu Ahola
2011-11-29Don't print all block saves to verbosestream; rather print counts of ↵Perttu Ahola
distinct modifiers