2012-03-31 05:40:54 -06:00
|
|
|
-- Common startup file for all dfhack plugins with lua support
|
2012-04-01 02:50:56 -06:00
|
|
|
-- The global dfhack table is already created by C++ init code.
|
2012-03-31 05:40:54 -06:00
|
|
|
|
2012-04-05 09:55:59 -06:00
|
|
|
-- Console color constants
|
|
|
|
|
|
|
|
COLOR_RESET = -1
|
|
|
|
COLOR_BLACK = 0
|
|
|
|
COLOR_BLUE = 1
|
|
|
|
COLOR_GREEN = 2
|
|
|
|
COLOR_CYAN = 3
|
|
|
|
COLOR_RED = 4
|
|
|
|
COLOR_MAGENTA = 5
|
|
|
|
COLOR_BROWN = 6
|
|
|
|
COLOR_GREY = 7
|
|
|
|
COLOR_DARKGREY = 8
|
|
|
|
COLOR_LIGHTBLUE = 9
|
|
|
|
COLOR_LIGHTGREEN = 10
|
|
|
|
COLOR_LIGHTCYAN = 11
|
|
|
|
COLOR_LIGHTRED = 12
|
|
|
|
COLOR_LIGHTMAGENTA = 13
|
|
|
|
COLOR_YELLOW = 14
|
|
|
|
COLOR_WHITE = 15
|
|
|
|
|
|
|
|
-- Error handling
|
|
|
|
|
2012-04-03 10:02:01 -06:00
|
|
|
safecall = dfhack.safecall
|
|
|
|
|
2012-04-04 03:34:07 -06:00
|
|
|
function dfhack.pcall(f, ...)
|
|
|
|
return xpcall(f, dfhack.onerror, ...)
|
|
|
|
end
|
|
|
|
|
2012-04-05 09:55:59 -06:00
|
|
|
-- Module loading
|
|
|
|
|
2012-04-01 02:50:56 -06:00
|
|
|
function mkmodule(module,env)
|
|
|
|
local pkg = package.loaded[module]
|
|
|
|
if pkg == nil then
|
|
|
|
pkg = {}
|
|
|
|
else
|
|
|
|
if type(pkg) ~= 'table' then
|
|
|
|
error("Not a table in package.loaded["..module.."]")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
setmetatable(pkg, { __index = (env or _G) })
|
|
|
|
return pkg
|
|
|
|
end
|
|
|
|
|
|
|
|
function reload(module)
|
|
|
|
if type(package.loaded[module]) ~= 'table' then
|
|
|
|
error("Module not loaded: "..module)
|
|
|
|
end
|
|
|
|
local path,err = package.searchpath(module,package.path)
|
|
|
|
if not path then
|
|
|
|
error(err)
|
|
|
|
end
|
|
|
|
dofile(path)
|
|
|
|
end
|
|
|
|
|
2012-04-05 09:55:59 -06:00
|
|
|
-- Misc functions
|
|
|
|
|
2012-04-01 06:43:40 -06:00
|
|
|
function printall(table)
|
2012-04-06 01:21:28 -06:00
|
|
|
if type(table) == 'table' or df.isvalid(table) == 'ref' then
|
|
|
|
for k,v in pairs(table) do
|
|
|
|
print(string.format("%-23s\t = %s",tostring(k),tostring(v)))
|
|
|
|
end
|
2012-04-01 06:43:40 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function dfhack.persistent:__tostring()
|
|
|
|
return "<persistent "..self.entry_id..":"..self.key.."=\""
|
|
|
|
..self.value.."\":"..table.concat(self.ints,",")..">"
|
|
|
|
end
|
|
|
|
|
2012-04-06 09:56:19 -06:00
|
|
|
function dfhack.matinfo:__tostring()
|
|
|
|
return "<material "..self.type..":"..self.index.." "..self:getToken()..">"
|
|
|
|
end
|
|
|
|
|
2012-04-01 02:50:56 -06:00
|
|
|
-- Feed the table back to the require() mechanism.
|
2012-03-31 05:40:54 -06:00
|
|
|
return dfhack
|