1
0
Fork 0
eldrama
Ambrose Chua 2014-08-13 21:22:52 +08:00
parent c9bf8d4af0
commit 984ac6e4fa
9 changed files with 622 additions and 0 deletions

19
index.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>drama sfx</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<form>
Master gain: <input id="gainctrl" type="range" value="1" min="0" max="5" step="0.001" /> <span id="gainval">1</span> <input id="reset" type="button" value="set as 1" />
</form>
<br />
<div id="keys">
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="main.js"></script>
</body>
</html>

4
jquery-2.1.0.min.js vendored Normal file

File diff suppressed because one or more lines are too long

21
main.css Normal file
View File

@ -0,0 +1,21 @@
body {
font-family: "Exo", "Comic Sans MS";
}
table td {
padding: 4px;
}
table td.active {
background-color: #000;
color: #fff;
}
#gainctrl {
width: 300px;
}
#keys {
width: 100%;
-webkit-column-count: 2;
column-count: 2;
}

412
main.js Normal file
View File

@ -0,0 +1,412 @@
var socket = io.connect();
var KEYCODES = {
STRG: 17,
CTRL: 17,
CTRLRIGHT: 18,
CTRLR: 18,
SHIFT: 16,
RETURN: 13,
ENTER: 13,
BACKSPACE: 8,
BCKSP:8,
ALT: 18,
ALTR: 17,
ALTRIGHT: 17,
SPACE: 32,
WIN: 91,
MAC: 91,
FN: null,
UP: 38,
DOWN: 40,
LEFT: 37,
RIGHT: 39,
ESC: 27,
DEL: 46,
F1: 112,
F2: 113,
F3: 114,
F4: 115,
F5: 116,
F6: 117,
F7: 118,
F8: 119,
F9: 120,
F10: 121,
F11: 122,
F12: 123,
'backspace' : '8',
'tab' : '9',
'enter' : '13',
'shift' : '16',
'ctrl' : '17',
'alt' : '18',
'pause_break' : '19',
'caps_lock' : '20',
'escape' : '27',
'page_up' : '33',
'page down' : '34',
'end' : '35',
'home' : '36',
'left_arrow' : '37',
'up_arrow' : '38',
'right_arrow' : '39',
'down_arrow' : '40',
'insert' : '45',
'delete' : '46',
'0' : '48',
'1' : '49',
'2' : '50',
'3' : '51',
'4' : '52',
'5' : '53',
'6' : '54',
'7' : '55',
'8' : '56',
'9' : '57',
'a' : '65',
'b' : '66',
'c' : '67',
'd' : '68',
'e' : '69',
'f' : '70',
'g' : '71',
'h' : '72',
'i' : '73',
'j' : '74',
'k' : '75',
'l' : '76',
'm' : '77',
'n' : '78',
'o' : '79',
'p' : '80',
'q' : '81',
'r' : '82',
's' : '83',
't' : '84',
'u' : '85',
'v' : '86',
'w' : '87',
'x' : '88',
'y' : '89',
'z' : '90',
'left_window key' : '91',
'right_window key' : '92',
'select_key' : '93',
'numpad 0' : '96',
'numpad 1' : '97',
'numpad 2' : '98',
'numpad 3' : '99',
'numpad 4' : '100',
'numpad 5' : '101',
'numpad 6' : '102',
'numpad 7' : '103',
'numpad 8' : '104',
'numpad 9' : '105',
'multiply' : '106',
'add' : '107',
'subtract' : '109',
'decimal point' : '110',
'divide' : '111',
'f1' : '112',
'f2' : '113',
'f3' : '114',
'f4' : '115',
'f5' : '116',
'f6' : '117',
'f7' : '118',
'f8' : '119',
'f9' : '120',
'f10' : '121',
'f11' : '122',
'f12' : '123',
'num_lock' : '144',
'scroll_lock' : '145',
'semi_colon' : '186',
'equal_sign' : '187',
'comma' : '188',
'dash' : '189',
'period' : '190',
'forward_slash' : '191',
'grave_accent' : '192',
'open_bracket' : '219',
'backslash' : '220',
'closebracket' : '221',
'single_quote' : '222'
}
var sounds = {};
// Fix up prefixing
window.AudioContext = window.AudioContext || window.webkitAudioContext;
var context = new AudioContext();
var mastergain = context.createGain();
mastergain.gain.value = 1;
binded = [];
function bindkey(strkey, verbal, action, keyup) {
var l = false;
binded.forEach(function (existing) {
if (existing.action == action) {
l = true;
existing = {
keystr: strkey,
keyid: KEYCODES[strkey],//.toLowerCase()],
action: action,
verbal: verbal,
keyup: keyup
};
return false;
}
})
if (!l) {
binded.push({
keystr: strkey,
keyid: KEYCODES[strkey],//.toLowerCase()],
action: action,
verbal: verbal,
keyup: keyup
});
}
}
window.addEventListener("keydown", function (e) {
console.log(e.which);
binded.forEach(function (keybind) {
if (e.which == keybind.keyid) {
if (keybind.preventRepeat != true) {
keybind.action();
e.preventDefault();
document.querySelector("td[data-key='" + keybind.keystr + "']").classList.add("active");
if (!keybind.keyup) {
setTimeout(function () {
[].forEach.call(document.querySelectorAll("td[data-key]"), function (ele) {
ele.classList.remove("active");
});
}, 300);
}
keybind.preventRepeat = true;
return false;
}
}
});
}, false);
window.addEventListener("keyup", function (e) {
binded.forEach(function (keybind) {
if (e.which == keybind.keyid) {
keybind.preventRepeat = false;
if (keybind.keyup) {
keybind.keyup();
e.preventDefault();
[].forEach.call(document.querySelectorAll("td[data-key]"), function (ele) {
ele.classList.remove("active");
});
return false;
}
}
});
}, false);
var shiftrate = 0.1;
var movegaintoint = null;
function movegainto(val, changeslider) {
val = Math.round(val * 1000) / 1000;
console.log(val);
clearInterval(movegaintoint);
movegaintoint = null;
movegaintoint = setInterval(function () {
mastergain.gain.value += (val - mastergain.gain.value) * shiftrate;
document.querySelector("#gainval").innerHTML = mastergain.gain.value;
if (changeslider == true) {
document.querySelector("#gainctrl").value = mastergain.gain.value;
}
if (Math.round(mastergain.gain.value * 1000) / 1000 == val) {
clearInterval(movegaintoint);
mastergain.gain.value = val;
movegaintoint = null;
}
}, 100);
}
document.querySelector("#gainctrl").addEventListener("change", function (e) {
movegainto(e.target.value, true);
}, false);
document.querySelector("#reset").addEventListener("click", function (e) {
movegainto(1, true);
}, true);
function loadsound(idname, url, gain) {
var request = new XMLHttpRequest();
request.open('GET', url, true);
request.responseType = 'arraybuffer';
sounds[idname] = {
url: url,
buffer: null,
id: idname,
gain: gain,
play: function () {
playsound(this.buffer, this.gain);
},
bindkey: function (key) {
bindkey(key, idname);
}
};
// Decode asynchronously
request.onload = function () {
context.decodeAudioData(request.response, function(buffer) {
sounds[idname].buffer = buffer;
}, function (e) {
console.error(e);
});
}
request.send();
}
var nowplaying = [];
function playsound(buffer, gain) {
var volume = context.createGain();
volume.gain.value = gain;
var source = context.createBufferSource();
source.buffer = buffer;
source.connect(volume);
volume.connect(mastergain);
mastergain.connect(context.destination);
source.start(0);
setTimeout(function () {
nowplaying.push(source);
}, 150);
source.onended = function () {
nowplaying.splice(tostop.indexOf(source), 1);
}
}
function stopall() {
nowplaying.forEach(function (src) {
src.stop();
});
nowplaying = [];
}
function updatekeys() {
var ht = "<table><tr><th>key</th><th>verbal</th><th>action</th><!-- <th>url</th> --></tr>";
binded.forEach(function (keybind) {
// ht += "<tr><td>" + keybind.keystr + "</td><td>" + keybind.verbal + "</td><td>" + keybind.action + "</tr>"; // <!-- <td>" + sounds[keybind.sound].url + "</td> --></tr>";
ht += "<tr><td data-key='" + keybind.keystr + "'>" + keybind.keystr + "</td><td>" + keybind.verbal + "</td><td>" + "hmmm..." + "</tr>"; // <!-- <td>" + sounds[keybind.sound].url + "</td> --></tr>";
});
ht += "</table>";
document.querySelector("#keys").innerHTML = ht;
}
var toload = [
{
name: "b5a",
verbal: "Darkness",
file: "b5a.wav",
key: "1",
gain: 1
},
];
toload.forEach(function (obj) {
if (Object.prototype.toString.call(obj.file) === '[object Array]') {
obj.file.forEach(function (str, i) {
loadsound(obj.name + i, str, obj.gain);
});
bindkey(obj.key, obj.verbal, function () {
var i = Math.floor(Math.random() * obj.file.length);
sounds[obj.name + i].play();
});
}
else {
loadsound(obj.name, obj.file, obj.gain);
bindkey(obj.key, obj.verbal, function () {
sounds[obj.name].play();
});
}
});
var beep;
bindkey("s", "Beep", function () {
beep = setInterval(function () {
playiso(2000, 50, 0, 0.5, "sine");
}, 2000);
}, function () {
clearInterval(beep);
});
var sbinds = [
{
name: "slidea",
verbal: "A",
key: "4"
},
{
name: "slideb",
verbal: "B",
key: "5"
},
{
name: "blank",
verbal: "blankscreen",
key: "0"
}
];
sbinds.forEach(function (obj) {
bindkey(obj.key, obj.verbal, function () {
socket.emit("data", {
name: obj.name
})
});
});
bindkey("BACKSPACE", "Stop All", function () {
stopall();
});
updatekeys();
function playiso(freq, time, detune, gain, type) {
var osc = context.createOscillator();
var volume = context.createGain();
volume.gain.value = gain;
osc.type = type;
osc.frequency.value = freq;
osc.detune.value = detune;
osc.connect(volume);
volume.connect(mastergain);
mastergain.connect(context.destination);
osc.start(0);
if (time == "callback") {
return function () {
osc.stop(context.currentTime);
}
}
else if (time > 0) {
osc.stop(context.currentTime + time / 1000);
}
}
// var win = window.open("/projection", "projection", "width=640,height=480,left=720,top=0");
// window.addEventListener("unload", function () {
// win.close();
// })

