summaryrefslogtreecommitdiff
path: root/src/mapblock.h
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2016-12-27 17:00:47 +0000
committerparamat <mat.gregory@virginmedia.com>2017-01-08 21:18:11 +0000
commitddcf8422a229c4965233177f6315847a6773a20c (patch)
treeb4efae7121aa912c36b8b9184bfbabcaf6979604 /src/mapblock.h
parent1fee649f1586c39510169f4dbc84b6c7aed12cfd (diff)
downloadminetest-ddcf8422a229c4965233177f6315847a6773a20c.tar.gz
minetest-ddcf8422a229c4965233177f6315847a6773a20c.tar.bz2
minetest-ddcf8422a229c4965233177f6315847a6773a20c.zip
Map generation limit: Fix checks for block/sector over-limit
Fix the maths that check if any part of a mapblock or sector is over the set map_generation_limit. Therefore avoid the loading of any over-limit blocks that were previously generated when map_generation_limit was larger. The set limit can vary for a world because it is not yet a per-world mapgen parameter, even when it is sometimes it will be changed deliberately. Therefore avoid a player being returned to world centre if they re-enter a world while being over-limit. Fix the createSector() crash caused by a mob spawning over-limit in an over-limit mapblock
Diffstat (limited to 'src/mapblock.h')
-rw-r--r--src/mapblock.h29
1 files changed, 20 insertions, 9 deletions
diff --git a/src/mapblock.h b/src/mapblock.h
index c737b4c37..d46b7b880 100644
--- a/src/mapblock.h
+++ b/src/mapblock.h
@@ -656,23 +656,34 @@ inline bool objectpos_over_limit(v3f p)
const static float map_gen_limit_bs = MYMIN(MAX_MAP_GENERATION_LIMIT,
g_settings->getU16("map_generation_limit")) * BS;
return (p.X < -map_gen_limit_bs
- || p.X > map_gen_limit_bs
+ || p.X > map_gen_limit_bs
|| p.Y < -map_gen_limit_bs
- || p.Y > map_gen_limit_bs
+ || p.Y > map_gen_limit_bs
|| p.Z < -map_gen_limit_bs
- || p.Z > map_gen_limit_bs);
+ || p.Z > map_gen_limit_bs);
}
+/*
+ We are checking for any node of the mapblock being beyond the limit.
+
+ At the negative limit we are checking for
+ block minimum nodepos < -mapgenlimit.
+ At the positive limit we are checking for
+ block maximum nodepos > mapgenlimit.
+
+ Block minimum nodepos = blockpos * mapblocksize.
+ Block maximum nodepos = (blockpos + 1) * mapblocksize - 1.
+*/
inline bool blockpos_over_limit(v3s16 p)
{
const static u16 map_gen_limit = MYMIN(MAX_MAP_GENERATION_LIMIT,
g_settings->getU16("map_generation_limit"));
- return (p.X < -map_gen_limit / MAP_BLOCKSIZE
- || p.X > map_gen_limit / MAP_BLOCKSIZE
- || p.Y < -map_gen_limit / MAP_BLOCKSIZE
- || p.Y > map_gen_limit / MAP_BLOCKSIZE
- || p.Z < -map_gen_limit / MAP_BLOCKSIZE
- || p.Z > map_gen_limit / MAP_BLOCKSIZE);
+ return (p.X * MAP_BLOCKSIZE < -map_gen_limit
+ || (p.X + 1) * MAP_BLOCKSIZE - 1 > map_gen_limit
+ || p.Y * MAP_BLOCKSIZE < -map_gen_limit
+ || (p.Y + 1) * MAP_BLOCKSIZE - 1 > map_gen_limit
+ || p.Z * MAP_BLOCKSIZE < -map_gen_limit
+ || (p.Z + 1) * MAP_BLOCKSIZE - 1 > map_gen_limit);
}
/*