2013-08-19 20:43:26 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2013-10-19 17:29:40 -07:00
|
|
|
// "encoding/json"
|
2013-10-18 20:48:22 -07:00
|
|
|
"errors"
|
2013-08-19 20:43:26 -07:00
|
|
|
"log"
|
|
|
|
"sort"
|
2013-10-18 20:48:22 -07:00
|
|
|
"sync"
|
2013-08-19 20:43:26 -07:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2013-09-08 09:32:24 -07:00
|
|
|
const maxPlayer = 128
|
|
|
|
|
2013-10-24 06:26:54 -07:00
|
|
|
type BotHealth struct {
|
|
|
|
RobotId string `json:"robot_id"`
|
|
|
|
Health int `json:"health"`
|
|
|
|
}
|
|
|
|
|
2013-09-27 22:27:05 -07:00
|
|
|
type Boardstate struct {
|
2013-10-24 20:13:21 -07:00
|
|
|
MyRobots []Robot `json:"my_robots"`
|
|
|
|
OtherRobots []OtherRobot `json:"robots"`
|
2013-09-27 22:27:05 -07:00
|
|
|
Projectiles []Projectile `json:"projectiles"`
|
|
|
|
Splosions []Splosion `json:"splosions"`
|
2013-10-25 22:30:15 -07:00
|
|
|
Obstacles []Obstacle `json:"obj"`
|
2013-09-27 22:27:05 -07:00
|
|
|
Reset bool `json:"reset"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Turn int `json:"turn"`
|
2013-10-24 06:26:54 -07:00
|
|
|
AllBots []BotHealth `json:"all_bots"`
|
2013-09-27 22:27:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewBoardstate() *Boardstate {
|
|
|
|
return &Boardstate{
|
2013-10-24 20:13:21 -07:00
|
|
|
MyRobots: []Robot{},
|
|
|
|
OtherRobots: []OtherRobot{},
|
2013-09-27 22:27:05 -07:00
|
|
|
Projectiles: []Projectile{},
|
2013-10-24 06:26:54 -07:00
|
|
|
Splosions: []Splosion{},
|
|
|
|
AllBots: []BotHealth{},
|
2013-09-27 22:27:05 -07:00
|
|
|
Type: "boardstate",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Scanner struct {
|
2013-11-06 20:09:45 -08:00
|
|
|
Id string `json:"id"`
|
|
|
|
Type string `json:"type"`
|
2013-09-27 22:27:05 -07:00
|
|
|
}
|
|
|
|
|
2013-10-18 20:48:22 -07:00
|
|
|
type MapLock struct {
|
|
|
|
m map[string]*game
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
2013-10-18 23:55:52 -07:00
|
|
|
// get is a function that returns a game if found, and creates one if
|
|
|
|
// not found and force is true. In order to get a hash (rather than use
|
|
|
|
// the string you pass) send "" for id.
|
|
|
|
func (ml *MapLock) get(id string, force bool) (*game, error) {
|
2013-10-18 20:48:22 -07:00
|
|
|
ml.Lock()
|
|
|
|
g, ok := games.m[id]
|
|
|
|
ml.Unlock()
|
|
|
|
|
|
|
|
if ok {
|
|
|
|
return g, nil
|
|
|
|
}
|
|
|
|
|
2013-10-18 23:55:52 -07:00
|
|
|
if !force {
|
2013-10-18 20:48:22 -07:00
|
|
|
return nil, errors.New("game not found")
|
|
|
|
}
|
|
|
|
|
2013-10-18 23:55:52 -07:00
|
|
|
if id == "" {
|
|
|
|
id = idg.Hash()
|
|
|
|
}
|
2013-10-18 20:48:22 -07:00
|
|
|
|
2013-10-19 00:00:45 -07:00
|
|
|
_g := NewGame(id, float32(*width), float32(*height))
|
2013-10-18 20:48:22 -07:00
|
|
|
go _g.run()
|
|
|
|
|
|
|
|
ml.Lock()
|
2013-10-18 23:55:52 -07:00
|
|
|
ml.m[id] = _g
|
2013-10-18 20:48:22 -07:00
|
|
|
ml.Unlock()
|
|
|
|
|
|
|
|
return _g, nil
|
|
|
|
}
|
|
|
|
|
2013-08-19 20:43:26 -07:00
|
|
|
type game struct {
|
2013-09-01 23:00:09 -07:00
|
|
|
id string
|
2013-09-01 22:04:34 -07:00
|
|
|
players map[*player]bool
|
2013-09-27 22:27:05 -07:00
|
|
|
projectiles map[*Projectile]bool
|
|
|
|
splosions map[*Splosion]bool
|
2013-10-25 22:30:15 -07:00
|
|
|
obstacles []Obstacle
|
2013-09-01 22:04:34 -07:00
|
|
|
register chan *player
|
|
|
|
unregister chan *player
|
|
|
|
turn int
|
2013-10-19 00:00:45 -07:00
|
|
|
width, height float32
|
2013-09-01 22:04:34 -07:00
|
|
|
spectators map[*Spectator]bool
|
|
|
|
sregister chan *Spectator
|
|
|
|
sunregister chan *Spectator
|
|
|
|
kill chan bool
|
2013-08-19 20:43:26 -07:00
|
|
|
}
|
|
|
|
|
2013-10-19 00:00:45 -07:00
|
|
|
func NewGame(id string, width, height float32) *game {
|
2013-09-04 00:06:39 -07:00
|
|
|
g := &game{
|
2013-09-01 23:00:09 -07:00
|
|
|
id: id,
|
2013-08-25 23:10:02 -07:00
|
|
|
register: make(chan *player),
|
2013-09-08 09:32:24 -07:00
|
|
|
unregister: make(chan *player, maxPlayer),
|
2013-09-27 22:27:05 -07:00
|
|
|
projectiles: make(map[*Projectile]bool),
|
|
|
|
splosions: make(map[*Splosion]bool),
|
2013-10-25 22:30:15 -07:00
|
|
|
obstacles: GenerateObstacles(5, width, height),
|
2013-08-25 23:10:02 -07:00
|
|
|
players: make(map[*player]bool),
|
|
|
|
turn: 0,
|
2013-09-01 22:04:34 -07:00
|
|
|
width: width,
|
|
|
|
height: height,
|
2013-08-25 23:10:02 -07:00
|
|
|
spectators: make(map[*Spectator]bool),
|
|
|
|
sregister: make(chan *Spectator),
|
|
|
|
sunregister: make(chan *Spectator),
|
2013-09-08 09:32:24 -07:00
|
|
|
kill: make(chan bool, maxPlayer),
|
2013-08-25 23:10:02 -07:00
|
|
|
}
|
2013-09-04 00:06:39 -07:00
|
|
|
return g
|
|
|
|
}
|
|
|
|
|
2013-10-20 21:15:23 -07:00
|
|
|
func (g *game) tick(payload *Boardstate) int {
|
|
|
|
robots_remaining := 0
|
|
|
|
|
2013-10-25 22:30:15 -07:00
|
|
|
payload.Obstacles = g.obstacles
|
|
|
|
|
2013-10-20 21:15:23 -07:00
|
|
|
// Update Players
|
|
|
|
for p := range g.players {
|
|
|
|
if p.Robot.Health > 0 {
|
|
|
|
robots_remaining++
|
|
|
|
p.Tick(g)
|
|
|
|
}
|
2013-10-24 20:13:21 -07:00
|
|
|
payload.OtherRobots = append(
|
|
|
|
payload.OtherRobots,
|
|
|
|
p.Robot.GetTruncatedDetails())
|
2013-10-24 06:26:54 -07:00
|
|
|
|
|
|
|
payload.AllBots = append(
|
|
|
|
payload.AllBots,
|
|
|
|
BotHealth{RobotId: p.Robot.Id, Health: p.Robot.Health})
|
2013-10-20 21:15:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update Projectiles
|
|
|
|
for pr := range g.projectiles {
|
|
|
|
pr.Tick(g)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We do this here, because the tick calls can alter g.projectiles
|
|
|
|
for pr := range g.projectiles {
|
|
|
|
payload.Projectiles = append(payload.Projectiles, *pr)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update Splosions
|
|
|
|
for s := range g.splosions {
|
|
|
|
s.Tick()
|
|
|
|
if !s.Alive() {
|
|
|
|
delete(g.splosions, s)
|
|
|
|
}
|
|
|
|
payload.Splosions = append(payload.Splosions, *s)
|
|
|
|
}
|
|
|
|
|
|
|
|
return robots_remaining
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *game) send_update(payload *Boardstate) {
|
|
|
|
// Ensure that the robots are always sent in a consistent order
|
2013-10-24 20:13:21 -07:00
|
|
|
sort.Sort(RobotSorter{Robots: payload.OtherRobots})
|
2013-10-20 21:15:23 -07:00
|
|
|
|
|
|
|
for p := range g.players {
|
|
|
|
// Copy the payload but only add the robots in scanner range
|
|
|
|
player_payload := NewBoardstate()
|
|
|
|
player_payload.Projectiles = payload.Projectiles
|
|
|
|
player_payload.Splosions = payload.Splosions
|
2013-10-25 22:30:15 -07:00
|
|
|
player_payload.Obstacles = payload.Obstacles
|
2013-10-24 06:26:54 -07:00
|
|
|
player_payload.AllBots = payload.AllBots
|
2013-10-20 21:15:23 -07:00
|
|
|
player_payload.Turn = payload.Turn
|
|
|
|
player_payload.Reset = payload.Reset
|
2013-10-24 20:13:21 -07:00
|
|
|
player_payload.MyRobots = append(player_payload.MyRobots, p.Robot)
|
|
|
|
player_payload.OtherRobots = append(
|
|
|
|
player_payload.OtherRobots,
|
|
|
|
p.Robot.GetTruncatedDetails())
|
2013-10-20 21:15:23 -07:00
|
|
|
|
|
|
|
if p.Robot.Health > 0 {
|
|
|
|
for player := range g.players {
|
|
|
|
for _, scan_entry := range p.Robot.Scanners {
|
|
|
|
if player.Robot.Id == scan_entry.Id {
|
2013-10-24 20:13:21 -07:00
|
|
|
player_payload.OtherRobots = append(
|
|
|
|
player_payload.OtherRobots,
|
|
|
|
player.Robot.GetTruncatedDetails())
|
2013-10-20 21:15:23 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2013-10-24 20:13:21 -07:00
|
|
|
player_payload.OtherRobots = payload.OtherRobots
|
2013-10-20 21:15:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// x, _ := json.Marshal(player_payload)
|
|
|
|
// log.Printf("%v", string(x))
|
|
|
|
p.send <- player_payload
|
|
|
|
}
|
|
|
|
for s := range g.spectators {
|
|
|
|
s.send <- payload
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-04 00:06:39 -07:00
|
|
|
func (g *game) run() {
|
2013-09-05 23:31:13 -07:00
|
|
|
var t0, t1 time.Time
|
2013-10-01 21:37:53 -07:00
|
|
|
ticker := time.NewTicker(time.Duration(*tick) * time.Millisecond)
|
2013-08-19 20:43:26 -07:00
|
|
|
for {
|
|
|
|
select {
|
2013-08-28 22:16:55 -07:00
|
|
|
case <-g.kill:
|
2013-09-04 23:23:05 -07:00
|
|
|
log.Printf("game %s: received kill signal, dying gracefully", g.id)
|
2013-09-05 18:14:41 -07:00
|
|
|
games.Lock()
|
2013-09-08 09:32:24 -07:00
|
|
|
for player := range g.players {
|
|
|
|
close(player.send)
|
|
|
|
}
|
2013-09-05 18:14:41 -07:00
|
|
|
delete(games.m, g.id)
|
|
|
|
games.Unlock()
|
2013-08-28 22:16:55 -07:00
|
|
|
return
|
2013-08-19 20:43:26 -07:00
|
|
|
case p := <-g.register:
|
|
|
|
g.players[p] = true
|
|
|
|
case p := <-g.unregister:
|
|
|
|
delete(g.players, p)
|
|
|
|
close(p.send)
|
2013-08-19 22:23:35 -07:00
|
|
|
case s := <-g.sregister:
|
|
|
|
g.spectators[s] = true
|
|
|
|
case s := <-g.sunregister:
|
|
|
|
delete(g.spectators, s)
|
|
|
|
close(s.send)
|
2013-10-01 21:37:53 -07:00
|
|
|
case <-ticker.C:
|
2013-10-20 21:15:23 -07:00
|
|
|
t0 = time.Now()
|
2013-10-19 17:29:40 -07:00
|
|
|
payload := NewBoardstate()
|
2013-09-04 23:23:05 -07:00
|
|
|
|
2013-08-19 20:43:26 -07:00
|
|
|
g.turn++
|
2013-09-07 19:13:12 -07:00
|
|
|
payload.Turn = g.turn
|
2013-08-19 20:43:26 -07:00
|
|
|
if *verbose {
|
|
|
|
log.Printf("\033[2JTurn: %v", g.turn)
|
|
|
|
log.Printf("Players: %v", len(g.players))
|
|
|
|
log.Printf("Projectiles: %v", len(g.projectiles))
|
|
|
|
log.Printf("Explosions: %v", len(g.splosions))
|
|
|
|
}
|
2013-09-03 23:26:40 -07:00
|
|
|
|
2013-10-19 17:29:40 -07:00
|
|
|
// UPDATE GAME STATE
|
2013-10-20 21:15:23 -07:00
|
|
|
robots_remaining := g.tick(payload)
|
2013-08-19 20:43:26 -07:00
|
|
|
|
2013-10-20 21:15:23 -07:00
|
|
|
// Determine end game?
|
2013-08-19 20:43:26 -07:00
|
|
|
if robots_remaining <= 1 && len(g.players) > 1 {
|
|
|
|
for p := range g.players {
|
|
|
|
if p.Robot.Health > 0 {
|
|
|
|
log.Printf("Robot %v Wins", p.Robot.Id)
|
2013-09-28 13:19:44 -07:00
|
|
|
log.Printf("game %s: game over", g.id)
|
2013-08-19 20:43:26 -07:00
|
|
|
}
|
2013-10-25 22:30:15 -07:00
|
|
|
p.reset(g)
|
2013-10-28 23:35:00 -07:00
|
|
|
g.obstacles = GenerateObstacles(5, g.width, g.height)
|
2013-08-19 20:43:26 -07:00
|
|
|
}
|
|
|
|
payload.Reset = true
|
|
|
|
} else {
|
|
|
|
payload.Reset = false
|
|
|
|
}
|
|
|
|
|
2013-09-05 23:31:13 -07:00
|
|
|
t1 = time.Now()
|
2013-08-19 20:43:26 -07:00
|
|
|
if *verbose {
|
|
|
|
log.Printf("Turn Processes %v\n", t1.Sub(t0))
|
|
|
|
}
|
|
|
|
|
2013-10-19 17:29:40 -07:00
|
|
|
// SEND THE UPDATE TO EACH PLAYER
|
2013-10-20 21:15:23 -07:00
|
|
|
g.send_update(payload)
|
2013-08-19 20:43:26 -07:00
|
|
|
|
|
|
|
t1 = time.Now()
|
|
|
|
if *verbose {
|
|
|
|
log.Printf("Sent Payload %v\n", t1.Sub(t0))
|
|
|
|
}
|
2013-09-20 11:15:10 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|