-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVFXBoxer.Session.iss
More file actions
582 lines (476 loc) · 15.7 KB
/
VFXBoxer.Session.iss
File metadata and controls
582 lines (476 loc) · 15.7 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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
objectdef vfxboxer
{
variable jsonvalue Views="{}"
variable jsonvalue ShowViews="[]"
variable jsonvalueref ActiveView
variable jsonvalue Settings="{}"
variable weakref GlobalSettings
variable uint LineupSize=200
variable string LineupEdge="bottom"
variable string CaptureHotkey=""
variable bool ShowLineupSizeControl=TRUE
variable taskmanager TaskManager=${LMAC.NewTaskManager["vfxboxer"]}
method Initialize()
{
}
method Shutdown()
{
This:UninstallHotkeys
This:DisableGlobalBind
This:ClearViews
LGUI2:UnloadPackageFile["VFXBoxer.Session.lgui2Package.json"]
TaskManager:Destroy
}
member GetWindowSize()
{
if ${GlobalSettings.Has[windowSize]}
return "${GlobalSettings.Get[windowSize].Get[1]}x${GlobalSettings.Get[windowSize].Get[2]}"
return
}
member GetCaptureHotkey()
{
return "${CaptureHotkey~}"
}
method OnSettingChanged(string param1)
{
echo "OnSettingChanged param1=${param1~} Context(type)=${Context(type)} Context=${Context~}"
switch ${param1}
{
case cloneHotkey
case allCloneHotkey
case nextViewHotkey
case previousViewHotkey
case viewHotkeys
This:UninstallHotkeys
This:InstallHotkeys
break
}
}
method EnableControlWindow()
{
uplink relaygroup -join vfxboxer
LGUI2:LoadPackageFile["VFXBoxer.Session.lgui2Package.json"]
Settings:SetValue["${LGUI2.Skin[VFXBoxer].Template[vfxboxer.DefaultSettings]}"]
if ${distributedscope.Get[vfxboxer](exists)}
{
GlobalSettings:SetReference["distributedscope.Get[vfxboxer]"]
}
else
{
GlobalSettings:SetReference["distributedscope.New[\"$$>{
"name":"vfxboxer",
"distribution":"all local"
}<$$\"]"]
}
; distributedscope.OnScopeAdded:AttachAtom[This:OnScopeAdded]
GlobalSettings.OnValueChanged:AttachAtom[This:OnSettingChanged]
Event[On Activate]:AttachAtom[This:OnWindowActivate]
Event[On Deactivate]:AttachAtom[This:OnWindowDeactivate]
variable string windowSize
windowSize:Set["${This.GetWindowSize~}"]
if ${windowSize.NotNULLOrEmpty}
WindowCharacteristics -size ${windowSize~} -pos ${Display.Monitor.Left},${Display.Monitor.Top} -frame none
else
WindowCharacteristics -size fullscreen -pos ${Display.Monitor.Left},${Display.Monitor.Top} -frame none
CaptureHotkey:Set["${GlobalSettings.Get[captureHotkey]~}"]
This:SetLineupEdge["${GlobalSettings.Get[lineupEdge]~}"]
This:SetLineupSize["${GlobalSettings.GetInteger[lineupSize]}"]
This:EnableGlobalBind
This:InstallHotkeys
}
method OnScopeAdded(string name)
{
echo "OnScopeAdded: ${name~} Context=${Context~}"
echo "Current GlobalSettings: ${GlobalSettings.AsJSON~}"
}
method InstallHotkey(string name, string keyCombo, string onPress="", string onRelease="")
{
if !${keyCombo.NotNULLOrEmpty}
return
variable jsonvalue joBinding
joBinding:SetValue["$$>
{
"name":${name.AsJSON~},
"combo":${keyCombo.AsJSON~},
"eventHandler":{
"type":"task",
"taskManager":"vfxboxer",
"task":{
"type":"ls1.code",
"start":${onPress.AsJSON~},
"stop":${onRelease.AsJSON~}
}
}
}
<$$"]
; now add the binding to LGUI2!
; echo "AddBinding ${joBinding~}"
LGUI2:AddBinding["${joBinding~}"]
}
method InstallHotkeys()
{
This:InstallHotkey["vfxboxer.PreviousView","${GlobalSettings.Get[previousViewHotkey]~}","VFXBoxer:PreviousView"]
This:InstallHotkey["vfxboxer.NextView","${GlobalSettings.Get[nextViewHotkey]~}","VFXBoxer:NextView"]
This:InstallHotkey["vfxboxer.ToggleClone","${GlobalSettings.Get[cloneHotkey]~}","VFXBoxer:ToggleCloneMode"]
This:InstallHotkey["vfxboxer.AllToggleClone","${GlobalSettings.Get[allCloneHotkey]~}","VFXBoxer:AllToggleCloneMode"]
variable int i
variable jsonvalueref jaViewHotkeys
jaViewHotkeys:SetReference["GlobalSettings.Get[viewHotkeys]"]
if ${jaViewHotkeys.Type.Equal[array]}
{
for (i:Set[1] ; ${i}<=${jaViewHotkeys.Used} ; i:Inc)
{
This:InstallHotkey["vfxboxer.View${i}","${jaViewHotkeys.Get[${i}]~}","VFXBoxer:ActivateByNum[${i}]"]
}
}
}
method UninstallHotkeys()
{
LGUI2:RemoveBinding["vfxboxer.PreviousView"]
LGUI2:RemoveBinding["vfxboxer.NextView"]
LGUI2:RemoveBinding["vfxboxer.ToggleClone"]
LGUI2:RemoveBinding["vfxboxer.AllToggleClone"]
if ${jaViewHotkeys.Type.Equal[array]}
{
for (i:Set[1] ; ${i}<=${jaViewHotkeys.Used} ; i:Inc)
{
LGUI2:RemoveBinding["vfxboxer.View${i}"]
}
}
}
method PreviousView()
{
This:ActivateByNum[${ShowViews.Used}]
}
method NextView()
{
This:ActivateByNum[1]
}
method OnWindowActivate()
{
This:DisableGlobalBind
}
method DisableGlobalBind()
{
squelch GlobalBind -delete "VFXBoxer.Capture"
}
method EnableGlobalBind()
{
if ${CaptureHotkey.NotNULLOrEmpty}
squelch GlobalBind "VFXBoxer.Capture" "${CaptureHotkey~}" "VFXBoxer:CaptureForegroundWindow"
}
method SetCaptureHotkey(string newValue)
{
CaptureHotkey:Set["${newValue~}"]
This:DisableGlobalBind
if ${Display.Foreground}
This:EnableGlobalBind
}
method OnWindowDeactivate()
{
This:EnableGlobalBind
}
method CaptureForegroundWindow()
{
InnerSpace:Relay[uplink,VFXBoxer,CaptureForegroundWindow,"${Session~}"]
}
method OnLayoutAreaChanged()
{
This:UpdateVerticalSliderRange
This:UpdateHorizontalSliderRange
}
method SetShowLineupSizeControl(bool newValue)
{
ShowLineupSizeControl:Set[${newValue}]
if !${ShowLineupSizeControl}
{
LGUI2.Element[vfxboxer.VerticalSlider]:SetVisibility[Collapsed]
LGUI2.Element[vfxboxer.HorizontalSlider]:SetVisibility[Collapsed]
return
}
switch ${LineupEdge}
{
case top
case bottom
LGUI2.Element[vfxboxer.VerticalSlider]:SetVisibility[Visible]
LGUI2.Element[vfxboxer.HorizontalSlider]:SetVisibility[Collapsed]
break
case left
case right
LGUI2.Element[vfxboxer.VerticalSlider]:SetVisibility[Collapsed]
LGUI2.Element[vfxboxer.HorizontalSlider]:SetVisibility[Visible]
break
}
}
method SetLineupSize(uint newValue)
{
LineupSize:Set["${newValue}"]
switch ${LineupEdge}
{
case bottom
case top
default
LGUI2.Element[vfxlist].Content:SetSize[-1,${newValue}]
break
case left
case right
LGUI2.Element[vfxlist].Content:SetSize[${newValue},-1]
break
}
}
method SetLineupEdge(string newValue)
{
switch ${newValue}
{
default
LineupEdge:Set[bottom]
LGUI2.Element[vfxboxer.VerticalSlider]:SetSlideFromEdge[bottom]
if ${ShowLineupSizeControl}
LGUI2.Element[vfxboxer.VerticalSlider]:SetVisibility[Visible]
LGUI2.Element[vfxboxer.HorizontalSlider]:SetVisibility[Collapsed]
break
case bottom
case top
LineupEdge:Set["${newValue~}"]
LGUI2.Element[vfxboxer.VerticalSlider]:SetSlideFromEdge["${newValue~}"]
if ${ShowLineupSizeControl}
LGUI2.Element[vfxboxer.VerticalSlider]:SetVisibility[Visible]
LGUI2.Element[vfxboxer.HorizontalSlider]:SetVisibility[Collapsed]
break
case right
case left
LineupEdge:Set["${newValue~}"]
LGUI2.Element[vfxboxer.HorizontalSlider]:SetSlideFromEdge["${newValue~}"]
if ${ShowLineupSizeControl}
LGUI2.Element[vfxboxer.HorizontalSlider]:SetVisibility[Visible]
LGUI2.Element[vfxboxer.VerticalSlider]:SetVisibility[Collapsed]
break
}
}
member:uint HorizontalSliderMax()
{
return ${LGUI2.Element[vfxboxer.LayoutArea].ActualWidth}
}
method UpdateHorizontalSliderRange()
{
LGUI2.Element[vfxboxer.HorizontalSlider]:SetRange[0,${This.HorizontalSliderMax}]
}
member:uint VerticalSliderMax()
{
return ${LGUI2.Element[vfxboxer.LayoutArea].ActualHeight}
}
method UpdateVerticalSliderRange()
{
LGUI2.Element[vfxboxer.VerticalSlider]:SetRange[0,${This.VerticalSliderMax}]
}
member:uint HorizontalSliderPosition()
{
return ${LineupSize}
}
method OnHorizontalSliderPosition(uint newValue)
{
This:SetLineupSize[${newValue}]
}
member:uint VerticalSliderPosition()
{
return ${LineupSize}
}
method OnVerticalSliderPosition(uint newValue)
{
This:SetLineupSize[${newValue}]
}
method AddView(string name, gdiwindow hwnd)
{
; echo AddView ${name~}
variable jsonvalue jo="{}"
jo:SetString[name,"${name~}"]
jo:SetString[hwnd,"${hwnd~}"]
jo:SetInteger[processId,"${hwnd.ProcessID}"]
jo:SetString[processName,"${hwnd.ProcessName~}"]
jo:SetString[windowText,"${hwnd.Text~}"]
jo:SetBool[clone,0]
echo "New View \"${name~}\"=${jo~}"
Views:SetByRef["${name~}",jo]
This:Activate["${name~}"]
LGUI2.Element[vfxlist]:PullItemsBinding
}
method RefreshView(jsonvalueref joView)
{
variable gdiwindow hwnd="${joView.Get[hwnd]}"
joView:SetString[windowText,"${hwnd.Text~}"]
}
method OnActivateButton()
{
; echo "OnActivateButton ${Context(type)} Args=${Context.Args~} Source.Context=${Context.Source.Context~}"
variable jsonvalueref joData="Context.Source.Context"
if !${joData.Type.Equal[object]}
return
if ${ActiveView.Get[name].Equal["${joData.Get[name]~}"]}
This:DeactivateView
else
This:ActivateByRef[joData]
}
method OnCloseButton()
{
; echo "OnCloseButton ${Context(type)} Args=${Context.Args~} Source.Context=${Context.Source.Context~}"
variable jsonvalueref joData="Context.Source.Context"
if !${joData.Type.Equal[object]}
{
return
}
if !${Context.Args.GetBool[position]} || !${Context.Args.Get[controlName]~.Equal[Mouse1]}
return
if ${ActiveView.Get[name].Equal["${joData.Get[name]~}"]}
{
ActiveView:SetReference[0]
}
else
This:RemoveViewByRef[joData]
}
method SetClone(string name, bool newValue)
{
variable jsonvalueref joView="Views.Get[\"${name~}\"]"
; echo "SetClone ${name~} ${newValue}"
This:SetCloneByRef[joView,${newValue}]
}
method ToggleCloneMode()
{
ActiveView:SetBool[clone,"${ActiveView.GetBool[clone].Not}"]
This:RefreshClones
}
method AllToggleCloneMode()
{
variable bool newValue
newValue:Set["${ActiveView.GetBool[clone].Not}"]
ActiveView:SetBool[clone,"${newValue}"]
ShowViews:ForEach["ForEach.Value:SetBool[clone,${newValue}]"]
This:RefreshClones
}
method SetCloneByRef(jsonvalueref joView, bool newValue)
{
; echo "SetCloneByRef[${newValue}] ${joView~}"
joView:SetBool[clone,${newValue}]
This:RefreshClones
}
member:lgui2elementref GetActiveVideoFeed()
{
return ${LGUI2.Element[vfxboxer.ActiveView].Locate["","videofeed","descendant"].ID}
}
method DeactivateView()
{
if !${ActiveView.Type.Equal[object]}
return
ShowViews:AddByRef[ActiveView]
ActiveView:SetReference[0]
LGUI2.Element[vfxlist]:PullItemsBinding
}
member:bool ArrayContainsView(jsonvalueref joArray, jsonvalueref joView)
{
variable int i
variable string name="${joView.Get[name]~}"
for (i:Set[1] ; ${i}<=${joArray.Used} ; i:Inc )
{
if ${joArray.Get[${i},name].Equal["${name~}"]}
return TRUE
}
return FALSE
}
method ShowView(jsonvalueref joView)
{
if ${ArrayContainsView[ShowViews,joView]}
return FALSE
This:RefreshView[joView]
ShowViews:AddByRef[joView]
LGUI2.Element[vfxlist]:PullItemsBinding
return TRUE
}
method UnshowView(jsonvalueref joView)
{
variable int i
variable string name="${joView.Get[name]~}"
; echo UnshowView name=${name~}
for (i:Set[1] ; ${i}<=${ShowViews.Used} ; i:Inc )
{
if ${ShowViews.Get[${i},name].Equal["${name~}"]}
{
; echo removing view ${i}
ShowViews:Erase[${i}]
LGUI2.Element[vfxlist]:PullItemsBinding
return TRUE
}
}
return FALSE
}
method Activate(string name)
{
This:ActivateByRef["Views.Get[\"${name~}\"]"]
}
method ActivateByNum(uint numView)
{
; echo ActivateByNum[${numView}]
This:ActivateByRef["ShowViews.Get[${numView}]"]
}
method ActivateByRef(jsonvalueref jo)
{
; echo "ActivateByRef ${jo~}"
This:RefreshView[jo]
This:DeactivateView
This:UnshowView[jo]
ActiveView:SetReference[jo]
; apply clones
This:RefreshClones
This.GetActiveVideoFeed:KeyboardFocus
; InnerSpace:Relay[uplink,VFXBoxer,RegisterSource,"${ActiveFeedName~}","${jo.Get[hwnd]~}"]
}
method RefreshClones()
{
variable lgui2elementref activeFeed=${This.GetActiveVideoFeed.ID}
if !${activeFeed.ID}
{
; echo "RefreshClones: No Active Feed"
return
}
activeFeed:ClearClones
if !${ActiveView.Type.Equal[object]}
{
; echo "RefreshClones: Active View not an object...?"
return
}
if !${ActiveView.GetBool[clone]}
{
; echo "RefreshClones: Ignoring Active View without clone option"
return
}
ShowViews:ForEach["This:ViewToClone[${activeFeed.ID},ForEach.Value]"]
}
method ViewToClone(lgui2elementref activeFeed, jsonvalueref joView)
{
if !${joView.GetBool[clone]}
{
; echo "ViewToClone: Ignoring feed without clone option"
return
}
activeFeed:AddClone["${joView.Get[name]~}"]
; echo "ViewToClone: Added ${joView.Get[name]~}"
}
method RemoveView(string name)
{
This:RemoveViewByRef["${jo.Get["${name~}"]}"]
}
method RemoveViewByRef(jsonvalueref jo)
{
Views:Erase["${jo.Get[name]~}"]
This:UnshowView[jo]
}
method ClearViews()
{
Views:ForEach["This:RemoveViewByRef[ForEach.Value]"]
ShowViews:Clear
}
}
variable(global) vfxboxer VFXBoxer
function main()
{
while 1
waitframe
}