forked from github/server
384 lines
11 KiB
C
384 lines
11 KiB
C
/*
|
|
+-------------------+
|
|
| | Enno Rehling <enno@eressea.de>
|
|
| Eressea PBEM host | Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
| (c) 1998 - 2008 | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
| | Henning Peters <faroul@beyond.kn-bremen.de>
|
|
+-------------------+
|
|
|
|
This program may not be used, modified or distributed
|
|
without prior permission by the authors of Eressea.
|
|
*/
|
|
|
|
#ifdef _MSC_VER
|
|
#include <platform.h>
|
|
#endif
|
|
|
|
#include "helpers.h"
|
|
#include "vortex.h"
|
|
#include "alchemy.h"
|
|
#include "magic.h"
|
|
|
|
#include <kernel/attrib.h>
|
|
#include <kernel/event.h>
|
|
#include <util/functions.h>
|
|
#include <kernel/gamedata.h>
|
|
#include <util/log.h>
|
|
#include <util/macros.h>
|
|
#include <util/parser.h>
|
|
#include <util/variant.h>
|
|
|
|
#include <kernel/config.h>
|
|
#include <kernel/callbacks.h>
|
|
#include <kernel/spell.h>
|
|
#include <kernel/unit.h>
|
|
#include <kernel/item.h>
|
|
#include <kernel/region.h>
|
|
|
|
#include <storage.h>
|
|
|
|
#include <tolua.h>
|
|
#include <lua.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
|
|
struct order;
|
|
|
|
static int
|
|
lua_giveitem(unit * s, unit * d, const item_type * itype, int n, struct order *ord)
|
|
{
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
char fname[64];
|
|
int result = -1, len;
|
|
const char *iname = itype->rtype->_name;
|
|
|
|
UNUSED_ARG(ord);
|
|
assert(s != NULL);
|
|
len = snprintf(fname, sizeof(fname), "%s_give", iname);
|
|
if (len > 0 && (size_t)len < sizeof(fname)) {
|
|
lua_getglobal(L, fname);
|
|
if (lua_isfunction(L, -1)) {
|
|
tolua_pushusertype(L, s, TOLUA_CAST "unit");
|
|
tolua_pushusertype(L, d, TOLUA_CAST "unit");
|
|
tolua_pushstring(L, iname);
|
|
lua_pushinteger(L, n);
|
|
|
|
if (lua_pcall(L, 4, 1, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("unit %s calling '%s': %s.\n", unitname(s), fname, error);
|
|
lua_pop(L, 1);
|
|
}
|
|
else {
|
|
result = (int)lua_tonumber(L, -1);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
else {
|
|
log_error("unit %s trying to call '%s' : not a function.\n", unitname(s), fname);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
static int limit_resource_lua(const region * r, const resource_type * rtype)
|
|
{
|
|
char fname[64];
|
|
int result = -1, len;
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
|
|
len = snprintf(fname, sizeof(fname), "%s_limit", rtype->_name);
|
|
if (len > 0 && (size_t)len < sizeof(fname)) {
|
|
lua_getglobal(L, fname);
|
|
if (lua_isfunction(L, -1)) {
|
|
tolua_pushusertype(L, (void *)r, TOLUA_CAST "region");
|
|
|
|
if (lua_pcall(L, 1, 1, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("limit(%s) calling '%s': %s.\n", regionname(r, NULL), fname, error);
|
|
lua_pop(L, 1);
|
|
}
|
|
else {
|
|
result = (int)lua_tonumber(L, -1);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
else {
|
|
log_error("limit(%s) calling '%s': not a function.\n", regionname(r, NULL), fname);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
static void
|
|
produce_resource_lua(region * r, const resource_type * rtype, int norders)
|
|
{
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
char fname[64];
|
|
int len;
|
|
|
|
len = snprintf(fname, sizeof(fname), "%s_produce", rtype->_name);
|
|
if (len > 0 && (size_t)len < sizeof(fname)) {
|
|
lua_getglobal(L, fname);
|
|
if (lua_isfunction(L, -1)) {
|
|
tolua_pushusertype(L, (void *)r, TOLUA_CAST "region");
|
|
lua_pushinteger(L, norders);
|
|
|
|
if (lua_pcall(L, 2, 0, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("produce(%s) calling '%s': %s.\n", regionname(r, NULL), fname, error);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
else {
|
|
log_error("produce(%s) calling '%s': not a function.\n", regionname(r, NULL), fname);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void push_param(lua_State * L, char c, spllprm * param)
|
|
{
|
|
if (c == 'u')
|
|
tolua_pushusertype(L, param->data.u, "unit");
|
|
else if (c == 'b')
|
|
tolua_pushusertype(L, param->data.b, "building");
|
|
else if (c == 's')
|
|
tolua_pushusertype(L, param->data.sh, "ship");
|
|
else if (c == 'r')
|
|
tolua_pushusertype(L, param->data.sh, "region");
|
|
else if (c == 'c')
|
|
tolua_pushstring(L, param->data.s);
|
|
else {
|
|
log_error("unsupported syntax %c.\n", c);
|
|
lua_pushnil(L);
|
|
}
|
|
}
|
|
|
|
/** callback to use lua functions isntead of equipment */
|
|
static bool lua_equipunit(unit *u, const char *eqname, int mask) {
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
bool result = false;
|
|
static bool disabled = false;
|
|
|
|
if (disabled) {
|
|
return false;
|
|
}
|
|
lua_getglobal(L, "equip_unit");
|
|
if (lua_isfunction(L, -1)) {
|
|
tolua_pushusertype(L, u, TOLUA_CAST "unit");
|
|
lua_pushstring(L, eqname);
|
|
lua_pushinteger(L, mask);
|
|
if (lua_pcall(L, 3, 1, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("equip(%s) with '%s/%d': %s.\n", unitname(u), eqname, mask, error);
|
|
lua_pop(L, 1);
|
|
}
|
|
else {
|
|
result = lua_toboolean(L, -1) != 0;
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
else {
|
|
disabled = true;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/** callback to use lua for spell functions */
|
|
static int lua_callspell(castorder * co, const char *fname)
|
|
{
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
unit *caster = co_get_caster(co);
|
|
region * r = co_get_region(co);
|
|
int result = -1;
|
|
|
|
lua_getglobal(L, fname);
|
|
if (lua_isfunction(L, -1)) {
|
|
int nparam = 4;
|
|
tolua_pushusertype(L, r, TOLUA_CAST "region");
|
|
tolua_pushusertype(L, caster, TOLUA_CAST "unit");
|
|
lua_pushinteger(L, co->level);
|
|
lua_pushnumber(L, co->force);
|
|
if (co->sp->parameter && co->par->length) {
|
|
const char *synp = co->sp->parameter;
|
|
int i = 0;
|
|
++nparam;
|
|
lua_newtable(L);
|
|
while (*synp && i < co->par->length) {
|
|
spllprm *param = co->par->param[i];
|
|
char c = *synp;
|
|
if (c == '+') {
|
|
push_param(L, *(synp - 1), param);
|
|
}
|
|
else {
|
|
push_param(L, c, param);
|
|
++synp;
|
|
}
|
|
lua_rawseti(L, -2, ++i);
|
|
}
|
|
}
|
|
|
|
if (lua_pcall(L, nparam, 1, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("spell(%s) calling '%s': %s.\n", unitname(caster), fname, error);
|
|
lua_pop(L, 1);
|
|
}
|
|
else {
|
|
result = (int)lua_tonumber(L, -1);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
else {
|
|
int ltype = lua_type(L, -1);
|
|
log_error("spell(%s) calling '%s': not a function, has type %d.\n", unitname(caster), fname, ltype);
|
|
lua_pop(L, 1);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static int
|
|
lua_changeresource(unit * u, const struct resource_type *rtype, int delta)
|
|
{
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
int len, result = -1;
|
|
char fname[64];
|
|
|
|
len = snprintf(fname, sizeof(fname), "%s_changeresource", rtype->_name);
|
|
if (len > 0 && (size_t)len < sizeof(fname)) {
|
|
lua_getglobal(L, fname);
|
|
if (lua_isfunction(L, -1)) {
|
|
tolua_pushusertype(L, u, TOLUA_CAST "unit");
|
|
lua_pushinteger(L, delta);
|
|
|
|
if (lua_pcall(L, 2, 1, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("change(%s) calling '%s': %s.\n", unitname(u), fname, error);
|
|
lua_pop(L, 1);
|
|
}
|
|
else {
|
|
result = (int)lua_tonumber(L, -1);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
else {
|
|
log_error("change(%s) calling '%s': not a function.\n", unitname(u), fname);
|
|
lua_pop(L, 1);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
/** callback for an item-use function written in lua. */
|
|
static int
|
|
lua_use_item(unit *u, const item_type *itype, const char * fname, int amount, struct order *ord)
|
|
{
|
|
lua_State *L = (lua_State *)global.vm_state;
|
|
|
|
lua_getglobal(L, fname);
|
|
if (lua_isfunction(L, -1)) {
|
|
tolua_pushusertype(L, (void *)u, TOLUA_CAST "unit");
|
|
lua_pushinteger(L, amount);
|
|
lua_pushstring(L, getstrtoken());
|
|
tolua_pushusertype(L, (void *)ord, TOLUA_CAST "order");
|
|
if (lua_pcall(L, 4, 1, 0) != 0) {
|
|
const char *error = lua_tostring(L, -1);
|
|
log_error("use(%s) calling '%s': %s.\n", unitname(u), fname, error);
|
|
}
|
|
else {
|
|
int result = (int)lua_tonumber(L, -1);
|
|
lua_pop(L, 1);
|
|
return result;
|
|
}
|
|
}
|
|
lua_pop(L, 1);
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
use_item_callback(unit *u, const item_type *itype, int amount, struct order *ord)
|
|
{
|
|
int len;
|
|
char fname[64];
|
|
|
|
len = snprintf(fname, sizeof(fname), "use_%s", itype->rtype->_name);
|
|
if (len > 0 && (size_t)len < sizeof(fname)) {
|
|
int result;
|
|
int(*callout)(unit *, const item_type *, int, struct order *);
|
|
|
|
/* check if we have a register_item_use function */
|
|
callout = (int(*)(unit *, const item_type *, int, struct order *))get_function(fname);
|
|
if (callout) {
|
|
return callout(u, itype, amount, ord);
|
|
}
|
|
|
|
/* check if we have a matching lua function */
|
|
result = lua_use_item(u, itype, fname, amount, ord);
|
|
if (result != 0) {
|
|
return result;
|
|
}
|
|
|
|
/* if the item is a potion, try use_potion, the generic function for
|
|
* potions that add an effect: */
|
|
if (itype->flags & ITF_POTION) {
|
|
return use_potion(u, itype, amount, ord);
|
|
}
|
|
else {
|
|
log_error("no such callout: %s", fname);
|
|
}
|
|
log_error("use(%s) calling '%s': not a function.\n", unitname(u), fname);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* compat code for old data files */
|
|
static int caldera_read(trigger *t, gamedata *data)
|
|
{
|
|
UNUSED_ARG(t);
|
|
READ_INT(data->store, NULL);
|
|
return AT_READ_FAIL;
|
|
}
|
|
|
|
struct trigger_type tt_caldera = {
|
|
"caldera",
|
|
NULL, NULL, NULL, NULL,
|
|
caldera_read
|
|
};
|
|
|
|
|
|
static int building_action_read(variant *var, void *owner, gamedata *data)
|
|
{
|
|
struct storage *store = data->store;
|
|
|
|
UNUSED_ARG(owner);
|
|
UNUSED_ARG(var);
|
|
|
|
if (data->version < ATTRIBOWNER_VERSION) {
|
|
READ_INT(data->store, NULL);
|
|
}
|
|
READ_TOK(store, NULL, 0);
|
|
READ_TOK(store, NULL, 0);
|
|
return AT_READ_DEPR;
|
|
}
|
|
|
|
void register_tolua_helpers(void)
|
|
{
|
|
tt_register(&tt_caldera);
|
|
at_register(&at_direction);
|
|
at_deprecate("lcbuilding", building_action_read);
|
|
|
|
callbacks.equip_unit = lua_equipunit;
|
|
callbacks.cast_spell = lua_callspell;
|
|
callbacks.use_item = use_item_callback;
|
|
callbacks.produce_resource = produce_resource_lua;
|
|
callbacks.limit_resource = limit_resource_lua;
|
|
|
|
register_function((pf_generic)lua_changeresource, "lua_changeresource");
|
|
register_item_give(lua_giveitem, "lua_giveitem");
|
|
}
|