---------------------------------------------------------------------------
-- userbase.lua:
-- Base Lua definitions that other Lua scripts rely on (auto-loaded).
---------------------------------------------------------------------------
-- Lua global data
chk_interrupt_macro = { }
chk_interrupt_activity = { }
chk_lua_option = { }
-- Push into this table, rather than indexing into it.
chk_lua_save = { }
chk_force_autopickup = { }
chk_deny_autopickup = { }
if not chk_lua_save then
return
end
for i, fn in ipairs(chk_lua_save) do
fn(file)
end
end
-- This function returns true to tell Crawl not to process the option further
if chk_lua_option and chk_lua_option[key] then
return chk_lua_option[key](key, val)
end
return false
end
-- If some joker undefined the table, stop all macros
if not chk_interrupt_macro then
return true
end
-- Maybe we don't know what macro is running? Kill it to be safe
-- We also kill macros that don't add an entry to chk_interrupt_macro.
if not c_macro_name or not chk_interrupt_macro[c_macro_name] then
return true
end
return chk_interrupt_macro[c_macro_name](iname, cause, extra)
end
-- Notice that c_interrupt_activity defaults to *false* whereas
-- c_interrupt_macro defaults to *true*. This is because "false" really just
-- means "go ahead and use the default logic to kill this activity" here,
-- whereas false is interpreted as "no, don't stop this macro" for
-- c_interrupt_macro.
--
-- If c_interrupt_activity, or one of the individual hooks wants to ensure that
-- the activity continues, it must return *nil* (make sure you know what you're
-- doing when you return nil!).
-- If some joker undefined the table, bail out
if not chk_interrupt_activity then
return false
end
-- No activity name? Bail!
if not aname or not chk_interrupt_activity[aname] then
return false
end
return chk_interrupt_activity[aname](iname, cause, extra)
end
default = default or false
local optval = options[optname]
if optval == nil then
return default
else
return optval == "true" or optval == "yes"
end
end
if not chk_force_autopickup then
return false
end
for i = 1, #chk_force_autopickup do
if chk_force_autopickup[i](it, name) then
return true
end
end
return false
end
table.insert(chk_force_autopickup, func)
end
if not chk_deny_autopickup then
return false
end
for i = 1, #chk_deny_autopickup do
if chk_deny_autopickup[i](it, name) then
return true
end
end
return false
end
table.insert(chk_deny_autopickup, func)
end
-- Sends the characters in keys as keyboard input to crawl, then requests
-- that Crawl process one command.
if yield_value == nil then
yield_value = true
end
crawl.sendkeys(keys)
crawl.process_command()
coroutine.yield(yield_value)
end