2012-08-06 20:00:29 +00:00
|
|
|
-- Game control module for Lunatic.
|
|
|
|
|
|
|
|
local ffi = require("ffi")
|
2012-08-19 12:52:18 +00:00
|
|
|
local ffiC = ffi.C
|
|
|
|
|
|
|
|
local bit = require("bit")
|
2012-08-06 20:00:29 +00:00
|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
|
|
|
|
local assert = assert
|
|
|
|
local error = error
|
|
|
|
local type = type
|
|
|
|
|
|
|
|
|
|
|
|
module(...)
|
|
|
|
|
|
|
|
|
2012-08-08 19:32:35 +00:00
|
|
|
local lastid = { action=0, move=0, ai=0 }
|
|
|
|
local def = { action={}, move={}, ai={} }
|
2012-08-06 20:00:29 +00:00
|
|
|
|
|
|
|
local function forbidden() error("newindex forbidden", 2) end
|
|
|
|
|
2012-08-08 19:32:35 +00:00
|
|
|
AC = setmetatable({}, { __index=def.action, __newindex=forbidden })
|
|
|
|
MV = setmetatable({}, { __index=def.move, __newindex=forbidden })
|
|
|
|
AI = setmetatable({}, { __index=def.ai, __newindex=forbidden })
|
2012-08-06 20:00:29 +00:00
|
|
|
|
2012-08-08 19:32:35 +00:00
|
|
|
local function check_name(name, what, errlev)
|
2012-08-06 20:00:29 +00:00
|
|
|
if (type(name)~="string" or #name > 63) then
|
2012-08-08 19:32:35 +00:00
|
|
|
error("bad argument #1 to "..what..": must be a string of length <= 63", errlev+1)
|
2012-08-06 20:00:29 +00:00
|
|
|
end
|
2012-08-08 19:32:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
local function action_or_move(what, numargs, tab, name, ...)
|
|
|
|
assert(lastid[what] > -(2^31))
|
|
|
|
check_name(name, what, 3)
|
2012-08-06 20:00:29 +00:00
|
|
|
|
|
|
|
local args = {...}
|
|
|
|
assert(#args <= numargs)
|
|
|
|
|
|
|
|
for i=1,#args do
|
|
|
|
local n = args[i]
|
2012-08-08 19:32:35 +00:00
|
|
|
if (type(n)~="number" or not (n >= -32768 and n <= 32767)) then
|
|
|
|
error("bad argument #".. i+1 .." to "..what..
|
|
|
|
": must be numbers in [-32768..32767]", 3)
|
|
|
|
end
|
2012-08-06 20:00:29 +00:00
|
|
|
end
|
|
|
|
-- missing fields are initialized to 0 by ffi.new
|
|
|
|
|
|
|
|
-- Named actions or moves have negative ids so that non-negative ones
|
|
|
|
-- can be used as (different) placeholders for all-zero ones.
|
|
|
|
lastid[what] = lastid[what]-1
|
|
|
|
|
|
|
|
-- ffi.new takes either for initialization: varargs, a table with numeric
|
|
|
|
-- indices, or a table with key-value pairs
|
|
|
|
-- See http://luajit.org/ext_ffi_semantics.html#init_table
|
|
|
|
tab[name] = ffi.new("const con_"..what.."_t", lastid[what], args)
|
|
|
|
end
|
|
|
|
|
|
|
|
function action(name, ...)
|
2012-08-08 19:32:35 +00:00
|
|
|
action_or_move("action", 5, def.action, name, ...)
|
2012-08-06 20:00:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function move(name, ...)
|
2012-08-08 19:32:35 +00:00
|
|
|
action_or_move("move", 2, def.move, name, ...)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
local function get_action_or_move(what, val, argi)
|
|
|
|
if (val == nil) then
|
|
|
|
return {} -- will init the struct to all zeros
|
|
|
|
elseif (type(val)=="string") then
|
|
|
|
local am = def[what][val]
|
|
|
|
if (am==nil) then
|
|
|
|
error("no "..what.." '"..val.."' defined", 3)
|
|
|
|
end
|
|
|
|
return am
|
|
|
|
elseif (ffi.istype("con_"..what.."_t", val)) then
|
|
|
|
return val
|
|
|
|
end
|
|
|
|
|
|
|
|
-- TODO: literal number actions/moves?
|
|
|
|
error("bad argument #"..argi.." to ai: must be string or "..what)
|
|
|
|
end
|
|
|
|
|
|
|
|
function ai(name, action, move, flags)
|
|
|
|
assert(lastid.ai > -(2^31))
|
|
|
|
check_name(name, "ai", 2)
|
|
|
|
|
|
|
|
lastid.ai = lastid.ai-1
|
|
|
|
|
|
|
|
local act = get_action_or_move("action", action, 2)
|
|
|
|
local mov = get_action_or_move("move", move, 3)
|
|
|
|
|
|
|
|
if (flags~=nil) then
|
|
|
|
if (type(flags)~="number" or not (flags>=0 and flags<=32767)) then
|
|
|
|
error("bad argument #4 to ai: must be a number in [0..32767]", 2)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
flags = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def.ai[name] = ffi.new("const con_ai_t", lastid.ai, act, mov, flags)
|
2012-08-06 20:00:29 +00:00
|
|
|
end
|
2012-08-19 12:52:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
--== RUNTIME CON FUNCTIONS ==--
|
|
|
|
|
|
|
|
function rotatesprite(x, y, zoom, ang, tilenum, shade, pal, orientation,
|
|
|
|
cx1, cy1, cx2, cy2)
|
|
|
|
if (type(tilenum) ~= "number" or not (tilenum >= 0 and tilenum < ffiC.MAXTILES)) then
|
|
|
|
error("bad argument #5 to rotatesprite: must be number in [0.."..ffiC.MAXTILES.."]")
|
|
|
|
end
|
|
|
|
|
|
|
|
ffiC.rotatesprite(65536*x, 65536*y, zoom, ang, tilenum, shade, pal, bit.bor(2,orientation),
|
|
|
|
cx1, cy1, cx2, cy2)
|
|
|
|
end
|