]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/map.cpp
improved old map support
[dragonfireclient.git] / src / map.cpp
index 39742a892fcb5a8cb47510f1c818e20ed7683896..ff823af94aaf05bf24da6d4650f17f515407134f 100644 (file)
@@ -27,6 +27,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "porting.h"
 #include "mineral.h"
 #include "noise.h"
+#include "serverobject.h"
 
 /*
        Map
@@ -954,6 +955,17 @@ void Map::addNodeAndUpdate(v3s16 p, MapNode n,
        */
        
        setNode(p, n);
+
+       /*
+               Add intial metadata
+       */
+
+       NodeMetadata *meta_proto = content_features(n.d).initial_metadata;
+       if(meta_proto)
+       {
+               NodeMetadata *meta = meta_proto->clone();
+               setNodeMetadata(p, meta);
+       }
        
        /*
                If node is under sunlight and doesn't let sunlight through,
@@ -1093,6 +1105,12 @@ void Map::removeNodeAndUpdate(v3s16 p,
                                light_sources, modified_blocks);
        }
 
+       /*
+               Remove node metadata
+       */
+
+       removeNodeMetadata(p);
+
        /*
                Remove the node.
                This also clears the lighting.
@@ -1696,17 +1714,78 @@ void Map::transformLiquids(core::map<v3s16, MapBlock*> & modified_blocks)
        //dstream<<"Map::transformLiquids(): loopcount="<<loopcount<<std::endl;
 }
 
-NodeMetadata* Map::getNodeMetadataClone(v3s16 p)
+NodeMetadata* Map::getNodeMetadata(v3s16 p)
 {
        v3s16 blockpos = getNodeBlockPos(p);
        v3s16 p_rel = p - blockpos*MAP_BLOCKSIZE;
        MapBlock *block = getBlockNoCreateNoEx(blockpos);
        if(block == NULL)
+       {
+               dstream<<"WARNING: Map::setNodeMetadata(): Block not found"
+                               <<std::endl;
                return NULL;
-       NodeMetadata *meta = block->m_node_metadata.getClone(p_rel);
+       }
+       NodeMetadata *meta = block->m_node_metadata.get(p_rel);
        return meta;
 }
 
+void Map::setNodeMetadata(v3s16 p, NodeMetadata *meta)
+{
+       v3s16 blockpos = getNodeBlockPos(p);
+       v3s16 p_rel = p - blockpos*MAP_BLOCKSIZE;
+       MapBlock *block = getBlockNoCreateNoEx(blockpos);
+       if(block == NULL)
+       {
+               dstream<<"WARNING: Map::setNodeMetadata(): Block not found"
+                               <<std::endl;
+               return;
+       }
+       block->m_node_metadata.set(p_rel, meta);
+}
+
+void Map::removeNodeMetadata(v3s16 p)
+{
+       v3s16 blockpos = getNodeBlockPos(p);
+       v3s16 p_rel = p - blockpos*MAP_BLOCKSIZE;
+       MapBlock *block = getBlockNoCreateNoEx(blockpos);
+       if(block == NULL)
+       {
+               dstream<<"WARNING: Map::removeNodeMetadata(): Block not found"
+                               <<std::endl;
+               return;
+       }
+       block->m_node_metadata.remove(p_rel);
+}
+
+void Map::nodeMetadataStep(float dtime,
+               core::map<v3s16, MapBlock*> &changed_blocks)
+{
+       /*
+               NOTE:
+               Currently there is no way to ensure that all the necessary
+               blocks are loaded when this is run. (They might get unloaded)
+               NOTE: ^- Actually, that might not be so. In a quick test it
+               reloaded a block with a furnace when I walked back to it from
+               a distance.
+       */
+       core::map<v2s16, MapSector*>::Iterator si;
+       si = m_sectors.getIterator();
+       for(; si.atEnd() == false; si++)
+       {
+               MapSector *sector = si.getNode()->getValue();
+               core::list< MapBlock * > sectorblocks;
+               sector->getBlocks(sectorblocks);
+               core::list< MapBlock * >::Iterator i;
+               for(i=sectorblocks.begin(); i!=sectorblocks.end(); i++)
+               {
+                       MapBlock *block = *i;
+                       bool changed = block->m_node_metadata.step(dtime);
+                       if(changed)
+                               changed_blocks[block->getPos()] = block;
+               }
+       }
+}
+
 /*
        ServerMap
 */
@@ -1722,7 +1801,6 @@ ServerMap::ServerMap(std::string savedir):
        //m_chunksize = 4;
        //m_chunksize = 2;
        
-       // TODO: Save to and load from a file
        m_seed = (((u64)(myrand()%0xffff)<<0)
                        + ((u64)(myrand()%0xffff)<<16)
                        + ((u64)(myrand()%0xffff)<<32)
@@ -1756,11 +1834,19 @@ ServerMap::ServerMap(std::string savedir):
                        }
                        else
                        {
-                               // Load map metadata (seed, chunksize)
-                               loadMapMeta();
-                               
-                               // Load chunk metadata
-                               loadChunkMeta();
+                               try{
+                                       // Load map metadata (seed, chunksize)
+                                       loadMapMeta();
+
+                                       // Load chunk metadata
+                                       loadChunkMeta();
+                               }
+                               catch(FileNotGoodException &e){
+                                       dstream<<DTIME<<"WARNING: Server: Could not load "
+                                                       <<"metafile(s). Disabling chunk-based "
+                                                       <<"generation."<<std::endl;
+                                       m_chunksize = 0;
+                               }
                        
                                /*// Load sector (0,0) and throw and exception on fail
                                if(loadSectorFull(v2s16(0,0)) == false)
@@ -2031,150 +2117,99 @@ double base_rock_level_2d(u64 seed, v2s16 p)
        return h;
 }
 
-#define VMANIP_FLAG_DUNGEON VOXELFLAG_CHECKED1
-
 /*
-       This is the main map generation method
+       Adds random objects to block, depending on the content of the block
 */
-
-MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
-               core::map<v3s16, MapBlock*> &changed_blocks,
-               bool force)
+void addRandomObjects(MapBlock *block)
 {
-       DSTACK(__FUNCTION_NAME);
-
-       /*
-               Don't generate if already fully generated
-       */
-       if(force == false)
+       for(s16 z0=0; z0<MAP_BLOCKSIZE; z0++)
+       for(s16 x0=0; x0<MAP_BLOCKSIZE; x0++)
        {
-               MapChunk *chunk = getChunk(chunkpos);
-               if(chunk != NULL && chunk->getGenLevel() == GENERATED_FULLY)
+               bool last_node_walkable = false;
+               for(s16 y0=0; y0<MAP_BLOCKSIZE; y0++)
                {
-                       dstream<<"generateChunkRaw(): Chunk "
-                                       <<"("<<chunkpos.X<<","<<chunkpos.Y<<")"
-                                       <<" already generated"<<std::endl;
-                       return chunk;
+                       v3s16 p(x0,y0,z0);
+                       MapNode n = block->getNodeNoEx(p);
+                       if(n.d == CONTENT_IGNORE)
+                               continue;
+                       if(content_features(n.d).liquid_type != LIQUID_NONE)
+                               continue;
+                       if(content_features(n.d).walkable)
+                       {
+                               last_node_walkable = true;
+                               continue;
+                       }
+                       if(last_node_walkable)
+                       {
+                               // If block contains light information
+                               if(content_features(n.d).param_type == CPT_LIGHT)
+                               {
+                                       if(n.getLight(LIGHTBANK_DAY) <= 3)
+                                       {
+                                               if(myrand() % 300 == 0)
+                                               {
+                                                       v3f pos_f = intToFloat(p+block->getPosRelative(), BS);
+                                                       pos_f.Y -= BS*0.4;
+                                                       ServerActiveObject *obj = new RatSAO(NULL, 0, pos_f);
+                                                       std::string data = obj->getStaticData();
+                                                       StaticObject s_obj(obj->getType(),
+                                                                       obj->getBasePosition(), data);
+                                                       // Add some
+                                                       block->m_static_objects.insert(0, s_obj);
+                                                       block->m_static_objects.insert(0, s_obj);
+                                                       block->m_static_objects.insert(0, s_obj);
+                                                       block->m_static_objects.insert(0, s_obj);
+                                                       block->m_static_objects.insert(0, s_obj);
+                                                       block->m_static_objects.insert(0, s_obj);
+                                                       delete obj;
+                                               }
+                                       }
+                               }
+                       }
+                       last_node_walkable = false;
                }
        }
+       block->setChangedFlag();
+}
 
-       dstream<<"generateChunkRaw(): Generating chunk "
-                       <<"("<<chunkpos.X<<","<<chunkpos.Y<<")"
-                       <<std::endl;
-       
-       TimeTaker timer("generateChunkRaw()");
-       
-       // The distance how far into the neighbors the generator is allowed to go.
-       s16 max_spread_amount_sectors = 2;
-       assert(max_spread_amount_sectors <= m_chunksize);
-       s16 max_spread_amount = max_spread_amount_sectors * MAP_BLOCKSIZE;
-
-       // Minimum amount of space left on sides for mud to fall in
-       //s16 min_mud_fall_space = 2;
-       
-       // Maximum diameter of stone obstacles in X and Z
-       /*s16 stone_obstacle_max_size = (max_spread_amount-min_mud_fall_space)*2;
-       assert(stone_obstacle_max_size/2 <= max_spread_amount-min_mud_fall_space);*/
-       
-       s16 y_blocks_min = -4;
-       s16 y_blocks_max = 3;
-       s16 h_blocks = y_blocks_max - y_blocks_min + 1;
-       s16 y_nodes_min = y_blocks_min * MAP_BLOCKSIZE;
-       s16 y_nodes_max = y_blocks_max * MAP_BLOCKSIZE + MAP_BLOCKSIZE - 1;
-
-       v2s16 sectorpos_base = chunk_to_sector(chunkpos);
-       s16 sectorpos_base_size = m_chunksize;
+#define VMANIP_FLAG_DUNGEON VOXELFLAG_CHECKED1
 
