-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.js
205 lines (171 loc) · 4.52 KB
/
variables.js
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
export function getVariables() {
const variables = []
//Standard Variables
variables.push({
name: 'Name of the playing cue',
variableId: 'currentCueName',
})
variables.push({
name: 'Cue ID of the playing cue',
variableId: 'currentCueID',
})
variables.push({
name: 'Previous cue in playlist',
variableId: 'previousCueName',
})
variables.push({
name: 'Next cue in playlist',
variableId: 'nextCueName',
})
variables.push({
name: 'Name of currently selected cue',
variableId: 'selectedCueName',
})
variables.push({
name: 'Cue ID of the currently selected cue',
variableId: 'selectedCueID',
})
variables.push({
name: 'Play/ Pause Status',
variableId: 'playStatus',
})
variables.push({
name: 'Time remaining for current cue, will shorten to -MM:SS if less than 1 hour',
variableId: 'cueTimeLeft',
})
variables.push({
name: 'Time remaining for current cue, will always show full -HH:MM:SS timecode',
variableId: 'cueTimeLeft_hhmmss',
})
variables.push({
name: 'Time remaining for current cue (hours)',
variableId: 'cueTimeLeft_h',
})
variables.push({
name: 'Time remaining for current cue (minutes)',
variableId: 'cueTimeLeft_m',
})
variables.push({
name: 'Time remaining for current cue (seconds)',
variableId: 'cueTimeLeft_s',
})
variables.push({
name: 'Time elapsed for current cue, will shorten to -MM:SS if less than 1 hour',
variableId: 'cueTimeElapsed',
})
variables.push({
name: 'Time elapsed for current cue, will always show full -HH:MM:SS timecode',
variableId: 'cueTimeElapsed_hhmmss',
})
variables.push({
name: 'Time elapsed for current cue (hours)',
variableId: 'cueTimeElapsed_h',
})
variables.push({
name: 'Time elapsed for current cue (minutes)',
variableId: 'cueTimeElapsed_m',
})
variables.push({
name: 'Time elapsed for current cue (seconds)',
variableId: 'cueTimeElapsed_s',
})
variables.push({
name: 'Total run time (TRT) for current cue, will shorten to MM:SS if less than 1 hour',
variableId: 'currentCueTRT',
})
variables.push({
name: 'Total run time (TRT) for current cue, will always show full HH:MM:SS timecode',
variableId: 'currentCueTRT_hhmmss',
})
variables.push({
name: 'Total run time (TRT) for current cue (hours)',
variableId: 'currentCueTRT_h',
})
variables.push({
name: 'Total run time (TRT) for current cue (minutes)',
variableId: 'currentCueTRT_m',
})
variables.push({
name: 'Total run time (TRT) for current cue (seconds)',
variableId: 'currentCueTRT_s',
})
variables.push({
name: 'Audio mute status for current cue',
variableId: 'currentCueAudio',
})
variables.push({
name: 'Pause At Beginning status for current cue',
variableId: 'currentCuePauseAtBeginning',
})
variables.push({
name: 'Pause At End status for current cue',
variableId: 'currentCuePauseAtEnd',
})
variables.push({
name: 'Fade In status for current cue',
variableId: 'currentCueFadeIn',
})
variables.push({
name: 'Fade Out status for current cue',
variableId: 'currentCueFadeOut',
})
variables.push({
name: 'Loop status for current cue',
variableId: 'currentCueLoop',
})
variables.push({
name: 'Transition status for current cue',
variableId: 'currentCueTransition',
})
variables.push({
name: 'Goto status for current cue',
variableId: 'currentCueGoto',
})
variables.push({
name: 'Current status of video outputs',
variableId: 'video_outputs',
})
this.setVariableValues({
currentCueName: 'None',
currentCueID: 'None',
previousCueName: 'None',
nextCueName: 'None',
selectedCueName: 'None',
selectedCueID: 'None',
playStatus: 'Paused',
cueTimeLeft: '-00:00:00',
cueTimeLeft_hhmmss: '-00:00:00',
cueTimeLeft_h: '00',
cueTimeLeft_m: '00',
cueTimeLeft_s: '00',
cueTimeElapsed: '-00:00:00',
cueTimeElapsed_hhmmss: '-00:00:00',
cueTimeElapsed_h: '00',
cueTimeElapsed_m: '00',
cueTimeElapsed_s: '00',
currentCueTRT: '00:00:00',
currentCueTRT_hhmmss: '00:00:00',
currentCueTRT_h: '00',
currentCueTRT_m: '00',
currentCueTRT_s: '00',
currentCueAudio: '',
currentCuePauseAtBeginning: '',
currentCuePauseAtEnd: '',
currentCueFadeIn: '',
currentCueFadeOut: '',
currentCueLoop: '',
currentCueTransition: '',
currentCueGoto: '',
video_outputs: this.states?.videoOutputs ? 'Active' : 'Off',
})
//Cue Variables
for (let cueID in this.cues) {
let cue = this.cues[cueID]
variables.push({
name: `Cue ${cueID} - Name`,
variableId: `cue_${cueID}_cueName`,
})
this.setVariableValues({ [`cue_${cueID}_cueName`]: cue?.cueName })
}
return variables
}