2013-06-25 17:02:02 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "lua_api/l_vmanip.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "lua_api/l_internal.h"
|
2014-09-01 23:33:21 +02:00
|
|
|
#include "common/c_content.h"
|
2013-06-25 17:02:02 +02:00
|
|
|
#include "common/c_converter.h"
|
|
|
|
#include "emerge.h"
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "environment.h"
|
|
|
|
#include "map.h"
|
|
|
|
#include "server.h"
|
|
|
|
#include "mapgen.h"
|
2013-06-25 17:02:02 +02:00
|
|
|
|
2014-09-01 23:33:21 +02:00
|
|
|
#define GET_ENV_PTR ServerEnvironment* env = \
|
|
|
|
dynamic_cast<ServerEnvironment*>(getEnv(L)); \
|
|
|
|
if (env == NULL) return 0
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
// garbage collector
|
|
|
|
int LuaVoxelManip::gc_object(lua_State *L)
|
|
|
|
{
|
|
|
|
LuaVoxelManip *o = *(LuaVoxelManip **)(lua_touserdata(L, 1));
|
2014-07-30 03:39:24 +02:00
|
|
|
delete o;
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-28 03:12:44 +02:00
|
|
|
int LuaVoxelManip::l_read_from_map(lua_State *L)
|
2013-06-25 17:02:02 +02:00
|
|
|
{
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-04-17 07:03:13 +02:00
|
|
|
v3s16 bp1 = getNodeBlockPos(check_v3s16(L, 2));
|
|
|
|
v3s16 bp2 = getNodeBlockPos(check_v3s16(L, 3));
|
2013-06-25 17:02:02 +02:00
|
|
|
sortBoxVerticies(bp1, bp2);
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
vm->initialEmerge(bp1, bp2);
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-28 03:12:44 +02:00
|
|
|
push_v3s16(L, vm->m_area.MinEdge);
|
|
|
|
push_v3s16(L, vm->m_area.MaxEdge);
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-28 03:12:44 +02:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_get_data(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-05-17 06:07:45 +02:00
|
|
|
bool use_buffer = lua_istable(L, 2);
|
|
|
|
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
u32 volume = vm->m_area.getVolume();
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
if (use_buffer)
|
|
|
|
lua_pushvalue(L, 2);
|
|
|
|
else
|
|
|
|
lua_newtable(L);
|
|
|
|
|
|
|
|
for (u32 i = 0; i != volume; i++) {
|
2013-06-28 03:12:44 +02:00
|
|
|
lua_Integer cid = vm->m_data[i].getContent();
|
|
|
|
lua_pushinteger(L, cid);
|
2013-06-25 17:02:02 +02:00
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-28 03:12:44 +02:00
|
|
|
return 1;
|
2013-06-25 17:02:02 +02:00
|
|
|
}
|
|
|
|
|
2013-06-28 03:12:44 +02:00
|
|
|
int LuaVoxelManip::l_set_data(lua_State *L)
|
2013-06-25 17:02:02 +02:00
|
|
|
{
|
2013-06-28 03:12:44 +02:00
|
|
|
NO_MAP_LOCK_REQUIRED;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
if (!lua_istable(L, 2))
|
|
|
|
return 0;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
u32 volume = vm->m_area.getVolume();
|
|
|
|
for (u32 i = 0; i != volume; i++) {
|
2013-06-25 17:02:02 +02:00
|
|
|
lua_rawgeti(L, 2, i + 1);
|
2013-06-28 04:33:31 +02:00
|
|
|
content_t c = lua_tointeger(L, -1);
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
vm->m_data[i].setContent(c);
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-28 03:12:44 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_write_to_map(lua_State *L)
|
|
|
|
{
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2013-06-25 17:02:02 +02:00
|
|
|
|
|
|
|
vm->blitBackAll(&o->modified_blocks);
|
2013-06-28 03:12:44 +02:00
|
|
|
|
2014-07-30 03:39:24 +02:00
|
|
|
return 0;
|
2013-06-25 17:02:02 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 23:33:21 +02:00
|
|
|
int LuaVoxelManip::l_get_node_at(lua_State *L)
|
2013-06-25 17:02:02 +02:00
|
|
|
{
|
2014-09-01 23:33:21 +02:00
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
GET_ENV_PTR;
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-04-17 07:03:13 +02:00
|
|
|
v3s16 pos = check_v3s16(L, 2);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
2014-09-01 23:33:21 +02:00
|
|
|
pushnode(L, o->vm->getNodeNoExNoEmerge(pos), env->getGameDef()->ndef());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_set_node_at(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
GET_ENV_PTR;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-04-17 07:03:13 +02:00
|
|
|
v3s16 pos = check_v3s16(L, 2);
|
2014-09-01 23:33:21 +02:00
|
|
|
MapNode n = readnode(L, 3, env->getGameDef()->ndef());
|
|
|
|
|
|
|
|
o->vm->setNodeNoEmerge(pos, n);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_update_liquids(lua_State *L)
|
|
|
|
{
|
|
|
|
GET_ENV_PTR;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2013-08-11 04:09:45 +02:00
|
|
|
|
|
|
|
Map *map = &(env->getMap());
|
|
|
|
INodeDefManager *ndef = getServer(L)->getNodeDefManager();
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2013-06-25 17:02:02 +02:00
|
|
|
|
|
|
|
Mapgen mg;
|
|
|
|
mg.vm = vm;
|
|
|
|
mg.ndef = ndef;
|
|
|
|
|
|
|
|
mg.updateLiquid(&map->m_transforming_liquid,
|
|
|
|
vm->m_area.MinEdge, vm->m_area.MaxEdge);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_calc_lighting(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2013-06-30 04:22:25 +02:00
|
|
|
if (!o->is_mapgen_vm)
|
|
|
|
return 0;
|
2013-11-30 06:27:39 +01:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
INodeDefManager *ndef = getServer(L)->getNodeDefManager();
|
|
|
|
EmergeManager *emerge = getServer(L)->getEmergeManager();
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2013-06-30 04:22:25 +02:00
|
|
|
|
2015-01-05 07:18:53 +01:00
|
|
|
v3s16 yblock = v3s16(0, 1, 0) * MAP_BLOCKSIZE;
|
|
|
|
v3s16 fpmin = vm->m_area.MinEdge;
|
|
|
|
v3s16 fpmax = vm->m_area.MaxEdge;
|
2015-04-17 07:03:13 +02:00
|
|
|
v3s16 pmin = lua_istable(L, 2) ? check_v3s16(L, 2) : fpmin + yblock;
|
|
|
|
v3s16 pmax = lua_istable(L, 3) ? check_v3s16(L, 3) : fpmax - yblock;
|
2015-01-05 07:18:53 +01:00
|
|
|
|
|
|
|
sortBoxVerticies(pmin, pmax);
|
|
|
|
if (!vm->m_area.contains(VoxelArea(pmin, pmax)))
|
2015-01-04 09:07:28 +01:00
|
|
|
throw LuaError("Specified voxel area out of VoxelManipulator bounds");
|
2013-11-30 06:27:39 +01:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
Mapgen mg;
|
|
|
|
mg.vm = vm;
|
|
|
|
mg.ndef = ndef;
|
2014-02-04 04:42:10 +01:00
|
|
|
mg.water_level = emerge->params.water_level;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-01-05 07:18:53 +01:00
|
|
|
mg.calcLighting(pmin, pmax, fpmin, fpmax);
|
2013-06-25 17:02:02 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_set_lighting(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2013-06-30 04:22:25 +02:00
|
|
|
if (!o->is_mapgen_vm)
|
|
|
|
return 0;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-30 04:22:25 +02:00
|
|
|
if (!lua_istable(L, 2))
|
2013-06-25 17:02:02 +02:00
|
|
|
return 0;
|
|
|
|
|
2013-06-30 04:22:25 +02:00
|
|
|
u8 light;
|
2013-11-21 06:45:17 +01:00
|
|
|
light = (getintfield_default(L, 2, "day", 0) & 0x0F);
|
2013-11-30 06:27:39 +01:00
|
|
|
light |= (getintfield_default(L, 2, "night", 0) & 0x0F) << 4;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-01-05 07:18:53 +01:00
|
|
|
v3s16 yblock = v3s16(0, 1, 0) * MAP_BLOCKSIZE;
|
2015-04-17 07:03:13 +02:00
|
|
|
v3s16 pmin = lua_istable(L, 3) ? check_v3s16(L, 3) : vm->m_area.MinEdge + yblock;
|
|
|
|
v3s16 pmax = lua_istable(L, 4) ? check_v3s16(L, 4) : vm->m_area.MaxEdge - yblock;
|
2015-01-05 07:18:53 +01:00
|
|
|
|
|
|
|
sortBoxVerticies(pmin, pmax);
|
|
|
|
if (!vm->m_area.contains(VoxelArea(pmin, pmax)))
|
2015-01-04 09:07:28 +01:00
|
|
|
throw LuaError("Specified voxel area out of VoxelManipulator bounds");
|
2013-11-30 06:27:39 +01:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
Mapgen mg;
|
|
|
|
mg.vm = vm;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2015-01-05 07:18:53 +01:00
|
|
|
mg.setLighting(light, pmin, pmax);
|
2013-06-25 17:02:02 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-30 03:16:08 +01:00
|
|
|
int LuaVoxelManip::l_get_light_data(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2013-11-30 03:16:08 +01:00
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
u32 volume = vm->m_area.getVolume();
|
2013-11-30 03:16:08 +01:00
|
|
|
|
|
|
|
lua_newtable(L);
|
2015-05-17 06:07:45 +02:00
|
|
|
for (u32 i = 0; i != volume; i++) {
|
2013-11-30 03:16:08 +01:00
|
|
|
lua_Integer light = vm->m_data[i].param1;
|
|
|
|
lua_pushinteger(L, light);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_set_light_data(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2013-11-30 03:16:08 +01:00
|
|
|
|
|
|
|
if (!lua_istable(L, 2))
|
|
|
|
return 0;
|
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
u32 volume = vm->m_area.getVolume();
|
|
|
|
for (u32 i = 0; i != volume; i++) {
|
2013-11-30 03:16:08 +01:00
|
|
|
lua_rawgeti(L, 2, i + 1);
|
|
|
|
u8 light = lua_tointeger(L, -1);
|
|
|
|
|
|
|
|
vm->m_data[i].param1 = light;
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-19 08:55:34 +01:00
|
|
|
int LuaVoxelManip::l_get_param2_data(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-01-19 08:55:34 +01:00
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
u32 volume = vm->m_area.getVolume();
|
2014-01-19 08:55:34 +01:00
|
|
|
|
|
|
|
lua_newtable(L);
|
2015-05-17 06:07:45 +02:00
|
|
|
for (u32 i = 0; i != volume; i++) {
|
2014-01-19 08:55:34 +01:00
|
|
|
lua_Integer param2 = vm->m_data[i].param2;
|
|
|
|
lua_pushinteger(L, param2);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaVoxelManip::l_set_param2_data(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-01-19 08:55:34 +01:00
|
|
|
|
|
|
|
if (!lua_istable(L, 2))
|
|
|
|
return 0;
|
|
|
|
|
2015-05-17 06:07:45 +02:00
|
|
|
u32 volume = vm->m_area.getVolume();
|
|
|
|
for (u32 i = 0; i != volume; i++) {
|
2014-01-19 08:55:34 +01:00
|
|
|
lua_rawgeti(L, 2, i + 1);
|
|
|
|
u8 param2 = lua_tointeger(L, -1);
|
|
|
|
|
|
|
|
vm->m_data[i].param2 = param2;
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
int LuaVoxelManip::l_update_map(lua_State *L)
|
|
|
|
{
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2013-06-30 04:22:25 +02:00
|
|
|
if (o->is_mapgen_vm)
|
|
|
|
return 0;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
Environment *env = getEnv(L);
|
|
|
|
if (!env)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
Map *map = &(env->getMap());
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
// TODO: Optimize this by using Mapgen::calcLighting() instead
|
|
|
|
std::map<v3s16, MapBlock *> lighting_mblocks;
|
|
|
|
std::map<v3s16, MapBlock *> *mblocks = &o->modified_blocks;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
lighting_mblocks.insert(mblocks->begin(), mblocks->end());
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
map->updateLighting(lighting_mblocks, *mblocks);
|
|
|
|
|
|
|
|
MapEditEvent event;
|
|
|
|
event.type = MEET_OTHER;
|
|
|
|
for (std::map<v3s16, MapBlock *>::iterator
|
|
|
|
it = mblocks->begin();
|
|
|
|
it != mblocks->end(); ++it)
|
|
|
|
event.modified_blocks.insert(it->first);
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
map->dispatchEvent(&event);
|
|
|
|
|
|
|
|
mblocks->clear();
|
|
|
|
|
2014-07-30 03:39:24 +02:00
|
|
|
return 0;
|
2013-06-25 17:02:02 +02:00
|
|
|
}
|
|
|
|
|
2014-09-01 20:20:31 +02:00
|
|
|
int LuaVoxelManip::l_was_modified(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
|
|
|
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
2015-01-05 08:42:27 +01:00
|
|
|
MMVManip *vm = o->vm;
|
2014-09-01 20:20:31 +02:00
|
|
|
|
|
|
|
lua_pushboolean(L, vm->m_is_dirty);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-12-28 05:09:36 +01:00
|
|
|
int LuaVoxelManip::l_get_emerged_area(lua_State *L)
|
|
|
|
{
|
|
|
|
LuaVoxelManip *o = checkobject(L, 1);
|
|
|
|
|
|
|
|
push_v3s16(L, o->vm->m_area.MinEdge);
|
|
|
|
push_v3s16(L, o->vm->m_area.MaxEdge);
|
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2015-01-05 08:42:27 +01:00
|
|
|
LuaVoxelManip::LuaVoxelManip(MMVManip *mmvm, bool is_mg_vm)
|
2013-06-26 23:19:39 +02:00
|
|
|
{
|
2013-06-30 04:22:25 +02:00
|
|
|
this->vm = mmvm;
|
|
|
|
this->is_mapgen_vm = is_mg_vm;
|
2013-06-26 23:19:39 +02:00
|
|
|
}
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
LuaVoxelManip::LuaVoxelManip(Map *map)
|
|
|
|
{
|
2015-01-05 08:42:27 +01:00
|
|
|
this->vm = new MMVManip(map);
|
2013-06-30 04:22:25 +02:00
|
|
|
this->is_mapgen_vm = false;
|
2013-06-25 17:02:02 +02:00
|
|
|
}
|
|
|
|
|
2014-12-29 07:31:37 +01:00
|
|
|
LuaVoxelManip::LuaVoxelManip(Map *map, v3s16 p1, v3s16 p2)
|
|
|
|
{
|
2015-01-05 08:42:27 +01:00
|
|
|
this->vm = new MMVManip(map);
|
2014-12-29 07:31:37 +01:00
|
|
|
this->is_mapgen_vm = false;
|
|
|
|
|
|
|
|
v3s16 bp1 = getNodeBlockPos(p1);
|
|
|
|
v3s16 bp2 = getNodeBlockPos(p2);
|
|
|
|
sortBoxVerticies(bp1, bp2);
|
|
|
|
vm->initialEmerge(bp1, bp2);
|
|
|
|
}
|
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
LuaVoxelManip::~LuaVoxelManip()
|
|
|
|
{
|
2014-07-30 03:39:24 +02:00
|
|
|
if (!is_mapgen_vm)
|
|
|
|
delete vm;
|
2013-06-25 17:02:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// LuaVoxelManip()
|
|
|
|
// Creates an LuaVoxelManip and leaves it on top of stack
|
|
|
|
int LuaVoxelManip::create_object(lua_State *L)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
Environment *env = getEnv(L);
|
2013-06-28 04:33:31 +02:00
|
|
|
if (!env)
|
|
|
|
return 0;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-28 04:33:31 +02:00
|
|
|
Map *map = &(env->getMap());
|
2014-12-29 07:31:37 +01:00
|
|
|
LuaVoxelManip *o = (lua_istable(L, 1) && lua_istable(L, 2)) ?
|
2015-04-17 07:03:13 +02:00
|
|
|
new LuaVoxelManip(map, check_v3s16(L, 1), check_v3s16(L, 2)) :
|
2014-12-29 07:31:37 +01:00
|
|
|
new LuaVoxelManip(map);
|
2014-12-28 05:09:36 +01:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
*(void **)(lua_newuserdata(L, sizeof(void *))) = o;
|
|
|
|
luaL_getmetatable(L, className);
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
LuaVoxelManip *LuaVoxelManip::checkobject(lua_State *L, int narg)
|
|
|
|
{
|
|
|
|
NO_MAP_LOCK_REQUIRED;
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
luaL_checktype(L, narg, LUA_TUSERDATA);
|
|
|
|
|
|
|
|
void *ud = luaL_checkudata(L, narg, className);
|
|
|
|
if (!ud)
|
|
|
|
luaL_typerror(L, narg, className);
|
2014-07-30 03:39:24 +02:00
|
|
|
|
2013-06-25 17:02:02 +02:00
|
|
|
return *(LuaVoxelManip **)ud; // unbox pointer
|
|
|
|
}
|
|
|
|
|
|
|
|
void LuaVoxelManip::Register(lua_State *L)
|
|
|
|
{
|
|
|
|
lua_newtable(L);
|
|
|
|
int methodtable = lua_gettop(L);
|
|
|
|
luaL_newmetatable(L, className);
|
|
|
|
int metatable = lua_gettop(L);
|
|
|
|
|
|
|
|
lua_pushliteral(L, "__metatable");
|
|
|
|
lua_pushvalue(L, methodtable);
|
|
|
|
lua_settable(L, metatable); // hide metatable from Lua getmetatable()
|
|
|
|
|
|
|
|
lua_pushliteral(L, "__index");
|
|
|
|
lua_pushvalue(L, methodtable);
|
|
|
|
lua_settable(L, metatable);
|
|
|
|
|
|
|
|
lua_pushliteral(L, "__gc");
|
|
|
|
lua_pushcfunction(L, gc_object);
|
|
|
|
lua_settable(L, metatable);
|
|
|
|
|
|
|
|
lua_pop(L, 1); // drop metatable
|
|
|
|
|
|
|
|
luaL_openlib(L, 0, methods, 0); // fill methodtable
|
|
|
|
lua_pop(L, 1); // drop methodtable
|
|
|
|
|
2013-08-11 04:09:45 +02:00
|
|
|
// Can be created from Lua (VoxelManip())
|
2013-06-25 17:02:02 +02:00
|
|
|
lua_register(L, className, create_object);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char LuaVoxelManip::className[] = "VoxelManip";
|
|
|
|
const luaL_reg LuaVoxelManip::methods[] = {
|
2013-06-28 03:12:44 +02:00
|
|
|
luamethod(LuaVoxelManip, read_from_map),
|
|
|
|
luamethod(LuaVoxelManip, get_data),
|
|
|
|
luamethod(LuaVoxelManip, set_data),
|
2014-09-01 23:33:21 +02:00
|
|
|
luamethod(LuaVoxelManip, get_node_at),
|
|
|
|
luamethod(LuaVoxelManip, set_node_at),
|
2013-06-28 03:12:44 +02:00
|
|
|
luamethod(LuaVoxelManip, write_to_map),
|
2013-06-25 17:02:02 +02:00
|
|
|
luamethod(LuaVoxelManip, update_map),
|
|
|
|
luamethod(LuaVoxelManip, update_liquids),
|
|
|
|
luamethod(LuaVoxelManip, calc_lighting),
|
|
|
|
luamethod(LuaVoxelManip, set_lighting),
|
2013-11-30 03:16:08 +01:00
|
|
|
luamethod(LuaVoxelManip, get_light_data),
|
|
|
|
luamethod(LuaVoxelManip, set_light_data),
|
2014-01-19 08:55:34 +01:00
|
|
|
luamethod(LuaVoxelManip, get_param2_data),
|
|
|
|
luamethod(LuaVoxelManip, set_param2_data),
|
2014-09-01 20:20:31 +02:00
|
|
|
luamethod(LuaVoxelManip, was_modified),
|
2014-12-28 05:09:36 +01:00
|
|
|
luamethod(LuaVoxelManip, get_emerged_area),
|
2013-06-25 17:02:02 +02:00
|
|
|
{0,0}
|
|
|
|
};
|