-       /*v2s16 sectorpos_bigbase = chunk_to_sector(chunkpos - v2s16(1,1));
-       s16 sectorpos_bigbase_size = m_chunksize * 3;*/
-       v2s16 sectorpos_bigbase =
-                       sectorpos_base - v2s16(1,1) * max_spread_amount_sectors;
-       s16 sectorpos_bigbase_size =
-                       sectorpos_base_size + 2 * max_spread_amount_sectors;
+/*
+       This is the main map generation method
+*/
 
+void makeChunk(ChunkMakeData *data)
+{
+       if(data->no_op)
+               return;
+       
+       s16 y_nodes_min = data->y_blocks_min * MAP_BLOCKSIZE;
+       s16 y_nodes_max = data->y_blocks_max * MAP_BLOCKSIZE + MAP_BLOCKSIZE - 1;
+       s16 h_blocks = data->y_blocks_max - data->y_blocks_min + 1;
+       u32 relative_volume = (u32)data->sectorpos_base_size*MAP_BLOCKSIZE
+                       *(u32)data->sectorpos_base_size*MAP_BLOCKSIZE
+                       *(u32)h_blocks*MAP_BLOCKSIZE;
        v3s16 bigarea_blocks_min(
-               sectorpos_bigbase.X,
-               y_blocks_min,
-               sectorpos_bigbase.Y
+               data->sectorpos_bigbase.X,
+               data->y_blocks_min,
+               data->sectorpos_bigbase.Y
        );
-
        v3s16 bigarea_blocks_max(
-               sectorpos_bigbase.X + sectorpos_bigbase_size - 1,
-               y_blocks_max,
-               sectorpos_bigbase.Y + sectorpos_bigbase_size - 1
+               data->sectorpos_bigbase.X + data->sectorpos_bigbase_size - 1,
+               data->y_blocks_max,
+               data->sectorpos_bigbase.Y + data->sectorpos_bigbase_size - 1
        );
-       
-       // Relative values to control amount of stuff in one chunk
-       /*u32 relative_area = (u32)sectorpos_base_size*MAP_BLOCKSIZE
-                       *(u32)sectorpos_base_size*MAP_BLOCKSIZE;*/
-       u32 relative_volume = (u32)sectorpos_base_size*MAP_BLOCKSIZE
-                       *(u32)sectorpos_base_size*MAP_BLOCKSIZE
-                       *(u32)h_blocks*MAP_BLOCKSIZE;
-               
-       /*
-               The limiting edges of the lighting update, inclusive.
-       */
-       s16 lighting_min_d = 0-max_spread_amount;
-       s16 lighting_max_d = sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount-1;
-
-       /*
-               Create the whole area of this and the neighboring chunks
-       */
-       {
-               TimeTaker timer("generateChunkRaw() create area");
-               
-               for(s16 x=0; x<sectorpos_bigbase_size; x++)
-               for(s16 z=0; z<sectorpos_bigbase_size; z++)
-               {
-                       v2s16 sectorpos = sectorpos_bigbase + v2s16(x,z);
-                       ServerMapSector *sector = createSector(sectorpos);
-                       assert(sector);
-
-                       for(s16 y=y_blocks_min; y<=y_blocks_max; y++)
-                       {
-                               v3s16 blockpos(sectorpos.X, y, sectorpos.Y);
-                               MapBlock *block = createBlock(blockpos);
-
-                               // Lighting won't be calculated
-                               //block->setLightingExpired(true);
-                               // Lighting will be calculated
-                               block->setLightingExpired(false);
-
-                               /*
-                                       Block gets sunlight if this is true.
-
-                                       This should be set to true when the top side of a block
-                                       is completely exposed to the sky.
-
-                                       Actually this doesn't matter now because the
-                                       initial lighting is done here.
-                               */
-                               block->setIsUnderground(y != y_blocks_max);
-                       }
-               }
-       }
-       
-       /*
-               Now we have a big empty area.
-
-               Make a ManualMapVoxelManipulator that contains this and the
-               neighboring chunks
-       */
-
-       ManualMapVoxelManipulator vmanip(this);
-       // Add the area we just generated
-       {
-               TimeTaker timer("generateChunkRaw() initialEmerge");
-               vmanip.initialEmerge(bigarea_blocks_min, bigarea_blocks_max);
-       }
+       s16 lighting_min_d = 0-data->max_spread_amount;
+       s16 lighting_max_d = data->sectorpos_base_size*MAP_BLOCKSIZE
+                       + data->max_spread_amount-1;
 
        // Clear all flags
-       vmanip.clearFlag(0xff);
+       data->vmanip.clearFlag(0xff);
 
-       TimeTaker timer_generate("generateChunkRaw() generate");
+       TimeTaker timer_generate("makeChunk() generate");
 
        // Maximum height of the stone surface and obstacles.
-       // This is used to disable dungeon generation from going too high.
+       // This is used to disable cave generation from going too high.
        s16 stone_surface_max_y = 0;
 
        /*
@@ -2185,30 +2220,30 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        // 22ms @cs=8
        //TimeTaker timer1("ground level");
 
-       for(s16 x=0; x<sectorpos_bigbase_size*MAP_BLOCKSIZE; x++)
-       for(s16 z=0; z<sectorpos_bigbase_size*MAP_BLOCKSIZE; z++)
+       for(s16 x=0; x<data->sectorpos_bigbase_size*MAP_BLOCKSIZE; x++)
+       for(s16 z=0; z<data->sectorpos_bigbase_size*MAP_BLOCKSIZE; z++)
        {
                // Node position
-               v2s16 p2d = sectorpos_bigbase*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_bigbase*MAP_BLOCKSIZE + v2s16(x,z);
                
                /*
                        Skip of already generated
                */
-               {
+               /*{
                        v3s16 p(p2d.X, y_nodes_min, p2d.Y);
-                       if(vmanip.m_data[vmanip.m_area.index(p)].d != CONTENT_AIR)
+                       if(data->vmanip.m_data[data->vmanip.m_area.index(p)].d != CONTENT_AIR)
                                continue;
-               }
+               }*/
 
                // Ground height at this point
                float surface_y_f = 0.0;
 
                // Use perlin noise for ground height
-               surface_y_f = base_rock_level_2d(m_seed, p2d);
+               surface_y_f = base_rock_level_2d(data->seed, p2d);
                
                /*// Experimental stuff
                {
-                       float a = highlands_level_2d(m_seed, p2d);
+                       float a = highlands_level_2d(data->seed, p2d);
                        if(a > surface_y_f)
                                surface_y_f = a;
                }*/
@@ -2225,13 +2260,20 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                */
                {
                        // Use fast index incrementing
-                       v3s16 em = vmanip.m_area.getExtent();
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_nodes_min, p2d.Y));
+                       v3s16 em = data->vmanip.m_area.getExtent();
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_nodes_min, p2d.Y));
                        for(s16 y=y_nodes_min; y<surface_y && y<=y_nodes_max; y++)
                        {
-                               vmanip.m_data[i].d = CONTENT_STONE;
+                               // Skip if already generated.
+                               // This is done here because there might be a cave at
+                               // any point in ground, which could look like it
+                               // wasn't generated.
+                               if(data->vmanip.m_data[i].d != CONTENT_AIR)
+                                       break;
 
-                               vmanip.m_area.add_y(em, i, 1);
+                               data->vmanip.m_data[i].d = CONTENT_STONE;
+
+                               data->vmanip.m_area.add_y(em, i, 1);
                        }
                }
        }
@@ -2242,15 +2284,15 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                Randomize some parameters
        */
        
-       s32 stone_obstacle_count = 0;
+       //s32 stone_obstacle_count = 0;
        /*s32 stone_obstacle_count =
-                       rangelim((1.0+noise2d(m_seed+897,
-                       sectorpos_base.X, sectorpos_base.Y))/2.0 * 30, 0, 100000);*/
+                       rangelim((1.0+noise2d(data->seed+897,
+                       data->sectorpos_base.X, data->sectorpos_base.Y))/2.0 * 30, 0, 100000);*/
        
-       s16 stone_obstacle_max_height = 0;
+       //s16 stone_obstacle_max_height = 0;
        /*s16 stone_obstacle_max_height =
-                       rangelim((1.0+noise2d(m_seed+5902,
-                       sectorpos_base.X, sectorpos_base.Y))/2.0 * 30, 0, 100000);*/
+                       rangelim((1.0+noise2d(data->seed+5902,
+                       data->sectorpos_base.X, data->sectorpos_base.Y))/2.0 * 30, 0, 100000);*/
 
        /*
                Loop this part, it will make stuff look older and newer nicely
@@ -2258,151 +2300,32 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        //for(u32 i_age=0; i_age<1; i_age++)
        for(u32 i_age=0; i_age<2; i_age++)
        { // Aging loop
+       /******************************
+               BEGINNING OF AGING LOOP
+       ******************************/
 
