--[[ Copyright (c) 2009 Peter "Corsix" Cawley Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --]] --[[ Iterator factory for iterating over the deep children of a table. For example: for fn in values(_G, "*.remove") do fn() end Will call os.remove() and table.remove() There can be multiple wildcards (asterisks). --]] function values(root_table, wildcard) local wildcard_parts = {} for part in wildcard:gmatch("[^.]+") do wildcard_parts[#wildcard_parts + 1] = part end local keys = {} local function f() local value = root_table local nkey = 1 for i, part in ipairs(wildcard_parts) do if part == "*" then local key = keys[nkey] if nkey >= #keys then key = next(value, key) keys[nkey] = key if key == nil then if nkey == 1 then return nil else return f() end end end value = value[key] nkey = nkey + 1 else if type(value) ~= "table" then local mt = getmetatable(value) if not mt or not mt.__index then return f() end end value = value[part] if value == nil then return f() end end end return value end return f end -- Helper function to print the contents of a table. Child tables are printed recursively. -- Call without specifying level, only obj and (if wished) max_level. function print_table(obj, max_level, level) assert(type(obj) == "table", "Tried to print ".. tostring(obj) .." with print_table.") level = level or 0 local spacer = "" for i = 1, level do spacer = spacer .. " " end for k, v in pairs(obj) do print(spacer .. tostring(k), v) if type(k) == "table" then -- a set, recurse further into k, instead of v v = k end if type(v) == "table" and (not max_level or max_level > level) then print_table(v, max_level, level + 1) end end end -- Variation on loadfile() which allows for the loaded file to have global -- references resolved in supplied tables. On failure, returns nil and an -- error. On success, returns the file as a function just like loadfile() does -- with the difference that the first argument to this function should be a -- table in which globals are looked up and written to. -- Note: Unlike normal loadfile, this version also accepts files which start -- with the UTF-8 byte order marker function loadfile_envcall(filename) -- Read file contents local f, err = io.open(filename) if not f then return nil, err end local result = f:read(4) if result == "\239\187\191#" then -- UTF-8 BOM plus Unix Shebang result = f:read"*a":gsub("^[^\r\n]*", "", 1) elseif result:sub(1, 3) == "\239\187\191" then -- UTF-8 BOM result = result:sub(4,4) .. f:read"*a" elseif result:sub(1, 1) == "#" then -- Unix Shebang result = (result .. f:read"*a"):gsub("^[^\r\n]*", "", 1) else -- Normal result = result .. f:read"*a" end f:close() if rawget(_G, "loadin") then -- Lua 5.2 lacks setfenv(), but does provide loadin() -- loadin() still only allows a chunk to have an environment set once, so -- we give it an empty environment and use __[new]index metamethods on it -- to allow the same effect as changing the actual environment. local env_mt = {} result, err = loadin(setmetatable({}, env_mt), result, "@".. filename) if result then return function(env, ...) env_mt.__index = env env_mt.__newindex = env return result(...) end else return result, err end else -- Lua 5.1 has setfenv(), which allows environments to be set at runtime result, err = loadstring(result, "@".. filename) if result then return function(env, ...) setfenv(result, env) return result(...) end else return result, err end end end -- Make pairs() and ipairs() respect metamethods (they already do in Lua 5.2) do local metamethod_called = false pairs(setmetatable({}, {__pairs = function() metamethod_called = true end})) if not metamethod_called then local next = next local getmetatable = getmetatable pairs = function(t) local mt = getmetatable(t) if mt then local __pairs = mt.__pairs if __pairs then return __pairs(t) end end return next, t end end metamethod_called = false ipairs(setmetatable({}, {__ipairs = function() metamethod_called = true end})) if not metamethod_called then local ipairs_orig = ipairs ipairs = function(t) local mt = getmetatable(t) if mt then local __ipairs = mt.__ipairs if __ipairs then return __ipairs(t) end end return ipairs_orig(t) end end end -- Various constants DrawFlags = {} DrawFlags.BoundBoxHitTest = 2^12 DrawFlags.Crop = 2^13