lain/helpers.lua

79 lines
1.6 KiB
Lua
Raw Normal View History

2013-09-07 12:06:42 +02:00
--[[
2013-09-13 18:15:25 +02:00
Licensed under GNU General Public License v2
* (c) 2013, Luke Bonham
* (c) 2010-2012, Peter Hofmann
2013-09-07 12:06:42 +02:00
--]]
local debug = require("debug")
2013-09-13 00:07:44 +02:00
local capi = { timer = timer }
2013-09-10 23:02:11 +02:00
local io = { open = io.open }
2013-09-13 00:07:44 +02:00
local rawget = rawget
2013-09-07 12:06:42 +02:00
-- Lain helper functions for internal use
-- lain.helpers
local helpers = {}
helpers.lain_dir = debug.getinfo(1, 'S').source:match[[^@(.*/).*$]]
helpers.icons_dir = helpers.lain_dir .. 'icons/'
helpers.scripts_dir = helpers.lain_dir .. 'scripts/'
-- {{{ Modules loader
function helpers.wrequire(table, key)
local module = rawget(table, key)
return module or require(table._NAME .. '.' .. key)
end
-- }}}
2013-10-23 11:32:34 +02:00
-- {{{ Read the first line of a file or return nil
2013-09-07 12:06:42 +02:00
function helpers.first_line(f)
local fp = io.open(f)
if not fp
then
return nil
end
local content = fp:read("*l")
fp:close()
return content
end
-- }}}
2013-09-13 18:15:25 +02:00
-- {{{ Timer maker
2013-09-10 23:02:11 +02:00
helpers.timer_table = {}
function helpers.newtimer(name, timeout, fun, nostart)
2013-09-13 00:07:44 +02:00
helpers.timer_table[name] = capi.timer({ timeout = timeout })
2013-09-10 23:02:11 +02:00
helpers.timer_table[name]:connect_signal("timeout", fun)
helpers.timer_table[name]:start()
if not nostart then
helpers.timer_table[name]:emit_signal("timeout")
end
end
-- }}}
2013-09-07 12:06:42 +02:00
-- {{{ A map utility
helpers.map_table = {}
function helpers.set_map(element, value)
helpers.map_table[element] = value
end
function helpers.get_map(element)
return helpers.map_table[element]
end
-- }}}
return helpers