-       {
-       // 8ms @cs=8
-       //TimeTaker timer1("stone obstacles");
-
-       /*
-               Add some random stone obstacles
-       */
-       
-       for(s32 ri=0; ri<stone_obstacle_count; ri++)
-       {
-               // Randomize max height so usually stuff will be quite low
-               s16 maxheight_randomized = myrand_range(0, stone_obstacle_max_height);
-
-               //s16 stone_obstacle_max_size = sectorpos_base_size * MAP_BLOCKSIZE - 10;
-               s16 stone_obstacle_max_size = MAP_BLOCKSIZE*4-4;
-
-               v3s16 ob_size(
-                       myrand_range(5, stone_obstacle_max_size),
-                       myrand_range(0, maxheight_randomized),
-                       myrand_range(5, stone_obstacle_max_size)
-               );
-               
-               // Don't make stupid small rectangle bumps
-               if(ob_size.Y < 5)
-                       continue;
-               
-               v2s16 ob_place(
-                       myrand_range(1+ob_size.X/2+2,
-                                       sectorpos_base_size*MAP_BLOCKSIZE-1-1-ob_size.X/2-2),
-                       myrand_range(1+ob_size.Z/2+2,
-                                       sectorpos_base_size*MAP_BLOCKSIZE-1-1-ob_size.Z/2-2)
-               );
-               
-               // Minimum space left on top of the obstacle
-               s16 min_head_space = 12;
-               
-               for(s16 x=-ob_size.X/2; x<ob_size.X/2; x++)
-               for(s16 z=-ob_size.Z/2; z<ob_size.Z/2; z++)
-               {
-                       // Node position in 2d
-                       v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + ob_place + v2s16(x,z);
-                       
-                       // Find stone ground level
-                       // (ignore everything else than mud in already generated chunks)
-                       // and mud amount over the stone level
-                       s16 surface_y = 0;
-                       s16 mud_amount = 0;
-                       {
-                               v3s16 em = vmanip.m_area.getExtent();
-                               u32 i = vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
-                               s16 y;
-                               // Go to ground level
-                               for(y=y_nodes_max; y>=y_nodes_min; y--)
-                               {
-                                       MapNode *n = &vmanip.m_data[i];
-                                       /*if(content_walkable(n.d)
-                                                       && n.d != CONTENT_MUD
-                                                       && n.d != CONTENT_GRASS)
-                                               break;*/
-                                       if(n->d == CONTENT_STONE)
-                                               break;
-                                       
-                                       if(n->d == CONTENT_MUD || n->d == CONTENT_GRASS)
-                                       {
-                                               mud_amount++;
-                                               /*
-                                                       Change to mud because otherwise we might
-                                                       be throwing mud on grass at the next
-                                                       step
-                                               */
-                                               n->d = CONTENT_MUD;
-                                       }
-                                               
-                                       vmanip.m_area.add_y(em, i, -1);
-                               }
-                               if(y >= y_nodes_min)
-                                       surface_y = y;
-                               else
-                                       surface_y = y_nodes_min;
-                       }
-
-
-                       /*
-                               Add stone on ground
-                       */
-                       {
-                               v3s16 em = vmanip.m_area.getExtent();
-                               s16 y_start = surface_y+1;
-                               u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
-                               s16 y;
-                               // Add stone
-                               s16 count = 0;
-                               for(y=y_start; y<=y_nodes_max - min_head_space; y++)
-                               {
-                                       MapNode &n = vmanip.m_data[i];
-                                       n.d = CONTENT_STONE;
-
-                                       if(y > stone_surface_max_y)
-                                               stone_surface_max_y = y;
-
-                                       count++;
-                                       if(count >= ob_size.Y)
-                                               break;
-                                               
-                                       vmanip.m_area.add_y(em, i, 1);
-                               }
-                               // Add mud
-                               count = 0;
-                               for(; y<=y_nodes_max - min_head_space; y++)
-                               {
-                                       MapNode &n = vmanip.m_data[i];
-                                       n.d = CONTENT_MUD;
-                                       count++;
-                                       if(count >= mud_amount)
-                                               break;
-                                               
-                                       vmanip.m_area.add_y(em, i, 1);
-                               }
-                       }
-
-               }
-       }
-
-       }//timer1
        {
        // 24ms @cs=8
-       //TimeTaker timer1("dungeons");
+       //TimeTaker timer1("caves");
 
        /*
-               Make dungeons
+               Make caves
        */
-       u32 dungeons_count = relative_volume / 600000;
+       u32 caves_count = relative_volume / 400000;
        u32 bruises_count = relative_volume * stone_surface_max_y / 40000000;
        if(stone_surface_max_y < WATER_LEVEL)
                bruises_count = 0;
-       /*u32 dungeons_count = 0;
+       /*u32 caves_count = 0;
        u32 bruises_count = 0;*/
-       for(u32 jj=0; jj<dungeons_count+bruises_count; jj++)
+       for(u32 jj=0; jj<caves_count+bruises_count; jj++)
        {
-               s16 min_tunnel_diameter = 2;
-               s16 max_tunnel_diameter = 6;
-               u16 tunnel_routepoints = 25;
+               s16 min_tunnel_diameter = 3;
+               s16 max_tunnel_diameter = 5;
+               u16 tunnel_routepoints = 20;
                
-               bool bruise_surface = (jj < bruises_count);
+               v3f main_direction(0,0,0);
+
+               bool bruise_surface = (jj > caves_count);
 
                if(bruise_surface)
                {
@@ -2411,31 +2334,34 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        /*min_tunnel_diameter = MYMAX(0, stone_surface_max_y/6);
                        max_tunnel_diameter = myrand_range(MYMAX(0, stone_surface_max_y/6), MYMAX(0, stone_surface_max_y/2));*/
                        
-                       /*s16 tunnel_rou = rangelim(25*(0.5+1.0*noise2d(m_seed+42,
-                                       sectorpos_base.X, sectorpos_base.Y)), 0, 15);*/
+                       /*s16 tunnel_rou = rangelim(25*(0.5+1.0*noise2d(data->seed+42,
+                                       data->sectorpos_base.X, data->sectorpos_base.Y)), 0, 15);*/
 
                        tunnel_routepoints = 5;
                }
+               else
+               {
+               }
 
                // Allowed route area size in nodes
                v3s16 ar(
-                       sectorpos_base_size*MAP_BLOCKSIZE,
+                       data->sectorpos_base_size*MAP_BLOCKSIZE,
                        h_blocks*MAP_BLOCKSIZE,
-                       sectorpos_base_size*MAP_BLOCKSIZE
+                       data->sectorpos_base_size*MAP_BLOCKSIZE
                );
 
                // Area starting point in nodes
                v3s16 of(
-                       sectorpos_base.X*MAP_BLOCKSIZE,
-                       y_blocks_min*MAP_BLOCKSIZE,
-                       sectorpos_base.Y*MAP_BLOCKSIZE
+                       data->sectorpos_base.X*MAP_BLOCKSIZE,
+                       data->y_blocks_min*MAP_BLOCKSIZE,
+                       data->sectorpos_base.Y*MAP_BLOCKSIZE
                );
 
                // Allow a bit more
                //(this should be more than the maximum radius of the tunnel)
                //s16 insure = 5; // Didn't work with max_d = 20
                s16 insure = 10;
-               s16 more = max_spread_amount - max_tunnel_diameter/2 - insure;
+               s16 more = data->max_spread_amount - max_tunnel_diameter/2 - insure;
                ar += v3s16(1,0,1) * more * 2;
                of -= v3s16(1,0,1) * more;
                
@@ -2443,7 +2369,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                // Allow half a diameter + 7 over stone surface
                s16 route_y_max = -of.Y + stone_surface_max_y + max_tunnel_diameter/2 + 7;
 
-               /*// If dungeons, don't go through surface too often
+               /*// If caves, don't go through surface too often
                if(bruise_surface == false)
                        route_y_max -= myrand_range(0, max_tunnel_diameter*2);*/
 
@@ -2468,16 +2394,16 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                s16 route_start_y_min = route_y_min;
                s16 route_start_y_max = route_y_max;
 
-               // Start every 2nd dungeon from surface
+               // Start every 2nd cave from surface
                bool coming_from_surface = (jj % 2 == 0 && bruise_surface == false);
 
                if(coming_from_surface)
                {
-                       route_start_y_min = -of.Y + stone_surface_max_y + 5;
+                       route_start_y_min = -of.Y + stone_surface_max_y + 10;
                }
                
                route_start_y_min = rangelim(route_start_y_min, 0, ar.Y-1);
-               route_start_y_max = rangelim(route_start_y_max, 0, ar.Y-1);
+               route_start_y_max = rangelim(route_start_y_max, route_start_y_min, ar.Y-1);
 
                // Randomize starting position
                v3f orp(
@@ -2494,6 +2420,16 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                
                for(u16 j=0; j<tunnel_routepoints; j++)
                {
+                       if(j%7==0 && bruise_surface == false)
+                       {
+                               main_direction = v3f(
+                                       ((float)(myrand()%20)-(float)10)/10,
+                                       ((float)(myrand()%20)-(float)10)/30,
+                                       ((float)(myrand()%20)-(float)10)/10
+                               );
+                               main_direction *= (float)myrand_range(1, 3);
+                       }
+
                        // Randomize size
                        s16 min_d = min_tunnel_diameter;
                        s16 max_d = max_tunnel_diameter;
@@ -2506,7 +2442,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        }
                        else
                        {
-                               maxlen = v3s16(15, myrand_range(1, 20), 15);
+                               maxlen = v3s16(rs*4, myrand_range(1, rs*3), rs*4);
                        }
 
                        v3f vec;
@@ -2527,6 +2463,8 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                        (float)(myrand()%(maxlen.Z*2))-(float)maxlen.Z
                                );
                        }
+                       
+                       vec += main_direction;
 
                        v3f rp = orp + vec;
                        if(rp.X < 0)
@@ -2573,8 +2511,8 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                                                continue;
                                                        p += of;
                                                        
-                                                       //assert(vmanip.m_area.contains(p));
-                                                       if(vmanip.m_area.contains(p) == false)
+                                                       //assert(data->vmanip.m_area.contains(p));
+                                                       if(data->vmanip.m_area.contains(p) == false)
                                                        {
                                                                dstream<<"WARNING: "<<__FUNCTION_NAME
                                                                                <<":"<<__LINE__<<": "
@@ -2585,13 +2523,13 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                                        
                                                        // Just set it to air, it will be changed to
                                                        // water afterwards
-                                                       u32 i = vmanip.m_area.index(p);
-                                                       vmanip.m_data[i] = airnode;
+                                                       u32 i = data->vmanip.m_area.index(p);
+                                                       data->vmanip.m_data[i] = airnode;
 
                                                        if(bruise_surface == false)
                                                        {
                                                                // Set tunnel flag
-                                                               vmanip.m_flags[i] |= VMANIP_FLAG_DUNGEON;
+                                                               data->vmanip.m_flags[i] |= VMANIP_FLAG_DUNGEON;
                                                        }
                                                }
                                        }
