forked from DFHack/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirm.lua
202 lines (182 loc) · 5.91 KB
/
confirm.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
--@ module = true
local dialogs = require('gui.dialogs')
local gui = require('gui')
local overlay = require('plugins.overlay')
local specs = reqscript('internal/confirm/specs')
local utils = require('utils')
local widgets = require("gui.widgets")
------------------------
-- API
function get_state()
return specs.config.data
end
function set_enabled(id, enabled)
for _, conf in pairs(specs.config.data) do
if conf.id == id then
if conf.enabled ~= enabled then
conf.enabled = enabled
specs.config:write()
end
break
end
end
end
------------------------
-- Overlay
local function get_contexts()
local contexts, contexts_set = {}, {}
for id, conf in pairs(specs.REGISTRY) do
if not contexts_set[id] then
contexts_set[id] = true
table.insert(contexts, conf.context)
end
end
return contexts
end
ConfirmOverlay = defclass(ConfirmOverlay, overlay.OverlayWidget)
ConfirmOverlay.ATTRS{
desc='Detects dangerous actions and prompts with confirmation dialogs.',
default_pos={x=1,y=1},
default_enabled=true,
full_interface=true, -- not player-repositionable
hotspot=true, -- need to reset pause when we're not in target contexts
overlay_onupdate_max_freq_seconds=300,
viewscreens=get_contexts(),
}
function ConfirmOverlay:init()
for id, conf in pairs(specs.REGISTRY) do
if conf.intercept_frame then
self:addviews{
widgets.Panel{
view_id=id,
frame=copyall(conf.intercept_frame),
frame_style=conf.debug_frame and gui.FRAME_INTERIOR or nil,
}
}
end
end
end
function ConfirmOverlay:preUpdateLayout()
local interface_rect = gui.get_interface_rect()
self.frame.w, self.frame.h = interface_rect.width, interface_rect.height
-- reset frames if any of them have been pushed out of position
for id, conf in pairs(specs.REGISTRY) do
if conf.intercept_frame then
self.subviews[id].frame = copyall(conf.intercept_frame)
end
end
end
function ConfirmOverlay:overlay_onupdate()
if self.paused_conf and
not dfhack.gui.matchFocusString(self.paused_conf.context,
dfhack.gui.getDFViewscreen(true))
then
self.paused_conf = nil
self.overlay_onupdate_max_freq_seconds = 300
end
end
function ConfirmOverlay:matches_conf(conf, keys, scr)
local matched_keys = false
for _, key in ipairs(conf.intercept_keys) do
if keys[key] then
matched_keys = true
break
end
end
if not matched_keys then return false end
local mouse_offset
if keys._MOUSE_L and conf.intercept_frame then
local mousex, mousey = self.subviews[conf.id]:getMouseFramePos()
if not mousex then
return false
end
mouse_offset = xy2pos(mousex, mousey)
end
if not dfhack.gui.matchFocusString(conf.context, scr) then return false end
return not conf.predicate or conf.predicate(keys, mouse_offset)
end
function ConfirmOverlay:onInput(keys)
if self.paused_conf or self.simulating then
return false
end
local scr = dfhack.gui.getDFViewscreen(true)
for id, conf in pairs(specs.REGISTRY) do
if specs.config.data[id].enabled and self:matches_conf(conf, keys, scr) then
local mouse_pos = xy2pos(dfhack.screen.getMousePos())
local propagate_fn = function(pause)
if conf.on_propagate then
conf.on_propagate()
end
if pause then
self.paused_conf = conf
self.overlay_onupdate_max_freq_seconds = 0
end
if keys._MOUSE_L then
df.global.gps.mouse_x = mouse_pos.x
df.global.gps.mouse_y = mouse_pos.y
end
self.simulating = true
gui.simulateInput(scr, keys)
self.simulating = false
end
dialogs.showYesNoPrompt(conf.title, utils.getval(conf.message):wrap(45), COLOR_YELLOW,
propagate_fn, nil, curry(propagate_fn, true), curry(dfhack.run_script, 'gui/confirm', tostring(conf.id)))
return true
end
end
end
function ConfirmOverlay:render(dc)
if gui.blink_visible(500) then
return
end
ConfirmOverlay.super.render(self, dc)
end
OVERLAY_WIDGETS = {
overlay=ConfirmOverlay,
}
------------------------
-- CLI
local function do_list()
print('Available confirmation prompts:')
local confs, max_len = {}, 10
for id, conf in pairs(specs.REGISTRY) do
max_len = math.max(max_len, #id)
table.insert(confs, conf)
end
table.sort(confs, function(a,b) return a.id < b.id end)
for _, conf in ipairs(confs) do
local fmt = '%' .. tostring(max_len) .. 's: %s %s'
print((fmt):format(conf.id,
specs.config.data[conf.id].enabled and '(enabled) ' or '(disabled)',
conf.title))
end
end
local function do_enable_disable(args, enable)
if args[1] == 'all' then
for id in pairs(specs.REGISTRY) do
set_enabled(id, enable)
end
else
for _, id in ipairs(args) do
if not specs.REGISTRY[id] then
qerror('confirmation prompt id not found: ' .. tostring(id))
end
set_enabled(id, enable)
end
end
end
local function main(args)
local command = table.remove(args, 1)
if not command or command == 'list' then
do_list()
elseif command == 'enable' or command == 'disable' then
do_enable_disable(args, command == 'enable')
elseif command == 'help' then
print(dfhack.script_help())
else
dfhack.printerr('unknown command: ' .. tostring(command))
end
end
if not dfhack_flags.module then
main{...}
end