summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-08-25 13:56:38 (EDT)
committer P. J. McDermott <pj@pehjota.net>2015-08-25 13:56:38 (EDT)
commitf478d1111f2c1cfe06218f7fdb043b75833793d9 (patch)
tree79c50ab6eabb197ec63b990bcb72411bf1c5b29f
parentc96127e9c318242c5967fff24bd711194de7ae0d (diff)
downloadoverworld-rpg-f478d1111f2c1cfe06218f7fdb043b75833793d9.zip
overworld-rpg-f478d1111f2c1cfe06218f7fdb043b75833793d9.tar.gz
overworld-rpg-f478d1111f2c1cfe06218f7fdb043b75833793d9.tar.bz2
src/script.[ch]: Remove
-rw-r--r--src/local.mk2
-rw-r--r--src/script.c37
-rw-r--r--src/script.h26
3 files changed, 0 insertions, 65 deletions
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
- * <http://www.gnu.org/licenses/>.
- */
-
-#include <stdlib.h>
-#include <lua.h>
-#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
- * <http://www.gnu.org/licenses/>.
- */
-
-#ifndef SCRIPT_H
-#define SCRIPT_H
-
-#include "resources/script.h"
-
-void script_call(struct script *s, const char *func);
-
-#endif