summaryrefslogtreecommitdiff
path: root/src/scripting/luautil.cpp
blob: 99b92960cb80650befdeda74955c154f66587c4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
/*
 *  The Mana Server
 *  Copyright (C) 2007-2010  The Mana World Development Team
 *  Copyright (C) 2010  The Mana Developers
 *
 *  This file is part of The Mana Server.
 *
 *  The Mana Server is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  The Mana Server 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with The Mana Server.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "luautil.h"

#include <cstring>

#include "game-server/actorcomponent.h"
#include "game-server/being.h"
#include "game-server/entity.h"
#include "game-server/itemmanager.h"
#include "game-server/monster.h"
#include "game-server/monstermanager.h"

#include "utils/logger.h"

#include "scripting/luascript.h"


void raiseWarning(lua_State *, const char *format, ...)
{
    va_list args;
    va_start(args, format);
    char message[1024];
    vsprintf(message, format, args);
    va_end( args );

    LOG_WARN("Lua script error: " << message);
}


bool UserDataCache::retrieve(lua_State *s)
{
    // Retrieve the cache table
    lua_pushlightuserdata(s, &mRegistryKey);    // object_key, key
    lua_rawget(s, LUA_REGISTRYINDEX);           // object_key, Cache?

    if (lua_isnil(s, -1))
    {
        lua_pop(s, 1);
        return false;
    }

    lua_pushvalue(s, -2);                       // object_key, Cache, object_key
    lua_rawget(s, -2);                          // object_key, Cache, UD?

    if (lua_isnil(s, -1))
    {
        lua_pop(s, 2);                          // object_key
        return false;
    }

    lua_replace(s, -3);                         // UD, Cache
    lua_pop(s, 1);                              // UD
    return true;
}

void UserDataCache::insert(lua_State *s)
{
    // Retrieve the cache table
    lua_pushlightuserdata(s, &mRegistryKey);    // object_key, UD, key
    lua_rawget(s, LUA_REGISTRYINDEX);           // object_key, UD, Cache?

    // Create the cache when it doesn't exist yet
    if (lua_isnil(s, -1))
    {
        lua_pop(s, 1);                          // object_key, UD
        lua_newtable(s);                        // object_key, UD, Cache

        // The metatable that makes the values in the table above weak
        lua_createtable(s, 0, 1);               // object_key, UD, Cache, {}
        lua_pushliteral(s, "__mode");
        lua_pushliteral(s, "v");
        lua_rawset(s, -3);                      // object_key, UD, Cache, { __mode = "v" }
        lua_setmetatable(s, -2);                // object_key, UD, Cache

        lua_pushlightuserdata(s, &mRegistryKey);// object_key, UD, Cache, key
        lua_pushvalue(s, -2);                   // object_key, UD, Cache, key, Cache
        lua_rawset(s, LUA_REGISTRYINDEX);       // object_key, UD, Cache
    }

    lua_pushvalue(s, -3);                       // object_key, UD, Cache, object_key
    lua_pushvalue(s, -3);                       // object_key, UD, Cache, object_key, UD
    lua_rawset(s, -3);                          // object_key, UD, Cache { object_key = UD }
    lua_pop(s, 1);                              // object_key, UD
    lua_replace(s, -2);                         // UD
}


UserDataCache LuaUserData<Entity>::mUserDataCache;

void LuaUserData<Entity>::registerType(lua_State *s, const luaL_Reg *members)
{
    luaL_newmetatable(s, "Entity");         // metatable
    lua_pushliteral(s, "__index");          // metatable, "__index"
    lua_createtable(s, 0, 0);               // metatable, "__index", {}
#if LUA_VERSION_NUM < 502
    luaL_register(s, nullptr, members);
#else
    luaL_setfuncs(s, members, 0);
#endif

    // Make the functions table available as a global
    lua_pushvalue(s, -1);                   // metatable, "__index", {}, {}
    lua_setglobal(s, "Entity");             // metatable, "__index", {}

    lua_rawset(s, -3);                      // metatable
    lua_pop(s, 1);                          // -empty-
}

void LuaUserData<Entity>::push(lua_State *s, Entity *entity)
{
    if (!entity)
    {
        lua_pushnil(s);
    }
    else
    {
#if LUA_VERSION_NUM < 502
        lua_pushnumber(s, entity->getId());
#else
        lua_pushunsigned(s, entity->getId());
#endif

        if (!mUserDataCache.retrieve(s))
        {
            void *userData = lua_newuserdata(s, sizeof(unsigned));
            * static_cast<unsigned*>(userData) = entity->getId();

#if LUA_VERSION_NUM < 502
            luaL_newmetatable(s, "Entity");
            lua_setmetatable(s, -2);
#else
            luaL_setmetatable(s, "Entity");
#endif

            mUserDataCache.insert(s);
        }
    }
}

Entity *LuaUserData<Entity>::check(lua_State *L, int narg)
{
    void *userData = luaL_checkudata(L, narg, "Entity");
    Entity *entity = findEntity(*(static_cast<unsigned*>(userData)));
    luaL_argcheck(L, entity, narg, "invalid entity");
    return entity;
}


Script *getScript(lua_State *s)
{
    lua_pushlightuserdata(s, (void *)&LuaScript::registryKey);
    lua_gettable(s, LUA_REGISTRYINDEX);
    auto script = static_cast<Script *>(lua_touserdata(s, -1));
    lua_pop(s, 1);
    return script;
}


/* Functions below are unsafe, as they assume the script has passed pointers
   to objects which have not yet been destroyed. If the script never keeps
   pointers around, there will be no problem. In order to be safe, the engine
   should replace pointers by local identifiers and store them in a map. By
   listening to the death of objects, it could keep track of pointers still
   valid in the map.
   TODO: do it. */

