Added alliance station display.

This commit is contained in:
Patrick Fairbank
2014-08-04 00:52:46 -07:00
parent 4b8d72fe15
commit 35d6cc7e47
10 changed files with 384 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ type Arena struct {
audienceDisplayNotifier *Notifier
playSoundNotifier *Notifier
audienceDisplayScreen string
allianceStationDisplays map[string]string
lastMatchState int
lastMatchTimeSec float64
savedMatch *Match
@@ -118,6 +119,7 @@ func (arena *Arena) Setup() {
arena.audienceDisplayScreen = "blank"
arena.savedMatch = &Match{}
arena.savedMatchResult = &MatchResult{}
arena.allianceStationDisplays = make(map[string]string)
}
// Loads a team into an alliance station, cleaning up the previous team there if there is one.