mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-08-05 13:57:47 +00:00
364 lines
9.4 KiB
JavaScript
364 lines
9.4 KiB
JavaScript
let _ = require('lodash');
|
|
const fs = require('fs');
|
|
|
|
let lastElapsedUpdate = Date.now();
|
|
|
|
exports.defaultName = 'QLab 4';
|
|
exports.connectionType = 'osc';
|
|
exports.heartbeatInterval = 50;
|
|
exports.heartbeatTimeout = 2000;
|
|
exports.searchOptions = {
|
|
type: 'Bonjour',
|
|
bonjourName: 'qlab',
|
|
};
|
|
|
|
exports.ready = function (device) {
|
|
device.send(`/version`);
|
|
device.send('/workspaces');
|
|
};
|
|
|
|
exports.data = function (device, oscData) {
|
|
const address = oscData.address;
|
|
let osc = oscData.address.split('/');
|
|
osc.shift();
|
|
|
|
let data;
|
|
|
|
//console.log(address)
|
|
|
|
if(match(osc, ["reply", "version"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
device.data.version = json.data;
|
|
|
|
this.deviceInfoUpdate(device, 'status', 'ok');
|
|
|
|
|
|
}else if(match(osc, ["reply", "workspaces"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
json.data.forEach(wksp => {
|
|
device.data.workspaces = {};
|
|
|
|
device.data.workspaces[wksp.uniqueID] = {
|
|
uniqueID: wksp.uniqueID,
|
|
displayName: wksp.displayName,
|
|
cueLists: {},
|
|
cues: {}
|
|
}
|
|
|
|
device.send(`/workspace/${wksp.uniqueID}/connect`);
|
|
|
|
});
|
|
|
|
|
|
}else if(match(osc, ["reply", "workspace", "*", "connect"])){
|
|
|
|
device.send(`/workspace/${osc[2]}/updates`, [
|
|
{ type: 'i', value: 1 },
|
|
]);
|
|
|
|
device.send(`/workspace/${osc[2]}/cueLists`);
|
|
|
|
|
|
|
|
}else if(match(osc, ["reply", "workspace", "*", "cueLists"])){
|
|
|
|
this.deviceInfoUpdate(device, 'status', 'ok');
|
|
|
|
let workspace = device.data.workspaces[osc[2]];
|
|
let json = JSON.parse(oscData.args[0]);
|
|
|
|
workspace.cueLists = {};
|
|
workspace.cues = {};
|
|
|
|
|
|
json.data.forEach(ql => {
|
|
workspace.cueLists[ql.uniqueID] = ql;
|
|
addChildrenToWorkspace(workspace, ql);
|
|
});
|
|
|
|
console.log("total device draw 2");
|
|
device.draw();
|
|
|
|
|
|
setTimeout(function(){
|
|
json.data.forEach(ql => {
|
|
workspace.cueLists[ql.uniqueID] = ql;
|
|
getValuesForKeys(device, json.workspace_id, ql);
|
|
});
|
|
}, 0);
|
|
|
|
|
|
|
|
}else if(match(osc, ["reply", "cue_id", "*", "children"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
let workspace = device.data.workspaces[json.workspace_id];
|
|
let cue_id = osc[2];
|
|
let cue = workspace.cues[cue_id];
|
|
|
|
if(!_.isEqual(cue.cues, json.data)){
|
|
workspace.cueLists[cue_id].cues = json.data;
|
|
addChildrenToWorkspace(workspace, workspace.cueLists[cue_id]);
|
|
|
|
device.draw();
|
|
|
|
getValuesForKeys(device, json.workspace_id, cue);
|
|
}
|
|
|
|
|
|
}else if(match(osc, ["reply", "cue_id", "*", "valuesForKeys"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
let cueValues = json.data;
|
|
|
|
let workspace = device.data.workspaces[json.workspace_id];
|
|
let cue = workspace.cues[cueValues.uniqueID];
|
|
|
|
if(!cue){
|
|
cue = workspace.cues[cueValues.uniqueID] = {};
|
|
}
|
|
|
|
cue.uniqueID = cueValues.uniqueID;
|
|
cue.number = cueValues.number;
|
|
cue.name = cueValues.name;
|
|
cue.listName = cueValues.listName;
|
|
cue.displayName = cueValues.displayName;
|
|
cue.broken = cueValues.isBroken;
|
|
cue.running = cueValues.isRunning;
|
|
cue.loaded = cueValues.isLoaded;
|
|
cue.flagged = cueValues.isFlagged;
|
|
cue.paused = cueValues.isPaused;
|
|
cue.type = cueValues.type;
|
|
cue.cues = cueValues.children;
|
|
cue.preWait = cueValues.preWait;
|
|
cue.postWait = cueValues.postWait;
|
|
cue.duration = cueValues.currentDuration;
|
|
cue.colorName = cueValues.colorName;
|
|
cue.continueMode = cueValues.continueMode;
|
|
cue.groupMode = cueValues.mode;
|
|
cue.parent = cueValues.parent;
|
|
cue.cartRows = cueValues.cartRows;
|
|
cue.cartColumns = cueValues.cartColumns;
|
|
cue.cartPosition = cueValues.cartPosition;
|
|
cue.preWaitElapsed = cueValues.preWaitElapsed;
|
|
cue.actionElapsed = cueValues.actionElapsed;
|
|
cue.postWaitElapsed = cueValues.postWaitElapsed;
|
|
|
|
let nestedGroupModes = [];
|
|
let nestedGroupPosition = [0];
|
|
var obj = cue;
|
|
|
|
while(obj.parent!="[root group of cue lists]"){
|
|
nestedGroupModes.push(obj.groupMode);
|
|
|
|
let pos = _.findIndex(workspace.cues[obj.parent].cues, {uniqueID: obj.uniqueID});
|
|
pos= Math.abs(pos-workspace.cues[obj.parent].cues.length)-1;
|
|
nestedGroupPosition.push(pos)
|
|
|
|
obj = workspace.cues[obj.parent];
|
|
}
|
|
cue.nestedGroupModes = nestedGroupModes;
|
|
cue.nestedGroupPosition = nestedGroupPosition;
|
|
|
|
//console.log("draw "+cue.number)
|
|
|
|
device.update("updateCueData", {cue: cue, allCues: workspace.cues, workspace: workspace});
|
|
|
|
|
|
}else if(match(osc, ["reply", "cue_id", "*", "preWaitElapsed"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
let workspace = device.data.workspaces[json.workspace_id];
|
|
let cue = workspace.cues[osc[2]];
|
|
|
|
cue.preWaitElapsed = json.data;
|
|
lastElapsedUpdate = Date.now();
|
|
|
|
device.update("updateCueData", {cue: cue, allCues: workspace.cues, workspace: workspace});
|
|
|
|
|
|
}else if(match(osc, ["reply", "cue_id", "*", "actionElapsed"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
let workspace = device.data.workspaces[json.workspace_id];
|
|
let cue = workspace.cues[osc[2]];
|
|
|
|
cue.actionElapsed = json.data;
|
|
lastElapsedUpdate = Date.now();
|
|
|
|
device.update("updateCueData", {cue: cue, allCues: workspace.cues, workspace: workspace});
|
|
|
|
|
|
}else if(match(osc, ["reply", "cue_id", "*", "postWaitElapsed"])){
|
|
|
|
let json = JSON.parse(oscData.args[0]);
|
|
let workspace = device.data.workspaces[json.workspace_id];
|
|
let cue = workspace.cues[osc[2]];
|
|
|
|
cue.postWaitElapsed = json.data;
|
|
lastElapsedUpdate = Date.now();
|
|
|
|
device.update("updateCueData", {cue: cue, allCues: workspace.cues, workspace: workspace});
|
|
|
|
|
|
}else if(match(osc, ["update", "workspace", "*", "cue_id", "*"])){
|
|
|
|
let workspace = device.data.workspaces[osc[2]];
|
|
let cueLists = Object.keys(workspace.cueLists);
|
|
let cue_id = osc[4];
|
|
|
|
if(cue_id!="[root group of cue lists"){
|
|
if(cueLists.includes(cue_id)){
|
|
device.send(`/workspace/${workspace.uniqueID}/cue_id/${cue_id}/children`);
|
|
}
|
|
|
|
device.send(`/workspace/${osc[2]}/cue_id/${cue_id}/valuesForKeys`, [
|
|
{type: 's', value: valuesForKeysString}
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
}else if(match(osc, ["update", "workspace", "*"])){
|
|
// occurs when cue lists are reordered or a list is deleted
|
|
device.send(`/workspace/${osc[2]}/cueLists`);
|
|
|
|
|
|
}else if(match(osc, ["update", "workspace", "*", "dashboard"])){
|
|
// nothing here yet
|
|
|
|
|
|
}else if(match(osc, ["update", "workspace", "*", "cueList", "*", "playbackPosition"])){
|
|
|
|
let workspace = device.data.workspaces[osc[2]];
|
|
let cue = workspace.cues[oscData.args[0]];
|
|
workspace.playbackPosition = oscData.args[0] ? cue.uniqueID : "";
|
|
|
|
if(cue){
|
|
device.update("updatePlaybackPosition", {cue: cue});
|
|
}
|
|
|
|
}else{
|
|
console.log(address)
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
let cueTemplate = _.template(fs.readFileSync(`./plugins/qlab/cue.ejs`));
|
|
let tileTemplate = _.template(fs.readFileSync(`./plugins/qlab/tile.ejs`));
|
|
let cartTemplate = _.template(fs.readFileSync(`./plugins/qlab/cart.ejs`));
|
|
let listTemplate = _.template(fs.readFileSync(`./plugins/qlab/cuelist.ejs`));
|
|
|
|
exports.update = function(device, doc, updateType, data){
|
|
|
|
if(updateType=="updateCueData"){
|
|
$elem = doc.getElementById(data.cue.uniqueID);
|
|
|
|
if($elem){
|
|
|
|
if(data.cue.type=="Cue List"){
|
|
$elem.outerHTML = '<h3>'+data.cue.name+'</h3>';
|
|
|
|
}else if(data.cue.type=="Cart"){
|
|
$elem.outerHTML = cartTemplate({tileTemplate: tileTemplate, cueList: data.cue, allCues: data.workspace.cues});
|
|
|
|
}else if(data.cue.cartPosition && data.cue.cartPosition[0]!=0){
|
|
$elem.outerHTML = tileTemplate(data);
|
|
|
|
}else{
|
|
$elem.outerHTML = cueTemplate(data);
|
|
}
|
|
}
|
|
|
|
}else if(updateType=="updatePlaybackPosition"){
|
|
Array.from(doc.getElementsByClassName("playback-position")).forEach(
|
|
function($elem, index, array) {
|
|
$elem.classList.remove("playback-position");
|
|
});
|
|
|
|
$elem = doc.getElementById(data.cue.uniqueID);
|
|
$elem.classList.add("playback-position");
|
|
$elem.scrollIntoView({behavior: "smooth", block: "center"});
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const valuesForKeysString =
|
|
'["uniqueID","number","name","listName","isBroken","isRunning","isLoaded","isFlagged",'
|
|
+'"type","children","preWait","postWait","currentDuration","colorName","continueMode",'
|
|
+'"mode","parent","cartRows","cartColumns","cartPosition","displayName","preWaitElapsed",'
|
|
+'"actionElapsed","postWaitElapsed","isPaused"]';
|
|
|
|
function addChildrenToWorkspace(workspace, q){
|
|
workspace.cues[q.uniqueID] = q;
|
|
workspace.cues[q.uniqueID].nestedGroupModes = [];
|
|
workspace.cues[q.uniqueID].nestedGroupPosition = [];
|
|
|
|
if(q.cues){
|
|
q.cues.forEach(q => {
|
|
addChildrenToWorkspace(workspace, q);
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
function getValuesForKeys(device, workspace_id, q){
|
|
device.send(`/workspace/${workspace_id}/cue_id/${q.uniqueID}/valuesForKeys`, [
|
|
{type: 's', value: valuesForKeysString}
|
|
]);
|
|
if(q.cues){
|
|
q.cues.forEach(q => {
|
|
getValuesForKeys(device, workspace_id, q);
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
function match(osc, array){
|
|
let out = true;
|
|
if(osc.length!=array.length){
|
|
return false;
|
|
}
|
|
array.forEach((match, i)=> {
|
|
if(osc[i]!=match && match!="*"){
|
|
out = false;
|
|
}
|
|
});
|
|
return out;
|
|
}
|
|
|
|
let interval = 5;
|
|
let heartbeatCount = 0;
|
|
exports.heartbeat = function (device) {
|
|
heartbeatCount++;
|
|
|
|
if(Date.now()-lastElapsedUpdate>300){
|
|
interval = 5;
|
|
}else{
|
|
interval = 1;
|
|
}
|
|
|
|
if(heartbeatCount%interval==0){
|
|
device.send(`/cue/active/preWaitElapsed`);
|
|
device.send(`/cue/active/actionElapsed`);
|
|
device.send(`/cue/active/postWaitElapsed`);
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|