ItemClass *getItemClass(lua_State *s, int p)
{
    ItemClass *itemClass = nullptr;

    switch (lua_type(s, p))
    {
    case LUA_TNUMBER:
        itemClass = itemManager->getItem(lua_tointeger(s, p));
        break;
    case LUA_TSTRING:
        itemClass = itemManager->getItemByName(lua_tostring(s, p));
        break;
    case LUA_TUSERDATA:
        itemClass = LuaItemClass::check(s, p);
        break;
    }

    return itemClass;
}

MonsterClass *getMonsterClass(lua_State *s, int p)
{
    MonsterClass *monsterClass = nullptr;

    switch (lua_type(s, p))
    {
    case LUA_TNUMBER:
        monsterClass = monsterManager->getMonster(lua_tointeger(s, p));
        break;
    case LUA_TSTRING:
        monsterClass = monsterManager->getMonsterByName(lua_tostring(s, p));
        break;
    case LUA_TUSERDATA:
        monsterClass = LuaMonsterClass::check(s, p);
        break;
    }

    return monsterClass;
}


bool checkOptionalBool(lua_State *s, int p, bool defaultValue)
{
    if (lua_gettop(s) >= p)
    {
        luaL_argcheck(s, lua_isboolean(s, p), p, "boolean expected");
        return lua_toboolean(s, p);
    }
    return defaultValue;
}

Entity *checkActor(lua_State *s, int p)
{
    Entity *entity = LuaEntity::check(s, p);
    luaL_argcheck(s, entity->hasComponent<ActorComponent>(), p,
                  "entity has no actor component");
    return entity;
}

Entity *checkBeing(lua_State *s, int p)
{
    Entity *entity = LuaEntity::check(s, p);
    luaL_argcheck(s, entity->hasComponent<BeingComponent>(), p,
                  "entity has no being component");
    return entity;
}

Entity *checkCharacter(lua_State *s, int p)
{
    Entity *entity = LuaEntity::check(s, p);
    luaL_argcheck(s, entity->getType() == OBJECT_CHARACTER, p, "character expected");
    return entity;
}

ItemClass *checkItemClass(lua_State *s, int p)
{
    ItemClass *itemClass = getItemClass(s, p);
    luaL_argcheck(s, itemClass, p, "item type expected");
    return itemClass;
}

Entity *checkMonster(lua_State *s, int p)
{
    Entity *entity = LuaEntity::check(s, p);
    luaL_argcheck(s, entity->getType() == OBJECT_MONSTER, p, "monster expected");
    return entity;
}

MonsterClass *checkMonsterClass(lua_State *s, int p)
{
    MonsterClass *monsterClass = getMonsterClass(s, p);
    luaL_argcheck(s, monsterClass, p, "monster type expected");
    return monsterClass;
}

Entity *checkNpc(lua_State *s, int p)
{
    Entity *entity = LuaEntity::check(s, p);
    luaL_argcheck(s, entity->getType() == OBJECT_NPC, p, "npc expected");
    return entity;
}

AbilityManager::AbilityInfo *checkAbility(lua_State *s, int p)
{
    AbilityManager::AbilityInfo *abilityInfo;
    if (lua_isnumber(s, p))
        abilityInfo = abilityManager->getAbilityInfo(luaL_checkint(s, p));
    else
        abilityInfo = abilityManager->getAbilityInfo(luaL_checkstring(s, p));

    luaL_argcheck(s, abilityInfo != nullptr, p, "invalid ability");
    return abilityInfo;
}

AttributeInfo *checkAttribute(lua_State *s, int p)
{
    AttributeInfo *attributeInfo = nullptr;

    switch (lua_type(s, p))
    {
    case LUA_TNUMBER:
        attributeInfo = attributeManager->getAttributeInfo(luaL_checkint(s, p));
        break;
    case LUA_TSTRING:
        attributeInfo = attributeManager->getAttributeInfo(luaL_checkstring(s, p));
        break;
    case LUA_TUSERDATA:
        attributeInfo = LuaAttributeInfo::check(s, p);
        break;
    }

    luaL_argcheck(s, attributeInfo != nullptr, p, "invalid attribute");
    return attributeInfo;
}

unsigned char checkWalkMask(lua_State *s, int p)
{
    const char *stringMask = luaL_checkstring(s, p);
    unsigned char mask = 0x00;
    if (strchr(stringMask, 'w'))
        mask |= Map::BLOCKMASK_WALL;
    if (strchr(stringMask, 'c'))
        mask |= Map::BLOCKMASK_CHARACTER;
    if (strchr(stringMask, 'm'))
        mask |= Map::BLOCKMASK_MONSTER;

    return mask;
}


MapComposite *checkCurrentMap(lua_State *s, Script *script /* = 0 */)
{
    if (!script)
        script = getScript(s);

    MapComposite *mapComposite = script->getContext()->map;
    if (!mapComposite)
        luaL_error(s, "no current map");

    return mapComposite;
}

Script::Thread *checkCurrentThread(lua_State *s, Script *script /* = 0 */)
{
    if (!script)
        script = getScript(s);

    Script::Thread *thread = script->getCurrentThread();
    if (!thread)
        luaL_error(s, "function requires threaded execution");

    return thread;
}