///////////////////////////////////////////////// // connect to websocket var socket = io.connect(); //socket.on("metroPulse", metronomeTick); ///////////////////////////////////////////////// socket.on("metroPulse", pulseInClient); function pulseInClient(pulse,groupID,metrobeat){ var groupPage=document.getElementById('group').value if (groupID == groupPage) { metronomeTick(1000, groupID, metrobeat); } } ///////////////////////////////////////////////// function metroCss(beat, beatcolor,text){ var color = beatcolor; $(".metrocase > div").each(function(){$(this).stop()}); $(".metrocase > div").each(function(){$(this).css('background-color', beatcolor)}); $(".metrocase > div").each(function(){$(this).text(" ")}); // $(".metrocase > div").each(function(){$(this).animate({color: blue}, // 50, // function() { $(this).animate({color:red}); } // ); // }) } function metronomeTick(pulse, voice,metrobeat) { var color = "gray" metroCss(0, "red", "4") setTimeout(function(){metroCss(0, "black", "4")},150); }; ///////////////////////////////////////////////// // update the stopwatch value on the client page in line with server socket.on("chronFromServer", function(chron) { $("div#client_chronometer").text(chron); }); // server time //var groupPage=document.getElementById('group').value //if (groupID == groupPage) { socket.on("dateTime", function(datetime) { $("div#datetime").text("" +datetime); }); ///////////////////////////////////////////////// // countdown to change socket.on("countinFromServer", countinClient); function countinClient(groupID, currentseconds,mm,text,colour,background,unit){ var groupPage=document.getElementById('group').value if (groupID == groupPage) { $("#counttitle").css('color','white'); $("#counttitle").text(text); $("#count").text(currentseconds); document.getElementById("count").style.color=colour; }} ///////////////////////////////////////////////// // countdown to change socket.on("counterText", cText); function cText(groupID, currentseconds,text){ $("#totalcountdown"+groupID).text(text); var groupPage=document.getElementById('group').value if (groupID == groupPage) { //console.log(text) $("#totalcountdown").text(text); }} /////////////////////////////////////// //function pageFlip(unit) { $('#sections').trigger('goto', [parseFloat(unit)]); } ///////////////////////////////////////////////// // call the fancy jquery functions function slideTo (target) { $('#sections').trigger('goto', [target]); } function pad2(number) { return (number < 10 ? '0' : '') + number } ///////////////////////////////////////////////// //var testSound = new buzz.sound( 'audio/testfile', { formats: [ 'ogg', 'mp3' ] } ); socket.on("pageFlipfromserver", pageTurn); function pageTurn (group,unit,time,mm,seqcounter,nextunit) { var groupPage=document.getElementById('group').value; if (group == groupPage) { console.log(unit + " ---> " + nextunit) var g= pad2(group); var p= pad2(unit); var units=8; var next=(((unit+1)%units)+units)%units //$("#live").load("music.html #"+unit +" *"); $("#live").load("music.html #"+unit); //$("#live").html("") $("#preview").html("

n e x t :

") } else { //console.log("not for this group... ignoring... for group:" + group ); } } //////////////////////////////////////////////// /* commented out for now as interferes with chat need to introduce metakey...manyana... not so usefull anyway really... keyboard controls +++++++++++++++++++++++++ SPACE to toggle visibilty of preview m to toggle visibilty of metronome s to toggle visibilty of stopwatch h to hide all above */ function toggle_visibility(id) { var e = document.getElementById(id); if(e.style.display == 'block') e.style.display = 'none'; else e.style.display = 'block'; } $(document).keypress(function(e){ // "space bar" for next unit preview var checkWebkitandIE=(e.which==32 ? 1 : 0); var checkMoz=(e.which==32 ? 1 : 0); // "m" button for metronome var mcheckWebkitandIE=(e.which==109 ? 1 : 0); var mcheckMoz=(e.which==109 ? 1 : 0); // "s" button for stopwatch/chronometer var ccheckWebkitandIE=(e.which==115 ? 1 : 0); var ccheckMoz=(e.which==115 ? 1 : 0); // "h" button for hideall var hcheckWebkitandIE=(e.which==104 ? 1 : 0); var hcheckMoz=(e.which==104 ? 1 : 0); // console.log(e.which); // if (checkWebkitandIE || checkMoz) { toggle_visibility('preview') } // if (mcheckWebkitandIE || mcheckMoz) { toggle_visibility('comms') } // if (ccheckWebkitandIE || ccheckMoz) { toggle_visibility('client_chronometer') } if (hcheckWebkitandIE || hcheckMoz) { toggle_visibility('info') //toggle_visibility('comms') //toggle_visibility('preview') } }); //*/ //////////////////////////////////////////////// // this needs to have a variable to define the websocket // otherwise we will pings from all sockets connected // no! the server broadcasts the ping and the clients emit the pong! // ah but then the time reported back from the server needs to be targeted // to specific client.. ////////////////////////////////////////////// // Latency "Pong" socket.on("timeFromServer", function(n) { socket.emit("clientTimeResponse",n); }); socket.on("latencyFromServer", function(latency) { $("#client_latency").text("Latency: "+latency+"ms.") }); function getLatencies(x) { socket.emit("getLatencies", x); } ////////////////////////////////////////////// socket.on('connect', function () { $('#chat').addClass('connected'); }); socket.on('announcement', function (msg) { $('#lines').append($('

').append($('').text(msg))); }); socket.on('nicknames', function (nicknames) { $('#nicknames').empty().append($('Online: ')); for (var i in nicknames) { $('#nicknames').append($('').text(nicknames[i])); } }); socket.on('user message', message); socket.on('reconnect', function () { $('#lines').remove(); message('System', 'Reconnected to the server'); }); socket.on('reconnecting', function () { message('System', 'Attempting to re-connect to the server'); }); socket.on('error', function (e) { message('System', e ? e : 'A unknown error occurred'); }); function message (from, msg) { $('#lines').prepend($('

').prepend($('').text(from), msg)); } // dom manipulation $(function () { $('#set-nickname').submit(function (ev) { socket.emit('nickname', $('#nick').val(), function (set) { if (!set) { clear(); return $('#chat').addClass('nickname-set'); } $('#nickname-err').css('visibility', 'visible'); }); return false; }); $('#send-message').submit(function () { message('me', $('#message').val()); socket.emit('user message', $('#message').val()); clear(); $('#lines').get(0).scrollTop = 10000000; return false; }); function clear () { $('#message').val('').focus(); }; });