14
package.json Normal file
View File

@ -0,0 +1,14 @@
{
"name": "sfxboard",
"version": "0.0.1",
"description": "just another sfxboard",
"author": {
"name": "Ambrose Chua",
"email": "amb.ccm@gmail.com"
},
"dependencies": {
"socket.io": ""
},
"private": true,
"main": "server.js"
}

31
projection.css Normal file
View File

@ -0,0 +1,31 @@
/* Reset.css */ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
*, *:before, *:after {
line-height: 1em;
box-sizing: border-box;
}
*:focus {
outline: none;
}
body {
background-color: #000;
}
.slide {
position: absolute;
top: 0;
left: 50%;
width: 133.3333vh;
margin-left: -66.6666vh;
height: 100vh;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
align-content: center;
background-size: cover;
background-repeat: no-repeat;
background-position: bottom;
}

28
projection.js Normal file
View File

@ -0,0 +1,28 @@
var socket = io.connect();
var trg = {
"slidea": a,
"slideb": b,
"blank": blank
};
$(".slide").fadeOut(0);
socket.on("data", function (data) {
console.log(data.name);
trg[data.name]();
});
function blank() {
$(".slide").fadeOut(0);
// Blanks the slide
}
function b() {
// Do something to set up the UI.
}
function a() {
// Do something to set up the UI.
}

