2018-02-16 18:11:26 +01:00
|
|
|
/*
|
|
|
|
* BreakHack - A dungeone crawler RPG
|
|
|
|
* Copyright (C) 2018 Linus Probert <linus.probert@gmail.com>
|
|
|
|
*
|
|
|
|
* This program 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 3 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
#include <stdio.h>
|
2017-12-21 11:57:12 +01:00
|
|
|
#include <stdlib.h>
|
2017-12-05 08:13:28 +01:00
|
|
|
#include <stdbool.h>
|
2018-01-23 21:03:43 +01:00
|
|
|
#include <string.h>
|
2017-12-02 23:32:40 +01:00
|
|
|
|
|
|
|
#include <lua.h>
|
|
|
|
#include <lualib.h>
|
|
|
|
#include <lauxlib.h>
|
|
|
|
|
2018-02-27 19:59:51 +01:00
|
|
|
#include <physfs.h>
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
#include "map_lua.h"
|
|
|
|
#include "util.h"
|
2018-02-20 14:22:26 +01:00
|
|
|
#include "stats.h"
|
2018-02-23 23:53:52 +01:00
|
|
|
#include "io_util.h"
|
|
|
|
#include "texturecache.h"
|
2017-12-02 23:32:40 +01:00
|
|
|
|
|
|
|
static
|
2017-12-19 21:00:02 +01:00
|
|
|
lua_State* load_lua_state(void)
|
2017-12-02 23:32:40 +01:00
|
|
|
{
|
|
|
|
lua_State *L = luaL_newstate();
|
|
|
|
luaL_openlibs(L);
|
|
|
|
return L;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int l_create_map(lua_State *L)
|
|
|
|
{
|
|
|
|
Map *map = map_create();
|
2018-01-30 21:05:33 +01:00
|
|
|
map->level = (int) luaL_checkinteger(L, 1);
|
2017-12-02 23:32:40 +01:00
|
|
|
lua_pushlightuserdata(L, map);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-02-01 09:55:12 +01:00
|
|
|
static int
|
|
|
|
l_print_info(lua_State *L)
|
|
|
|
{
|
|
|
|
const char *str = luaL_checkstring(L, 1);
|
2018-02-27 19:59:51 +01:00
|
|
|
debug(str);
|
2018-02-01 09:55:12 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
static
|
|
|
|
Map* luaL_checkmap(lua_State *L, int index)
|
|
|
|
{
|
|
|
|
Map *map;
|
|
|
|
|
|
|
|
if (!lua_islightuserdata(L, index))
|
|
|
|
fatal("in luaL_checkmap(), pointer lost in lua script");
|
|
|
|
|
|
|
|
map = lua_touserdata(L, index);
|
|
|
|
if (map == NULL)
|
|
|
|
fatal("in luaL_checkmap(), bad map pointer");
|
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
SDL_Renderer* luaL_checksdlrenderer(lua_State *L)
|
|
|
|
{
|
|
|
|
SDL_Renderer *renderer;
|
|
|
|
|
|
|
|
lua_getglobal(L, "_sdl_renderer");
|
|
|
|
if (!lua_islightuserdata(L, -1))
|
|
|
|
fatal("in luaL_checksdlrenderer(), pointer lost in lua script");
|
|
|
|
|
|
|
|
renderer = lua_touserdata(L, -1);
|
|
|
|
if (renderer == NULL)
|
|
|
|
fatal("in luaL_checksdlrenderer(), bad SDL_Renderer pointer");
|
|
|
|
|
|
|
|
return renderer;
|
|
|
|
}
|
|
|
|
|
2018-03-15 16:30:41 +01:00
|
|
|
static int
|
|
|
|
l_map_set_current_room_modifier(lua_State *L)
|
|
|
|
{
|
2018-03-16 10:04:43 +01:00
|
|
|
const char *modifier, *direction;
|
2018-03-15 16:30:41 +01:00
|
|
|
|
|
|
|
Map *map = luaL_checkmap(L, 1);
|
|
|
|
modifier = luaL_checkstring(L, 2);
|
2018-03-16 10:04:43 +01:00
|
|
|
direction = luaL_checkstring(L, 3);
|
|
|
|
|
|
|
|
Vector2d dir = VECTOR2D_LEFT;
|
|
|
|
if (strcmp(direction, "LEFT") == 0)
|
|
|
|
dir = VECTOR2D_LEFT;
|
|
|
|
else if (strcmp(direction, "RIGHT") == 0)
|
|
|
|
dir = VECTOR2D_RIGHT;
|
|
|
|
else if (strcmp(direction, "UP") == 0)
|
|
|
|
dir = VECTOR2D_UP;
|
|
|
|
else if (strcmp(direction, "DOWN") == 0)
|
|
|
|
dir = VECTOR2D_DOWN;
|
2018-03-15 16:30:41 +01:00
|
|
|
|
|
|
|
if (strcmp(modifier, "WINDY") == 0) {
|
2018-03-15 17:00:11 +01:00
|
|
|
Room *room = map->rooms[map->currentRoom.x][map->currentRoom.y];
|
2018-03-15 16:30:41 +01:00
|
|
|
room->modifier.type = RMOD_TYPE_WINDY;
|
2018-03-16 10:04:43 +01:00
|
|
|
room->modifier.data.wind.direction = dir;
|
2018-03-15 16:30:41 +01:00
|
|
|
} else {
|
|
|
|
luaL_error(L, "Unknown room modifier: %s", modifier);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-05 08:13:28 +01:00
|
|
|
static
|
|
|
|
int l_map_set_current_room(lua_State *L)
|
|
|
|
{
|
|
|
|
Map *map;
|
|
|
|
unsigned int room_x, room_y;
|
|
|
|
|
|
|
|
map = luaL_checkmap(L, 1);
|
2017-12-19 22:51:00 +01:00
|
|
|
room_x = (int) luaL_checkinteger(L, 2);
|
|
|
|
room_y = (int) luaL_checkinteger(L, 3);
|
2017-12-05 08:13:28 +01:00
|
|
|
|
2017-12-06 11:44:17 +01:00
|
|
|
map->currentRoom = (Position) { room_x, room_y };
|
2017-12-05 08:13:28 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
static
|
|
|
|
int l_add_texture(lua_State *L)
|
|
|
|
{
|
|
|
|
Map *map;
|
|
|
|
const char *path;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
map = luaL_checkmap(L, 1);
|
|
|
|
path = luaL_checkstring(L, 2);
|
|
|
|
SDL_Renderer *renderer = luaL_checksdlrenderer(L);
|
|
|
|
|
|
|
|
index = map_add_texture(map, path, renderer);
|
|
|
|
lua_pushinteger(L, index);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-10 19:51:24 +01:00
|
|
|
static void
|
|
|
|
extract_tile_data(lua_State *L,
|
|
|
|
void (*f_add_tile)(Map*, Position*, MapTile*))
|
2017-12-02 23:32:40 +01:00
|
|
|
{
|
|
|
|
Map *map;
|
2017-12-05 08:13:28 +01:00
|
|
|
int tile_x, tile_y;
|
2017-12-10 19:51:24 +01:00
|
|
|
int t_index0, t_index1, tile_clip_x, tile_clip_y;
|
2017-12-22 06:27:58 +01:00
|
|
|
bool collider, lightsource, levelExit;
|
2017-12-02 23:32:40 +01:00
|
|
|
|
|
|
|
map = luaL_checkmap(L, 1);
|
2017-12-19 22:51:00 +01:00
|
|
|
tile_x = (int) luaL_checkinteger(L, 2);
|
|
|
|
tile_y = (int) luaL_checkinteger(L, 3);
|
2017-12-02 23:32:40 +01:00
|
|
|
|
2017-12-10 19:51:24 +01:00
|
|
|
// Read the table
|
|
|
|
lua_settop(L, 4);
|
|
|
|
luaL_checktype(L, 4, LUA_TTABLE);
|
2017-12-02 23:32:40 +01:00
|
|
|
|
2017-12-10 19:51:24 +01:00
|
|
|
// Get the fields from the table
|
|
|
|
lua_getfield(L, 4, "textureIndex0");
|
|
|
|
lua_getfield(L, 4, "textureIndex1");
|
|
|
|
lua_getfield(L, 4, "tileClipX");
|
|
|
|
lua_getfield(L, 4, "tileClipY");
|
|
|
|
lua_getfield(L, 4, "isCollider");
|
|
|
|
lua_getfield(L, 4, "isLightSource");
|
2017-12-22 06:27:58 +01:00
|
|
|
lua_getfield(L, 4, "isLevelExit");
|
2017-12-02 23:32:40 +01:00
|
|
|
|
2017-12-22 06:27:58 +01:00
|
|
|
t_index0 = (int) luaL_checkinteger(L, -7);
|
|
|
|
t_index1 = (int) luaL_checkinteger(L, -6);
|
|
|
|
tile_clip_x = (int) luaL_checkinteger(L, -5);
|
|
|
|
tile_clip_y = (int) luaL_checkinteger(L, -4);
|
|
|
|
collider = lua_toboolean(L, -3);
|
|
|
|
lightsource = lua_toboolean(L, -2);
|
|
|
|
levelExit = lua_toboolean(L, -1);
|
2017-12-08 09:45:57 +01:00
|
|
|
|
2017-12-10 19:51:24 +01:00
|
|
|
// Clear the stack
|
2018-02-20 14:22:26 +01:00
|
|
|
lua_pop(L, 7);
|
2017-12-08 09:45:57 +01:00
|
|
|
|
|
|
|
Position tilePos = (Position) { tile_x, tile_y };
|
|
|
|
SDL_Rect clip = (SDL_Rect) { tile_clip_x, tile_clip_y, 16, 16 };
|
|
|
|
|
|
|
|
MapTile *tile = malloc(sizeof(MapTile));
|
2017-12-22 06:27:58 +01:00
|
|
|
*tile = (MapTile) { t_index0,
|
|
|
|
t_index1,
|
|
|
|
clip, collider,
|
|
|
|
lightsource,
|
|
|
|
levelExit
|
|
|
|
};
|
2017-12-08 09:45:57 +01:00
|
|
|
|
2017-12-10 19:51:24 +01:00
|
|
|
f_add_tile(map, &tilePos, tile);
|
|
|
|
}
|
2017-12-08 09:45:57 +01:00
|
|
|
|
2018-02-20 14:22:26 +01:00
|
|
|
static Stats
|
|
|
|
lua_checkstats(lua_State *L, int index)
|
|
|
|
{
|
|
|
|
// Confirm table
|
2018-02-27 19:59:51 +01:00
|
|
|
lua_istable(L, index);
|
2018-02-20 14:22:26 +01:00
|
|
|
|
|
|
|
// Push to top of stack
|
|
|
|
lua_pushvalue(L, index);
|
|
|
|
// Stack: -1 => table
|
|
|
|
|
|
|
|
int tableIndex = lua_gettop(L);
|
|
|
|
|
|
|
|
lua_getfield(L, tableIndex, "hp");
|
|
|
|
lua_getfield(L, tableIndex, "dmg");
|
|
|
|
lua_getfield(L, tableIndex, "atk");
|
|
|
|
lua_getfield(L, tableIndex, "def");
|
|
|
|
lua_getfield(L, tableIndex, "speed");
|
|
|
|
|
2018-02-22 09:44:27 +01:00
|
|
|
int hp = (int) luaL_checkinteger(L, -5);
|
|
|
|
int dmg = (int) luaL_checkinteger(L, -4);
|
|
|
|
int atk = (int) luaL_checkinteger(L, -3);
|
|
|
|
int def = (int) luaL_checkinteger(L, -2);
|
|
|
|
int speed = (int) luaL_checkinteger(L, -1);
|
2018-02-20 14:22:26 +01:00
|
|
|
|
|
|
|
// Reset the stack
|
|
|
|
lua_pop(L, 6);
|
|
|
|
|
|
|
|
Stats stats = { hp, hp, dmg, atk, def, speed, 1 };
|
|
|
|
return stats;
|
|
|
|
}
|
|
|
|
|
2018-02-05 16:15:45 +01:00
|
|
|
static
|
|
|
|
int l_tile_occupied(lua_State *L)
|
|
|
|
{
|
|
|
|
Map *map;
|
|
|
|
Room *room;
|
2018-02-16 09:10:05 +01:00
|
|
|
MapTile *tile, *decor;
|
2018-02-05 16:15:45 +01:00
|
|
|
Position *rPos;
|
|
|
|
int x, y;
|
2018-02-16 09:10:05 +01:00
|
|
|
bool response = false;
|
2018-02-05 16:15:45 +01:00
|
|
|
|
|
|
|
map = luaL_checkmap(L, 1);
|
|
|
|
x = (int) luaL_checkinteger(L, 2);
|
|
|
|
y = (int) luaL_checkinteger(L, 3);
|
|
|
|
|
|
|
|
rPos = &map->currentRoom;
|
|
|
|
room = map->rooms[rPos->x][rPos->y];
|
2018-02-16 09:10:05 +01:00
|
|
|
|
2018-02-05 16:15:45 +01:00
|
|
|
tile = room->tiles[x][y];
|
2018-02-16 09:10:05 +01:00
|
|
|
decor = room->decorations[x][y];
|
|
|
|
|
|
|
|
response = response || (tile && (tile->collider || tile->levelExit));
|
|
|
|
response = response || (decor && (decor->collider || decor->levelExit));
|
2018-02-05 16:15:45 +01:00
|
|
|
|
2018-02-16 09:10:05 +01:00
|
|
|
lua_pushboolean(L, response);
|
2018-02-05 16:15:45 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-12-10 19:51:24 +01:00
|
|
|
static
|
|
|
|
int l_add_tile(lua_State *L)
|
|
|
|
{
|
|
|
|
extract_tile_data(L, &map_add_tile);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int l_add_decoration(lua_State *L)
|
|
|
|
{
|
|
|
|
extract_tile_data(L, &map_add_decoration);
|
2017-12-08 09:45:57 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-13 23:20:54 +01:00
|
|
|
static int
|
|
|
|
l_add_monster(lua_State *L)
|
|
|
|
{
|
|
|
|
Monster *monster;
|
|
|
|
Map *map;
|
2017-12-18 12:12:24 +01:00
|
|
|
int x, y, clip_x, clip_y, nstate, cstate;
|
2018-01-17 09:32:49 +01:00
|
|
|
const char *texture_path_1, *texture_path_2, *tmp_label;
|
|
|
|
char *label;
|
2017-12-13 23:20:54 +01:00
|
|
|
Texture *texture1, *texture2;
|
|
|
|
SDL_Renderer *renderer;
|
2018-02-20 14:22:26 +01:00
|
|
|
Stats stats;
|
2017-12-13 23:20:54 +01:00
|
|
|
|
|
|
|
renderer = luaL_checksdlrenderer(L);
|
|
|
|
map = luaL_checkmap(L, 1);
|
2017-12-19 22:51:00 +01:00
|
|
|
x = (int) luaL_checkinteger(L, 2);
|
|
|
|
y = (int) luaL_checkinteger(L, 3);
|
2017-12-13 23:20:54 +01:00
|
|
|
|
|
|
|
// Read the table
|
|
|
|
lua_settop(L, 4);
|
|
|
|
luaL_checktype(L, 4, LUA_TTABLE);
|
|
|
|
|
2018-01-17 09:32:49 +01:00
|
|
|
lua_getfield(L, 4, "label");
|
2017-12-13 23:20:54 +01:00
|
|
|
lua_getfield(L, 4, "texturePath1");
|
|
|
|
lua_getfield(L, 4, "texturePath2");
|
2018-02-20 14:22:26 +01:00
|
|
|
lua_getfield(L, 4, "stats");
|
2017-12-13 23:20:54 +01:00
|
|
|
lua_getfield(L, 4, "clipX");
|
|
|
|
lua_getfield(L, 4, "clipY");
|
2017-12-18 12:12:24 +01:00
|
|
|
lua_getfield(L, 4, "nstate");
|
|
|
|
lua_getfield(L, 4, "cstate");
|
2017-12-13 23:20:54 +01:00
|
|
|
|
2018-02-20 14:22:26 +01:00
|
|
|
tmp_label = luaL_checkstring(L, -8);
|
|
|
|
texture_path_1 = luaL_checkstring(L, -7);
|
|
|
|
texture_path_2 = luaL_checkstring(L, -6);
|
|
|
|
stats = lua_checkstats(L, -5);
|
2017-12-19 22:51:00 +01:00
|
|
|
clip_x = (int) luaL_checkinteger(L, -4);
|
|
|
|
clip_y = (int) luaL_checkinteger(L, -3);
|
|
|
|
nstate = (int) luaL_checkinteger(L, -2);
|
|
|
|
cstate = (int) luaL_checkinteger(L, -1);
|
2017-12-13 23:20:54 +01:00
|
|
|
|
2018-02-23 23:53:52 +01:00
|
|
|
texture1 = texturecache_add(texture_path_1);
|
|
|
|
texture2 = texturecache_add(texture_path_2);
|
2017-12-13 23:20:54 +01:00
|
|
|
|
2018-01-17 09:32:49 +01:00
|
|
|
label = strdup(tmp_label);
|
|
|
|
|
2018-02-23 23:53:52 +01:00
|
|
|
texture1->dim = GAME_DIMENSION;
|
|
|
|
texture2->dim = GAME_DIMENSION;
|
2017-12-13 23:20:54 +01:00
|
|
|
|
2018-02-20 14:22:26 +01:00
|
|
|
lua_pop(L, 8);
|
2017-12-13 23:20:54 +01:00
|
|
|
|
2017-12-15 15:03:29 +01:00
|
|
|
monster = monster_create(renderer);
|
2017-12-14 12:01:05 +01:00
|
|
|
monster->sprite->clip = (SDL_Rect) { clip_x, clip_y, 16, 16 };
|
2017-12-15 15:03:29 +01:00
|
|
|
monster_update_pos(monster, (Position) { x, y });
|
2017-12-13 23:20:54 +01:00
|
|
|
sprite_set_texture(monster->sprite, texture1, 0);
|
|
|
|
sprite_set_texture(monster->sprite, texture2, 1);
|
2017-12-18 12:12:24 +01:00
|
|
|
monster->state.normal = nstate;
|
|
|
|
monster->state.challenge = cstate;
|
|
|
|
monster->state.current = nstate;
|
2018-01-25 10:45:05 +01:00
|
|
|
if (strlen(label)) {
|
2018-01-17 09:32:49 +01:00
|
|
|
monster->label = label;
|
2018-01-25 10:45:05 +01:00
|
|
|
monster->lclabel = to_lower(label);
|
|
|
|
}
|
2017-12-13 23:20:54 +01:00
|
|
|
|
2018-02-20 14:22:26 +01:00
|
|
|
monster->stats = stats;
|
|
|
|
|
2017-12-13 23:20:54 +01:00
|
|
|
map_add_monster(map, monster);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-27 19:59:51 +01:00
|
|
|
static int
|
|
|
|
l_load_script(lua_State *L)
|
|
|
|
{
|
|
|
|
unsigned long size;
|
|
|
|
const char *name = luaL_checkstring(L, 1);
|
|
|
|
char *content;
|
|
|
|
|
|
|
|
char filename[20];
|
|
|
|
|
|
|
|
m_sprintf(filename, 20, "%s.lua", name);
|
|
|
|
|
|
|
|
if (!PHYSFS_exists(filename)) {
|
|
|
|
luaL_error(L, "Unable to locate module: %s\n", name);
|
|
|
|
return 1; // Unable to locate file
|
|
|
|
}
|
|
|
|
debug("Loading module: %s from %s", name, filename);
|
|
|
|
|
|
|
|
io_load_lua_buffer(&content, &size, filename);
|
|
|
|
if (luaL_loadbuffer(L, content, size, name) != 0) {
|
|
|
|
luaL_error(L, "Error loading module %s from file %s\n\t%s", lua_tostring(L, 1), filename, lua_tostring(L, -1));
|
|
|
|
}
|
|
|
|
free(content);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-02-09 13:27:25 +01:00
|
|
|
static Map*
|
2018-02-23 19:32:01 +01:00
|
|
|
generate_map(unsigned int level, const char *file, SDL_Renderer *renderer)
|
2017-12-02 23:32:40 +01:00
|
|
|
{
|
|
|
|
int status, result;
|
|
|
|
|
2018-02-27 19:59:51 +01:00
|
|
|
debug("Running lua map script: %s", file);
|
2017-12-02 23:32:40 +01:00
|
|
|
|
|
|
|
lua_State *L = load_lua_state();
|
2018-02-23 19:32:01 +01:00
|
|
|
|
|
|
|
char *buffer = NULL;
|
|
|
|
long unsigned int len;
|
|
|
|
io_load_lua_buffer(&buffer, &len, file);
|
|
|
|
status = luaL_loadbuffer(L, buffer, len, file);
|
|
|
|
free(buffer);
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
if (status) {
|
2018-01-23 22:54:02 +01:00
|
|
|
fatal("Couldn't load file: %s\n", lua_tostring(L, -1));
|
2017-12-02 23:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Present stuff to lua
|
|
|
|
lua_pushlightuserdata(L, renderer);
|
|
|
|
lua_setglobal(L, "_sdl_renderer");
|
|
|
|
|
|
|
|
lua_pushcfunction(L, l_create_map);
|
|
|
|
lua_setglobal(L, "create_map");
|
|
|
|
|
2018-02-01 09:55:12 +01:00
|
|
|
lua_pushcfunction(L, l_print_info);
|
|
|
|
lua_setglobal(L, "info");
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
lua_pushcfunction(L, l_add_tile);
|
|
|
|
lua_setglobal(L, "add_tile");
|
|
|
|
|
2017-12-08 09:45:57 +01:00
|
|
|
lua_pushcfunction(L, l_add_decoration);
|
|
|
|
lua_setglobal(L, "add_decoration");
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
lua_pushcfunction(L, l_add_texture);
|
|
|
|
lua_setglobal(L, "add_texture");
|
|
|
|
|
2017-12-05 08:13:28 +01:00
|
|
|
lua_pushcfunction(L, l_map_set_current_room);
|
|
|
|
lua_setglobal(L, "set_current_room");
|
2018-03-15 16:30:41 +01:00
|
|
|
|
|
|
|
lua_pushcfunction(L, l_map_set_current_room_modifier);
|
|
|
|
lua_setglobal(L, "set_modifier");
|
2017-12-05 08:13:28 +01:00
|
|
|
|
2017-12-13 23:20:54 +01:00
|
|
|
lua_pushcfunction(L, l_add_monster);
|
|
|
|
lua_setglobal(L, "add_monster");
|
|
|
|
|
2018-02-05 16:15:45 +01:00
|
|
|
lua_pushcfunction(L, l_tile_occupied);
|
|
|
|
lua_setglobal(L, "tile_occupied");
|
|
|
|
|
2018-01-22 10:12:44 +01:00
|
|
|
lua_pushinteger(L, level);
|
|
|
|
lua_setglobal(L, "CURRENT_LEVEL");
|
|
|
|
|
2018-02-27 19:59:51 +01:00
|
|
|
// Add custom searcher
|
|
|
|
lua_getglobal(L, "package");
|
|
|
|
lua_getfield(L, -1, "searchers");
|
|
|
|
lua_pushcfunction(L, l_load_script);
|
|
|
|
lua_rawseti(L, -2, 1);
|
|
|
|
lua_pop(L, 2);
|
|
|
|
|
2017-12-02 23:32:40 +01:00
|
|
|
result = lua_pcall(L, 0, LUA_MULTRET, 0);
|
|
|
|
if (result) {
|
2018-01-23 22:54:02 +01:00
|
|
|
fatal("Failed to run script: %s\n", lua_tostring(L, -1));
|
2017-12-02 23:32:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
lua_getglobal(L, "map");
|
|
|
|
Map *map = lua_touserdata(L, 1);
|
|
|
|
|
|
|
|
lua_close(L);
|
|
|
|
|
2018-02-09 09:36:24 +01:00
|
|
|
// Reset the map
|
|
|
|
map->currentRoom = (Position) { 0, 0 };
|
|
|
|
|
2018-03-13 16:13:54 +01:00
|
|
|
debug("Running lua script %s: Done", file);
|
2017-12-02 23:32:40 +01:00
|
|
|
|
|
|
|
return map;
|
|
|
|
}
|
2018-02-09 13:27:25 +01:00
|
|
|
|
|
|
|
Map* map_lua_generator_single_room__run(unsigned int level, SDL_Renderer *renderer)
|
|
|
|
{
|
2018-02-23 19:32:01 +01:00
|
|
|
char file[] = "menumapgen.lua";
|
2018-02-09 13:27:25 +01:00
|
|
|
return generate_map(level, file, renderer);
|
|
|
|
}
|
|
|
|
|
|
|
|
Map* map_lua_generator_run(unsigned int level, SDL_Renderer *renderer)
|
|
|
|
{
|
2018-02-23 19:32:01 +01:00
|
|
|
char file[] = "mapgen.lua";
|
2018-02-09 13:27:25 +01:00
|
|
|
return generate_map(level, file, renderer);
|
|
|
|
}
|
|
|
|
|
|
|
|
|