-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.js
More file actions
190 lines (153 loc) · 4.06 KB
/
variables.js
File metadata and controls
190 lines (153 loc) · 4.06 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
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: 'Audio volume for current cue in dB',
variableId: 'currentCueVolume',
})
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 playback speed for current cue',
variableId: 'currentCuePlaybackSpeed',
})
variables.push({
name: 'Current status of video outputs',
variableId: 'video_outputs',
})
variables.push({
name: 'Current status of audio outputs',
variableId: 'audio_outputs',
})
//Cue Variables
for (let cueID in this.cues) {
if (cueID === 'current' || cueID === 'previous' || cueID === 'next' || cueID === '0') {
continue
}
let cue = this.cues[cueID]
variables.push({
name: `Cue ${cueID} - Name`,
variableId: `cue_${cueID}_cueName`,
})
this.setVariableValues({ [`cue_${cueID}_cueName`]: cue?.cueName })
}
return variables
}