2016-04-13 04:06:19 +00:00
|
|
|
var remote = require('remote'),
|
2016-04-17 21:55:23 +00:00
|
|
|
dialog = require('electron').remote.dialog,
|
2016-04-14 04:17:42 +00:00
|
|
|
fs = require('fs'),
|
2016-04-13 21:36:12 +00:00
|
|
|
uuid = require('node-uuid'),
|
2016-04-17 21:55:23 +00:00
|
|
|
moment = require('moment'),
|
|
|
|
humanizeDuration = require('humanize-duration')
|
2016-04-13 04:06:19 +00:00
|
|
|
ipcRenderer = require('electron').ipcRenderer,
|
2016-04-14 04:17:42 +00:00
|
|
|
mcopy = {},
|
2016-04-13 02:51:47 +00:00
|
|
|
light = {},
|
2016-04-18 02:22:18 +00:00
|
|
|
proj = {},
|
2016-04-18 03:02:22 +00:00
|
|
|
cam = {},
|
2016-04-13 07:26:35 +00:00
|
|
|
nav = {},
|
2016-04-17 21:55:23 +00:00
|
|
|
seq = {},
|
2016-04-18 03:02:22 +00:00
|
|
|
cmd = {},
|
2016-04-14 04:17:42 +00:00
|
|
|
gui = {},
|
2016-04-13 02:51:47 +00:00
|
|
|
log = {};
|
2016-04-13 00:53:28 +00:00
|
|
|
//console.log(ipcRenderer.sendSync('light', { 'fuck' : true }) );
|
|
|
|
|
2016-04-15 22:16:14 +00:00
|
|
|
mcopy.cfg = JSON.parse(fs.readFileSync('./data/cfg.json'), 'utf8');
|
2016-04-14 04:17:42 +00:00
|
|
|
|
|
|
|
/******
|
|
|
|
State shared by ALL interfaces
|
|
|
|
*******/
|
|
|
|
mcopy.state = {
|
2016-04-17 21:55:23 +00:00
|
|
|
version : '2.0.0', //use for file compatibility check
|
2016-04-14 04:17:42 +00:00
|
|
|
camera : {
|
|
|
|
pos : 0,
|
|
|
|
direction: true
|
|
|
|
},
|
|
|
|
projector : {
|
|
|
|
pos : 0,
|
|
|
|
direction: true
|
|
|
|
},
|
|
|
|
sequence : {
|
|
|
|
size : 24,
|
|
|
|
arr : ['CF', 'PF'],
|
2016-04-17 21:55:23 +00:00
|
|
|
light : ['255,255,255', ''],
|
2016-04-14 04:17:42 +00:00
|
|
|
cmd : {
|
|
|
|
camera: mcopy.cfg.arduino.cmd.camera,
|
|
|
|
projector: mcopy.cfg.arduino.cmd.projector,
|
|
|
|
cam_direction: mcopy.cfg.arduino.cmd.cam_direction,
|
|
|
|
cam_direction: mcopy.cfg.arduino.cmd.proj_direction
|
|
|
|
},
|
|
|
|
pads: {
|
|
|
|
cam_forward: 'CF',
|
|
|
|
proj_forward : 'PF',
|
|
|
|
black_forward : 'BF',
|
|
|
|
|
|
|
|
cam_backward: 'CB',
|
|
|
|
proj_backward : 'PB',
|
2016-04-17 21:55:23 +00:00
|
|
|
black_backward : 'BB',
|
|
|
|
|
|
|
|
light_set : 'L'
|
2016-04-14 04:17:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-13 02:51:47 +00:00
|
|
|
log.time = 'MM/DD/YY-HH:mm:ss';
|
|
|
|
log.count = 0;
|
|
|
|
log.init = function () {
|
|
|
|
'use strict';
|
|
|
|
$('#log').w2grid({
|
|
|
|
name : 'log',
|
|
|
|
columns: [
|
|
|
|
{ field: 'time', caption: 'Time', size: '22%' },
|
|
|
|
{ field: 'action', caption: 'Action', size: '58%' },
|
|
|
|
{ field: 'service', caption: 'Service', size: '20%' },
|
|
|
|
{ field: 'status', caption: 'Status', size: '10%' },
|
|
|
|
],
|
|
|
|
records: []
|
|
|
|
});
|
|
|
|
//{ recid: 1, time: moment().format(log.time), action: 'Started app', service: 'MAIN', status: true }
|
|
|
|
log.info('Started app', 'MAIN', true);
|
2016-04-13 04:06:19 +00:00
|
|
|
log.listen();
|
2016-04-13 02:51:47 +00:00
|
|
|
};
|
|
|
|
log.listen = function () {
|
2016-04-13 04:06:19 +00:00
|
|
|
'use strict';
|
|
|
|
ipcRenderer.on('log', function (event, arg) {
|
|
|
|
log.display(arg.action, arg.service, arg.status, arg.time);
|
2016-04-13 02:51:47 +00:00
|
|
|
return event.returnValue = true;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
log.display = function (action, service, status, time) {
|
|
|
|
'use strict';
|
|
|
|
var obj = {
|
|
|
|
recid : log.count++,
|
|
|
|
time : time,
|
|
|
|
action : action,
|
|
|
|
service : service,
|
|
|
|
status : status
|
|
|
|
}
|
|
|
|
if (typeof time === 'undefined') {
|
|
|
|
obj.time = moment().format(log.time);
|
|
|
|
}
|
|
|
|
w2ui['log'].add(obj);
|
2016-04-18 03:02:22 +00:00
|
|
|
if (nav.active === 'controls') {
|
|
|
|
w2ui['log'].scrollIntoView(log.count - 1);
|
|
|
|
w2ui['log'].selectNone();
|
|
|
|
w2ui['log'].select(log.count - 1);
|
|
|
|
}
|
|
|
|
|
2016-04-13 02:51:47 +00:00
|
|
|
return obj;
|
|
|
|
};
|
|
|
|
log.report = function (obj) {
|
|
|
|
'use strict';
|
|
|
|
ipcRenderer.sendSync('log', obj);
|
|
|
|
};
|
|
|
|
log.info = function (action, service, status, time) {
|
|
|
|
'use strict';
|
|
|
|
var obj = log.display(action, service, status, time);
|
|
|
|
log.report(obj);
|
2016-04-19 01:26:45 +00:00
|
|
|
//console.log(obj);
|
2016-04-13 02:51:47 +00:00
|
|
|
};
|
|
|
|
|
2016-04-17 21:55:23 +00:00
|
|
|
/******
|
|
|
|
Sequence Object
|
|
|
|
*******/
|
|
|
|
seq.i = 0;
|
|
|
|
mcopy.loop = 1;
|
|
|
|
mcopy.loopCount = 0;
|
2016-04-18 04:19:09 +00:00
|
|
|
seq.time = 0;
|
2016-04-17 21:55:23 +00:00
|
|
|
seq.stopState = false;
|
|
|
|
seq.run = function () {
|
2016-04-18 04:19:09 +00:00
|
|
|
var c = mcopy.state.sequence.arr[seq.i],
|
|
|
|
timeEnd = 0,
|
|
|
|
rgb,
|
|
|
|
action = function () {
|
|
|
|
setTimeout(function () {
|
|
|
|
seq.i++;
|
|
|
|
seq.run();
|
|
|
|
}, mcopy.cfg.arduino.sequenceDelay);
|
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
if (seq.stop()) {
|
|
|
|
$('.row input').removeClass('h');
|
2016-04-19 01:26:45 +00:00
|
|
|
$('#numbers div').removeClass('h');
|
|
|
|
//console.log('Sequence stepped');
|
|
|
|
log.info('Sequence stopped', 'SERIAL', true);
|
2016-04-17 21:55:23 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-04-18 04:19:09 +00:00
|
|
|
if (seq.i <= mcopy.state.sequence.arr.length && c !== undefined) {
|
|
|
|
log.info('Step ' + seq.i + ' command ' + c, 'SEQUENCE', true);
|
2016-04-17 21:55:23 +00:00
|
|
|
//gui action
|
|
|
|
$('.row input').removeClass('h');
|
2016-04-19 01:26:45 +00:00
|
|
|
$('#numbers div').removeClass('h');
|
2016-04-17 21:55:23 +00:00
|
|
|
$('.row input[x=' + seq.i + ']').addClass('h');
|
|
|
|
$('#numbers div[x=' + seq.i + ']').addClass('h');
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'CF'){
|
|
|
|
rgb = mcopy.state.sequence.light[seq.i].split(',');
|
|
|
|
cmd.cam_forward(rgb, action);
|
|
|
|
} else if (c === 'CB') {
|
|
|
|
rgb = mcopy.state.sequence.light[seq.i].split(',');
|
|
|
|
cmd.cam_backward(rgb, action);
|
|
|
|
} else if (c === 'PF') {
|
|
|
|
cmd.proj_forward(action);
|
|
|
|
} else if (c === 'PB') {
|
|
|
|
cmd.proj_backward(action);
|
|
|
|
} else if (c === 'BF') {
|
|
|
|
cmd.black_forward(action);
|
|
|
|
} else if (c === 'BB') {
|
|
|
|
cmd.black_backward(action);
|
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
} else {
|
|
|
|
mcopy.loopCount++;
|
|
|
|
if (mcopy.loopCount < mcopy.loop) {
|
2016-04-18 04:19:09 +00:00
|
|
|
log.info('Loop ' + mcopy.loopCount + ' completed', 'SEQUENCE', true);
|
2016-04-17 21:55:23 +00:00
|
|
|
$('.row input').removeClass('h');
|
2016-04-19 01:26:45 +00:00
|
|
|
$('#numbers div').removeClass('h');
|
2016-04-17 21:55:23 +00:00
|
|
|
seq.i = 0;
|
|
|
|
seq.run();
|
|
|
|
} else {
|
|
|
|
timeEnd = +new Date();
|
2016-04-18 04:19:09 +00:00
|
|
|
timeEnd = timeEnd - seq.time;
|
|
|
|
if (timeEnd < 2000) {
|
|
|
|
log.info('Sequence completed in ' + timeEnd + 'ms', 'SEQUENCE', true);
|
|
|
|
} else {
|
|
|
|
log.info('Sequence completed in ' + humanizeDuration(timeEnd), 'SEQUENCE', true);
|
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
//clear gui
|
|
|
|
$('.row input').removeClass('h');
|
|
|
|
$('#numbers div').removeClass('h');
|
|
|
|
seq.stats();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
seq.stop = function (state) {
|
|
|
|
if (typeof state === 'undefined') {
|
|
|
|
return seq.stopState;
|
|
|
|
} else {
|
|
|
|
seq.stopState = state;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
seq.init = function (start) {
|
|
|
|
if (typeof start === 'undefined') {
|
|
|
|
start = 0;
|
|
|
|
mcopy.loopCount = 0;
|
2016-04-18 04:19:09 +00:00
|
|
|
seq.time = +new Date();
|
2016-04-17 21:55:23 +00:00
|
|
|
}
|
|
|
|
seq.stop(false);
|
|
|
|
seq.i = start;
|
|
|
|
seq.run();
|
|
|
|
};
|
|
|
|
seq.stats = function () {
|
|
|
|
var ms = 0,
|
2016-04-18 04:19:09 +00:00
|
|
|
c = '',
|
2016-04-17 21:55:23 +00:00
|
|
|
cam_total = 0,
|
|
|
|
proj_total = 0,
|
|
|
|
real_total = mcopy.state.sequence.arr.filter(function (elem) {
|
|
|
|
if (elem === undefined) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
//timing
|
|
|
|
for (var i = 0; i < mcopy.state.sequence.arr.length; i++) {
|
2016-04-18 04:19:09 +00:00
|
|
|
c = mcopy.state.sequence.arr[i];
|
|
|
|
if (c === 'CF' || c === 'CB'){
|
2016-04-17 21:55:23 +00:00
|
|
|
ms += mcopy.cfg.arduino.cam.time;
|
|
|
|
ms += mcopy.cfg.arduino.cam.delay;
|
|
|
|
ms += mcopy.cfg.arduino.serialDelay;
|
|
|
|
}
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'PF' || c === 'PB'){
|
2016-04-17 21:55:23 +00:00
|
|
|
ms += mcopy.cfg.arduino.proj.time;
|
|
|
|
ms += mcopy.cfg.arduino.proj.delay;
|
|
|
|
ms += mcopy.cfg.arduino.serialDelay;
|
|
|
|
}
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'BF' || c === 'BB'){
|
2016-04-17 21:55:23 +00:00
|
|
|
ms += mcopy.cfg.arduino.black.before;
|
|
|
|
ms += mcopy.cfg.arduino.black.after;
|
|
|
|
ms += mcopy.cfg.arduino.cam.time;
|
|
|
|
ms += mcopy.cfg.arduino.cam.delay;
|
|
|
|
ms += mcopy.cfg.arduino.serialDelay;
|
|
|
|
}
|
|
|
|
ms += mcopy.cfg.arduino.sequenceDelay;
|
|
|
|
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'CF' || c === 'BF') {
|
2016-04-17 21:55:23 +00:00
|
|
|
cam_total++;
|
|
|
|
}
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'CB' || c === 'BB') {
|
2016-04-17 21:55:23 +00:00
|
|
|
cam_total--;
|
|
|
|
}
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'PF') {
|
2016-04-17 21:55:23 +00:00
|
|
|
proj_total++;
|
|
|
|
}
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === 'PB') {
|
2016-04-17 21:55:23 +00:00
|
|
|
proj_total--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//timing
|
|
|
|
ms = ms * mcopy.loop;
|
|
|
|
if (ms < 2000) {
|
|
|
|
$('#seq_stats .timing span').text(ms + 'ms');
|
|
|
|
} else {
|
|
|
|
$('#seq_stats .timing span').text(humanizeDuration(ms));
|
|
|
|
}
|
|
|
|
|
|
|
|
//ending frames
|
|
|
|
cam_total = cam_total * mcopy.loop;
|
|
|
|
proj_total = proj_total * mcopy.loop;
|
|
|
|
|
|
|
|
$('#seq_stats .cam_end span').text(gui.fmtZero(mcopy.state.camera.pos + cam_total, 6));
|
|
|
|
$('#seq_stats .proj_end span').text(gui.fmtZero(mcopy.state.projector.pos + proj_total, 6));
|
|
|
|
|
|
|
|
//count
|
|
|
|
$('#seq_stats .seq_count span').text(real_total.length * mcopy.loop);
|
|
|
|
return ms;
|
|
|
|
};
|
|
|
|
seq.clear = function () {
|
|
|
|
mcopy.state.sequence.size = 24;
|
|
|
|
mcopy.state.sequence.arr = [];
|
|
|
|
};
|
|
|
|
|
2016-04-18 03:02:22 +00:00
|
|
|
|
|
|
|
//mcopy.gui.updateState();
|
|
|
|
|
|
|
|
cmd.proj_forward = function (callback) {
|
2016-04-18 04:19:09 +00:00
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
var res = function (ms) {
|
2016-04-18 04:19:09 +00:00
|
|
|
gui.updateState();
|
|
|
|
if (callback) { callback(ms); }
|
2016-04-18 02:22:18 +00:00
|
|
|
};
|
|
|
|
if (!mcopy.state.projector.direction) {
|
2016-04-19 01:26:45 +00:00
|
|
|
proj.set(true, function (ms) {
|
2016-04-18 02:22:18 +00:00
|
|
|
setTimeout(function () {
|
2016-04-18 03:02:22 +00:00
|
|
|
proj.move(res);
|
2016-04-18 02:22:18 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
|
|
|
});
|
2016-04-17 21:55:23 +00:00
|
|
|
} else {
|
2016-04-18 02:22:18 +00:00
|
|
|
setTimeout(function () {
|
2016-04-18 03:02:22 +00:00
|
|
|
proj.move(res);
|
2016-04-18 02:22:18 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
2016-04-17 21:55:23 +00:00
|
|
|
}
|
|
|
|
};
|
2016-04-18 03:02:22 +00:00
|
|
|
cmd.proj_backward = function (callback) {
|
2016-04-18 04:19:09 +00:00
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
var res = function (ms) {
|
2016-04-18 04:19:09 +00:00
|
|
|
gui.updateState();
|
|
|
|
if (callback) { callback(ms); }
|
2016-04-18 02:22:18 +00:00
|
|
|
};
|
|
|
|
if (mcopy.state.projector.direction) {
|
2016-04-18 03:02:22 +00:00
|
|
|
proj.set(false, function (ms) {
|
2016-04-18 02:22:18 +00:00
|
|
|
setTimeout(function () {
|
2016-04-18 03:02:22 +00:00
|
|
|
proj.move(res);
|
2016-04-18 02:22:18 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
|
|
|
});
|
2016-04-17 21:55:23 +00:00
|
|
|
} else {
|
2016-04-18 02:22:18 +00:00
|
|
|
setTimeout(function () {
|
2016-04-18 03:02:22 +00:00
|
|
|
proj.move(res);
|
2016-04-18 02:22:18 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
2016-04-17 21:55:23 +00:00
|
|
|
}
|
|
|
|
};
|
2016-04-18 04:19:09 +00:00
|
|
|
cmd.cam_forward = function (rgb, callback) {
|
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
var res = function (ms) {
|
2016-04-18 04:19:09 +00:00
|
|
|
gui.updateState();
|
2016-04-19 01:26:45 +00:00
|
|
|
setTimeout(function () {
|
2016-04-19 01:52:38 +00:00
|
|
|
light.display([0,0,0]);
|
2016-04-19 01:26:45 +00:00
|
|
|
light.set([0, 0, 0], function () {
|
|
|
|
if (callback) { callback(ms); }
|
|
|
|
});
|
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
2016-04-18 02:22:18 +00:00
|
|
|
};
|
|
|
|
if (!mcopy.state.camera.direction) {
|
2016-04-18 04:19:09 +00:00
|
|
|
cam.set(true, function () {
|
2016-04-19 01:26:45 +00:00
|
|
|
setTimeout( function () {
|
2016-04-19 01:52:38 +00:00
|
|
|
light.display(rgb);
|
2016-04-18 04:19:09 +00:00
|
|
|
light.set(rgb, function () {
|
2016-04-19 01:26:45 +00:00
|
|
|
setTimeout( function () {
|
|
|
|
cam.move(res);
|
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
2016-04-18 04:19:09 +00:00
|
|
|
});
|
2016-04-18 02:22:18 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
|
|
|
});
|
2016-04-17 21:55:23 +00:00
|
|
|
} else {
|
2016-04-19 01:52:38 +00:00
|
|
|
light.display(rgb);
|
2016-04-19 01:26:45 +00:00
|
|
|
light.set(rgb, function () {
|
|
|
|
setTimeout(function () {
|
2016-04-18 04:19:09 +00:00
|
|
|
cam.move(res);
|
2016-04-19 01:26:45 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
|
|
|
});
|
2016-04-17 21:55:23 +00:00
|
|
|
}
|
|
|
|
};
|
2016-04-18 04:19:09 +00:00
|
|
|
cmd.black_forward = function (callback) {
|
|
|
|
'use strict';
|
|
|
|
var off = [0, 0, 0];
|
|
|
|
cmd.cam_forward(off, callback);
|
|
|
|
};
|
|
|
|
cmd.cam_backward = function (rgb, callback) {
|
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
var res = function (ms) {
|
2016-04-18 04:19:09 +00:00
|
|
|
gui.updateState();
|
2016-04-19 01:52:38 +00:00
|
|
|
light.display([0,0,0]);
|
2016-04-18 04:19:09 +00:00
|
|
|
light.set([0, 0, 0], function () {
|
|
|
|
if (callback) { callback(ms); }
|
|
|
|
});
|
2016-04-17 22:21:39 +00:00
|
|
|
};
|
2016-04-18 02:22:18 +00:00
|
|
|
if (mcopy.state.camera.direction) {
|
2016-04-18 04:19:09 +00:00
|
|
|
cam.set(false, function () {
|
2016-04-18 02:22:18 +00:00
|
|
|
setTimeout(function () {
|
2016-04-19 01:52:38 +00:00
|
|
|
light.display(rgb);
|
2016-04-18 04:19:09 +00:00
|
|
|
light.set(rgb, function () {
|
|
|
|
cam.move(res);
|
|
|
|
});
|
2016-04-18 02:22:18 +00:00
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
|
|
|
});
|
|
|
|
} else {
|
2016-04-18 04:19:09 +00:00
|
|
|
setTimeout(function () {
|
2016-04-19 01:52:38 +00:00
|
|
|
light.display(rgb);
|
2016-04-18 04:19:09 +00:00
|
|
|
light.set(rgb, function () {
|
|
|
|
cam.move(res);
|
|
|
|
});
|
|
|
|
}, mcopy.cfg.arduino.serialDelay);
|
2016-04-18 02:22:18 +00:00
|
|
|
}
|
2016-04-18 03:02:22 +00:00
|
|
|
};
|
2016-04-18 04:19:09 +00:00
|
|
|
cmd.black_backward = function (callback) {
|
|
|
|
'use strict';
|
|
|
|
var off = [0, 0, 0];
|
|
|
|
cmd.cam_backward(off, callback);
|
|
|
|
};
|
2016-04-14 04:17:42 +00:00
|
|
|
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.queue = {};
|
|
|
|
proj.lock = false;
|
|
|
|
proj.init = function () {
|
2016-04-14 04:17:42 +00:00
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.listen();
|
2016-04-14 04:17:42 +00:00
|
|
|
};
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.set = function (dir, callback) {
|
2016-04-14 04:17:42 +00:00
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
var obj;
|
|
|
|
if (proj.lock) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
obj = {
|
|
|
|
dir : dir,
|
|
|
|
id : uuid.v4()
|
|
|
|
};
|
|
|
|
ipcRenderer.sendSync('proj', obj);
|
2016-04-17 21:55:23 +00:00
|
|
|
|
2016-04-18 02:22:18 +00:00
|
|
|
if (typeof callback !== 'undefined') {
|
|
|
|
obj.callback = callback;
|
2016-04-14 04:17:42 +00:00
|
|
|
}
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.queue[obj.id] = obj;
|
|
|
|
proj.lock = true;
|
2016-04-14 04:17:42 +00:00
|
|
|
};
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.move = function (callback) {
|
2016-04-14 04:17:42 +00:00
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
var obj;
|
|
|
|
if (proj.lock) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
obj = {
|
|
|
|
frame : true,
|
|
|
|
id : uuid.v4()
|
|
|
|
};
|
|
|
|
ipcRenderer.sendSync('proj', obj);
|
|
|
|
|
|
|
|
if (typeof callback !== 'undefined') {
|
|
|
|
obj.callback = callback;
|
2016-04-14 04:17:42 +00:00
|
|
|
}
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.queue[obj.id] = obj;
|
|
|
|
proj.lock = true;
|
2016-04-14 04:17:42 +00:00
|
|
|
};
|
2016-04-18 04:19:09 +00:00
|
|
|
proj.end = function (c, id, ms) {
|
2016-04-14 04:17:42 +00:00
|
|
|
'use strict';
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === mcopy.cfg.arduino.cmd.proj_forward) {
|
2016-04-18 02:22:18 +00:00
|
|
|
mcopy.state.projector.direction = true;
|
2016-04-18 04:19:09 +00:00
|
|
|
} else if (c === mcopy.cfg.arduino.cmd.proj_backward) {
|
2016-04-18 02:22:18 +00:00
|
|
|
mcopy.state.projector.direction = false;
|
2016-04-18 04:19:09 +00:00
|
|
|
} else if (c === mcopy.cfg.arduino.cmd.projector) {
|
2016-04-18 02:22:18 +00:00
|
|
|
if (mcopy.state.projector.direction) {
|
|
|
|
mcopy.state.projector.pos += 1;
|
2016-04-17 21:55:23 +00:00
|
|
|
} else {
|
2016-04-18 02:22:18 +00:00
|
|
|
mcopy.state.projector.pos -= 1;
|
2016-04-17 21:55:23 +00:00
|
|
|
}
|
2016-04-14 04:17:42 +00:00
|
|
|
}
|
2016-04-18 02:22:18 +00:00
|
|
|
if (typeof proj.queue[id] !== 'undefined') {
|
|
|
|
if (typeof proj.queue[id].callback !== 'undefined') {
|
2016-04-18 04:19:09 +00:00
|
|
|
proj.queue[id].callback(ms);
|
2016-04-18 02:22:18 +00:00
|
|
|
}
|
|
|
|
delete proj.queue[id];
|
|
|
|
proj.lock = false;
|
2016-04-14 04:17:42 +00:00
|
|
|
}
|
|
|
|
};
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.listen = function () {
|
2016-04-17 21:55:23 +00:00
|
|
|
'use strict';
|
2016-04-18 02:22:18 +00:00
|
|
|
ipcRenderer.on('proj', function (event, arg) {
|
2016-04-18 04:19:09 +00:00
|
|
|
proj.end(arg.cmd, arg.id, arg.ms);
|
2016-04-18 02:22:18 +00:00
|
|
|
return event.returnValue = true;
|
|
|
|
});
|
2016-04-14 04:17:42 +00:00
|
|
|
};
|
|
|
|
|
2016-04-18 03:02:22 +00:00
|
|
|
cam.queue = {};
|
|
|
|
cam.lock = false;
|
|
|
|
cam.init = function () {
|
|
|
|
'use strict';
|
|
|
|
cam.listen();
|
|
|
|
};
|
|
|
|
cam.set = function (dir, callback) {
|
|
|
|
'use strict';
|
|
|
|
var obj;
|
|
|
|
if (cam.lock) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
obj = {
|
|
|
|
dir : dir,
|
|
|
|
id : uuid.v4()
|
|
|
|
};
|
|
|
|
ipcRenderer.sendSync('cam', obj);
|
|
|
|
|
|
|
|
if (typeof callback !== 'undefined') {
|
|
|
|
obj.callback = callback;
|
|
|
|
}
|
|
|
|
cam.queue[obj.id] = obj;
|
|
|
|
cam.lock = true;
|
|
|
|
};
|
|
|
|
cam.move = function (callback) {
|
|
|
|
'use strict';
|
|
|
|
var obj;
|
|
|
|
if (cam.lock) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
obj = {
|
|
|
|
frame : true,
|
|
|
|
id : uuid.v4()
|
|
|
|
};
|
|
|
|
ipcRenderer.sendSync('cam', obj);
|
|
|
|
|
|
|
|
if (typeof callback !== 'undefined') {
|
|
|
|
obj.callback = callback;
|
|
|
|
}
|
|
|
|
cam.queue[obj.id] = obj;
|
|
|
|
cam.lock = true;
|
|
|
|
};
|
2016-04-18 04:19:09 +00:00
|
|
|
cam.end = function (c, id, ms) {
|
2016-04-18 03:02:22 +00:00
|
|
|
'use strict';
|
2016-04-18 04:19:09 +00:00
|
|
|
if (c === mcopy.cfg.arduino.cmd.cam_forward) {
|
2016-04-18 03:02:22 +00:00
|
|
|
mcopy.state.camera.direction = true;
|
2016-04-18 04:19:09 +00:00
|
|
|
} else if (c === mcopy.cfg.arduino.cmd.cam_backward) {
|
2016-04-18 03:02:22 +00:00
|
|
|
mcopy.state.camera.direction = false;
|
2016-04-18 04:19:09 +00:00
|
|
|
} else if (c === mcopy.cfg.arduino.cmd.camera) {
|
2016-04-18 03:02:22 +00:00
|
|
|
if (mcopy.state.camera.direction) {
|
|
|
|
mcopy.state.camera.pos += 1;
|
|
|
|
} else {
|
|
|
|
mcopy.state.camera.pos -= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (typeof cam.queue[id] !== 'undefined') {
|
|
|
|
if (typeof cam.queue[id].callback !== 'undefined') {
|
2016-04-18 04:19:09 +00:00
|
|
|
cam.queue[id].callback(ms);
|
2016-04-18 03:02:22 +00:00
|
|
|
}
|
|
|
|
delete cam.queue[id];
|
|
|
|
cam.lock = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
cam.listen = function () {
|
|
|
|
'use strict';
|
|
|
|
ipcRenderer.on('cam', function (event, arg) {
|
2016-04-18 04:19:09 +00:00
|
|
|
cam.end(arg.cmd, arg.id, arg.ms);
|
2016-04-18 03:02:22 +00:00
|
|
|
return event.returnValue = true;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-04-13 04:44:52 +00:00
|
|
|
//LIGHT
|
2016-04-17 21:55:23 +00:00
|
|
|
light.preview_state = false; //light is on/off for preview viewing
|
|
|
|
light.color = [255, 255, 255]; //default color
|
2016-04-13 04:44:52 +00:00
|
|
|
light.current = [0, 0, 0]; //last sent
|
2016-04-13 20:59:00 +00:00
|
|
|
light.icon = {};
|
2016-04-17 21:55:23 +00:00
|
|
|
light.swatches = [
|
|
|
|
{
|
|
|
|
rgb : [0, 0, 0],
|
|
|
|
name : 'off'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
rgb : [255, 255, 255],
|
|
|
|
name : 'white (LED)'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
rgb : chroma.kelvin(2500).rgb(),
|
|
|
|
name : '2500 kelvin'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
rgb : chroma.kelvin(5600).rgb(),
|
|
|
|
name : '5600 kelvin'
|
|
|
|
},
|
2016-04-18 01:24:11 +00:00
|
|
|
{
|
|
|
|
rgb : chroma.kelvin(6500).rgb(),
|
|
|
|
name : '6500 kelvin'
|
|
|
|
},
|
2016-04-17 21:55:23 +00:00
|
|
|
{
|
|
|
|
rgb : light.color,
|
|
|
|
set : true,
|
|
|
|
default : true
|
|
|
|
}
|
|
|
|
];
|
|
|
|
light.queue = {};
|
|
|
|
light.lock = false;
|
2016-04-13 04:06:19 +00:00
|
|
|
light.init = function () {
|
2016-04-13 20:59:00 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-04-17 21:55:23 +00:00
|
|
|
//create dynamic style for displaying light across screens
|
2016-04-13 20:59:00 +00:00
|
|
|
light.icon = document.createElement('style');
|
|
|
|
light.icon.innerHTML = 'span.mcopy-light{background-color: #000;}';
|
|
|
|
document.body.appendChild(light.icon);
|
|
|
|
|
2016-04-17 21:55:23 +00:00
|
|
|
light.colorPickers();
|
|
|
|
light.swatch.init();
|
2016-04-18 01:24:11 +00:00
|
|
|
light.listen();
|
2016-04-17 21:55:23 +00:00
|
|
|
|
|
|
|
light.display(light.current);
|
|
|
|
|
|
|
|
$('#preview').on('change', function () {
|
|
|
|
light.preview_state = $(this).prop('checked');
|
|
|
|
if (light.preview_state) {
|
|
|
|
light.display(light.color);
|
|
|
|
light.set(light.color);
|
|
|
|
} else {
|
|
|
|
light.display([0,0,0]);
|
|
|
|
light.set([0,0,0]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
light.colorPickers = function () {
|
|
|
|
'use strict';
|
2016-04-13 04:44:52 +00:00
|
|
|
$('#colors-tabs').w2tabs({
|
2016-04-13 04:06:19 +00:00
|
|
|
name: 'colors',
|
2016-04-18 00:34:18 +00:00
|
|
|
active: 'kelvin',
|
2016-04-13 04:06:19 +00:00
|
|
|
tabs: [
|
2016-04-17 21:55:23 +00:00
|
|
|
{ id: 'kelvin', caption: 'Kelvin'},
|
2016-04-13 04:06:19 +00:00
|
|
|
{ id: 'cmy', caption: 'CMY'},
|
2016-04-17 21:55:23 +00:00
|
|
|
{ id: 'rgb', caption: 'RGB' }
|
2016-04-13 04:06:19 +00:00
|
|
|
],
|
|
|
|
onClick: function (event) {
|
2016-04-18 00:34:18 +00:00
|
|
|
$('.colors-page').hide();
|
|
|
|
$('#' + event.target + '-page').show();
|
|
|
|
if (event.target === 'rgb') {
|
2016-04-18 01:24:11 +00:00
|
|
|
light.rgb.page();
|
2016-04-18 00:34:18 +00:00
|
|
|
}
|
2016-04-13 04:06:19 +00:00
|
|
|
}
|
|
|
|
});
|
2016-04-18 00:34:18 +00:00
|
|
|
light.rgb.init();
|
|
|
|
light.kelvin.init();
|
2016-04-17 21:55:23 +00:00
|
|
|
};
|
|
|
|
light.set = function (rgb, callback) { //rgb = [0,0,0]
|
|
|
|
'use strict';
|
|
|
|
var obj;
|
|
|
|
|
|
|
|
if (light.lock) {
|
|
|
|
//potential for logging overlapping commands
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj = {
|
|
|
|
rgb : rgb,
|
|
|
|
id : uuid.v4()
|
|
|
|
};
|
|
|
|
ipcRenderer.sendSync('light', obj);
|
|
|
|
|
|
|
|
if (typeof callback !== 'undefined') {
|
|
|
|
obj.callback = callback;
|
|
|
|
}
|
|
|
|
light.queue[obj.id] = obj;
|
|
|
|
light.current = rgb;
|
|
|
|
light.lock = true;
|
|
|
|
};
|
|
|
|
light.end = function (id) {
|
|
|
|
'use strict';
|
|
|
|
if (typeof light.queue[id] !== 'undefined') {
|
|
|
|
if (typeof light.queue[id].callback !== 'undefined') {
|
|
|
|
light.queue[id].callback();
|
2016-04-13 07:26:35 +00:00
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
delete light.queue[id];
|
|
|
|
light.lock = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
light.listen = function () {
|
|
|
|
'use strict';
|
|
|
|
ipcRenderer.on('light', function (event, arg) {
|
|
|
|
light.end(arg.id);
|
|
|
|
return event.returnValue = true;
|
2016-04-13 04:44:52 +00:00
|
|
|
});
|
2016-04-13 04:06:19 +00:00
|
|
|
};
|
2016-04-18 01:24:11 +00:00
|
|
|
light.preview = function (rgb, name) {
|
2016-04-13 00:53:28 +00:00
|
|
|
'use strict';
|
2016-04-18 00:34:18 +00:00
|
|
|
var rgbStr;
|
|
|
|
rgb = light.rgb.floor(rgb);
|
|
|
|
rgbStr = 'rgb(' + rgb.join(',') + ')';
|
2016-04-17 21:55:23 +00:00
|
|
|
light.color = rgb;
|
2016-04-18 01:24:11 +00:00
|
|
|
if (typeof name === 'undefined') {
|
|
|
|
name = rgbStr;
|
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
$('#light-swatches .swatch.set').css('background', rgbStr)
|
|
|
|
.attr('color', rgb.join(','))
|
2016-04-18 01:24:11 +00:00
|
|
|
.prop('title', name);
|
2016-04-17 21:55:23 +00:00
|
|
|
|
|
|
|
if (light.preview_state) {
|
|
|
|
light.display(rgb);
|
|
|
|
light.set(rgb);
|
|
|
|
}
|
2016-04-13 00:53:28 +00:00
|
|
|
};
|
2016-04-17 21:55:23 +00:00
|
|
|
light.display = function (rgb) { //display light active state
|
2016-04-13 04:44:52 +00:00
|
|
|
'use strict';
|
2016-04-13 07:26:35 +00:00
|
|
|
var str,
|
|
|
|
i;
|
2016-04-18 00:34:18 +00:00
|
|
|
rgb = light.rgb.floor(rgb);
|
2016-04-13 07:26:35 +00:00
|
|
|
for (i = 0; i < 3; i++) {
|
2016-04-13 04:44:52 +00:00
|
|
|
$('#light-status form input').eq(i).val(rgb[i]);
|
|
|
|
}
|
2016-04-13 07:26:35 +00:00
|
|
|
str = 'rgb(' + rgb.join(',') + ')';
|
|
|
|
$('#color').css('background-color', str);
|
2016-04-13 20:59:00 +00:00
|
|
|
light.icon = document.styleSheets[document.styleSheets.length - 1];
|
|
|
|
light.icon.deleteRule(0);
|
|
|
|
light.icon.insertRule('span.mcopy-light{background-color: ' + str + ';}', 0)
|
2016-04-13 07:26:35 +00:00
|
|
|
};
|
2016-04-18 01:24:11 +00:00
|
|
|
|
|
|
|
//KELVIN GUI
|
2016-04-18 00:34:18 +00:00
|
|
|
light.kelvin = {};
|
|
|
|
light.kelvin.steps = 348;
|
|
|
|
light.kelvin.min = light.kelvin.steps * 4;
|
|
|
|
light.kelvin.max = 20000;
|
|
|
|
light.kelvin.moving = false;
|
|
|
|
light.kelvin.init = function () {
|
|
|
|
'use strict';
|
|
|
|
$('#kelvin').on('change', light.kelvin.change);
|
|
|
|
$('#kelvin').on('keypup', function (e) {
|
|
|
|
var code = e.keyCode || e.which;
|
|
|
|
if (code === 13) {
|
|
|
|
light.kelvin.change();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#kelvin-slider').on('mousemove', function (event) {
|
|
|
|
if (light.kelvin.moving) {
|
|
|
|
light.kelvin.click(this, event);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#kelvin-slider').on('mousedown', function (event) {
|
|
|
|
light.kelvin.moving = true;
|
|
|
|
light.kelvin.click(this, event);
|
|
|
|
});
|
|
|
|
$(document).on('mouseup', function () {
|
|
|
|
light.kelvin.moving = false;
|
|
|
|
});
|
|
|
|
light.kelvin.scale();
|
|
|
|
light.kelvin.set(5600); //default value
|
|
|
|
};
|
|
|
|
light.kelvin.change = function () {
|
|
|
|
'use strict';
|
|
|
|
var val = $('#kelvin').val(),
|
|
|
|
rgb = chroma.kelvin(val).rgb();
|
|
|
|
light.kelvin.pos(val);
|
2016-04-18 01:24:11 +00:00
|
|
|
light.preview(rgb, val + ' kelvin');
|
2016-04-18 00:34:18 +00:00
|
|
|
};
|
|
|
|
light.kelvin.scale = function () {
|
|
|
|
'use strict';
|
|
|
|
var i,
|
|
|
|
min = light.kelvin.min,
|
|
|
|
max = light.kelvin.max,
|
|
|
|
steps = light.kelvin.steps,
|
|
|
|
rgb,
|
|
|
|
elem,
|
|
|
|
elemStr = '<span style="background: rgb(XXXX);"></span>'
|
|
|
|
for (i = 0; i < steps; i++) {
|
|
|
|
rgb = chroma.kelvin((i * ((max - min) / steps)) + min).rgb();
|
|
|
|
rgb = light.rgb.floor(rgb).join(',');
|
|
|
|
elem = $(elemStr.replace('XXXX', rgb));
|
|
|
|
$('#kelvin-scale').append(elem);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
light.kelvin.pos = function (kelvin) {
|
|
|
|
'use strict';
|
|
|
|
var min = light.kelvin.min,
|
|
|
|
max = light.kelvin.max,
|
|
|
|
steps = light.kelvin.steps,
|
|
|
|
start = -1,
|
|
|
|
pos = Math.round((kelvin - min) / ( (max - min) / steps)) + start;
|
|
|
|
if (pos < start) {
|
|
|
|
pos = start;
|
|
|
|
}
|
|
|
|
if (pos > steps) {
|
|
|
|
pos = steps;
|
|
|
|
}
|
|
|
|
$('#kelvin-pos').css('left', pos + 'px');
|
|
|
|
};
|
|
|
|
light.kelvin.set = function (kelvin) {
|
|
|
|
'use strict';
|
|
|
|
$('#kelvin').val(kelvin);
|
|
|
|
light.kelvin.change();
|
|
|
|
};
|
|
|
|
light.kelvin.click = function (t, e) {
|
|
|
|
'use strict';
|
|
|
|
var parentOffset = $(t).parent().offset(),
|
|
|
|
relX = e.pageX - parentOffset.left - 31, //?
|
|
|
|
min = light.kelvin.min,
|
|
|
|
max = light.kelvin.max,
|
|
|
|
steps = light.kelvin.steps,
|
|
|
|
kelvin = Math.round((relX * ((max - min) / steps)) + min);
|
|
|
|
light.kelvin.set(kelvin);
|
|
|
|
|
|
|
|
};
|
2016-04-18 01:24:11 +00:00
|
|
|
|
|
|
|
//CMY GUI
|
2016-04-18 00:34:18 +00:00
|
|
|
light.cmy = {};
|
|
|
|
light.cmy.init = function () {
|
2016-04-13 07:26:35 +00:00
|
|
|
'use strict';
|
2016-04-18 00:34:18 +00:00
|
|
|
|
|
|
|
};
|
2016-04-18 01:24:11 +00:00
|
|
|
|
|
|
|
//RGB GUI
|
2016-04-18 00:34:18 +00:00
|
|
|
light.rgb = {};
|
2016-04-18 01:24:11 +00:00
|
|
|
light.rgb.elem;
|
2016-04-18 00:34:18 +00:00
|
|
|
light.rgb.lock = true;
|
|
|
|
light.rgb.init = function () {
|
|
|
|
'use strict';
|
2016-04-18 01:24:11 +00:00
|
|
|
light.rgb.elem = jsColorPicker('#rgb', {
|
2016-04-18 00:34:18 +00:00
|
|
|
customBG: '#222',
|
|
|
|
readOnly: true,
|
|
|
|
size: 3,
|
|
|
|
appendTo : document.getElementById('rgb-page'),
|
|
|
|
// patch: false,
|
|
|
|
init: function(elm, colors) { // colors is a different instance (not connected to colorPicker)
|
|
|
|
elm.style.backgroundColor = elm.value;
|
|
|
|
elm.style.color = colors.rgbaMixCustom.luminance > 0.22 ? '#222' : '#ddd';
|
|
|
|
},
|
|
|
|
convertCallback: light.rgb.change
|
|
|
|
});
|
|
|
|
};
|
2016-04-18 01:24:11 +00:00
|
|
|
light.rgb.page = function () {
|
2016-04-18 00:34:18 +00:00
|
|
|
'use strict';
|
|
|
|
if (light.rgb.lock) {
|
2016-04-13 07:26:35 +00:00
|
|
|
$('#rgb').focus();
|
2016-04-18 00:34:18 +00:00
|
|
|
light.rgb.lock = false;
|
2016-04-17 21:55:23 +00:00
|
|
|
}
|
2016-04-18 01:24:11 +00:00
|
|
|
light.rgb.set(light.color);
|
2016-04-17 21:55:23 +00:00
|
|
|
};
|
2016-04-18 00:34:18 +00:00
|
|
|
light.rgb.change = function (colors, type) {
|
|
|
|
'use strict';
|
|
|
|
var a = colors.RND.rgb,
|
|
|
|
rgb = [a.r, a.g, a.b];
|
|
|
|
if (!light.rgb.lock) {
|
|
|
|
light.preview(rgb);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
light.rgb.floor = function (rgb) {
|
|
|
|
'use strict';
|
|
|
|
return [
|
|
|
|
Math.floor(rgb[0]),
|
|
|
|
Math.floor(rgb[1]),
|
|
|
|
Math.floor(rgb[2])
|
|
|
|
];
|
|
|
|
};
|
2016-04-18 01:24:11 +00:00
|
|
|
light.rgb.set = function (rgb) {
|
|
|
|
'use strict';
|
|
|
|
var hex = chroma.rgb(rgb).hex();
|
|
|
|
light.rgb.elem.current.startRender();
|
|
|
|
light.rgb.elem.current.setColor(hex);
|
|
|
|
light.rgb.elem.current.stopRender();
|
|
|
|
};
|
2016-04-18 02:22:18 +00:00
|
|
|
|
|
|
|
//SWATCH GUI
|
2016-04-17 21:55:23 +00:00
|
|
|
light.swatch = {};
|
|
|
|
light.swatch.init = function () {
|
|
|
|
'use strict';
|
|
|
|
var number = 12,
|
|
|
|
add,
|
|
|
|
elem,
|
|
|
|
rgb,
|
|
|
|
i,
|
|
|
|
x;
|
|
|
|
for (i = 0; i < light.swatches.length; i++) {
|
2016-04-18 00:34:18 +00:00
|
|
|
light.swatches[i].rgb = light.rgb.floor(light.swatches[i].rgb);
|
2016-04-17 21:55:23 +00:00
|
|
|
rgb = 'rgb(' + light.swatches[i].rgb.join(',') + ')';
|
|
|
|
elem = $('<div class="swatch"></div>');
|
|
|
|
elem.css('background', rgb);
|
|
|
|
elem.attr('color', light.swatches[i].rgb.join(','));
|
|
|
|
if (typeof light.swatches[i].name !== 'undefined') {
|
|
|
|
elem.prop('title', light.swatches[i].name);
|
|
|
|
} else {
|
|
|
|
elem.prop('title', rgb);
|
|
|
|
}
|
|
|
|
if (light.swatches[i].default) {
|
|
|
|
elem.addClass('default');
|
|
|
|
}
|
|
|
|
if (light.swatches[i].set) {
|
|
|
|
elem.addClass('set');
|
|
|
|
}
|
|
|
|
$('#new-swatch').before(elem);
|
2016-04-13 04:44:52 +00:00
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
$('#new-swatch').on('click', light.swatch.add);
|
|
|
|
$(document.body).on('click', '#light-swatches .swatch', function () {
|
|
|
|
var rgb = $(this).attr('color');
|
|
|
|
if (typeof color !== 'undefined') {
|
|
|
|
rgb = rgb.split(',');
|
|
|
|
$('#light-swatches .swatch').removeClass('default set');
|
|
|
|
$(this).addClass('default set');
|
2016-04-18 01:24:11 +00:00
|
|
|
if (w2ui['colors'].active === 'rgb') {
|
|
|
|
light.rgb.set(light.color);
|
|
|
|
}
|
2016-04-17 21:55:23 +00:00
|
|
|
light.preview(rgb);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$(document.body).on('dblclick', '.swatch', function () {
|
|
|
|
|
|
|
|
});
|
|
|
|
};
|
|
|
|
light.swatch.add = function () {
|
|
|
|
'use strict';
|
|
|
|
var swatch = $('<div class="swatch default set"></div>');
|
|
|
|
$('#light-swatches .swatch').removeClass('default set');
|
|
|
|
$('#new-swatch').before(swatch);
|
|
|
|
light.preview(light.color);
|
2016-04-13 04:44:52 +00:00
|
|
|
};
|
2016-04-13 00:53:28 +00:00
|
|
|
|
2016-04-18 02:22:18 +00:00
|
|
|
//GUI
|
|
|
|
gui.fmtZero = function (val, len) {
|
|
|
|
var raw = val,
|
|
|
|
str = val + '',
|
|
|
|
output = ''
|
|
|
|
if (raw < 0) {
|
|
|
|
output = '-' + Array(len - (str.length - 1)).join('0') + str.replace('-', '');
|
|
|
|
} else {
|
|
|
|
if (str.length < len) {
|
|
|
|
output = Array(len - str.length).join('0') + str;
|
|
|
|
} else if (str.length >= len) {
|
|
|
|
str = parseInt(str) + '';
|
|
|
|
output = Array(len - str.length).join('0') + str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
};
|
|
|
|
gui.counterFormat = function (t, normal, prevent) {
|
|
|
|
var raw = t.value;
|
|
|
|
t.value = gui.fmtZero(raw, 6);
|
|
|
|
if (typeof normal !== 'undefined' && parseInt(raw) !== normal) {
|
|
|
|
$(t).addClass('changed');
|
|
|
|
} else {
|
|
|
|
$(t).removeClass('changed');
|
|
|
|
}
|
|
|
|
if (typeof prevent === 'undefined') { prevent = false; }
|
|
|
|
if (!prevent) {
|
|
|
|
gui.shootGoto(t);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.shootGoto = function (t) {
|
|
|
|
var elem = $(t),
|
|
|
|
id = elem.attr('id').split('_'),
|
|
|
|
val = 0,
|
|
|
|
comp = 0,
|
|
|
|
other = {};
|
|
|
|
if (id[1] === 'cam') {
|
|
|
|
comp = mcopy.state.camera.pos;
|
|
|
|
} else if (id[1] === 'proj') {
|
|
|
|
comp = mcopy.state.projector.pos;
|
|
|
|
}
|
|
|
|
if (id[0] === 'shoot') {
|
|
|
|
other = $('#goto_' + id[1]);
|
|
|
|
val = parseInt(elem.val()) + comp;
|
|
|
|
other.val(val);
|
|
|
|
gui.counterFormat(other[0], comp, true);
|
|
|
|
//other.trigger('change');
|
|
|
|
} else if (id[0] === 'goto'){
|
|
|
|
other = $('#shoot_' + id[1]);
|
|
|
|
val = parseInt(elem.val()) - comp;
|
|
|
|
other.val(val);
|
|
|
|
gui.counterFormat(other[0], undefined, true);
|
|
|
|
} else {
|
|
|
|
//ALLOW TO EXECUTE WITH NO RESULTS
|
|
|
|
//console.log('You screwed up the markup.');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.updateCam = function (t) {
|
|
|
|
var val = t.value,
|
|
|
|
change;
|
|
|
|
if (parseInt(val) === mcopy.state.camera.pos) { return false; }
|
|
|
|
change = confirm('Are you sure you want to set camera counter to ' + val + '?');
|
|
|
|
if (change) {
|
|
|
|
mcopy.state.camera.pos = parseInt(val);
|
|
|
|
gui.updateState();
|
|
|
|
} else {
|
|
|
|
t.value = mcopy.state.camera.pos;
|
|
|
|
gui.counterFormat(t);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.updateProj = function (t) {
|
|
|
|
var val = t.value,
|
|
|
|
change;
|
|
|
|
if (parseInt(val) === mcopy.state.projector.pos) { return false; }
|
|
|
|
change = confirm('Are you sure you want to set projector counter to ' + val + '?');
|
|
|
|
if (change) {
|
|
|
|
mcopy.state.projector.pos = parseInt(val);
|
|
|
|
gui.updateState();
|
|
|
|
} else {
|
|
|
|
t.value = mcopy.state.projector.pos;
|
|
|
|
gui.counterFormat(t);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.updateState = function () {
|
|
|
|
var cpos = mcopy.state.camera.pos,
|
|
|
|
ppos = mcopy.state.projector.pos;
|
|
|
|
|
|
|
|
$('#seq_cam_count').val(cpos).change();
|
|
|
|
$('#seq_proj_count').val(ppos).change();
|
2016-04-19 03:44:51 +00:00
|
|
|
|
|
|
|
$('#seq_cam_count_2').val(cpos).change();
|
|
|
|
$('#seq_proj_count_2').val(ppos).change();
|
|
|
|
};
|
|
|
|
gui.spinner = function (state) {
|
|
|
|
var cfg = {
|
|
|
|
lines: 11, // The number of lines to draw
|
|
|
|
length: 15, // The length of each line
|
|
|
|
width: 7, // The line thickness
|
|
|
|
radius: 20, // The radius of the inner circle
|
|
|
|
corners: 1, // Corner roundness (0..1)
|
|
|
|
rotate: 0, // The rotation offset
|
|
|
|
direction: 1, // 1: clockwise, -1: counterclockwise
|
|
|
|
color: '#F2F2F1', // #rgb or #rrggbb or array of colors
|
|
|
|
speed: 1, // Rounds per second
|
|
|
|
trail: 60, // Afterglow percentage
|
|
|
|
shadow: true, // Whether to render a shadow
|
|
|
|
hwaccel: true, // Whether to use hardware acceleration
|
|
|
|
className: 'spinner', // The CSS class to assign to the spinner
|
|
|
|
zIndex: 2e9, // The z-index (defaults to 2000000000)
|
|
|
|
top: '50%', // Top position relative to parent
|
|
|
|
left: '50%' // Left position relative to parent
|
|
|
|
},
|
|
|
|
target,
|
|
|
|
spinner;
|
|
|
|
if (state) {
|
|
|
|
target = document.getElementById('spinner');
|
|
|
|
spinner = new Spinner(cfg).spin(target);
|
|
|
|
} else {
|
|
|
|
$('#spinner').hide();
|
|
|
|
$('#psinner').empty();
|
|
|
|
}
|
2016-04-18 02:22:18 +00:00
|
|
|
};
|
2016-04-19 03:44:51 +00:00
|
|
|
gui.overlay = function (state) {
|
|
|
|
if (state) {
|
|
|
|
$('#overlay').show();
|
|
|
|
} else {
|
|
|
|
$('#overlay').hide();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-18 02:22:18 +00:00
|
|
|
gui.info = function (title, message) {
|
|
|
|
'use strict';
|
|
|
|
var config = {
|
|
|
|
type : 'info',
|
|
|
|
buttons : ['Ok'],
|
|
|
|
title: title,
|
|
|
|
message : message
|
|
|
|
};
|
|
|
|
dialog.showMessageBox(config);
|
|
|
|
/*
|
|
|
|
type String - Can be "none", "info", "error", "question" or "warning". On Windows, "question" displays the same icon as "info", unless you set an icon using the "icon" option.
|
|
|
|
buttons Array - Array of texts for buttons.
|
|
|
|
defaultId Integer - Index of the button in the buttons array which will be selected by default when the message box opens.
|
|
|
|
title String - Title of the message box, some platforms will not show it.
|
|
|
|
message String - Content of the message box.
|
|
|
|
detail String - Extra information of the message.
|
|
|
|
icon NativeImage
|
|
|
|
cancelId Integer - The value will be returned when user cancels the dialog instead of clicking the buttons of the dialog. By default it is the index of the buttons that have "cancel" or "no" as label, or 0 if there is no such buttons. On OS X and Windows the index of "Cancel" button will always be used as cancelId, not matter whether it is already specified.
|
|
|
|
noLink Boolean - On Windows Electron will try to figure out which one of the buttons are common buttons (like "Cancel" or "Yes"), and show the others as command links in the dialog. This can make the dialog appear in the style of modern Windows apps. If you don't like this behavior, you can set noLink to true.
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
gui.confirm = function () {};
|
|
|
|
gui.warn = function (title, message) {
|
|
|
|
'use strict';
|
|
|
|
var config = {
|
|
|
|
type : 'warning',
|
|
|
|
buttons : ['Ok'],
|
|
|
|
title: title,
|
|
|
|
message : message
|
|
|
|
};
|
|
|
|
dialog.showMessageBox(config);
|
|
|
|
};
|
|
|
|
gui.error = function () {};
|
|
|
|
|
|
|
|
/******
|
|
|
|
Sequencer grid
|
|
|
|
*******/
|
|
|
|
gui.grid = {};
|
|
|
|
gui.grid.swatchesElem = {};
|
|
|
|
gui.grid.init = function () {
|
|
|
|
'use strict';
|
|
|
|
gui.grid.refresh();
|
|
|
|
seq.stats();
|
|
|
|
gui.grid.events();
|
|
|
|
};
|
|
|
|
|
|
|
|
gui.grid.state = function (i) {
|
|
|
|
'use strict';
|
|
|
|
var elem = $('input[x=' + i + ']'),
|
|
|
|
lightElem = $('.L' + '[x=' + i + ']');
|
|
|
|
if (typeof mcopy.state.sequence.arr[i] !== 'undefined') {
|
|
|
|
elem.prop('checked', false);
|
|
|
|
$('.' + mcopy.state.sequence.arr[i] + '[x=' + i + ']').prop('checked', true);
|
|
|
|
if (mcopy.state.sequence.arr[i] === 'CF'
|
|
|
|
|| mcopy.state.sequence.arr[i] === 'CB') {
|
|
|
|
lightElem.css('background', 'rgb(' + mcopy.state.sequence.light[i] + ')')
|
|
|
|
.addClass('a')
|
|
|
|
.prop('title', 'rgb(' + mcopy.state.sequence.light[i] + ')');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
lightElem.css('background', 'transparent')
|
|
|
|
.removeClass('a')
|
|
|
|
.prop('title', '');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lightElem.css('background', 'transparent')
|
|
|
|
.removeClass('a')
|
|
|
|
.prop('title', '');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.grid.refresh = function () {
|
|
|
|
'use strict';
|
|
|
|
var cmds = ['cam_forward', 'proj_forward', 'cam_backward', 'proj_backward', 'light_set', 'numbers'],
|
|
|
|
check = '<input type="checkbox" x="xxxx" />',
|
|
|
|
div = '<div x="xxxx"></div>',
|
|
|
|
elem,
|
|
|
|
width = 970 - 34 + ((940 / 24) * Math.abs(24 - mcopy.state.sequence.size));
|
|
|
|
$('#sequence').width(width + 'px');
|
|
|
|
for (var i = 0; i < cmds.length; i++) {
|
|
|
|
$('#' + cmds[i]).empty();
|
|
|
|
for (var x = 0; x < mcopy.state.sequence.size; x++) {
|
|
|
|
if (i === cmds.length - 1) {
|
|
|
|
elem = div.replace('xxxx', x);
|
|
|
|
$('#' + cmds[i]).append($(elem).text(x));
|
|
|
|
} else if (i === cmds.length - 2) {
|
|
|
|
elem = div.replace('xxxx', x);
|
|
|
|
$('#' + cmds[i]).append($(elem).addClass(mcopy.state.sequence.pads[cmds[i]]));
|
|
|
|
} else {
|
|
|
|
elem = check.replace('xxxx', x);
|
|
|
|
$('#' + cmds[i]).append($(elem).addClass(mcopy.state.sequence.pads[cmds[i]]));
|
|
|
|
}
|
|
|
|
gui.grid.state(x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.grid.click = function (t) {
|
|
|
|
'use strict';
|
|
|
|
var i = parseInt($(t).attr('x')),
|
2016-04-18 04:19:09 +00:00
|
|
|
c;
|
2016-04-18 02:22:18 +00:00
|
|
|
if ($(t).prop('checked')) {
|
2016-04-18 04:19:09 +00:00
|
|
|
c = $(t).attr('class').replace('.', '');
|
|
|
|
mcopy.state.sequence.arr[i] = c;
|
|
|
|
if (c === 'CF'
|
|
|
|
|| c === 'CB') {
|
2016-04-18 02:22:18 +00:00
|
|
|
mcopy.state.sequence.light[i] = light.color.join(',');
|
|
|
|
} else {
|
|
|
|
mcopy.state.sequence.light[i] = '';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mcopy.state.sequence.arr[i] = undefined;
|
|
|
|
delete mcopy.state.sequence.arr[i];
|
|
|
|
}
|
|
|
|
gui.grid.state(i);
|
|
|
|
seq.stats();
|
|
|
|
};
|
|
|
|
gui.grid.clear = function () {
|
|
|
|
'use strict';
|
|
|
|
var doit = confirm('Are you sure you want to clear this sequence?');
|
|
|
|
if (doit) {
|
|
|
|
seq.clear();
|
|
|
|
gui.grid.refresh();
|
|
|
|
seq.stats();
|
|
|
|
console.log('Sequencer cleared');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.grid.loopChange = function (t) {
|
|
|
|
'use strict';
|
|
|
|
var count = parseInt(t.value);
|
|
|
|
mcopy.loop = count;
|
|
|
|
seq.stats();
|
|
|
|
};
|
|
|
|
gui.grid.plus_24 = function () {
|
|
|
|
'use strict';
|
|
|
|
mcopy.state.sequence.size += 24;
|
|
|
|
gui.grid.refresh();
|
|
|
|
console.log('Sequencer expanded to ' + mcopy.state.sequence.size + ' steps');
|
|
|
|
};
|
|
|
|
gui.grid.setLight = function (x, rgb) {
|
|
|
|
'use strict';
|
|
|
|
mcopy.state.sequence.light[x] = rgb.join(',');
|
|
|
|
gui.grid.state(x);
|
|
|
|
};
|
|
|
|
gui.grid.blackout = function (t) {
|
|
|
|
var elem = $(t),
|
|
|
|
i = elem.attr('x');
|
|
|
|
if (typeof mcopy.state.sequence.light[i] === 'undefined') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (mcopy.state.sequence.light[i] === '0,0,0') {
|
|
|
|
gui.grid.setLight(i, light.color);
|
|
|
|
} else {
|
|
|
|
gui.grid.setLight(i, [0, 0, 0]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.grid.changeAll = function (rgb) {
|
|
|
|
'use strict';
|
|
|
|
var i;
|
|
|
|
for (i = 0; i < mcopy.state.sequence.arr.length; i++) {
|
|
|
|
if (mcopy.state.sequence.arr[i] === 'CF'
|
|
|
|
|| mcopy.state.sequence.arr[i] === 'CB') {
|
|
|
|
gui.grid.setLight(i, rgb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gui.grid.swatches = function (x) {
|
|
|
|
'use strict';
|
|
|
|
var current = mcopy.state.sequence.light[x];
|
|
|
|
gui.grid.swatchesElem = w2popup.open({
|
|
|
|
title : 'Select Color',
|
|
|
|
body : $('#light-swatches').html(),
|
|
|
|
buttons : '<button id="sequencer-ok" class="btn btn-default">Ok</button> <button id="sequencer-changeall" class="btn btn-warning">Change All</button> <button id="sequencer-cancel" class="btn btn-default">Cancel</button>',
|
|
|
|
onClose : function () {
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('.w2ui-msg-body .swatch').removeClass('default set');
|
|
|
|
$('.w2ui-msg-body .swatch[color="' + current + '"').eq(0).addClass('default set');
|
|
|
|
|
|
|
|
$('#sequencer-cancel').on('click', function () {
|
|
|
|
gui.grid.swatchesElem.close();
|
|
|
|
});
|
|
|
|
$('#sequencer-changeall').on('click', function () {
|
|
|
|
var doit = confirm('You sure you want to change all light settings?'),
|
|
|
|
elem = $('.w2ui-msg-body .default'),
|
|
|
|
rgb;
|
|
|
|
if (doit && elem.length > 0) {
|
|
|
|
rgb = elem.attr('color').split(',');
|
|
|
|
gui.grid.changeAll(rgb);
|
|
|
|
gui.grid.swatchesElem.close();
|
|
|
|
} else if (doit && elem.length === 0) {
|
|
|
|
gui.warn('Select Color', 'Please select a color to proceed.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#sequencer-ok').on('click', function () {
|
|
|
|
var elem = $('.w2ui-msg-body .default'),
|
|
|
|
rgb;
|
|
|
|
if (elem.length > 0) {
|
|
|
|
rgb = elem.attr('color').split(',');
|
|
|
|
gui.grid.setLight(x, rgb);
|
|
|
|
light.color = rgb;
|
|
|
|
gui.grid.swatchesElem.close();
|
|
|
|
} else {
|
|
|
|
gui.warn('Select Color', 'Please select a color to proceed.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
gui.grid.scrollTo = function (i) {
|
|
|
|
'use strict';
|
|
|
|
var w = 35 + 3; //width of pad + margin
|
|
|
|
$('#seq_scroll').scrollLeft(i * w);
|
|
|
|
};
|
|
|
|
gui.grid.events = function () {
|
|
|
|
'use strict';
|
|
|
|
$(document.body).on('click', '#sequencer input[type=checkbox]', function () {
|
|
|
|
gui.grid.click(this);
|
|
|
|
});
|
|
|
|
//$(document.body).on('click', '.L', function () {
|
|
|
|
//alert('click');
|
|
|
|
//console.log('please dont happen');
|
|
|
|
//});
|
|
|
|
$(document.body).on('dblclick', '.L', function () {
|
|
|
|
gui.grid.blackout(this);
|
|
|
|
});
|
|
|
|
$(document.body).on('contextmenu', '.L', function (e) {
|
|
|
|
var x = e.target.attributes.x.value;
|
|
|
|
setTimeout(function () {
|
|
|
|
gui.grid.swatches(x);
|
|
|
|
}, 300);
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$('#seq_scroll').on('scroll', function () {
|
|
|
|
var i = Math.ceil($('#seq_scroll').scrollLeft() / (35 + 3));
|
|
|
|
$('#seq_scroll_state').val(gui.fmtZero(i, 6));
|
|
|
|
});
|
|
|
|
$('#seq_scroll_state').on('change', function () {
|
|
|
|
var i = parseInt($(this).val());
|
|
|
|
$(this).val(gui.fmtZero(i, 6));
|
|
|
|
gui.grid.scrollTo(i);
|
|
|
|
});
|
|
|
|
$(document.body).on('click', '.w2ui-msg-body .swatch', function () {
|
|
|
|
var color = $(this).attr('color'),
|
|
|
|
title = $(this).attr('title');
|
|
|
|
if (typeof color !== 'undefined') {
|
|
|
|
color = color.split(',');
|
|
|
|
$('.w2ui-msg-body .swatch').removeClass('default set');
|
|
|
|
$('#light-swatches .swatch').removeClass('default set');
|
|
|
|
$(this).addClass('default set');
|
|
|
|
$('#light-swatches .swatch[title="' + title + '"]').eq(0).addClass('default set');
|
|
|
|
light.color = color;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
//NAV GUI
|
2016-04-18 03:02:22 +00:00
|
|
|
nav.active = 'sequencer';
|
2016-04-13 07:26:35 +00:00
|
|
|
nav.init = function () {
|
2016-04-13 00:53:28 +00:00
|
|
|
'use strict';
|
|
|
|
$('#toolbar').w2toolbar({
|
|
|
|
name: 'toolbar',
|
|
|
|
items: [
|
2016-04-15 22:16:14 +00:00
|
|
|
{ type: 'radio', id: 'sequencer', group: '1', caption: 'Sequencer', icon: 'fa fa-th', checked: true },
|
2016-04-13 21:36:12 +00:00
|
|
|
{ type: 'radio', id: 'script', group: '1', caption: 'Script', icon: 'fa fa-code' },
|
|
|
|
{ type: 'radio', id: 'controls', group: '1', caption: 'Controls', icon: 'fa fa-tasks' },
|
2016-04-13 07:26:35 +00:00
|
|
|
{ type: 'radio', id: 'light', group: '1', caption: 'Light', icon: 'mcopy-light' },
|
2016-04-13 00:53:28 +00:00
|
|
|
{ type: 'spacer' },
|
2016-04-13 21:36:12 +00:00
|
|
|
{ type: 'button', id: 'settings', group: '1', caption: 'Settings', icon: 'fa fa-cogs' }
|
2016-04-13 04:06:19 +00:00
|
|
|
],
|
|
|
|
onClick : function (event) {
|
2016-04-13 07:26:35 +00:00
|
|
|
nav.change(event.target);
|
2016-04-13 04:06:19 +00:00
|
|
|
}
|
2016-04-13 00:53:28 +00:00
|
|
|
});
|
2016-04-13 07:26:35 +00:00
|
|
|
};
|
|
|
|
nav.change = function (id) {
|
|
|
|
'use strict';
|
2016-04-18 03:02:22 +00:00
|
|
|
nav.active = id;
|
2016-04-13 07:26:35 +00:00
|
|
|
$('.screen').hide();
|
|
|
|
$('#' + id).show();
|
2016-04-18 00:34:18 +00:00
|
|
|
if (id === 'controls') {
|
2016-04-13 20:59:00 +00:00
|
|
|
w2ui['log'].resize();
|
2016-04-18 03:02:22 +00:00
|
|
|
w2ui['log'].scrollIntoView(log.count - 1);
|
|
|
|
w2ui['log'].selectNone();
|
|
|
|
w2ui['log'].select(log.count - 1);
|
2016-04-18 01:24:11 +00:00
|
|
|
} else if (id === 'light') {
|
|
|
|
if (w2ui['colors'].active === 'rgb') {
|
|
|
|
light.rgb.set(light.color);
|
|
|
|
}
|
2016-04-13 07:26:35 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-04-19 03:44:51 +00:00
|
|
|
var devices = {};
|
|
|
|
devices.init = function () {
|
|
|
|
'use strict';
|
|
|
|
devices.listen();
|
|
|
|
gui.overlay(true);
|
|
|
|
gui.spinner(true);
|
|
|
|
};
|
|
|
|
devices.listen = function () {
|
|
|
|
'use strict';
|
|
|
|
ipcRenderer.on('ready', function (event, arg) {
|
|
|
|
//console.log(arg.camera);
|
|
|
|
//console.log(arg.projector);
|
|
|
|
devices.ready();
|
|
|
|
return event.returnValue = true;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
devices.ready = function () {
|
|
|
|
'use strict';
|
|
|
|
gui.spinner(false);
|
|
|
|
gui.overlay(false);
|
|
|
|
};
|
|
|
|
|
2016-04-13 07:26:35 +00:00
|
|
|
var init = function () {
|
|
|
|
'use strict';
|
|
|
|
nav.init();
|
2016-04-18 02:22:18 +00:00
|
|
|
gui.grid.init();
|
|
|
|
log.init();
|
2016-04-19 03:44:51 +00:00
|
|
|
devices.init();
|
2016-04-13 04:06:19 +00:00
|
|
|
light.init();
|
2016-04-18 02:22:18 +00:00
|
|
|
proj.init();
|
2016-04-18 03:02:22 +00:00
|
|
|
cam.init();
|
2016-04-13 01:04:13 +00:00
|
|
|
};
|