var estimatedSchedulePosixTime = -1; var schedulePosixTime; var currentRemoteTimeOffset; var previousSongs = new Array(); var currentSong = new Array(); var nextSongs = new Array(); var currentElem; var updateInterval = 5000; function convertToHHMMSS(timeInMS){ var time = parseInt(timeInMS); var hours = parseInt(time / 3600000); time -= 3600000*hours; var minutes = parseInt(time / 60000); time -= 60000*minutes; var seconds = parseInt(time / 1000); hours = "" + hours; minutes = "" + minutes; seconds = "" + seconds; if (hours.length == 1) hours = "0" + hours; if (minutes.length == 1) minutes = "0" + minutes; if (seconds.length == 1) seconds = "0" + seconds; return "" + hours + ":" + minutes + ":" + seconds; } function convertDateToPosixTime(s){ var year = s.substring(0, 4); var month = s.substring(5, 7); var day = s.substring(8, 10); var hour = s.substring(11, 13); var minute = s.substring(14, 16); var sec = s.substring(17, 19); var msec = 0; if (s.length >= 20){ msec = s.substring(20); } return Date.UTC(year, month, day, hour, minute, sec, msec); } function getTrackInfo(song){ var str = ""; if (song.track_title != null) str += song.track_title; if (song.artist_name != null) str += " - " + song.artist_name; if (song.album_title != null) str += " - " + song.album_title; return str; } function secondsTimer(){ var date = new Date(); estimatedSchedulePosixTime = date.getTime() - currentRemoteTimeOffset; updateProgressBarValue(); } /* Called every 1 second. */ function updateProgressBarValue(){ if (estimatedSchedulePosixTime != -1){ if (currentSong.length > 0){ var percentDone = (estimatedSchedulePosixTime - currentSong[0].songStartPosixTime)/currentSong[0].songLengthMs*100; if (percentDone <= 100){ $('#progressbar').progressBar(percentDone); } else { if (nextSongs.length > 0){ currentSong[0] = nextSongs.shift(); } else { currentSong = new Array(); } $('#progressbar').progressBar(0); } } else { $('#progressbar').progressBar(0); //calculate how much time left to next song if there is any if (nextSongs.length > 0){ if (nextSongs[0].songStartPosixTime - estimatedSchedulePosixTime < updateInterval){ setTimeout(temp, nextSongs[0].songStartPosixTime - estimatedSchedulePosixTime); } } } updatePlaylist(); } setTimeout(secondsTimer, 200); } function temp(){ currentSong[0] = nextSongs[0]; updatePlaylist(); } function updatePlaylist(){ /* Column 0 update */ $('#listen'); /* Column 1 update */ $('#show').empty(); $('#playlist').empty(); $('#host').empty(); for (var i=0; i