@@ -2617,22 +2555,22 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
 
                // Allowed route area size in nodes
                v3s16 ar(
-                       sectorpos_base_size*MAP_BLOCKSIZE,
+                       data->sectorpos_base_size*MAP_BLOCKSIZE,
                        h_blocks*MAP_BLOCKSIZE,
-                       sectorpos_base_size*MAP_BLOCKSIZE
+                       data->sectorpos_base_size*MAP_BLOCKSIZE
                );
 
                // Area starting point in nodes
                v3s16 of(
-                       sectorpos_base.X*MAP_BLOCKSIZE,
-                       y_blocks_min*MAP_BLOCKSIZE,
-                       sectorpos_base.Y*MAP_BLOCKSIZE
+                       data->sectorpos_base.X*MAP_BLOCKSIZE,
+                       data->y_blocks_min*MAP_BLOCKSIZE,
+                       data->sectorpos_base.Y*MAP_BLOCKSIZE
                );
 
                // Allow a bit more
                //(this should be more than the maximum radius of the tunnel)
                s16 insure = 3;
-               s16 more = max_spread_amount - max_vein_diameter/2 - insure;
+               s16 more = data->max_spread_amount - max_vein_diameter/2 - insure;
                ar += v3s16(1,0,1) * more * 2;
                of -= v3s16(1,0,1) * more;
                
@@ -2718,12 +2656,12 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                                                continue;
                                                        p += of;
                                                        
-                                                       assert(vmanip.m_area.contains(p));
+                                                       assert(data->vmanip.m_area.contains(p));
                                                        
                                                        // Just set it to air, it will be changed to
                                                        // water afterwards
-                                                       u32 i = vmanip.m_area.index(p);
-                                                       MapNode *n = &vmanip.m_data[i];
+                                                       u32 i = data->vmanip.m_area.index(p);
+                                                       MapNode *n = &data->vmanip.m_data[i];
                                                        if(n->d == CONTENT_STONE)
                                                                n->param = mineral;
                                                }
@@ -2745,19 +2683,19 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                Add mud to the central chunk
        */
        
-       for(s16 x=0; x<sectorpos_base_size*MAP_BLOCKSIZE; x++)
-       for(s16 z=0; z<sectorpos_base_size*MAP_BLOCKSIZE; z++)
+       for(s16 x=0; x<data->sectorpos_base_size*MAP_BLOCKSIZE; x++)
+       for(s16 z=0; z<data->sectorpos_base_size*MAP_BLOCKSIZE; z++)
        {
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
                // Randomize mud amount
                s16 mud_add_amount = (s16)(2.5 + 2.0 * noise2d_perlin(
                                0.5+(float)p2d.X/200, 0.5+(float)p2d.Y/200,
-                               m_seed+1, 3, 0.55));
+                               data->seed+1, 3, 0.55));
 
                // Find ground level
-               s16 surface_y = find_ground_level_clever(vmanip, p2d);
+               s16 surface_y = find_ground_level_clever(data->vmanip, p2d);
 
                /*
                        If topmost node is grass, change it to mud.
@@ -2765,8 +2703,8 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        chunk and then converted.
                */
                {
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, surface_y, p2d.Y));
-                       MapNode *n = &vmanip.m_data[i];
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, surface_y, p2d.Y));
+                       MapNode *n = &data->vmanip.m_data[i];
                        if(n->d == CONTENT_GRASS)
                                n->d = CONTENT_MUD;
                }
@@ -2776,19 +2714,19 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                */
                {
                        s16 mudcount = 0;
-                       v3s16 em = vmanip.m_area.getExtent();
+                       v3s16 em = data->vmanip.m_area.getExtent();
                        s16 y_start = surface_y+1;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
                        for(s16 y=y_start; y<=y_nodes_max; y++)
                        {
                                if(mudcount >= mud_add_amount)
                                        break;
                                        
-                               MapNode &n = vmanip.m_data[i];
+                               MapNode &n = data->vmanip.m_data[i];
                                n.d = CONTENT_MUD;
                                mudcount++;
 
-                               vmanip.m_area.add_y(em, i, 1);
+                               data->vmanip.m_area.add_y(em, i, 1);
                        }
                }
 
@@ -2804,8 +2742,8 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        */
 
        // Limit area by 1 because mud is flown into neighbors.
-       s16 mudflow_minpos = 0-max_spread_amount+1;
-       s16 mudflow_maxpos = sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount-2;
+       s16 mudflow_minpos = 0-data->max_spread_amount+1;
+       s16 mudflow_maxpos = data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount-2;
 
        // Iterate a few times
        for(s16 k=0; k<3; k++)
@@ -2826,10 +2764,10 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                }
 
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
-               v3s16 em = vmanip.m_area.getExtent();
-               u32 i = vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
+               v3s16 em = data->vmanip.m_area.getExtent();
+               u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
                s16 y=y_nodes_max;
 
                for(;; y--)
@@ -2838,22 +2776,22 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        // Find mud
                        for(; y>=y_nodes_min; y--)
                        {
-                               n = &vmanip.m_data[i];
+                               n = &data->vmanip.m_data[i];
                                //if(content_walkable(n->d))
                                //      break;
                                if(n->d == CONTENT_MUD || n->d == CONTENT_GRASS)
                                        break;
                                        
-                               vmanip.m_area.add_y(em, i, -1);
+                               data->vmanip.m_area.add_y(em, i, -1);
                        }
 
                        // Stop if out of area
-                       //if(vmanip.m_area.contains(i) == false)
+                       //if(data->vmanip.m_area.contains(i) == false)
                        if(y < y_nodes_min)
                                break;
 
                        /*// If not mud, do nothing to it
-                       MapNode *n = &vmanip.m_data[i];
+                       MapNode *n = &data->vmanip.m_data[i];
                        if(n->d != CONTENT_MUD && n->d != CONTENT_GRASS)
                                continue;*/
 
@@ -2862,11 +2800,11 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        */
                        {
                                u32 i2 = i;
-                               vmanip.m_area.add_y(em, i2, -1);
+                               data->vmanip.m_area.add_y(em, i2, -1);
                                // Cancel if out of area
-                               if(vmanip.m_area.contains(i2) == false)
+                               if(data->vmanip.m_area.contains(i2) == false)
                                        continue;
-                               MapNode *n2 = &vmanip.m_data[i2];
+                               MapNode *n2 = &data->vmanip.m_data[i2];
                                if(n2->d != CONTENT_MUD && n2->d != CONTENT_GRASS)
                                        continue;
                        }
@@ -2887,9 +2825,9 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        // Theck that upper is air or doesn't exist.
                        // Cancel dropping if upper keeps it in place
                        u32 i3 = i;
-                       vmanip.m_area.add_y(em, i3, 1);
-                       if(vmanip.m_area.contains(i3) == true
-                                       && content_walkable(vmanip.m_data[i3].d) == true)
+                       data->vmanip.m_area.add_y(em, i3, 1);
+                       if(data->vmanip.m_area.contains(i3) == true
+                                       && content_walkable(data->vmanip.m_data[i3].d) == true)
                        {
                                continue;
                        }
@@ -2901,39 +2839,39 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                v3s16 dirp = dirs4[di];
                                u32 i2 = i;
                                // Move to side
-                               vmanip.m_area.add_p(em, i2, dirp);
+                               data->vmanip.m_area.add_p(em, i2, dirp);
                                // Fail if out of area
-                               if(vmanip.m_area.contains(i2) == false)
+                               if(data->vmanip.m_area.contains(i2) == false)
                                        continue;
                                // Check that side is air
-                               MapNode *n2 = &vmanip.m_data[i2];
+                               MapNode *n2 = &data->vmanip.m_data[i2];
                                if(content_walkable(n2->d))
                                        continue;
                                // Check that under side is air
-                               vmanip.m_area.add_y(em, i2, -1);
-                               if(vmanip.m_area.contains(i2) == false)
+                               data->vmanip.m_area.add_y(em, i2, -1);
+                               if(data->vmanip.m_area.contains(i2) == false)
                                        continue;
