2017-01-21 15:02:08 +01:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
Copyright (C) 2017 nerzhul, 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.
|
|
|
|
*/
|
|
|
|
|
2017-04-25 19:38:08 +02:00
|
|
|
#include "scripting_client.h"
|
2017-01-21 15:02:08 +01:00
|
|
|
#include "client.h"
|
|
|
|
#include "cpp_api/s_internal.h"
|
|
|
|
#include "lua_api/l_client.h"
|
2017-03-17 07:48:29 +01:00
|
|
|
#include "lua_api/l_env.h"
|
2017-03-16 10:34:54 +01:00
|
|
|
#include "lua_api/l_minimap.h"
|
2017-01-28 18:31:23 +01:00
|
|
|
#include "lua_api/l_storage.h"
|
2017-01-22 11:17:41 +01:00
|
|
|
#include "lua_api/l_sound.h"
|
2017-01-21 15:02:08 +01:00
|
|
|
#include "lua_api/l_util.h"
|
2017-01-31 14:18:52 +01:00
|
|
|
#include "lua_api/l_item.h"
|
2017-04-04 07:41:37 +02:00
|
|
|
#include "lua_api/l_nodemeta.h"
|
2017-04-08 12:26:45 +02:00
|
|
|
#include "lua_api/l_localplayer.h"
|
2017-05-05 22:07:36 +02:00
|
|
|
#include "lua_api/l_camera.h"
|
2017-01-21 15:02:08 +01:00
|
|
|
|
|
|
|
ClientScripting::ClientScripting(Client *client):
|
|
|
|
ScriptApiBase()
|
|
|
|
{
|
|
|
|
setGameDef(client);
|
|
|
|
|
|
|
|
SCRIPTAPI_PRECHECKHEADER
|
|
|
|
|
|
|
|
// Security is mandatory client side
|
2017-01-28 17:24:25 +01:00
|
|
|
initializeSecurityClient();
|
2017-01-21 15:02:08 +01:00
|
|
|
|
|
|
|
lua_getglobal(L, "core");
|
|
|
|
int top = lua_gettop(L);
|
|
|
|
|
2017-03-16 10:34:54 +01:00
|
|
|
lua_newtable(L);
|
|
|
|
lua_setfield(L, -2, "ui");
|
|
|
|
|
2017-01-21 15:02:08 +01:00
|
|
|
InitializeModApi(L, top);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
2017-03-16 10:34:54 +01:00
|
|
|
LuaMinimap::create(L, client->getMinimap());
|
|
|
|
|
2017-01-21 15:02:08 +01:00
|
|
|
// Push builtin initialization type
|
|
|
|
lua_pushstring(L, "client");
|
|
|
|
lua_setglobal(L, "INIT");
|
|
|
|
|
|
|
|
infostream << "SCRIPTAPI: Initialized client game modules" << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClientScripting::InitializeModApi(lua_State *L, int top)
|
|
|
|
{
|
2017-01-31 14:18:52 +01:00
|
|
|
LuaItemStack::Register(L);
|
2017-03-16 07:53:39 +01:00
|
|
|
StorageRef::Register(L);
|
2017-03-16 11:09:06 +01:00
|
|
|
LuaMinimap::Register(L);
|
2017-04-04 07:41:37 +02:00
|
|
|
NodeMetaRef::RegisterClient(L);
|
2017-04-08 12:26:45 +02:00
|
|
|
LuaLocalPlayer::Register(L);
|
2017-05-05 22:07:36 +02:00
|
|
|
LuaCamera::Register(L);
|
2014-12-12 20:49:19 +01:00
|
|
|
|
|
|
|
ModApiUtil::InitializeClient(L, top);
|
|
|
|
ModApiClient::Initialize(L, top);
|
|
|
|
ModApiStorage::Initialize(L, top);
|
|
|
|
ModApiEnvMod::InitializeClient(L, top);
|
2017-04-08 12:26:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClientScripting::on_client_ready(LocalPlayer *localplayer)
|
|
|
|
{
|
|
|
|
lua_State *L = getStack();
|
|
|
|
LuaLocalPlayer::create(L, localplayer);
|
2017-01-21 15:02:08 +01:00
|
|
|
}
|
2017-05-05 22:07:36 +02:00
|
|
|
|
|
|
|
void ClientScripting::on_camera_ready(Camera *camera)
|
|
|
|
{
|
|
|
|
LuaCamera::create(getStack(), camera);
|
|
|
|
}
|