From f478d1111f2c1cfe06218f7fdb043b75833793d9 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Tue, 25 Aug 2015 13:56:38 -0400 Subject: src/script.[ch]: Remove --- diff --git a/src/local.mk b/src/local.mk index cdbdc06..d2249c8 100644 --- a/src/local.mk +++ b/src/local.mk @@ -19,8 +19,6 @@ boukengine_SOURCES += \ src/main.c \ src/palettes.c \ src/palettes.h \ - src/script.c \ - src/script.h \ src/viewport.c \ src/viewport.h \ src/xml.c \ diff --git a/src/script.c b/src/script.c deleted file mode 100644 index 9341d8a..0000000 --- a/src/script.c +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (C) 2013 Patrick "P. J." McDermott - * - * 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 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 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, see - * . - */ - -#include -#include -#include "logging.h" -#include "script.h" - -/* LUA_OK is defined in Lua 5.2 but not 5.1. */ -#ifndef LUA_OK -#define LUA_OK 0 -#endif - -void -script_call(struct script *s, const char *func) -{ - lua_getglobal(s->lua_state, func); - if (lua_pcall(s->lua_state, 0, 0, 0) != LUA_OK) { - err(1, "Error calling function: %s\n", - lua_tostring(s->lua_state, -1)); - } -} diff --git a/src/script.h b/src/script.h deleted file mode 100644 index 5362a8b..0000000 --- a/src/script.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (C) 2013 Patrick "P. J." McDermott - * - * 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 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 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, see - * . - */ - -#ifndef SCRIPT_H -#define SCRIPT_H - -#include "resources/script.h" - -void script_call(struct script *s, const char *func); - -#endif -- cgit v0.9.1