mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 13:46:44 -04:00
508 lines
21 KiB
JavaScript
508 lines
21 KiB
JavaScript
// Copyright 2014 Team 254. All Rights Reserved.
|
|
// Author: pat@patfairbank.com (Patrick Fairbank)
|
|
// Author: nick@team254.com (Nick Eyre)
|
|
//
|
|
// Client-side methods for the audience display.
|
|
|
|
var websocket;
|
|
var transitionMap;
|
|
var currentScreen = "blank";
|
|
var redSide;
|
|
var blueSide;
|
|
var allianceSelectionTemplate = Handlebars.compile($("#allianceSelectionTemplate").html());
|
|
var sponsorImageTemplate = Handlebars.compile($("#sponsorImageTemplate").html());
|
|
var sponsorTextTemplate = Handlebars.compile($("#sponsorTextTemplate").html());
|
|
|
|
// Handles a websocket message to change which screen is displayed.
|
|
var handleAudienceDisplayMode = function(targetScreen) {
|
|
if (targetScreen === currentScreen) {
|
|
return;
|
|
}
|
|
|
|
if (targetScreen === "sponsor") {
|
|
initializeSponsorDisplay();
|
|
}
|
|
|
|
transitions = transitionMap[currentScreen][targetScreen];
|
|
if (transitions == null) {
|
|
// There is no direct transition defined; need to go to the blank screen first.
|
|
transitions = function() {
|
|
transitionMap[currentScreen]["blank"](transitionMap["blank"][targetScreen]);
|
|
};
|
|
}
|
|
transitions();
|
|
|
|
currentScreen = targetScreen;
|
|
};
|
|
|
|
// Handles a websocket message to update the teams for the current match.
|
|
var handleMatchLoad = function(data) {
|
|
$("#" + redSide + "Team1").text(data.Match.Red1);
|
|
$("#" + redSide + "Team2").text(data.Match.Red2);
|
|
$("#" + redSide + "Team3").text(data.Match.Red3);
|
|
$("#" + redSide + "Team1Avatar").attr("src", getAvatarUrl(data.Match.Red1));
|
|
$("#" + redSide + "Team2Avatar").attr("src", getAvatarUrl(data.Match.Red2));
|
|
$("#" + redSide + "Team3Avatar").attr("src", getAvatarUrl(data.Match.Red3));
|
|
$("#" + blueSide + "Team1").text(data.Match.Blue1);
|
|
$("#" + blueSide + "Team2").text(data.Match.Blue2);
|
|
$("#" + blueSide + "Team3").text(data.Match.Blue3);
|
|
$("#" + blueSide + "Team1Avatar").attr("src", getAvatarUrl(data.Match.Blue1));
|
|
$("#" + blueSide + "Team2Avatar").attr("src", getAvatarUrl(data.Match.Blue2));
|
|
$("#" + blueSide + "Team3Avatar").attr("src", getAvatarUrl(data.Match.Blue3));
|
|
$("#matchName").text(data.MatchType + " " + data.Match.DisplayName);
|
|
};
|
|
|
|
// Handles a websocket message to update the match time countdown.
|
|
var handleMatchTime = function(data) {
|
|
translateMatchTime(data, function(matchState, matchStateText, countdownSec) {
|
|
var countdownString = String(countdownSec % 60);
|
|
if (countdownString.length === 1) {
|
|
countdownString = "0" + countdownString;
|
|
}
|
|
countdownString = Math.floor(countdownSec / 60) + ":" + countdownString;
|
|
$("#matchTime").text(countdownString);
|
|
});
|
|
};
|
|
|
|
// Handles a websocket message to update the match score.
|
|
var handleRealtimeScore = function(data) {
|
|
var redScoreBreakdown = data.Red.RealtimeScore.CurrentScore;
|
|
$("#" + redSide + "ScoreNumber").text(data.Red.Score);
|
|
$("#" + redSide + "ForceCubesIcon").attr("data-state", data.Red.ForceState);
|
|
$("#" + redSide + "ForceCubes").text(redScoreBreakdown.ForceCubes).attr("data-state", data.Red.ForceState);
|
|
$("#" + redSide + "LevitateCubesIcon").attr("data-state", data.Red.LevitateState);
|
|
$("#" + redSide + "LevitateCubes").text(redScoreBreakdown.LevitateCubes).attr("data-state", data.Red.LevitateState);
|
|
$("#" + redSide + "BoostCubesIcon").attr("data-state", data.Red.BoostState);
|
|
$("#" + redSide + "BoostCubes").text(redScoreBreakdown.BoostCubes).attr("data-state", data.Red.BoostState);
|
|
|
|
var blueScoreBreakdown = data.Blue.RealtimeScore.CurrentScore;
|
|
$("#" + blueSide + "ScoreNumber").text(data.Blue.Score);
|
|
$("#" + blueSide + "ForceCubesIcon").attr("data-state", data.Blue.ForceState);
|
|
$("#" + blueSide + "ForceCubes").text(blueScoreBreakdown.ForceCubes).attr("data-state", data.Blue.ForceState);
|
|
$("#" + blueSide + "LevitateCubesIcon").attr("data-state", data.Blue.LevitateState);
|
|
$("#" + blueSide + "LevitateCubes").text(blueScoreBreakdown.LevitateCubes).attr("data-state", data.Blue.LevitateState);
|
|
$("#" + blueSide + "BoostCubesIcon").attr("data-state", data.Blue.BoostState);
|
|
$("#" + blueSide + "BoostCubes").text(blueScoreBreakdown.BoostCubes).attr("data-state", data.Blue.BoostState);
|
|
|
|
// Switch/scale indicators.
|
|
$("#scaleIndicator").attr("data-owned-by", data.ScaleOwnedBy);
|
|
$("#" + redSide + "SwitchIndicator").attr("data-owned-by", data.Red.SwitchOwnedBy);
|
|
$("#" + blueSide + "SwitchIndicator").attr("data-owned-by", data.Blue.SwitchOwnedBy);
|
|
|
|
// Power up progress bars.
|
|
if ((data.Red.ForceState === 2 || data.Red.BoostState === 2) && $("#" + redSide + "Progress").height() === 0) {
|
|
$("#" + redSide + "Progress").height(85);
|
|
$("#" + redSide + "Progress").transition({queue: false, height: 0}, 10000, "linear");
|
|
}
|
|
if ((data.Blue.ForceState === 2 || data.Blue.BoostState === 2) && $("#" + blueSide + "Progress").height() === 0) {
|
|
$("#" + blueSide + "Progress").height(85);
|
|
$("#" + blueSide + "Progress").transition({queue: false, height: 0}, 10000, "linear");
|
|
}
|
|
};
|
|
|
|
// Handles a websocket message to populate the final score data.
|
|
var handleScorePosted = function(data) {
|
|
$("#" + redSide + "FinalScore").text(data.RedScoreSummary.Score);
|
|
$("#" + redSide + "FinalTeam1").text(data.Match.Red1);
|
|
$("#" + redSide + "FinalTeam2").text(data.Match.Red2);
|
|
$("#" + redSide + "FinalTeam3").text(data.Match.Red3);
|
|
$("#" + redSide + "FinalTeam1Avatar").attr("src", getAvatarUrl(data.Match.Red1));
|
|
$("#" + redSide + "FinalTeam2Avatar").attr("src", getAvatarUrl(data.Match.Red2));
|
|
$("#" + redSide + "FinalTeam3Avatar").attr("src", getAvatarUrl(data.Match.Red3));
|
|
$("#" + redSide + "FinalAutoRunPoints").text(data.RedScoreSummary.AutoRunPoints);
|
|
$("#" + redSide + "FinalOwnershipPoints").text(data.RedScoreSummary.OwnershipPoints);
|
|
$("#" + redSide + "FinalVaultPoints").text(data.RedScoreSummary.VaultPoints);
|
|
$("#" + redSide + "FinalParkClimbPoints").text(data.RedScoreSummary.ParkClimbPoints);
|
|
$("#" + redSide + "FinalFoulPoints").text(data.RedScoreSummary.FoulPoints);
|
|
$("#" + redSide + "FinalAutoQuest").html(data.RedScoreSummary.AutoQuest ? "✔" : "✘");
|
|
$("#" + redSide + "FinalAutoQuest").attr("data-checked", data.RedScoreSummary.AutoQuest);
|
|
$("#" + redSide + "FinalFaceTheBoss").html(data.RedScoreSummary.FaceTheBoss ? "✔" : "✘");
|
|
$("#" + redSide + "FinalFaceTheBoss").attr("data-checked", data.RedScoreSummary.FaceTheBoss);
|
|
$("#" + blueSide + "FinalScore").text(data.BlueScoreSummary.Score);
|
|
$("#" + blueSide + "FinalTeam1").text(data.Match.Blue1);
|
|
$("#" + blueSide + "FinalTeam2").text(data.Match.Blue2);
|
|
$("#" + blueSide + "FinalTeam3").text(data.Match.Blue3);
|
|
$("#" + blueSide + "FinalTeam1Avatar").attr("src", getAvatarUrl(data.Match.Blue1));
|
|
$("#" + blueSide + "FinalTeam2Avatar").attr("src", getAvatarUrl(data.Match.Blue2));
|
|
$("#" + blueSide + "FinalTeam3Avatar").attr("src", getAvatarUrl(data.Match.Blue3));
|
|
$("#" + blueSide + "FinalAutoRunPoints").text(data.BlueScoreSummary.AutoRunPoints);
|
|
$("#" + blueSide + "FinalOwnershipPoints").text(data.BlueScoreSummary.OwnershipPoints);
|
|
$("#" + blueSide + "FinalVaultPoints").text(data.BlueScoreSummary.VaultPoints);
|
|
$("#" + blueSide + "FinalParkClimbPoints").text(data.BlueScoreSummary.ParkClimbPoints);
|
|
$("#" + blueSide + "FinalFoulPoints").text(data.BlueScoreSummary.FoulPoints);
|
|
$("#" + blueSide + "FinalAutoQuest").html(data.BlueScoreSummary.AutoQuest ? "✔" : "✘");
|
|
$("#" + blueSide + "FinalAutoQuest").attr("data-checked", data.BlueScoreSummary.AutoQuest);
|
|
$("#" + blueSide + "FinalFaceTheBoss").html(data.BlueScoreSummary.FaceTheBoss ? "✔" : "✘");
|
|
$("#" + blueSide + "FinalFaceTheBoss").attr("data-checked", data.BlueScoreSummary.FaceTheBoss);
|
|
$("#finalMatchName").text(data.MatchType + " " + data.Match.DisplayName);
|
|
};
|
|
|
|
// Handles a websocket message to play a sound to signal match start/stop/etc.
|
|
var handlePlaySound = function(sound) {
|
|
$("audio").each(function(k, v) {
|
|
// Stop and reset any sounds that are still playing.
|
|
v.pause();
|
|
v.currentTime = 0;
|
|
});
|
|
$("#" + sound)[0].play();
|
|
};
|
|
|
|
// Handles a websocket message to update the alliance selection screen.
|
|
var handleAllianceSelection = function(alliances) {
|
|
if (alliances && alliances.length > 0) {
|
|
var numColumns = alliances[0].length + 1;
|
|
$.each(alliances, function(k, v) {
|
|
v.Index = k + 1;
|
|
});
|
|
$("#allianceSelection").html(allianceSelectionTemplate({alliances: alliances, numColumns: numColumns}));
|
|
}
|
|
};
|
|
|
|
// Handles a websocket message to populate and/or show/hide a lower third.
|
|
var handleLowerThird = function(data) {
|
|
if (data.BottomText === "") {
|
|
$("#lowerThirdTop").hide();
|
|
$("#lowerThirdBottom").hide();
|
|
$("#lowerThirdSingle").text(data.TopText);
|
|
$("#lowerThirdSingle").show();
|
|
} else {
|
|
$("#lowerThirdSingle").hide();
|
|
$("#lowerThirdTop").text(data.TopText);
|
|
$("#lowerThirdBottom").text(data.BottomText);
|
|
$("#lowerThirdTop").show();
|
|
$("#lowerThirdBottom").show();
|
|
}
|
|
};
|
|
|
|
var transitionBlankToIntro = function(callback) {
|
|
$(".avatars").show();
|
|
$(".avatars").css("opacity", 1);
|
|
$("#centering").transition({queue: false, bottom: "0px"}, 500, "ease", function() {
|
|
$(".teams").transition({queue: false, width: "65px"}, 100, "linear", function() {
|
|
$(".score").transition({queue: false, width: "120px"}, 500, "ease", function() {
|
|
$("#eventMatchInfo").show();
|
|
var height = -$("#eventMatchInfo").height();
|
|
$("#eventMatchInfo").transition({queue: false, bottom: height + "px"}, 500, "ease", callback);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
var transitionIntroToInMatch = function(callback) {
|
|
$(".avatars").transition({queue: false, opacity: 0}, 500, "ease", function() {
|
|
$(".avatars").hide();
|
|
});
|
|
$("#logo").transition({queue: false, top: "10px"}, 500, "ease");
|
|
$(".score").transition({queue: false, width: "275px"}, 500, "ease", function() {
|
|
$(".score-number").transition({queue: false, opacity: 1}, 750, "ease");
|
|
$(".score-fields").transition({queue: false, opacity: 1}, 750, "ease");
|
|
$(".seesaw-indicator").transition({queue: false, opacity: 1}, 750, "ease");
|
|
$("#matchTime").transition({queue: false, opacity: 1}, 750, "ease", callback);
|
|
});
|
|
};
|
|
|
|
var transitionIntroToBlank = function(callback) {
|
|
$("#eventMatchInfo").transition({queue: false, bottom: "0px"}, 500, "ease", function() {
|
|
$("#eventMatchInfo").hide();
|
|
$(".score").transition({queue: false, width: "0px"}, 500, "ease");
|
|
$(".teams").transition({queue: false, width: "40px"}, 500, "ease", function() {
|
|
$(".avatars").css("opacity", 0);
|
|
$(".avatars").hide();
|
|
$("#centering").transition({queue: false, bottom: "-340px"}, 1000, "ease", callback);
|
|
});
|
|
});
|
|
};
|
|
|
|
var transitionBlankToInMatch = function(callback) {
|
|
$("#centering").transition({queue: false, bottom: "0px"}, 500, "ease", function() {
|
|
$(".teams").transition({queue: false, width: "65px"}, 100, "linear", function() {
|
|
$("#logo").transition({queue: false, top: "10px"}, 500, "ease");
|
|
$(".score").transition({queue: false, width: "275px"}, 500, "ease", function() {
|
|
$("#eventMatchInfo").show();
|
|
$(".score-number").transition({queue: false, opacity: 1}, 750, "ease");
|
|
$(".score-fields").transition({queue: false, opacity: 1}, 750, "ease");
|
|
$(".seesaw-indicator").transition({queue: false, opacity: 1}, 750, "ease");
|
|
$("#matchTime").transition({queue: false, opacity: 1}, 750, "ease", callback);
|
|
var height = -$("#eventMatchInfo").height();
|
|
$("#eventMatchInfo").transition({queue: false, bottom: height + "px"}, 500, "ease", callback);
|
|
});
|
|
});
|
|
});
|
|
};
|
|
|
|
var transitionInMatchToIntro = function(callback) {
|
|
$(".score-number").transition({queue: false, opacity: 0}, 300, "linear");
|
|
$(".score-fields").transition({queue: false, opacity: 0}, 300, "linear");
|
|
$(".seesaw-indicator").transition({queue: false, opacity: 0}, 300, "linear");
|
|
$("#matchTime").transition({queue: false, opacity: 0}, 300, "linear", function() {
|
|
$("#logo").transition({queue: false, top: "35px"}, 500, "ease");
|
|
$(".score").transition({queue: false, width: "120px"}, 500, "ease");
|
|
$(".teams").transition({queue: false, width: "65px"}, 500, "ease", function() {
|
|
$(".avatars").show();
|
|
$(".avatars").transition({queue: false, opacity: 1}, 500, "ease", callback);
|
|
});
|
|
});
|
|
};
|
|
|
|
var transitionInMatchToBlank = function(callback) {
|
|
$("#eventMatchInfo").transition({queue: false, bottom: "0px"}, 500, "ease");
|
|
$("#matchTime").transition({queue: false, opacity: 0}, 300, "linear");
|
|
$(".score-fields").transition({queue: false, opacity: 0}, 300, "linear");
|
|
$(".seesaw-indicator").transition({queue: false, opacity: 0}, 300, "linear");
|
|
$(".score-number").transition({queue: false, opacity: 0}, 300, "linear", function() {
|
|
$("#eventMatchInfo").hide();
|
|
$("#logo").transition({queue: false, top: "35px"}, 500, "ease");
|
|
$(".score").transition({queue: false, width: "0px"}, 500, "ease");
|
|
$(".teams").transition({queue: false, width: "40px"}, 500, "ease", function() {
|
|
$("#centering").transition({queue: false, bottom: "-340px"}, 1000, "ease", callback);
|
|
});
|
|
});
|
|
};
|
|
|
|
var transitionBlankToLogo = function(callback) {
|
|
$(".blindsCenter.blank").css({rotateY: "0deg"});
|
|
$(".blindsCenter.full").css({rotateY: "-180deg"});
|
|
$(".blinds.right").transition({queue: false, right: 0}, 1000, "ease");
|
|
$(".blinds.left").transition({queue: false, left: 0}, 1000, "ease", function() {
|
|
$(".blinds.left").addClass("full");
|
|
$(".blinds.right").hide();
|
|
setTimeout(function() {
|
|
$(".blindsCenter.blank").transition({queue: false, rotateY: "180deg"}, 500, "ease");
|
|
$(".blindsCenter.full").transition({queue: false, rotateY: "0deg"}, 500, "ease", callback);
|
|
}, 200);
|
|
});
|
|
};
|
|
|
|
var transitionLogoToBlank = function(callback) {
|
|
$(".blindsCenter.blank").transition({queue: false, rotateY: "360deg"}, 500, "ease");
|
|
$(".blindsCenter.full").transition({queue: false, rotateY: "180deg"}, 500, "ease", function() {
|
|
setTimeout(function() {
|
|
$(".blinds.left").removeClass("full");
|
|
$(".blinds.right").show();
|
|
$(".blinds.right").transition({queue: false, right: "-50%"}, 1000, "ease");
|
|
$(".blinds.left").transition({queue: false, left: "-50%"}, 1000, "ease", callback);
|
|
}, 200);
|
|
});
|
|
};
|
|
|
|
var transitionLogoToScore = function(callback) {
|
|
$(".blindsCenter.full").transition({queue: false, top: "-350px"}, 625, "ease");
|
|
$("#finalScore").show();
|
|
$("#finalScore").transition({queue: false, opacity: 1}, 1000, "ease", callback);
|
|
};
|
|
|
|
var transitionBlankToScore = function(callback) {
|
|
transitionBlankToLogo(function() {
|
|
setTimeout(function() { transitionLogoToScore(callback); }, 50);
|
|
});
|
|
};
|
|
|
|
var transitionScoreToLogo = function(callback) {
|
|
$("#finalScore").transition({queue: false, opacity: 0}, 500, "ease", function(){
|
|
$("#finalScore").hide();
|
|
});
|
|
$(".blindsCenter.full").transition({queue: false, top: 0}, 625, "ease", callback);
|
|
};
|
|
|
|
var transitionScoreToBlank = function(callback) {
|
|
transitionScoreToLogo(function() {
|
|
transitionLogoToBlank(callback);
|
|
});
|
|
};
|
|
|
|
var transitionBlankToAllianceSelection = function(callback) {
|
|
$('#allianceSelectionCentering').css("right","-60em").show();
|
|
$('#allianceSelectionCentering').transition({queue: false, right: "3em"}, 500, "ease", callback);
|
|
};
|
|
|
|
var transitionAllianceSelectionToBlank = function(callback) {
|
|
$('#allianceSelectionCentering').transition({queue: false, right: "-60em"}, 500, "ease", callback);
|
|
};
|
|
|
|
var transitionBlankToLowerThird = function(callback) {
|
|
$("#lowerThird").show();
|
|
$("#lowerThird").transition({queue: false, left: "150px"}, 750, "ease", callback);
|
|
};
|
|
|
|
var transitionLowerThirdToBlank = function(callback) {
|
|
$("#lowerThird").transition({queue: false, left: "-1000px"}, 1000, "ease", function() {
|
|
$("#lowerThird").hide();
|
|
if (callback) {
|
|
callback();
|
|
}
|
|
});
|
|
};
|
|
|
|
var transitionBlankToSponsor = function(callback) {
|
|
$(".blindsCenter.blank").css({rotateY: "90deg"});
|
|
$(".blinds.right").transition({queue: false, right: 0}, 1000, "ease");
|
|
$(".blinds.left").transition({queue: false, left: 0}, 1000, "ease", function() {
|
|
$(".blinds.left").addClass("full");
|
|
$(".blinds.right").hide();
|
|
setTimeout(function() {
|
|
$("#sponsor").show();
|
|
$("#sponsor").transition({queue: false, opacity: 1}, 1000, "ease", callback);
|
|
}, 200);
|
|
});
|
|
};
|
|
|
|
var transitionSponsorToBlank = function(callback) {
|
|
$("#sponsor").transition({queue: false, opacity: 0}, 1000, "ease", function() {
|
|
setTimeout(function() {
|
|
$(".blinds.left").removeClass("full");
|
|
$(".blinds.right").show();
|
|
$(".blinds.right").transition({queue: false, right: "-50%"}, 1000, "ease");
|
|
$(".blinds.left").transition({queue: false, left: "-50%"}, 1000, "ease", callback);
|
|
$("#sponsor").hide();
|
|
}, 200);
|
|
});
|
|
};
|
|
|
|
var transitionLogoToSponsor = function(callback) {
|
|
$(".blindsCenter.full").transition({queue: false, rotateY: "90deg"}, 750, "ease", function () {
|
|
$("#sponsor").show();
|
|
$("#sponsor").transition({queue: false, opacity: 1}, 1000, "ease", callback);
|
|
});
|
|
};
|
|
|
|
var transitionSponsorToLogo = function(callback) {
|
|
$("#sponsor").transition({queue: false, opacity: 0}, 1000, "ease", function() {
|
|
$(".blindsCenter.full").transition({queue: false, rotateY: "0deg"}, 750, "ease", callback);
|
|
$("#sponsor").hide();
|
|
});
|
|
};
|
|
|
|
var transitionScoreToSponsor = function(callback) {
|
|
transitionScoreToLogo(function() {
|
|
transitionLogoToSponsor(callback);
|
|
});
|
|
};
|
|
|
|
var transitionSponsorToScore = function(callback) {
|
|
transitionSponsorToLogo(function() {
|
|
transitionLogoToScore(callback);
|
|
});
|
|
};
|
|
|
|
// Loads sponsor slide data and builds the slideshow HTML.
|
|
var initializeSponsorDisplay = function() {
|
|
$.getJSON("/api/sponsor_slides", function(slides) {
|
|
$("#sponsorContainer").empty();
|
|
|
|
// Inject the HTML for each slide into the DOM.
|
|
$.each(slides, function(index, slide) {
|
|
slide.DisplayTimeMs = slide.DisplayTimeSec * 1000;
|
|
slide.First = index === 0;
|
|
|
|
var slideHtml;
|
|
if (slide.Image) {
|
|
slideHtml = sponsorImageTemplate(slide);
|
|
} else {
|
|
slideHtml = sponsorTextTemplate(slide);
|
|
}
|
|
$("#sponsorContainer").append(slideHtml);
|
|
});
|
|
|
|
// Start Carousel
|
|
var t;
|
|
var start = $('.carousel#sponsor').find('.active').attr('data-interval');
|
|
t = setTimeout("$('.carousel#sponsor').carousel({interval: 1000});", start-1000);
|
|
|
|
$('.carousel#sponsor').on('slid.bs.carousel', function () {
|
|
clearTimeout(t);
|
|
var duration = $(this).find('.active').attr('data-interval');
|
|
|
|
$('.carousel#sponsor').carousel('pause');
|
|
t = setTimeout("$('.carousel#sponsor').carousel();", duration-1000);
|
|
});
|
|
|
|
$('.carousel-control.right').on('click', function(){
|
|
clearTimeout(t);
|
|
});
|
|
|
|
$('.carousel-control.left').on('click', function(){
|
|
clearTimeout(t);
|
|
});
|
|
|
|
});
|
|
};
|
|
|
|
var getAvatarUrl = function(teamId) {
|
|
return "/static/img/avatars/" + teamId + ".png";
|
|
};
|
|
|
|
$(function() {
|
|
// Read the configuration for this display from the URL query string.
|
|
var urlParams = new URLSearchParams(window.location.search);
|
|
document.body.style.backgroundColor = urlParams.get("background");
|
|
var reversed = urlParams.get("reversed");
|
|
if (reversed === "true") {
|
|
redSide = "right";
|
|
blueSide = "left";
|
|
} else {
|
|
redSide = "left";
|
|
blueSide = "right";
|
|
}
|
|
$(".reversible-left").attr("data-reversed", reversed);
|
|
$(".reversible-right").attr("data-reversed", reversed);
|
|
|
|
// Fall back to a blank avatar if one doesn't exist for the team.
|
|
$(".avatar, .final-avatar").attr("onerror", "this.src='" + getAvatarUrl(0) + "';");
|
|
|
|
// Set up the websocket back to the server.
|
|
websocket = new CheesyWebsocket("/displays/audience/websocket", {
|
|
allianceSelection: function(event) { handleAllianceSelection(event.data); },
|
|
audienceDisplayMode: function(event) { handleAudienceDisplayMode(event.data); },
|
|
lowerThird: function(event) { handleLowerThird(event.data); },
|
|
matchLoad: function(event) { handleMatchLoad(event.data); },
|
|
matchTime: function(event) { handleMatchTime(event.data); },
|
|
matchTiming: function(event) { handleMatchTiming(event.data); },
|
|
playSound: function(event) { handlePlaySound(event.data); },
|
|
realtimeScore: function(event) { handleRealtimeScore(event.data); },
|
|
scorePosted: function(event) { handleScorePosted(event.data); }
|
|
});
|
|
|
|
// Map how to transition from one screen to another. Missing links between screens indicate that first we
|
|
// must transition to the blank screen and then to the target screen.
|
|
transitionMap = {
|
|
blank: {
|
|
intro: transitionBlankToIntro,
|
|
match: transitionBlankToInMatch,
|
|
score: transitionBlankToScore,
|
|
logo: transitionBlankToLogo,
|
|
sponsor: transitionBlankToSponsor,
|
|
allianceSelection: transitionBlankToAllianceSelection,
|
|
lowerThird: transitionBlankToLowerThird
|
|
},
|
|
intro: {
|
|
blank: transitionIntroToBlank,
|
|
match: transitionIntroToInMatch
|
|
},
|
|
match: {
|
|
blank: transitionInMatchToBlank,
|
|
intro: transitionInMatchToIntro
|
|
},
|
|
score: {
|
|
blank: transitionScoreToBlank,
|
|
logo: transitionScoreToLogo,
|
|
sponsor: transitionScoreToSponsor
|
|
},
|
|
logo: {
|
|
blank: transitionLogoToBlank,
|
|
score: transitionLogoToScore,
|
|
sponsor: transitionLogoToSponsor
|
|
},
|
|
sponsor: {
|
|
blank: transitionSponsorToBlank,
|
|
logo: transitionSponsorToLogo,
|
|
score: transitionSponsorToScore
|
|
},
|
|
allianceSelection: {
|
|
blank: transitionAllianceSelectionToBlank
|
|
},
|
|
lowerThird: {
|
|
blank: transitionLowerThirdToBlank
|
|
}
|
|
}
|
|
});
|