mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 13:46:44 -04:00
84 lines
2.2 KiB
Go
84 lines
2.2 KiB
Go
// Copyright 2014 Team 254. All Rights Reserved.
|
|
// Author: pat@patfairbank.com (Patrick Fairbank)
|
|
//
|
|
// Web handlers for the alliance station display.
|
|
|
|
package web
|
|
|
|
import (
|
|
"github.com/Team254/cheesy-arena/game"
|
|
"github.com/Team254/cheesy-arena/model"
|
|
"github.com/Team254/cheesy-arena/websocket"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
// Renders the team number and status display shown above each alliance station.
|
|
func (web *Web) allianceStationDisplayHandler(w http.ResponseWriter, r *http.Request) {
|
|
if !web.userIsReader(w, r) {
|
|
return
|
|
}
|
|
|
|
template, err := web.parseFiles("templates/alliance_station_display.html")
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
|
|
displayId := ""
|
|
if _, ok := r.URL.Query()["displayId"]; ok {
|
|
// Register the display in memory by its ID so that it can be configured to a certain station.
|
|
displayId = r.URL.Query()["displayId"][0]
|
|
}
|
|
|
|
data := struct {
|
|
*model.EventSettings
|
|
DisplayId string
|
|
}{web.arena.EventSettings, displayId}
|
|
err = template.ExecuteTemplate(w, "alliance_station_display.html", data)
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
}
|
|
|
|
// The websocket endpoint for the alliance station display client to receive status updates.
|
|
func (web *Web) allianceStationDisplayWebsocketHandler(w http.ResponseWriter, r *http.Request) {
|
|
if !web.userIsReader(w, r) {
|
|
return
|
|
}
|
|
|
|
displayId := r.URL.Query()["displayId"][0]
|
|
station, ok := web.arena.AllianceStationDisplays[displayId]
|
|
if !ok {
|
|
station = ""
|
|
web.arena.AllianceStationDisplays[displayId] = station
|
|
}
|
|
|
|
ws, err := websocket.NewWebsocket(w, r)
|
|
if err != nil {
|
|
handleWebErr(w, err)
|
|
return
|
|
}
|
|
defer ws.Close()
|
|
|
|
// Inform the client which alliance station it should represent.
|
|
err = ws.Write("allianceStation", station)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return
|
|
}
|
|
|
|
// Inform the client what the match period timing parameters are configured to.
|
|
err = ws.Write("matchTiming", game.MatchTiming)
|
|
if err != nil {
|
|
log.Println(err)
|
|
return
|
|
}
|
|
|
|
// Subscribe the websocket to the notifiers whose messages will be passed on to the client.
|
|
ws.HandleNotifiers(web.arena.AllianceStationDisplayModeNotifier, web.arena.ArenaStatusNotifier,
|
|
web.arena.MatchLoadNotifier, web.arena.MatchTimeNotifier, web.arena.RealtimeScoreNotifier,
|
|
web.arena.ReloadDisplaysNotifier)
|
|
}
|