-                               n2 = &vmanip.m_data[i2];
+                               n2 = &data->vmanip.m_data[i2];
                                if(content_walkable(n2->d))
                                        continue;
                                /*// Check that under that is air (need a drop of 2)
-                               vmanip.m_area.add_y(em, i2, -1);
-                               if(vmanip.m_area.contains(i2) == false)
+                               data->vmanip.m_area.add_y(em, i2, -1);
+                               if(data->vmanip.m_area.contains(i2) == false)
                                        continue;
-                               n2 = &vmanip.m_data[i2];
+                               n2 = &data->vmanip.m_data[i2];
                                if(content_walkable(n2->d))
                                        continue;*/
                                // Loop further down until not air
                                do{
-                                       vmanip.m_area.add_y(em, i2, -1);
+                                       data->vmanip.m_area.add_y(em, i2, -1);
                                        // Fail if out of area
-                                       if(vmanip.m_area.contains(i2) == false)
+                                       if(data->vmanip.m_area.contains(i2) == false)
                                                continue;
-                                       n2 = &vmanip.m_data[i2];
+                                       n2 = &data->vmanip.m_data[i2];
                                }while(content_walkable(n2->d) == false);
                                // Loop one up so that we're in air
-                               vmanip.m_area.add_y(em, i2, 1);
-                               n2 = &vmanip.m_data[i2];
+                               data->vmanip.m_area.add_y(em, i2, 1);
+                               n2 = &data->vmanip.m_data[i2];
 
                                // Move mud to new place
                                *n2 = *n;
@@ -2957,18 +2895,18 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                Add water to the central chunk (and a bit more)
        */
        
