2017-03-16 10:34:54 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2017 Loic Blot <loic.blot@unix-experience.fr>
|
|
|
|
|
|
|
|
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_minimap.h"
|
|
|
|
#include "lua_api/l_internal.h"
|
|
|
|
#include "common/c_converter.h"
|
2018-11-28 20:01:49 +01:00
|
|
|
#include "client/client.h"
|
|
|
|
#include "client/minimap.h"
|
2017-03-29 15:50:22 +02:00
|
|
|
#include "settings.h"
|
2017-03-16 10:34:54 +01:00
|
|
|
|
2017-06-19 23:54:58 +02:00
|
|
|
LuaMinimap::LuaMinimap(Minimap *m) : m_minimap(m)
|
2017-03-16 10:34:54 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LuaMinimap::create(lua_State *L, Minimap *m)
|
|
|
|
{
|
|
|
|
LuaMinimap *o = new LuaMinimap(m);
|
|
|
|
*(void **)(lua_newuserdata(L, sizeof(void *))) = o;
|
|
|
|
luaL_getmetatable(L, className);
|
|
|
|
lua_setmetatable(L, -2);
|
|
|
|
|
|
|
|
// Keep minimap object stack id
|
|
|
|
int minimap_object = lua_gettop(L);
|
|
|
|
|
|
|
|
lua_getglobal(L, "core");
|
|
|
|
lua_getfield(L, -1, "ui");
|
|
|
|
luaL_checktype(L, -1, LUA_TTABLE);
|
|
|
|
int uitable = lua_gettop(L);
|
|
|
|
|
|
|
|
lua_pushvalue(L, minimap_object); // Copy object to top of stack
|
|
|
|
lua_setfield(L, uitable, "minimap");
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_get_pos(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
|
|
|
push_v3s16(L, m->getPos());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_set_pos(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
|
|
|
m->setPos(read_v3s16(L, 2));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_get_angle(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
|
|
|
lua_pushinteger(L, m->getAngle());
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_set_angle(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
|
|
|
m->setAngle(lua_tointeger(L, 2));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_get_mode(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
2020-10-04 15:24:29 +02:00
|
|
|
lua_pushinteger(L, m->getModeIndex());
|
2017-03-16 10:34:54 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_set_mode(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
2020-10-04 15:24:29 +02:00
|
|
|
u32 mode = lua_tointeger(L, 2);
|
|
|
|
if (mode >= m->getMaxModeIndex())
|
2017-03-16 10:34:54 +01:00
|
|
|
return 0;
|
|
|
|
|
2020-10-04 15:24:29 +02:00
|
|
|
m->setModeIndex(mode);
|
2017-03-16 10:34:54 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-04-14 09:04:41 +02:00
|
|
|
int LuaMinimap::l_set_shape(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-04-14 09:04:41 +02:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
if (!lua_isnumber(L, 2))
|
|
|
|
return 0;
|
|
|
|
|
2017-04-15 14:30:27 +02:00
|
|
|
m->setMinimapShape((MinimapShape)((int)lua_tonumber(L, 2)));
|
2017-04-14 09:04:41 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_get_shape(lua_State *L)
|
2017-03-16 10:34:54 +01:00
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-16 10:34:54 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
2017-04-14 09:04:41 +02:00
|
|
|
lua_pushnumber(L, (int)m->getMinimapShape());
|
2017-03-16 10:34:54 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_show(lua_State *L)
|
|
|
|
{
|
2017-03-29 15:50:22 +02:00
|
|
|
// If minimap is disabled by config, don't show it.
|
|
|
|
if (!g_settings->getBool("enable_minimap"))
|
|
|
|
return 1;
|
|
|
|
|
2017-03-19 13:18:52 +01:00
|
|
|
Client *client = getClient(L);
|
|
|
|
assert(client);
|
|
|
|
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-17 07:54:49 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
2020-10-04 15:24:29 +02:00
|
|
|
// This is not very adapted to new minimap mode management. Btw, tried
|
|
|
|
// to do something compatible.
|
|
|
|
|
|
|
|
if (m->getModeIndex() == 0 && m->getMaxModeIndex() > 0)
|
|
|
|
m->setModeIndex(1);
|
2017-03-19 13:18:52 +01:00
|
|
|
|
|
|
|
client->showMinimap(true);
|
2017-03-16 10:34:54 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::l_hide(lua_State *L)
|
|
|
|
{
|
2017-03-19 13:18:52 +01:00
|
|
|
Client *client = getClient(L);
|
|
|
|
assert(client);
|
|
|
|
|
2022-10-04 14:31:36 +02:00
|
|
|
LuaMinimap *ref = checkObject<LuaMinimap>(L, 1);
|
2017-03-17 07:54:49 +01:00
|
|
|
Minimap *m = getobject(ref);
|
|
|
|
|
2020-10-04 15:24:29 +02:00
|
|
|
// This is not very adapted to new minimap mode management. Btw, tried
|
|
|
|
// to do something compatible.
|
|
|
|
|
|
|
|
if (m->getModeIndex() != 0)
|
|
|
|
m->setModeIndex(0);
|
2017-03-19 13:18:52 +01:00
|
|
|
|
|
|
|
client->showMinimap(false);
|
2017-03-16 10:34:54 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Minimap* LuaMinimap::getobject(LuaMinimap *ref)
|
|
|
|
{
|
|
|
|
return ref->m_minimap;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LuaMinimap::gc_object(lua_State *L) {
|
|
|
|
LuaMinimap *o = *(LuaMinimap **)(lua_touserdata(L, 1));
|
|
|
|
delete o;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LuaMinimap::Register(lua_State *L)
|
|
|
|
{
|
2022-10-04 14:31:36 +02:00
|
|
|
static const luaL_Reg metamethods[] = {
|
|
|
|
{"__gc", gc_object},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
registerClass(L, className, methods, metamethods);
|
2017-03-16 10:34:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const char LuaMinimap::className[] = "Minimap";
|
2017-04-08 09:28:37 +02:00
|
|
|
const luaL_Reg LuaMinimap::methods[] = {
|
2017-03-16 10:34:54 +01:00
|
|
|
luamethod(LuaMinimap, show),
|
|
|
|
luamethod(LuaMinimap, hide),
|
|
|
|
luamethod(LuaMinimap, get_pos),
|
|
|
|
luamethod(LuaMinimap, set_pos),
|
|
|
|
luamethod(LuaMinimap, get_angle),
|
|
|
|
luamethod(LuaMinimap, set_angle),
|
|
|
|
luamethod(LuaMinimap, get_mode),
|
|
|
|
luamethod(LuaMinimap, set_mode),
|
2017-04-14 09:04:41 +02:00
|
|
|
luamethod(LuaMinimap, set_shape),
|
|
|
|
luamethod(LuaMinimap, get_shape),
|
2017-03-16 10:34:54 +01:00
|
|
|
{0,0}
|
|
|
|
};
|