Skip to content

Commit

Permalink
Properly remove SAO when worldedges are overtaken (#5889)
Browse files Browse the repository at this point in the history
* LuaEntitySAO: Remove beyond outermost mapchunk edges

Based on a commit by, and with help from, nerzhul.
Add 2 functions to class Mapgen:
A function to calculate actual mapgen edges, called from the Mapgen constructor.
A function called indirectly from content_sao.cpp per entity step to check SAO
position is within mapgen edges.

* Calculate borders from params not mapgen, which is not available everytime
  • Loading branch information
nerzhul committed Jun 3, 2017
1 parent 72eec0f commit c6d5441
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 8 deletions.
14 changes: 14 additions & 0 deletions src/content_sao.cpp
Expand Up @@ -406,6 +406,20 @@ void LuaEntitySAO::step(float dtime, bool send_recommended)
m_env->getScriptIface()->luaentity_Step(m_id, dtime);
}

// Remove LuaEntity beyond terrain edges
{
ServerMap *map = dynamic_cast<ServerMap *>(&m_env->getMap());
assert(map);
if (!m_pending_deactivation &&
map->saoPositionOverLimit(m_base_position)) {
infostream << "Remove SAO " << m_id << "(" << m_init_name
<< "), outside of limits" << std::endl;
m_pending_deactivation = true;
m_removed = true;
return;
}
}

if(send_recommended == false)
return;

Expand Down
8 changes: 5 additions & 3 deletions src/map.cpp
Expand Up @@ -1378,6 +1378,11 @@ s16 ServerMap::getWaterLevel()
return getMapgenParams()->water_level;
}

bool ServerMap::saoPositionOverLimit(const v3f &p)
{
return getMapgenParams()->saoPosOverLimit(p);
}

bool ServerMap::blockpos_over_mapgen_limit(v3s16 p)
{
const s16 mapgen_limit_bp = rangelim(
Expand Down Expand Up @@ -1838,9 +1843,6 @@ MapBlock *ServerMap::getBlockOrEmerge(v3s16 p3d)
return block;
}

void ServerMap::prepareBlock(MapBlock *block) {
}

// N.B. This requires no synchronization, since data will not be modified unless
// the VoxelManipulator being updated belongs to the same thread.
void ServerMap::updateVManip(v3s16 pos)
Expand Down
5 changes: 2 additions & 3 deletions src/map.h
Expand Up @@ -377,6 +377,8 @@ class ServerMap : public Map
*/
ServerMapSector *createSector(v2s16 p);

bool saoPositionOverLimit(const v3f &p);

/*
Blocks are generated by using these and makeBlock().
*/
Expand Down Expand Up @@ -409,9 +411,6 @@ class ServerMap : public Map
*/
MapBlock *getBlockOrEmerge(v3s16 p3d);

// Carries out any initialization necessary before block is sent
void prepareBlock(MapBlock *block);

// Helper for placing objects on ground level
s16 findGroundLevel(v2s16 p2d);

Expand Down
52 changes: 51 additions & 1 deletion src/mapgen.cpp
Expand Up @@ -317,7 +317,6 @@ void Mapgen::updateHeightmap(v3s16 nmin, v3s16 nmax)
heightmap[index] = y;
}
}
//printf("updateHeightmap: %dus\n", t.stop());
}

inline bool Mapgen::isLiquidHorizontallyFlowable(u32 vi, v3s16 em)
Expand Down Expand Up @@ -1049,3 +1048,54 @@ void MapgenParams::writeParams(Settings *settings) const
if (bparams)
bparams->writeParams(settings);
}

// Calculate edges of outermost generated mapchunks (less than
// 'mapgen_limit'), and corresponding exact limits for SAO entities.
void MapgenParams::calcMapgenEdges()
{
// Central chunk offset, in blocks
s16 ccoff_b = -chunksize / 2;

// Chunksize, in nodes
s32 csize_n = chunksize * MAP_BLOCKSIZE;

// Minp/maxp of central chunk, in nodes
s16 ccmin = ccoff_b * MAP_BLOCKSIZE;
s16 ccmax = ccmin + csize_n - 1;
// Fullminp/fullmaxp of central chunk, in nodes
s16 ccfmin = ccmin - MAP_BLOCKSIZE;
s16 ccfmax = ccmax + MAP_BLOCKSIZE;
// Effective mapgen limit, in blocks
// Uses same calculation as ServerMap::blockpos_over_mapgen_limit(v3s16 p)
s16 mapgen_limit_b = rangelim(mapgen_limit,
0, MAX_MAP_GENERATION_LIMIT) / MAP_BLOCKSIZE;
// Effective mapgen limits, in nodes
s16 mapgen_limit_min = -mapgen_limit_b * MAP_BLOCKSIZE;
s16 mapgen_limit_max = (mapgen_limit_b + 1) * MAP_BLOCKSIZE - 1;
// Number of complete chunks from central chunk fullminp/fullmaxp
// to effective mapgen limits.
s16 numcmin = MYMAX((ccfmin - mapgen_limit_min) / csize_n, 0);
s16 numcmax = MYMAX((mapgen_limit_max - ccfmax) / csize_n, 0);
// Mapgen edges, in nodes
// These values may be useful later as additional class members
s16 mapgen_edge_min = ccmin - numcmin * csize_n;
s16 mapgen_edge_max = ccmax + numcmax * csize_n;
// SAO position limits, in Irrlicht units
m_sao_limit_min = mapgen_edge_min * BS - 3.0f;
m_sao_limit_max = mapgen_edge_max * BS + 3.0f;
}


bool MapgenParams::saoPosOverLimit(const v3f &p)
{
if (!m_sao_limit_calculated) {
calcMapgenEdges();
m_sao_limit_calculated = true;
}
return p.X < m_sao_limit_min ||
p.X > m_sao_limit_max ||
p.Y < m_sao_limit_min ||
p.Y > m_sao_limit_max ||
p.Z < m_sao_limit_min ||
p.Z > m_sao_limit_max;
}
13 changes: 12 additions & 1 deletion src/mapgen.h
Expand Up @@ -138,14 +138,25 @@ struct MapgenParams {
water_level(1),
mapgen_limit(MAX_MAP_GENERATION_LIMIT),
flags(MG_CAVES | MG_LIGHT | MG_DECORATIONS),
bparams(NULL)
bparams(NULL),
m_sao_limit_min(MAX_MAP_GENERATION_LIMIT * BS),
m_sao_limit_max(MAX_MAP_GENERATION_LIMIT * BS),
m_sao_limit_calculated(false)
{
}

virtual ~MapgenParams();

virtual void readParams(const Settings *settings);
virtual void writeParams(Settings *settings) const;

bool saoPosOverLimit(const v3f &p);
private:
void calcMapgenEdges();

float m_sao_limit_min;
float m_sao_limit_max;
bool m_sao_limit_calculated;
};


Expand Down

0 comments on commit c6d5441

Please sign in to comment.