2015-07-11 02:24:00 +02:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2015 est31 <mtest31@outlook.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2015-07-11 02:24:00 +02:00
|
|
|
|
|
|
|
#include "lua_api/l_base.h"
|
|
|
|
|
2015-10-30 04:26:03 +01:00
|
|
|
class AreaStore;
|
|
|
|
|
2017-04-07 23:22:00 +02:00
|
|
|
class LuaAreaStore : public ModApiBase
|
|
|
|
{
|
2015-07-11 02:24:00 +02:00
|
|
|
private:
|
|
|
|
static const char className[];
|
2017-04-08 09:28:37 +02:00
|
|
|
static const luaL_Reg methods[];
|
2015-07-11 02:24:00 +02:00
|
|
|
|
|
|
|
static int gc_object(lua_State *L);
|
|
|
|
|
|
|
|
static int l_get_area(lua_State *L);
|
|
|
|
|
|
|
|
static int l_get_areas_for_pos(lua_State *L);
|
|
|
|
static int l_get_areas_in_area(lua_State *L);
|
|
|
|
static int l_insert_area(lua_State *L);
|
|
|
|
static int l_reserve(lua_State *L);
|
|
|
|
static int l_remove_area(lua_State *L);
|
|
|
|
|
|
|
|
static int l_set_cache_params(lua_State *L);
|
|
|
|
|
2015-10-31 00:27:48 +01:00
|
|
|
static int l_to_string(lua_State *L);
|
2015-07-11 02:24:00 +02:00
|
|
|
static int l_to_file(lua_State *L);
|
|
|
|
|
|
|
|
static int l_from_string(lua_State *L);
|
2015-10-31 00:27:48 +01:00
|
|
|
static int l_from_file(lua_State *L);
|
2015-07-11 02:24:00 +02:00
|
|
|
|
|
|
|
public:
|
2017-06-19 23:54:58 +02:00
|
|
|
AreaStore *as = nullptr;
|
2015-07-11 02:24:00 +02:00
|
|
|
|
|
|
|
LuaAreaStore();
|
|
|
|
LuaAreaStore(const std::string &type);
|
|
|
|
~LuaAreaStore();
|
|
|
|
|
|
|
|
// AreaStore()
|
|
|
|
// Creates a AreaStore and leaves it on top of stack
|
|
|
|
static int create_object(lua_State *L);
|
|
|
|
|
|
|
|
static LuaAreaStore *checkobject(lua_State *L, int narg);
|
|
|
|
|
|
|
|
static void Register(lua_State *L);
|
|
|
|
};
|