-       for(s16 x=0-max_spread_amount;
-                       x<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount;
+       for(s16 x=0-data->max_spread_amount;
+                       x<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount;
                        x++)
-       for(s16 z=0-max_spread_amount;
-                       z<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount;
+       for(s16 z=0-data->max_spread_amount;
+                       z<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount;
                        z++)
        {
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
                // Find ground level
-               //s16 surface_y = find_ground_level(vmanip, p2d);
+               //s16 surface_y = find_ground_level(data->vmanip, p2d);
 
                /*
                        If ground level is over water level, skip.
@@ -2983,42 +2921,27 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        Add water on ground
                */
                {
-                       v3s16 em = vmanip.m_area.getExtent();
+                       v3s16 em = data->vmanip.m_area.getExtent();
                        u8 light = LIGHT_MAX;
                        // Start at global water surface level
                        s16 y_start = WATER_LEVEL;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
-                       MapNode *n = &vmanip.m_data[i];
-
-                       /*// Add first one to transforming liquid queue, if water
-                       if(n->d == CONTENT_WATER || n->d == CONTENT_WATERSOURCE)
-                       {
-                               v3s16 p = v3s16(p2d.X, y_start, p2d.Y);
-                               m_transforming_liquid.push_back(p);
-                       }*/
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
+                       MapNode *n = &data->vmanip.m_data[i];
 
                        for(s16 y=y_start; y>=y_nodes_min; y--)
                        {
-                               n = &vmanip.m_data[i];
+                               n = &data->vmanip.m_data[i];
                                
                                // Stop when there is no water and no air
                                if(n->d != CONTENT_AIR && n->d != CONTENT_WATERSOURCE
                                                && n->d != CONTENT_WATER)
                                {
-                                       /*// Add bottom one to transforming liquid queue
-                                       vmanip.m_area.add_y(em, i, 1);
-                                       n = &vmanip.m_data[i];
-                                       if(n->d == CONTENT_WATER || n->d == CONTENT_WATERSOURCE)
-                                       {
-                                               v3s16 p = v3s16(p2d.X, y, p2d.Y);
-                                               m_transforming_liquid.push_back(p);
-                                       }*/
 
                                        break;
                                }
                                
-                               // Make water only not in dungeons
-                               if(!(vmanip.m_flags[i]&VMANIP_FLAG_DUNGEON))
+                               // Make water only not in caves
+                               if(!(data->vmanip.m_flags[i]&VMANIP_FLAG_DUNGEON))
                                {
                                        n->d = CONTENT_WATERSOURCE;
                                        //n->setLight(LIGHTBANK_DAY, light);
@@ -3026,11 +2949,11 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                        // Add to transforming liquid queue (in case it'd
                                        // start flowing)
                                        v3s16 p = v3s16(p2d.X, y, p2d.Y);
-                                       m_transforming_liquid.push_back(p);
+                                       data->transforming_liquid.push_back(p);
                                }
                                
                                // Next one
-                               vmanip.m_area.add_y(em, i, -1);
+                               data->vmanip.m_area.add_y(em, i, -1);
                                if(light > 0)
                                        light--;
                        }
@@ -3041,6 +2964,9 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        }//timer1
        
        } // Aging loop
+       /***********************
+               END OF AGING LOOP
+       ************************/
 
        {
        //TimeTaker timer1("convert mud to sand");
@@ -3052,22 +2978,22 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        //s16 mud_add_amount = myrand_range(2, 4);
        //s16 mud_add_amount = 0;
        
-       /*for(s16 x=0; x<sectorpos_base_size*MAP_BLOCKSIZE; x++)
-       for(s16 z=0; z<sectorpos_base_size*MAP_BLOCKSIZE; z++)*/
-       for(s16 x=0-max_spread_amount+1;
-                       x<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount-1;
+       /*for(s16 x=0; x<data->sectorpos_base_size*MAP_BLOCKSIZE; x++)
+       for(s16 z=0; z<data->sectorpos_base_size*MAP_BLOCKSIZE; z++)*/
+       for(s16 x=0-data->max_spread_amount+1;
+                       x<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount-1;
                        x++)
-       for(s16 z=0-max_spread_amount+1;
-                       z<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount-1;
+       for(s16 z=0-data->max_spread_amount+1;
+                       z<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount-1;
                        z++)
        {
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
                // Determine whether to have sand here
                double sandnoise = noise2d_perlin(
                                0.5+(float)p2d.X/500, 0.5+(float)p2d.Y/500,
-                               m_seed+59420, 3, 0.50);
+                               data->seed+59420, 3, 0.50);
 
                bool have_sand = (sandnoise > -0.15);
 
@@ -3075,19 +3001,19 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        continue;
 
                // Find ground level
-               s16 surface_y = find_ground_level_clever(vmanip, p2d);
+               s16 surface_y = find_ground_level_clever(data->vmanip, p2d);
                
                if(surface_y > WATER_LEVEL + 2)
                        continue;
 
                {
-                       v3s16 em = vmanip.m_area.getExtent();
+                       v3s16 em = data->vmanip.m_area.getExtent();
                        s16 y_start = surface_y;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
                        u32 not_sand_counter = 0;
                        for(s16 y=y_start; y>=y_nodes_min; y--)
                        {
-                               MapNode *n = &vmanip.m_data[i];
+                               MapNode *n = &data->vmanip.m_data[i];
                                if(n->d == CONTENT_MUD || n->d == CONTENT_GRASS)
                                {
                                        n->d = CONTENT_SAND;
@@ -3099,7 +3025,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                                break;
                                }
 
-                               vmanip.m_area.add_y(em, i, -1);
+                               data->vmanip.m_area.add_y(em, i, -1);
                        }
                }
 
@@ -3116,34 +3042,34 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        {
                // Divide area into parts
                s16 div = 8;
-               s16 sidelen = sectorpos_base_size*MAP_BLOCKSIZE / div;
+               s16 sidelen = data->sectorpos_base_size*MAP_BLOCKSIZE / div;
                double area = sidelen * sidelen;
                for(s16 x0=0; x0<div; x0++)
                for(s16 z0=0; z0<div; z0++)
                {
                        // Center position of part of division
                        v2s16 p2d_center(
-                               sectorpos_base.X*MAP_BLOCKSIZE + sidelen/2 + sidelen*x0,
-                               sectorpos_base.Y*MAP_BLOCKSIZE + sidelen/2 + sidelen*z0
+                               data->sectorpos_base.X*MAP_BLOCKSIZE + sidelen/2 + sidelen*x0,
+                               data->sectorpos_base.Y*MAP_BLOCKSIZE + sidelen/2 + sidelen*z0
                        );
                        // Minimum edge of part of division
                        v2s16 p2d_min(
-                               sectorpos_base.X*MAP_BLOCKSIZE + sidelen*x0,
-                               sectorpos_base.Y*MAP_BLOCKSIZE + sidelen*z0
+                               data->sectorpos_base.X*MAP_BLOCKSIZE + sidelen*x0,
+                               data->sectorpos_base.Y*MAP_BLOCKSIZE + sidelen*z0
                        );
                        // Maximum edge of part of division
                        v2s16 p2d_max(
-                               sectorpos_base.X*MAP_BLOCKSIZE + sidelen + sidelen*x0 - 1,
-                               sectorpos_base.Y*MAP_BLOCKSIZE + sidelen + sidelen*z0 - 1
+                               data->sectorpos_base.X*MAP_BLOCKSIZE + sidelen + sidelen*x0 - 1,
+                               data->sectorpos_base.Y*MAP_BLOCKSIZE + sidelen + sidelen*z0 - 1
                        );
                        // Amount of trees
-                       u32 tree_count = area * tree_amount_2d(m_seed, p2d_center);
+                       u32 tree_count = area * tree_amount_2d(data->seed, p2d_center);
                        // Put trees in random places on part of division
                        for(u32 i=0; i<tree_count; i++)
                        {
                                s16 x = myrand_range(p2d_min.X, p2d_max.X);
                                s16 z = myrand_range(p2d_min.Y, p2d_max.Y);
-                               s16 y = find_ground_level(vmanip, v2s16(x,z));
+                               s16 y = find_ground_level(data->vmanip, v2s16(x,z));
                                // Don't make a tree under water level
                                if(y < WATER_LEVEL)
                                        continue;
@@ -3155,31 +3081,31 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                        Trees grow only on mud and grass
                                */
                                {
-                                       u32 i = vmanip.m_area.index(v3s16(p));
-                                       MapNode *n = &vmanip.m_data[i];
+                                       u32 i = data->vmanip.m_area.index(v3s16(p));
+                                       MapNode *n = &data->vmanip.m_data[i];
                                        if(n->d != CONTENT_MUD && n->d != CONTENT_GRASS)
                                                continue;
                                }
                                p.Y++;
                                // Make a tree
-                               make_tree(vmanip, p);
+                               make_tree(data->vmanip, p);
                        }
                }
                /*u32 tree_max = relative_area / 60;
                //u32 count = myrand_range(0, tree_max);
                for(u32 i=0; i<count; i++)
                {
-                       s16 x = myrand_range(0, sectorpos_base_size*MAP_BLOCKSIZE-1);
-                       s16 z = myrand_range(0, sectorpos_base_size*MAP_BLOCKSIZE-1);
-                       x += sectorpos_base.X*MAP_BLOCKSIZE;
-                       z += sectorpos_base.Y*MAP_BLOCKSIZE;
-                       s16 y = find_ground_level(vmanip, v2s16(x,z));
+                       s16 x = myrand_range(0, data->sectorpos_base_size*MAP_BLOCKSIZE-1);
+                       s16 z = myrand_range(0, data->sectorpos_base_size*MAP_BLOCKSIZE-1);
+                       x += data->sectorpos_base.X*MAP_BLOCKSIZE;
+                       z += data->sectorpos_base.Y*MAP_BLOCKSIZE;
+                       s16 y = find_ground_level(data->vmanip, v2s16(x,z));
                        // Don't make a tree under water level
                        if(y < WATER_LEVEL)
                                continue;
                        v3s16 p(x,y+1,z);
                        // Make a tree
-                       make_tree(vmanip, p);
+                       make_tree(data->vmanip, p);
                }*/
        }
 
@@ -3193,17 +3119,17 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                Grow grass
        */
 
-       /*for(s16 x=0-4; x<sectorpos_base_size*MAP_BLOCKSIZE+4; x++)
-       for(s16 z=0-4; z<sectorpos_base_size*MAP_BLOCKSIZE+4; z++)*/
-       for(s16 x=0-max_spread_amount;
-                       x<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount;
+       /*for(s16 x=0-4; x<data->sectorpos_base_size*MAP_BLOCKSIZE+4; x++)
+       for(s16 z=0-4; z<data->sectorpos_base_size*MAP_BLOCKSIZE+4; z++)*/
+       for(s16 x=0-data->max_spread_amount;
+                       x<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount;
                        x++)
-       for(s16 z=0-max_spread_amount;
-                       z<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount;
+       for(s16 z=0-data->max_spread_amount;
+                       z<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount;
                        z++)
        {
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
                /*
                        Find the lowest surface to which enough light ends up
@@ -3213,17 +3139,17 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                */
                s16 surface_y = 0;
                {
-                       v3s16 em = vmanip.m_area.getExtent();
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
+                       v3s16 em = data->vmanip.m_area.getExtent();
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_nodes_max, p2d.Y));
                        s16 y;
                        // Go to ground level
                        for(y=y_nodes_max; y>=y_nodes_min; y--)
                        {
-                               MapNode &n = vmanip.m_data[i];
+                               MapNode &n = data->vmanip.m_data[i];
                                if(n.d != CONTENT_AIR
                                                && n.d != CONTENT_LEAVES)
                                        break;
-                               vmanip.m_area.add_y(em, i, -1);
+                               data->vmanip.m_area.add_y(em, i, -1);
                        }
                        if(y >= y_nodes_min)
                                surface_y = y;
@@ -3231,8 +3157,8 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                surface_y = y_nodes_min;
                }
                
-               u32 i = vmanip.m_area.index(p2d.X, surface_y, p2d.Y);
-               MapNode *n = &vmanip.m_data[i];
+               u32 i = data->vmanip.m_area.index(p2d.X, surface_y, p2d.Y);
+               MapNode *n = &data->vmanip.m_data[i];
                if(n->d == CONTENT_MUD)
                        n->d = CONTENT_GRASS;
        }
@@ -3283,15 +3209,15 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                }
                
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
 
                {
-                       v3s16 em = vmanip.m_area.getExtent();
+                       v3s16 em = data->vmanip.m_area.getExtent();
                        s16 y_start = y_nodes_max;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
                        for(s16 y=y_start; y>=y_nodes_min; y--)
                        {
-                               MapNode *n = &vmanip.m_data[i];
+                               MapNode *n = &data->vmanip.m_data[i];
                                if(n->getLight(LIGHTBANK_DAY) != 0)
                                {
                                        light_sources.insert(v3s16(p2d.X, y, p2d.Y), true);
@@ -3338,17 +3264,17 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                }
                
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
                // Loop from top to down
                {
                        u8 light = LIGHT_SUN;
-                       v3s16 em = vmanip.m_area.getExtent();
+                       v3s16 em = data->vmanip.m_area.getExtent();
                        s16 y_start = y_nodes_max;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
                        for(s16 y=y_start; y>=y_nodes_min; y--)
                        {
-                               MapNode *n = &vmanip.m_data[i];
+                               MapNode *n = &data->vmanip.m_data[i];
                                if(light_propagates_content(n->d) == false)
                                {
                                        light = 0;
@@ -3370,19 +3296,19 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                }
                                
                                // Increment index by y
-                               vmanip.m_area.add_y(em, i, -1);
+                               data->vmanip.m_area.add_y(em, i, -1);
                        }
                }
        }
 #endif
 
-       /*for(s16 x=0; x<sectorpos_base_size*MAP_BLOCKSIZE; x++)
-       for(s16 z=0; z<sectorpos_base_size*MAP_BLOCKSIZE; z++)*/
-       /*for(s16 x=0-max_spread_amount+1;
-                       x<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount-1;
+       /*for(s16 x=0; x<data->sectorpos_base_size*MAP_BLOCKSIZE; x++)
+       for(s16 z=0; z<data->sectorpos_base_size*MAP_BLOCKSIZE; z++)*/
+       /*for(s16 x=0-data->max_spread_amount+1;
+                       x<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount-1;
                        x++)
-       for(s16 z=0-max_spread_amount+1;
-                       z<sectorpos_base_size*MAP_BLOCKSIZE+max_spread_amount-1;
+       for(s16 z=0-data->max_spread_amount+1;
+                       z<data->sectorpos_base_size*MAP_BLOCKSIZE+data->max_spread_amount-1;
                        z++)*/
 #if 1
        /*
@@ -3397,7 +3323,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                        z++)
        {
                // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               v2s16 p2d = data->sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
                
                /*
                        Apply initial sunlight
@@ -3405,12 +3331,12 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                {
                        u8 light = LIGHT_SUN;
                        bool add_to_sources = false;
-                       v3s16 em = vmanip.m_area.getExtent();
+                       v3s16 em = data->vmanip.m_area.getExtent();
                        s16 y_start = y_nodes_max;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
+                       u32 i = data->vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
                        for(s16 y=y_start; y>=y_nodes_min; y--)
                        {
-                               MapNode *n = &vmanip.m_data[i];
+                               MapNode *n = &data->vmanip.m_data[i];
 
                                if(light_propagates_content(n->d) == false)
                                {
@@ -3440,8 +3366,8 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                        {
                                                v3s16 dirp = dirs4[di];
                                                u32 i2 = i;
-                                               vmanip.m_area.add_p(em, i2, dirp);
-                                               MapNode *n2 = &vmanip.m_data[i2];
+                                               data->vmanip.m_area.add_p(em, i2, dirp);
+                                               MapNode *n2 = &data->vmanip.m_data[i2];
                                                if(
                                                        n2->d != CONTENT_AIR
                                                        && n2->d != CONTENT_WATERSOURCE
@@ -3464,84 +3390,156 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                                }
                                
                                // Increment index by y
-                               vmanip.m_area.add_y(em, i, -1);
+                               data->vmanip.m_area.add_y(em, i, -1);
                        }
                }
        }
 #endif
 
-#if 0
-       for(s16 x=lighting_min_d+1;
-                       x<=lighting_max_d-1;
-                       x++)
-       for(s16 z=lighting_min_d+1;
-                       z<=lighting_max_d-1;
-                       z++)
+       }//timer1
+
+       // Spread light around
        {
-               // Node position in 2d
-               v2s16 p2d = sectorpos_base*MAP_BLOCKSIZE + v2s16(x,z);
+               TimeTaker timer("makeChunk() spreadLight");
+               data->vmanip.spreadLight(LIGHTBANK_DAY, light_sources);
+       }
+       
+       /*
+               Generation ended
+       */
+
+       timer_generate.stop();
+}
+
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+//###################################################################
+
+void ServerMap::initChunkMake(ChunkMakeData &data, v2s16 chunkpos)
+{
+       if(m_chunksize == 0)
+       {
+               data.no_op = true;
+               return;
+       }
+
+       data.no_op = false;
+
+       // The distance how far into the neighbors the generator is allowed to go.
+       s16 max_spread_amount_sectors = 2;
+       assert(max_spread_amount_sectors <= m_chunksize);
+       s16 max_spread_amount = max_spread_amount_sectors * MAP_BLOCKSIZE;
+
+       s16 y_blocks_min = -4;
+       s16 y_blocks_max = 3;
+
+       v2s16 sectorpos_base = chunk_to_sector(chunkpos);
+       s16 sectorpos_base_size = m_chunksize;
+
+       v2s16 sectorpos_bigbase =
+                       sectorpos_base - v2s16(1,1) * max_spread_amount_sectors;
+       s16 sectorpos_bigbase_size =
+                       sectorpos_base_size + 2 * max_spread_amount_sectors;
+                       
+       data.seed = m_seed;
+       data.chunkpos = chunkpos;
+       data.y_blocks_min = y_blocks_min;
+       data.y_blocks_max = y_blocks_max;
+       data.sectorpos_base = sectorpos_base;
+       data.sectorpos_base_size = sectorpos_base_size;
+       data.sectorpos_bigbase = sectorpos_bigbase;
+       data.sectorpos_bigbase_size = sectorpos_bigbase_size;
+       data.max_spread_amount = max_spread_amount;
+
+       /*
+               Create the whole area of this and the neighboring chunks
+       */
+       {
+               TimeTaker timer("initChunkMake() create area");
                
-               /*
-                       Apply initial sunlight
-               */
+               for(s16 x=0; x<sectorpos_bigbase_size; x++)
+               for(s16 z=0; z<sectorpos_bigbase_size; z++)
                {
-                       u8 light = LIGHT_SUN;
-                       v3s16 em = vmanip.m_area.getExtent();
-                       s16 y_start = y_nodes_max;
-                       u32 i = vmanip.m_area.index(v3s16(p2d.X, y_start, p2d.Y));
-                       for(s16 y=y_start; y>=y_nodes_min; y--)
+                       v2s16 sectorpos = sectorpos_bigbase + v2s16(x,z);
+                       ServerMapSector *sector = createSector(sectorpos);
+                       assert(sector);
+
+                       for(s16 y=y_blocks_min; y<=y_blocks_max; y++)
                        {
-                               MapNode *n = &vmanip.m_data[i];
+                               v3s16 blockpos(sectorpos.X, y, sectorpos.Y);
+                               MapBlock *block = createBlock(blockpos);
 
-                               if(light_propagates_content(n->d) == false)
-                               {
-                                       light = 0;
-                               }
-                               else if(light != LIGHT_SUN
-                                       || sunlight_propagates_content(n->d) == false)
-                               {
-                                       if(light > 0)
-                                               light--;
-                               }
-                               
-                               n->setLight(LIGHTBANK_DAY, light);
-                               n->setLight(LIGHTBANK_NIGHT, 0);
-                               
-                               // This doesn't take much time
-                               if(light != 0)
-                               {
-                                       // Insert light source
-                                       light_sources.insert(v3s16(p2d.X, y, p2d.Y), true);
-                               }
-                               
-                               // Increment index by y
-                               vmanip.m_area.add_y(em, i, -1);
+                               // Lighting won't be calculated
+                               //block->setLightingExpired(true);
+                               // Lighting will be calculated
+                               block->setLightingExpired(false);
+
+                               /*
+                                       Block gets sunlight if this is true.
+
+                                       This should be set to true when the top side of a block
+                                       is completely exposed to the sky.
+
+                                       Actually this doesn't matter now because the
+                                       initial lighting is done here.
+                               */
+                               block->setIsUnderground(y != y_blocks_max);
                        }
                }
        }
-#endif
-
-       }//timer1
+       
+       /*
+               Now we have a big empty area.
 
-       // Spread light around
+               Make a ManualMapVoxelManipulator that contains this and the
+               neighboring chunks
+       */
+       
+       v3s16 bigarea_blocks_min(
+               sectorpos_bigbase.X,
+               y_blocks_min,
+               sectorpos_bigbase.Y
+       );
+       v3s16 bigarea_blocks_max(
+               sectorpos_bigbase.X + sectorpos_bigbase_size - 1,
+               y_blocks_max,
+               sectorpos_bigbase.Y + sectorpos_bigbase_size - 1
+       );
+       
+       data.vmanip.setMap(this);
+       // Add the area
        {
-               TimeTaker timer("generateChunkRaw() spreadLight");
-               vmanip.spreadLight(LIGHTBANK_DAY, light_sources);
+               TimeTaker timer("initChunkMake() initialEmerge");
+               data.vmanip.initialEmerge(bigarea_blocks_min, bigarea_blocks_max);
        }
        
-       /*
-               Generation ended
-       */
-
-       timer_generate.stop();
+}
 
+MapChunk* ServerMap::finishChunkMake(ChunkMakeData &data,
+               core::map<v3s16, MapBlock*> &changed_blocks)
+{
+       if(data.no_op)
+               return NULL;
+       
        /*
                Blit generated stuff to map
        */
        {
                // 70ms @cs=8
                //TimeTaker timer("generateChunkRaw() blitBackAll");
-               vmanip.blitBackAll(&changed_blocks);
+               data.vmanip.blitBackAll(&changed_blocks);
        }
 
        /*
@@ -3556,7 +3554,35 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                }
        }
 
-       
+       /*
+               Copy transforming liquid information
+       */
+       while(data.transforming_liquid.size() > 0)
+       {
+               v3s16 p = data.transforming_liquid.pop_front();
+               m_transforming_liquid.push_back(p);
+       }
+
+       /*
+               Add random objects to blocks
+       */
+       {
+               for(s16 x=0; x<data.sectorpos_base_size; x++)
+               for(s16 z=0; z<data.sectorpos_base_size; z++)
+               {
+                       v2s16 sectorpos = data.sectorpos_base + v2s16(x,z);
+                       ServerMapSector *sector = createSector(sectorpos);
+                       assert(sector);
+
+                       for(s16 y=data.y_blocks_min; y<=data.y_blocks_max; y++)
+                       {
+                               v3s16 blockpos(sectorpos.X, y, sectorpos.Y);
+                               MapBlock *block = createBlock(blockpos);
+                               addRandomObjects(block);
+                       }
+               }
+       }
+
        /*
                Create chunk metadata
        */
@@ -3564,7 +3590,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        for(s16 x=-1; x<=1; x++)
        for(s16 y=-1; y<=1; y++)
        {
-               v2s16 chunkpos0 = chunkpos + v2s16(x,y);
+               v2s16 chunkpos0 = data.chunkpos + v2s16(x,y);
                // Add chunk meta information
                MapChunk *chunk = getChunk(chunkpos0);
                if(chunk == NULL)
@@ -3580,7 +3606,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        /*
                Set central chunk non-volatile
        */
-       MapChunk *chunk = getChunk(chunkpos);
+       MapChunk *chunk = getChunk(data.chunkpos);
        assert(chunk);
        // Set non-volatile
        //chunk->setIsVolatile(false);
@@ -3590,6 +3616,49 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
                Save changed parts of map
        */
        save(true);
+       
+       return chunk;
+}
+
+#if 0
+// NOTE: Deprecated
+MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
+               core::map<v3s16, MapBlock*> &changed_blocks,
+               bool force)
+{
+       DSTACK(__FUNCTION_NAME);
+
+       /*
+               Don't generate if already fully generated
+       */
+       if(force == false)
+       {
+               MapChunk *chunk = getChunk(chunkpos);
+               if(chunk != NULL && chunk->getGenLevel() == GENERATED_FULLY)
+               {
+                       dstream<<"generateChunkRaw(): Chunk "
+                                       <<"("<<chunkpos.X<<","<<chunkpos.Y<<")"
+                                       <<" already generated"<<std::endl;
+                       return chunk;
+               }
+       }
+
+       dstream<<"generateChunkRaw(): Generating chunk "
+                       <<"("<<chunkpos.X<<","<<chunkpos.Y<<")"
+                       <<std::endl;
+       
+       TimeTaker timer("generateChunkRaw()");
+
+       ChunkMakeData data;
+       
+       // Initialize generation
+       initChunkMake(data, chunkpos);
+       
+       // Generate stuff
+       makeChunk(&data);
+
+       // Finalize generation
+       MapChunk *chunk = finishChunkMake(data, changed_blocks);
 
        /*
                Return central chunk (which was requested)
@@ -3597,6 +3666,7 @@ MapChunk* ServerMap::generateChunkRaw(v2s16 chunkpos,
        return chunk;
 }
 
+// NOTE: Deprecated
 MapChunk* ServerMap::generateChunk(v2s16 chunkpos1,
                core::map<v3s16, MapBlock*> &changed_blocks)
 {
@@ -3622,6 +3692,7 @@ MapChunk* ServerMap::generateChunk(v2s16 chunkpos1,
        MapChunk *chunk = getChunk(chunkpos1);
        return chunk;
 }
+#endif
 
 ServerMapSector * ServerMap::createSector(v2s16 p2d)
 {
@@ -3676,6 +3747,7 @@ ServerMapSector * ServerMap::createSector(v2s16 p2d)
        return sector;
 }
 
+#if 0
 MapSector * ServerMap::emergeSector(v2s16 p2d,
                core::map<v3s16, MapBlock*> &changed_blocks)
 {
@@ -3762,6 +3834,7 @@ MapSector * ServerMap::emergeSector(v2s16 p2d,
        */
        //return generateSector();
 }
+#endif
 
 /*
        NOTE: This is not used for main map generation, only for blocks
@@ -3778,6 +3851,14 @@ MapBlock * ServerMap::generateBlock(
        DSTACK("%s: p=(%d,%d,%d)",
                        __FUNCTION_NAME,
                        p.X, p.Y, p.Z);
+
+       // If chunks are disabled
+       /*if(m_chunksize == 0)
+       {
+               dstream<<"ServerMap::generateBlock(): Chunks disabled -> "
+                               <<"not generating."<<std::endl;
+               return NULL;
+       }*/
        
        /*dstream<<"generateBlock(): "
                        <<"("<<p.X<<","<<p.Y<<","<<p.Z<<")"
@@ -3830,6 +3911,9 @@ MapBlock * ServerMap::generateBlock(
 
                s16 surface_y = base_rock_level_2d(m_seed, p2d_nodes+v2s16(x0,z0))
                                + AVERAGE_MUD_AMOUNT;
+               // If chunks are disabled
+               if(m_chunksize == 0)
+                       surface_y = WATER_LEVEL + 1;
 
                if(surface_y < lowest_ground_y)
                        lowest_ground_y = surface_y;
@@ -3875,7 +3959,7 @@ MapBlock * ServerMap::generateBlock(
                                else
                                        n.d = CONTENT_AIR;
                        }
-                       // Else it's ground or dungeons (air)
+                       // Else it's ground or caves (air)
                        else
                        {
                                // If it's surface_depth under ground, it's stone
@@ -3956,7 +4040,7 @@ MapBlock * ServerMap::generateBlock(
        //dstream<<"generateBlock(): Done"<<std::endl;
 
        /*
-               Generate dungeons
+               Generate caves
        */
 
        // Initialize temporary table
@@ -4094,36 +4178,36 @@ MapBlock * ServerMap::generateBlock(
 continue_generating:
                
                /*
-                       Choose whether to actually generate dungeon
+                       Choose whether to actually generate cave
                */
-               bool do_generate_dungeons = true;
+               bool do_generate_caves = true;
                // Don't generate if no part is underground
                if(!some_part_underground)
                {
-                       do_generate_dungeons = false;
+                       do_generate_caves = false;
                }
                // Don't generate if mostly underwater surface
                /*else if(mostly_underwater_surface)
                {
-                       do_generate_dungeons = false;
+                       do_generate_caves = false;
                }*/
                // Partly underground = cave
                else if(!completely_underground)
                {
-                       do_generate_dungeons = (rand() % 100 <= (s32)(caves_amount*100));
+                       do_generate_caves = (rand() % 100 <= (s32)(caves_amount*100));
                }
-               // Found existing dungeon underground
+               // Found existing cave underground
                else if(found_existing && completely_underground)
                {
-                       do_generate_dungeons = (rand() % 100 <= (s32)(caves_amount*100));
+                       do_generate_caves = (rand() % 100 <= (s32)(caves_amount*100));
                }
-               // Underground and no dungeons found
+               // Underground and no caves found
                else
                {
-                       do_generate_dungeons = (rand() % 300 <= (s32)(caves_amount*100));
+                       do_generate_caves = (rand() % 300 <= (s32)(caves_amount*100));
                }
 
-               if(do_generate_dungeons)
+               if(do_generate_caves)
                {
                        /*
                                Generate some tunnel starting from orp and ors
@@ -4175,7 +4259,7 @@ MapBlock * ServerMap::generateBlock(
 
        // Set to true if has caves.
        // Set when some non-air is changed to air when making caves.
-       bool has_dungeons = false;
+       bool has_caves = false;
 
        /*
                Apply temporary cave data to block
@@ -4188,7 +4272,7 @@ MapBlock * ServerMap::generateBlock(
                {
                        MapNode n = block->getNode(v3s16(x0,y0,z0));
 
-                       // Create dungeons
+                       // Create caves
                        if(underground_emptiness[
                                        ued*ued*(z0*ued/MAP_BLOCKSIZE)
                                        +ued*(y0*ued/MAP_BLOCKSIZE)
@@ -4197,7 +4281,7 @@ MapBlock * ServerMap::generateBlock(
                                if(content_features(n.d).walkable/*is_ground_content(n.d)*/)
                                {
                                        // Has now caves
-                                       has_dungeons = true;
+                                       has_caves = true;
                                        // Set air to node
                                        n.d = CONTENT_AIR;
                                }
@@ -4217,7 +4301,7 @@ MapBlock * ServerMap::generateBlock(
                Force lighting update if some part of block is partly
                underground and has caves.
        */
-       /*if(some_part_underground && !completely_underground && has_dungeons)
+       /*if(some_part_underground && !completely_underground && has_caves)
        {
                //dstream<<"Half-ground caves"<<std::endl;
                lighting_invalidated_blocks[block->getPos()] = block;
@@ -4362,11 +4446,11 @@ MapBlock * ServerMap::generateBlock(
        */
        dstream
        <<"lighting_invalidated_blocks.size()"
-       <<", has_dungeons"
+       <<", has_caves"
        <<", completely_ug"
        <<", some_part_ug"
        <<"  "<<lighting_invalidated_blocks.size()
-       <<", "<<has_dungeons
+       <<", "<<has_caves
        <<", "<<completely_underground
        <<", "<<some_part_underground
        <<std::endl;
@@ -4696,7 +4780,12 @@ void ServerMap::save(bool only_changed)
                                <<std::endl;
        
        saveMapMeta();
-       saveChunkMeta();
+
+       // Disable saving chunk metadata file if chunks are disabled
+       if(m_chunksize != 0)
+       {
+               saveChunkMeta();
+       }
        
        u32 sector_meta_count = 0;
        u32 block_count = 0;
@@ -4750,6 +4839,8 @@ void ServerMap::save(bool only_changed)
        }
 }
 
+#if 0
+// NOTE: Doing this is insane. Deprecated and probably broken.
 void ServerMap::loadAll()
 {
        DSTACK(__FUNCTION_NAME);
@@ -4810,6 +4901,7 @@ void ServerMap::loadAll()
        }
        dstream<<DTIME<<"ServerMap: Map loaded."<<std::endl;
 }
+#endif
 
 #if 0
 void ServerMap::saveMasterHeightmap()
@@ -4875,7 +4967,7 @@ void ServerMap::loadMapMeta()
 {
        DSTACK(__FUNCTION_NAME);
        
-       dstream<<"INFO: ServerMap::loadMapMeta(): Loading chunk metadata"
+       dstream<<"INFO: ServerMap::loadMapMeta(): Loading map metadata"
                        <<std::endl;
 
        std::string fullpath = m_savedir + "/map_meta.txt";
@@ -4884,7 +4976,7 @@ void ServerMap::loadMapMeta()
        {
                dstream<<"ERROR: ServerMap::loadMapMeta(): "
                                <<"could not open"<<fullpath<<std::endl;
-               throw FileNotGoodException("Cannot open chunk metadata");
+               throw FileNotGoodException("Cannot open map metadata");
        }
 
        Settings params;
@@ -4913,6 +5005,9 @@ void ServerMap::loadMapMeta()
 void ServerMap::saveChunkMeta()
 {
        DSTACK(__FUNCTION_NAME);
+
+       // This should not be called if chunks are disabled.
+       assert(m_chunksize != 0);
        
        u32 count = m_chunks.size();
 
@@ -5026,14 +5121,31 @@ MapSector* ServerMap::loadSectorMeta(std::string dirname)
        // Get destination
        v2s16 p2d = getSectorPos(dirname);
        std::string dir = m_savedir + "/sectors/" + dirname;
+
+       ServerMapSector *sector = NULL;
        
        std::string fullpath = dir + "/meta";
        std::ifstream is(fullpath.c_str(), std::ios_base::binary);
        if(is.good() == false)
-               throw FileNotGoodException("Cannot open sector metafile");
-
-       ServerMapSector *sector = ServerMapSector::deSerialize
-                       (is, this, p2d, m_sectors);
+       {
+               // If the directory exists anyway, it probably is in some old
+               // format. Just go ahead and create the sector.
+               if(fs::PathExists(dir))
+               {
+                       dstream<<"ServerMap::loadSectorMeta(): Sector metafile "
+                                       <<fullpath<<" doesn't exist but directory does."
+                                       <<" Continuing with a sector with no metadata."
+                                       <<std::endl;
+                       sector = createSector(p2d);
+               }
+               else
+                       throw FileNotGoodException("Cannot open sector metafile");
+       }
+       else
+       {
+               sector = ServerMapSector::deSerialize
+                               (is, this, p2d, m_sectors);
+       }
        
        sector->differs_from_disk = false;
 
@@ -5135,6 +5247,14 @@ void ServerMap::saveBlock(MapBlock *block)
                block->serializeObjects(o, version);
        }
        
+       /*
+               Versions up from 15 have static objects.
+       */
+       if(version >= 15)
+       {
+               block->m_static_objects.serialize(o);
+       }
+       
        // We just wrote it to the disk
        block->resetChangedFlag();
 }
@@ -5143,14 +5263,14 @@ void ServerMap::loadBlock(std::string sectordir, std::string blockfile, MapSecto
 {
        DSTACK(__FUNCTION_NAME);
 
+       // Block file is map/sectors/xxxxxxxx/xxxx
+       std::string fullpath = m_savedir+"/sectors/"+sectordir+"/"+blockfile;
        try{
 
-               // Block file is map/sectors/xxxxxxxx/xxxx
-               std::string fullpath = m_savedir+"/sectors/"+sectordir+"/"+blockfile;
                std::ifstream is(fullpath.c_str(), std::ios_base::binary);
                if(is.good() == false)
                        throw FileNotGoodException("Cannot open block file");
-
+               
                v3s16 p3d = getBlockPos(sectordir, blockfile);
                v2s16 p2d(p3d.X, p3d.Z);
                
@@ -5192,6 +5312,14 @@ void ServerMap::loadBlock(std::string sectordir, std::string blockfile, MapSecto
                        block->updateObjects(is, version, NULL, 0);
                }
 
+               /*
+                       Versions up from 15 have static objects.
+               */
+               if(version >= 15)
+               {
+                       block->m_static_objects.deSerialize(is);
+               }
+               
                if(created_new)
                        sector->insertBlock(block);
                
@@ -5215,6 +5343,8 @@ void ServerMap::loadBlock(std::string sectordir, std::string blockfile, MapSecto
                                "(SerializationError). Ignoring. "
                                "A new one will be generated."
                                <<std::endl;
+
+               // TODO: Backup file; name is in fullpath.
        }
 }