Navigation Menu

Skip to content

Commit

Permalink
LuaVoxelManip: Remove blank allocator
Browse files Browse the repository at this point in the history
  • Loading branch information
kwolekr committed Dec 29, 2014
1 parent 3c637b4 commit cc3ab5e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 46 deletions.
4 changes: 2 additions & 2 deletions doc/lua_api.txt
Expand Up @@ -1613,7 +1613,7 @@ minetest.get_perlin(seeddiff, octaves, persistence, scale)
minetest.get_voxel_manip()
^ Return voxel manipulator object
minetest.get_voxel_manip(p1, p2)
^ Return voxel manipulator object with blank data preallocated
^ Return voxel manipulator object with map pre-loaded
minetest.set_gen_notify(flags, {deco_ids})
^ Set the types of on-generate notifications that should be collected
^ flags is a flag field with the available flags:
Expand Down Expand Up @@ -2215,7 +2215,7 @@ methods:
VoxelManip: An interface to the MapVoxelManipulator for Lua
- Can be created via VoxelManip()
- Also minetest.get_voxel_manip()
- Specify a pmin, pmax in either to allocate a blank chunk of data prefilled with cignore
- Specify a pmin, pmax to create a VoxelManip with map already loaded
methods:
- read_from_map(p1, p2): Reads a chunk of map from the map containing the region formed by p1 and p2.
^ returns actual emerged pmin, actual emerged pmax
Expand Down
23 changes: 0 additions & 23 deletions src/map.cpp
Expand Up @@ -3597,29 +3597,6 @@ ManualMapVoxelManipulator::~ManualMapVoxelManipulator()
{
}

void ManualMapVoxelManipulator::initializeBlank(v3s16 blockpos_min,
v3s16 blockpos_max)
{
// Units of these are MapBlocks
v3s16 pmin = blockpos_min;
v3s16 pmax = blockpos_max;

VoxelArea block_area_nodes(pmin * MAP_BLOCKSIZE,
(pmax + 1) * MAP_BLOCKSIZE - v3s16(1,1,1));

addArea(block_area_nodes);
u32 extent = m_area.getVolume();
for (u32 i = 0; i != extent; i++)
m_data[i] = MapNode(CONTENT_IGNORE);

for (s32 z = pmin.Z; z <= pmax.Z; z++)
for (s32 y = pmin.Y; y <= pmax.Y; y++)
for (s32 x = pmin.X; x <= pmax.X; x++)
m_loaded_blocks[v3s16(x, y, z)] = 0;

m_is_dirty = false;
}

void ManualMapVoxelManipulator::initialEmerge(v3s16 blockpos_min,
v3s16 blockpos_max, bool load_if_inexistent)
{
Expand Down
4 changes: 1 addition & 3 deletions src/map.h
Expand Up @@ -189,7 +189,7 @@ class Map /*: public NodeContainer*/
MapBlock * getBlockNoCreateNoEx(v3s16 p);

/* Server overrides */
virtual MapBlock * emergeBlock(v3s16 p, bool allow_generate=true)
virtual MapBlock * emergeBlock(v3s16 p, bool create_blank=true)
{ return getBlockNoCreateNoEx(p); }

// Returns InvalidPositionException if not found
Expand Down Expand Up @@ -550,8 +550,6 @@ class ManualMapVoxelManipulator : public VoxelManipulator
void setMap(Map *map)
{m_map = map;}

void initializeBlank(v3s16 pmin, v3s16 pmax);

void initialEmerge(v3s16 blockpos_min, v3s16 blockpos_max,
bool load_if_inexistent = true);

Expand Down
11 changes: 3 additions & 8 deletions src/script/lua_api/l_env.cpp
Expand Up @@ -636,14 +636,9 @@ int ModApiEnvMod::l_get_voxel_manip(lua_State *L)
GET_ENV_PTR;

Map *map = &(env->getMap());
LuaVoxelManip *o = new LuaVoxelManip(map);

if (lua_istable(L, 1) && lua_istable(L, 2)) {
v3s16 p1 = getNodeBlockPos(read_v3s16(L, 1));
v3s16 p2 = getNodeBlockPos(read_v3s16(L, 2));
sortBoxVerticies(p1, p2);
o->vm->initializeBlank(p1, p2);
}
LuaVoxelManip *o = (lua_istable(L, 1) && lua_istable(L, 2)) ?
new LuaVoxelManip(map, read_v3s16(L, 1), read_v3s16(L, 2)) :
new LuaVoxelManip(map);

*(void **)(lua_newuserdata(L, sizeof(void *))) = o;
luaL_getmetatable(L, "VoxelManip");
Expand Down
22 changes: 14 additions & 8 deletions src/script/lua_api/l_vmanip.cpp
Expand Up @@ -367,6 +367,17 @@ LuaVoxelManip::LuaVoxelManip(Map *map)
this->is_mapgen_vm = false;
}

LuaVoxelManip::LuaVoxelManip(Map *map, v3s16 p1, v3s16 p2)
{
this->vm = new ManualMapVoxelManipulator(map);
this->is_mapgen_vm = false;

v3s16 bp1 = getNodeBlockPos(p1);
v3s16 bp2 = getNodeBlockPos(p2);
sortBoxVerticies(bp1, bp2);
vm->initialEmerge(bp1, bp2);
}

LuaVoxelManip::~LuaVoxelManip()
{
if (!is_mapgen_vm)
Expand All @@ -384,14 +395,9 @@ int LuaVoxelManip::create_object(lua_State *L)
return 0;

Map *map = &(env->getMap());
LuaVoxelManip *o = new LuaVoxelManip(map);

if (lua_istable(L, 1) && lua_istable(L, 2)) {
v3s16 p1 = getNodeBlockPos(read_v3s16(L, 1));
v3s16 p2 = getNodeBlockPos(read_v3s16(L, 2));
sortBoxVerticies(p1, p2);
o->vm->initializeBlank(p1, p2);
}
LuaVoxelManip *o = (lua_istable(L, 1) && lua_istable(L, 2)) ?
new LuaVoxelManip(map, read_v3s16(L, 1), read_v3s16(L, 2)) :
new LuaVoxelManip(map);

*(void **)(lua_newuserdata(L, sizeof(void *))) = o;
luaL_getmetatable(L, className);
Expand Down
4 changes: 2 additions & 2 deletions src/script/lua_api/l_vmanip.h
Expand Up @@ -33,6 +33,7 @@ class ManualMapVoxelManipulator;
*/
class LuaVoxelManip : public ModApiBase {
private:
ManualMapVoxelManipulator *vm;
std::map<v3s16, MapBlock *> modified_blocks;
bool is_mapgen_vm;

Expand Down Expand Up @@ -64,9 +65,8 @@ class LuaVoxelManip : public ModApiBase {
static int l_get_emerged_area(lua_State *L);

public:
ManualMapVoxelManipulator *vm;

LuaVoxelManip(ManualMapVoxelManipulator *mmvm, bool is_mapgen_vm);
LuaVoxelManip(Map *map, v3s16 p1, v3s16 p2);
LuaVoxelManip(Map *map);
~LuaVoxelManip();

Expand Down

0 comments on commit cc3ab5e

Please sign in to comment.