This repository has been archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
/
helppage.lua
132 lines (124 loc) · 4.5 KB
/
helppage.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
require "rendertext"
require "keys"
require "graphics"
require "font"
require "inputbox"
require "selectmenu"
require "commands"
HelpPage = {
-- Other Class vars:
title_H = 40, -- title height
margin_H = 10, -- horisontal margin
foot_H = 28, -- foot height
bg_color = 3, -- background color
spacing = 25, -- spacing between lines
-- state buffer
commands = nil,
items = 0,
page = 1,
}
function HelpPage:show(ypos, height, commands, title)
local face = Font:getFace("hpkfont", 20)
local hface = Font:getFace("hfont", 20)
local fface = Font:getFace("ffont", 16)
local tface = Font:getFace("tfont", 25)
self.commands = Commands:new()
self.items = 0
local keys = {}
for k,v in pairs(commands.map) do
local key = v.keygroup or v.keydef:display()
--Debug("order: "..v.order.." command: "..tostring(v.keydef).." - keygroup:"..(v.keygroup or "nil").." -keys[key]:"..(keys[key] or "nil"))
if keys[key] == nil then
keys[key] = 1
table.insert(self.commands,{shortcut=key,help=v.help,order=v.order})
self.items = self.items + 1
end
end
table.sort(self.commands,function(w1,w2) return w1.order<w2.order end)
local face_height, face_ascender = face.ftface:getHeightAndAscender()
--local hface_height, hface_ascender = hface.ftface:getHeightAndAscender()
local fface_height, fface_ascender = fface.ftface:getHeightAndAscender()
--Debug(face_height.."-"..face_ascender)
--Debug(fface_height.."-"..fface_ascender)
face_height = math.ceil(face_height)
face_ascender = math.ceil(face_ascender)
fface_height = math.ceil(fface_height)
fface_ascender = math.ceil(fface_ascender)
local spacing = face_height + 5
local vert_S = self.title_H + 3
local perpage = math.floor( (height - ypos - 1 * (fface_height + 5) - vert_S) / spacing )
self.page = 1
local is_pagedirty = true
while true do
if is_pagedirty then
fb.bb:paintRect(0, ypos, fb.bb:getWidth(), height, 0)
DrawTitle(title or _("Active Hotkeys"),self.margin_H,0,self.title_H,self.bg_color,tface)
local c
local max_x = 0
for c = 1, perpage do
local x = self.margin_H
local i = (self.page - 1) * perpage + c
if i <= self.items then
local key = self.commands[i].shortcut
for _k,aMod in pairs(MOD_TABLE) do
local modStart, modEnd = key:find(aMod.v)
Debug("key:"..key.." v:"..aMod.v.." d:"..aMod.d.." modstart:"..(modStart or "nil"))
if(modStart ~= nil) then
key = key:sub(1,modStart-1)..key:sub(modEnd+1)
local box = sizeUtf8Text( x, fb.bb:getWidth(), face, aMod.d, true)
fb.bb:paintRect(x, ypos + spacing*c - box.y_top + vert_S, box.x + self.title_H, box.y_top + box.y_bottom, self.bg_color)
local pen_x = renderUtf8Text(fb.bb, x, ypos + spacing*c + vert_S, face, aMod.d.." + ", true, self.bg_color/15, 1.0)
x = x + pen_x
max_x = math.max(max_x, pen_x)
end
end
Debug("key:"..key)
local box = sizeUtf8Text( x, fb.bb:getWidth(), face, key , true)
fb.bb:paintRect(x, ypos + spacing*c - box.y_top + vert_S, box.x, box.y_top + box.y_bottom, self.bg_color)
local pen_x = renderUtf8Text(fb.bb, x, ypos + spacing*c + vert_S, face, key, true, self.bg_color/15, 1.0)
x = x + pen_x
max_x = math.max(max_x, x)
end
end
for c = 1, perpage do
local i = (self.page - 1) * perpage + c
if i <= self.items then
renderUtf8Text(fb.bb, max_x + 20, ypos + spacing*c + vert_S, hface, self.commands[i].help, true)
end
end
-- draw footer
local footer = string.format(
_("Page %d of %d - Back to close this page"),
self.page, math.ceil(self.items / perpage))
renderUtf8Text(fb.bb, self.margin_H, height-7, fface, footer, true)
end
if is_pagedirty then
Screen:refresh(0, 0, nil, ypos, fb.bb:getWidth(), height)
is_pagedirty = false
end
local ev = input.saveWaitForEvent()
--Debug("key code:"..ev.code)
ev.code = adjustKeyEvents(ev)
if ev.type == EV_KEY and ev.value == EVENT_VALUE_KEY_PRESS then
if ev.code == KEY_PGFWD or ev.code == KEY_LPGFWD then
if self.page < (self.items / perpage) then
self.page = self.page + 1
is_pagedirty = true
end
elseif ev.code == KEY_PGBCK or ev.code == KEY_LPGBCK then
if self.page > 1 then
self.page = self.page - 1
is_pagedirty = true
end
elseif ev.code == KEY_BACK then
return nil
elseif ev.code == KEY_INTO_SCREEN_SAVER or ev.code == KEY_OUTOF_SCREEN_SAVER then
command = self.commands:get(ev.code, nil)
ret_code = command.func(self)
if ret_code == "break" then
break;
end
end
end -- ev.type == EV_KEY...
end -- while
end