-
Notifications
You must be signed in to change notification settings - Fork 6
/
cmd_instant_dgun.lua
371 lines (311 loc) · 11.5 KB
/
cmd_instant_dgun.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
function widget:GetInfo()
return {
name = "Instant Dgun",
desc = "Aims when you press d-gun key down, fires when you release. VERSION 2: seamless integration with meta key use, it should feel just like with shift!",
author = "Errrrrrr",
date = "May 23, 2023",
version = "2.1",
license = "GNU GPL, v2 or later",
layer = 999999,
enabled = true,
handler = true,
}
end
--------------------------------------------------------------------------------------------
-- Version 2 overhauled everything to smart cast commands logic, should be safer to use!
-- Added default_insert_mode parmam, the normal default is off, try the new meta key!
--------------------------------------------------------------------------------------------
local default_insert_mode = false
local enabled = true
local selectedUnits = {}
local active = false
local mouseClicked = false
local curMods = {false,false,false,false} -- {alt, ctrl, meta, shift}
-- shortcuts
local echo = Spring.Echo
local GetActiveCommand = Spring.GetActiveCommand
local GetSelectedUnits = Spring.GetSelectedUnits
local GetUnitPosition = Spring.GetUnitPosition
local GetFeaturePosition = Spring.GetFeaturePosition
local GetModKeyState = Spring.GetModKeyState
local GetInvertQueueKey = Spring.GetInvertQueueKey
local GetMouseState = Spring.GetMouseState
local SetActiveCommand = Spring.SetActiveCommand
local TraceScreenRay = Spring.TraceScreenRay
local GetKeySymbol = Spring.GetKeySymbol
local GetKeyBindings = Spring.GetKeyBindings
local GiveOrder = Spring.GiveOrder
local function tableToString(t)
local result = ""
if type(t) ~= "table" then
result = tostring(t)
elseif t == nil then
result = "nil"
else
for k, v in pairs(t) do
result = result .. "[" .. tostring(k) .. "] = "
if type(v) == "table" then
result = result .. "{"
for k2, v2 in pairs(v) do
result = result .. "[" .. tostring(k2) .. "] = "
if type(v2) == "table" then
result = result .. "{"
for k3, v3 in pairs(v2) do
result = result .. "[" .. tostring(k3) .. "] = " .. tostring(v3) .. ", "
end
result = result .. "}, "
else
result = result .. tostring(v2) .. ", "
end
end
result = result .. "}, "
else
result = result .. tostring(v) .. ", "
end
result = result .." \n"
end
end
return "{" .. result:sub(1, -3) .. "}"
end
local function dumpToFile(obj, prefix, filename)
local file = assert(io.open(filename, "w"))
if type(obj) == "table" then
for k, v in pairs(obj) do
local key = prefix and (prefix .. "." .. tostring(k)) or tostring(k)
if type(v) == "function" then
local info = debug.getinfo(v, "S")
file:write(key .. " (function) defined in " .. info.source .. " at line " .. info.linedefined .. "\n")
elseif type(v) == "table" then
file:write(key .. " (table):\n")
dumpToFile(v, key, filename)
else
file:write(key .. " = " .. tostring(v) .. "\n")
end
end
end
if type(obj) == "string" then
file:write(obj)
end
file:close()
end
local keyBindings = GetKeyBindings() -- Get the key bindings from the game, might not work here depending on widget load order
-- let's make a lookup table for faster cmd lookup
local keyToBinding = {}
--[[ for _, binding in pairs(keyBindings) do
local key = binding["boundWith"]
local cmd = binding["command"]
if key and cmd then
if keyToBinding[key] == nil then keyToBinding[key] = cmd
else
-- if there's clash, we need to add to existing
local value = keyToBinding[key]
if type(value) == "table" then -- already more than one entry
value[#value+1] = cmd
keyToBinding[key] = value
elseif type(value) == "string" then -- one entry only
local newValue = {value, cmd}
keyToBinding[key] = newValue
end
end
end
end ]]
--table.save(keyToBinding, "LuaUI/config/keyToBinding.txt", "Smart Commands")
local skipFeatureCmd = { -- these cannot be set on featureID
[CMD.ATTACK]=true, [CMD.PATROL]=true, [CMD.FIGHT]=true, [CMD.MANUALFIRE]=true
}
local skipAltogether = {
[10010]=true, -- CMD_BUILD
[30100]=true, -- CMD_AREA_MEX
}
local isModKey = {
[32]=true, [304]=true, [306]=true, [308]=true
}
local isBuildKey = {
[122]=true, [120]=true, [118]=true, [99]=true
}
function widget:Initialize()
local keyBindings = GetKeyBindings()
for _, binding in pairs(keyBindings) do
local key = binding["boundWith"]
local cmd = binding["command"]
if key and cmd then
if keyToBinding[key] == nil then keyToBinding[key] = cmd
else
-- if there's clash, we need to add to existing
local value = keyToBinding[key]
if type(value) == "table" then -- already more than one entry
value[#value+1] = cmd
keyToBinding[key] = value
elseif type(value) == "string" then -- one entry only
local newValue = {value, cmd}
keyToBinding[key] = newValue
end
end
end
end
selectedUnits = GetSelectedUnits()
end
function toggle(_,_,args)
enabled = not enabled
local status = enabled and "on" or "off"
echo("Smart Commands toggled ".. status)
end
function widget:MousePress(x, y, button)
if not enabled or #selectedUnits == 0 then return false end
mouseClicked = true
--echo("mouse clicked TRUE")
end
local function isChatActive()
return WG['chat'].isInputActive() or false
end
local function setActiveCmdFromKey(key)
local result = false
local keyString = GetKeySymbol(key)
if keyString then
local keyString = "sc_"..keyString
local modString = ""
if curMods and curMods.ctrl then modString = "Ctrl+" end
if curMods and curMods.alt then modString = "Alt+" end
keyString = modString .. keyString
--echo("keyString: "..keyString)
local cmdName = keyToBinding[keyString]
--echo("keyString: "..keyString..", cmdName: "..tostring(cmdName))
if cmdName then
--echo("command set through keybind search: "..tableToString(cmdName))
if type(cmdName) == "table" then -- we have multiple commands possible
local cmd
for i=1, #cmdName do
cmd = cmdName[i]
result = SetActiveCommand(cmd)
if result then break end
end
--if not result then echo("Error in finding bound command!") end
elseif type(cmdName) == "string" then -- only one command bound
result = SetActiveCommand(cmdName)
end
active = true
--echo("active")
end
end
return result
end
function widget:KeyPress(key, mods, isRepeat)
--[[ if key == 8 and mods.alt then -- alt+backspace
toggle()
end ]]
if not enabled or #selectedUnits == 0 then return false end
if isChatActive() then return false end
if isBuildKey[key] then return false end
--echo("key = " .. tostring(key))
curMods = mods
if isModKey[key] then
--echo("mod key only! ".. tostring(key))
return false
end
if mouseClicked and not isRepeat then
mouseClicked = false
--echo("mouse clicked FALSE")
end
active = setActiveCmdFromKey(key, mods, isRepeat)
return active
end
function widget:KeyRelease(key)
if not enabled or #selectedUnits == 0 then return false end
if isChatActive() then return false end
if isBuildKey[key] then return false end
local alt, ctrl, meta, shift = GetModKeys()
curMods.alt = alt
curMods.ctrl = ctrl
curMods.meta = meta
curMods.shift = shift
if isModKey[key] then return false end
local cmdIndex, cmdID, cmdType, cmdName = GetActiveCommand()
if active and mouseClicked then
mouseClicked = false
--echo("mouseClicked false")
if cmdID and cmdID > 0 and not skipAltogether[cmdID] and cmdID == 105 then -- d-gun only!!!
SetActiveCommand(0)
end
return false
end
--echo("cmdIndex: "..tostring(cmdIndex).." cmdID: "..tostring(cmdID).." cmdType: "..tostring(cmdType).." cmdName: "..tostring(cmdName))
if active and cmdID ~= nil and cmdID > 0 and not skipAltogether[cmdID] and cmdID == 105 then
executeCommand(cmdID)
active = false
end
end
local function GiveNotifyingOrder(cmdID, cmdParams, cmdOpts)
if widgetHandler:CommandNotify(cmdID, cmdParams, cmdOpts) then
return
end
GiveOrder(cmdID, cmdParams, cmdOpts.coded)
end
function widget:SelectionChanged(sel)
if not enabled then return false end
selectedUnits = sel
end
function executeCommand(cmdID)
if not enabled or #selectedUnits == 0 then return false end
local mouseX, mouseY = GetMouseState()
local desc, args = TraceScreenRay(mouseX, mouseY, false)
if desc == nil then
return
end
local params = {}
if desc == "unit" then
params = {args}
if CMD.FIGHT == cmdID or CMD.PATROL == cmdID then
local fx, fy, fz = GetUnitPosition(args, true)
params = {fx, fy, fz}
end
elseif desc == "feature" then
params = {args+32000} -- seriously wtf
if skipFeatureCmd[cmdID] then
local fx, fy, fz = GetFeaturePosition(args, true)
params = {fx, fy, fz}
end
else
params = {args[1], args[2], args[3]}
end
--local alt, ctrl, meta, shift = GetModKeys()
local cmdOpts
local altOpts = GetCmdOpts(true, false, false, false, false)
if default_insert_mode then curMods.meta = not curMods.meta end
if curMods.meta and (cmdID ~= 34923 and cmdID ~= 34925) then
cmdOpts = GetCmdOpts(curMods.alt, curMods.ctrl, false, curMods.shift, false)
GiveOrder(CMD.INSERT, {0, cmdID, cmdOpts.coded, unpack(params)}, altOpts)
else
if cmdID == 34923 or cmdID == 34925 then -- insert doesn't play nice with set_target
curMods.meta = false
end
cmdOpts = GetCmdOpts(curMods.alt, curMods.ctrl, curMods.meta, curMods.shift, false)
GiveOrder(cmdID, params, cmdOpts)
end
--echo("cmdID: ".. tostring(cmdID)..", opts: ".. tableToString(cmdOpts))
-- echo("executeCommand set0")
SetActiveCommand(0)
end
function widget:CommandNotify(id, cmdParams, cmdOpts)
if not enabled or #selectedUnits == 0 then return false end
if active and id > 0 then
SetActiveCommand(0)
end
end
function GetModKeys()
local alt, ctrl, meta, shift = GetModKeyState()
if GetInvertQueueKey() then -- Shift inversion
shift = not shift
end
return alt, ctrl, meta, shift
end
function GetCmdOpts(alt, ctrl, meta, shift, right)
local opts = { alt=alt, ctrl=ctrl, meta=meta, shift=shift, right=right }
local coded = 0
if alt then coded = coded + CMD.OPT_ALT end
if ctrl then coded = coded + CMD.OPT_CTRL end
if meta then coded = coded + CMD.OPT_META end
if shift then coded = coded + CMD.OPT_SHIFT end
if right then coded = coded + CMD.OPT_RIGHT end
opts.coded = coded
return opts
end