-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasicCore.Session.iss
More file actions
341 lines (280 loc) · 8.48 KB
/
BasicCore.Session.iss
File metadata and controls
341 lines (280 loc) · 8.48 KB
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
#include "BasicCore.Common.iss"
#include "BasicCore.Session.WindowLayout.iss"
objectdef basicCore
{
variable taskmanager TaskManager=${LMAC.NewTaskManager["basicCore"]}
variable basicCore_settings Settings
variable basicCore_highlighter Highlighter
variable basicCore_performance Performance
variable basicCore_windowLayout WindowLayout
variable basicCore_windowSwitching WindowSwitching
method Initialize()
{
LGUI2:LoadPackageFile[BasicCore.Session.lgui2Package.json]
This:LoadSettings
Highlighter:Enable
This:ApplySettings
}
method Shutdown()
{
TaskManager:Destroy
LGUI2:UnloadPackageFile[BasicCore.Session.lgui2Package.json]
}
method LoadSettings()
{
Settings:LoadDefaults
if ${Settings.SettingsFileExists}
{
Settings:LoadFile
}
}
method ApplySettings()
{
Performance:ApplyJSON[Settings.Performance]
WindowSwitching:ApplyJSON[Settings.Hotkeys]
WindowLayout:ApplyJSON[Settings.WindowLayout]
}
}
objectdef basicCore_highlighter
{
method Initialize()
{
}
method Shutdown()
{
This:Disable
}
method Enable()
{
LavishScript:RegisterEvent[OnFrame]
Event[OnFrame]:AttachAtom[This:OnFrame]
}
method Disable()
{
Event[OnFrame]:DetachAtom[This:OnFrame]
LGUI2.Element[basicCore.highlighter.border]:SetVisibility[Hidden]
LGUI2.Element[basicCore.highlighter.number]:SetVisibility[Hidden]
}
member:bool IsFullSize()
{
if ${Display.ViewableWidth}!=${Display.Width}
return FALSE
if ${Display.ViewableHeight}!=${Display.Height}
return FALSE
return TRUE
}
method OnFrame()
{
if ${Display.Window.IsForeground}
{
if !${BasicCore.Settings.Highlighter.GetBool[showBorder]} || (${This.IsFullSize} && !${BasicCore.Settings.Highlighter.GetBool[highlightFullSize]})
LGUI2.Element[basicCore.highlighter.border]:SetVisibility[Hidden]
else
LGUI2.Element[basicCore.highlighter.border]:SetVisibility[Visible]
LGUI2.Element[basicCore.highlighter.number]:SetVisibility[Hidden]
}
else
{
LGUI2.Element[basicCore.highlighter.border]:SetVisibility[Hidden]
if ${BasicCore.Settings.Highlighter.GetBool[showNumber]}
LGUI2.Element[basicCore.highlighter.number]:SetVisibility[Visible]
else
LGUI2.Element[basicCore.highlighter.number]:SetVisibility[Hidden]
}
}
}
objectdef basicCore_performance
{
method ApplyMaxFPS(string prefix, jsonvalueref json)
{
variable string useLine="${prefix~}"
if ${json.Has[maxFPS]}
useLine:Concat[" ${json.GetInteger[maxFPS]~}"]
if ${json.Has[calculate]}
{
if ${json.GetBool[calculate]}
useLine:Concat[" -calculate"]
else
useLine:Concat[" -absolute"]
}
echo "maxfps ${useLine~}"
maxfps ${useLine~}
}
method ApplyJSON(jsonvalueref json)
{
if ${json.Has[lockAffinity]}
{
if ${json.GetBool[lockAffinity]}
proclock on
else
proclock off
}
if ${json.Get[background].Type.Equal[object]}
{
This:ApplyMaxFPS["-bg","json.Get[background]"]
}
if ${json.Get[foreground].Type.Equal[object]}
{
This:ApplyMaxFPS["-fg","json.Get[foreground]"]
}
}
}
objectdef basicCore_windowSwitching
{
variable string useGlobalHotkey
variable bool HotkeyInstalled
variable uint NumSlotHotkeys
method Initialize()
{
LavishScript:RegisterEvent[On3DReset]
LavishScript:RegisterEvent[OnHotkeyFocused]
Event[On3DReset]:AttachAtom[This:On3DReset]
}
method Shutdown()
{
Event[On3DReset]:DetachAtom[This:On3DReset]
This:ClearHotkeys
}
method ClearHotkeys()
{
squelch globalbind -delete focus
LGUI2:RemoveBinding[basicCore.NextWindow]
LGUI2:RemoveBinding[basicCore.PreviousWindow]
variable uint i
for (i:Set[1] ; ${i}<=${NumSlotHotkeys} ; i:Inc)
{
LGUI2:RemoveBinding["basicCore.Slot${i}"]
}
}
method InstallGlobalHotkey()
{
if ${HotkeyInstalled} || !${useGlobalHotkey.NotNULLOrEmpty}
return
HotkeyInstalled:Set[1]
globalbind "focus" "${useGlobalHotkey~}" "BasicCore.WindowSwitching:OnGlobalHotkey"
}
method SetSlotHotkey(uint numSlot, string useHotkey)
{
echo "SetSlotHotkey ${numSlot}: ${useHotkey~}"
This:InstallHotkey[basicCore.Slot${numSlot},"${useHotkey~}","BasicCore.WindowSwitching:OnSlotHotkey[${numSlot}]"]
}
method ApplyJSON(jsonvalueref json)
{
This:ClearHotkeys
if ${json.GetBool[globalSwitchingHotkeys]}
{
if ${JMB.Slot}>0 && ${JMB.Slot}<=${json.Get[slotHotkeys].Used}
{
useGlobalHotkey:Set["${json.Get[slotHotkeys,${JMB.Slot}]~}"]
}
This:InstallGlobalHotkey
}
else
{
json.Get[slotHotkeys]:ForEach["This:SetSlotHotkey[\"\${ForEach.Key~}\",\"\${ForEach.Value~}\"]"]
}
if ${json.Has[previousWindow]}
This:InstallHotkey[basicCore.PreviousWindow,"${json.Get[previousWindow]~}","BasicCore.WindowSwitching:PreviousWindow"]
if ${json.Has[nextWindow]}
This:InstallHotkey[basicCore.NextWindow,"${json.Get[nextWindow]~}","BasicCore.WindowSwitching:NextWindow"]
}
method On3DReset()
{
HotkeyInstalled:Set[0]
squelch globalbind -delete focus
This:InstallGlobalHotkey
}
method OnGlobalHotkey()
{
windowvisibility foreground
Event[OnHotkeyFocused]:Execute
}
; Installs a Hotkey, given a name, a key combination, and LavishScript code to execute on PRESS
method InstallHotkey(string name, string keyCombo, string methodName)
{
echo "InstallHotkey ${name~}: ${keyCombo~}"
variable jsonvalue joBinding
; initialize a LGUI2 input binding object with JSON
joBinding:SetValue["$$>
{
"name":${name.AsJSON~},
"combo":${keyCombo.AsJSON~},
"eventHandler":{
"type":"task",
"taskManager":"basicCore",
"task":{
"type":"ls1.code",
"start":${methodName.AsJSON~}
}
}
}
<$$"]
; now add the binding to LGUI2!
LGUI2:AddBinding["${joBinding.AsJSON~}"]
}
member:uint GetNextSlot()
{
variable uint Slot=${JMB.Slot}
if !${Slot}
return 0
while 1
{
Slot:Inc
if ${Slot}>${JMB.Slots.Used}
Slot:Set[1]
if ${Slot}==${JMB.Slot}
return 0
if ${JMB.Slot[${Slot}].ProcessID}
return ${Slot}
}
}
member:uint GetPreviousSlot()
{
variable uint Slot=${JMB.Slot}
if !${Slot}
return 0
while 1
{
Slot:Dec
if !${Slot}
Slot:Set[${JMB.Slots.Used}]
if ${Slot}==${JMB.Slot}
return 0
if ${JMB.Slot[${Slot}].ProcessID}
return ${Slot}
}
}
method PreviousWindow()
{
variable uint previousSlot=${This.GetPreviousSlot}
if !${previousSlot}
return
if !${Display.Window.IsForeground}
return
echo PreviousWindow: ${previousSlot}
uplink focus "jmb${previousSlot}"
relay "jmb${previousSlot}" "Event[OnHotkeyFocused]:Execute"
}
method NextWindow()
{
variable uint nextSlot=${This.GetNextSlot}
if !${nextSlot}
return
if !${Display.Window.IsForeground}
return
echo NextWindow: ${nextSlot}
uplink focus "jmb${nextSlot}"
relay "jmb${nextSlot}" "Event[OnHotkeyFocused]:Execute"
}
method OnSlotHotkey(uint numSlot)
{
uplink focus "jmb${numSlot}"
relay "jmb${numSlot}" "Event[OnHotkeyFocused]:Execute"
}
}
variable(global) basicCore BasicCore
function main()
{
while 1
waitframe
}