19
projection/index.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>drama projection</title>
<link rel="stylesheet" href="projection.css" />
</head>
<body>
<div id="mur" class="slide">
<h1>4 Rounds</h1>
</div>
<div id="beach" class="slide" style="background-image: url(beach.jpg);">
<br />
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="../jquery-2.1.0.min.js"></script>
<script src="projection.js"></script>
</body>
</html>

74
server.js Normal file
View File

@ -0,0 +1,74 @@
var http = require("http");
var url = require("url");
var path = require("path");
var fs = require("fs");
var app = http.createServer(handler);
var io = require("socket.io").listen(app, { log: false });
app.listen(process.env.PORT || 4224);
console.log("Listening on port " + (process.env.PORT || 4224));
var mimeTypes = {
"html": "text/html",
"jpeg": "image/jpeg",
"jpg": "image/jpeg",
"png": "image/png",
"js": "text/javascript",
"css": "text/css"
};
function handler(req, res) {
// From http://stackoverflow.com/a/12164872/1716172
var uri = url.parse(req.url).pathname;
var filename = path.join(__dirname, unescape(uri));
console.log("someone requested " + filename);
var stats;
try {
stats = fs.lstatSync(filename); // throws if path doesn't exist
}
catch (e) {
res.writeHead(404, {'Content-Type': 'text/plain'});
res.write('404 Not Found\n');
res.end();
return;
}
if (stats.isFile()) {
// path exists, is a file
var mimeType = mimeTypes[path.extname(filename).split(".")[1]];
res.writeHead(200, {'Content-Type': mimeType} );
var fileStream = fs.createReadStream(filename);
fileStream.pipe(res);
}
else if (stats.isDirectory()) {
// path exists, is a directory
res.writeHead(200, {'Content-Type': 'text/plain'});
try {
stats = fs.lstatSync(path.join(filename, "index.html")); // throws if path doesn't exist
var mimeType = mimeTypes[path.extname(path.join(filename, "index.html")).split(".")[1]];
res.writeHead(200, {'Content-Type': mimeType} );
var fileStream = fs.createReadStream(path.join(filename, "index.html"));
fileStream.pipe(res);
}
catch (e) {
res.write('Index of '+uri+'\n');
res.write('TODO, show index?\n');
res.end();
}
}
else {
// Symbolic link, other?
// TODO: follow symlinks? security?
res.writeHead(500, {'Content-Type': 'text/plain'});
res.write('500 Internal server error\n');
res.end();
}
}
io.sockets.on('connection', function (socket) {
console.log("ip: " + socket.handshake.address.address + " connected");
socket.on("data", function (data) {
console.log(data);
socket.broadcast.emit("data", data);
})
});