-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.go
194 lines (174 loc) · 5.01 KB
/
game.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package main
import (
"log"
"math/rand"
"sync"
"time"
"github.com/gorilla/websocket"
)
var minDeadline int
var deadlineOffset int
// DIRECTIONS contains all possible directions
var DIRECTIONS = []string{"up", "right", "left", "down"}
// GameStatus c
type GameStatus struct {
Width int `json:"width"`
Height int `json:"height"`
Cells [][]int `json:"cells"`
Players map[int]*Player `json:"players"`
You int `json:"you"`
Running bool `json:"running"`
Deadline string `json:"deadline"`
mutex *sync.Mutex
gui *Gui
config *Config
occupiedCells [][]uint64
// bit 0 is the error bit which is set if there are two players on the cell
// bit n represents that the player with id n moved onto this field this turn
}
func (s *GameStatus) checkPlayerConnections() bool {
for _, player := range s.Players {
if player.conn != nil {
return true
}
}
return false
}
func (s *GameStatus) processPlayers(deadline time.Time, jump bool) {
for y := range s.occupiedCells {
for x := range s.occupiedCells[y] {
s.occupiedCells[y][x] = 0
}
}
log.Print("reading actions")
var processedPlayers []int
for playerID, player := range s.Players {
processedPlayers = append(processedPlayers, playerID)
player.ReadActionAndProcess(s, playerID, deadline, jump)
}
for y := range s.occupiedCells {
for x := range s.occupiedCells[y] {
if s.occupiedCells[y][x] != 0 {
for _, playerID := range processedPlayers {
// If the error bit is set and the (playerID)th bit as well, kill player and set cell to -1
if s.occupiedCells[y][x]&1 != 0 && s.occupiedCells[y][x]&(1<<playerID) != 0 {
log.Print("Player ", playerID, " moved to field: ", y, " ", x)
s.Cells[y][x] = -1
s.Players[playerID].Active = false
}
}
}
}
}
}
func (s *GameStatus) writeStatus() {
for player := range s.Players {
s.You = player
// status.deadline
if conn := s.Players[player].conn; conn != nil {
err := conn.WriteJSON(s)
if err != nil {
s.Players[player].conn = nil
}
}
}
if s.gui != nil {
s.gui.WriteStatus(s)
}
}
func (s *GameStatus) closeConnections() {
/* close all connections */
log.Print("closing connections")
for _, player := range s.Players {
player.CloseConnection()
}
}
func (s *GameStatus) getNumLiving() (int, string) {
numLiving := 0
var lastLiving string
for _, player := range s.Players {
if player.Active {
numLiving++
lastLiving = player.Name
}
}
return numLiving, lastLiving
}
// AddPlayer adds a player to the current GameStatus. It closes the connection if the game is already running
func (s *GameStatus) AddPlayer(c *websocket.Conn, config *Config, name string) {
s.mutex.Lock()
defer s.mutex.Unlock()
playerID := len(s.Players) + 1
/* do not add player when a game is already running */
if s.Running {
log.Println("game already in progress, disconnecting new client")
c.Close()
return
}
s.Players[playerID] = NewPlayer(rand.Intn(s.config.Width), rand.Intn(s.config.Height), c, name)
s.Cells[s.Players[playerID].Y][s.Players[playerID].X] = playerID
}
// GetNumPlayers returns the amount of players inside the game
func (s *GameStatus) GetNumPlayers() int {
return len(s.Players)
}
// GameLoop plays the game, reading and writing to the players' sockets. When it ends, it closes all connections and creates a new, empty game status
func (s *GameStatus) GameLoop() {
if len(s.Players) <= 1 {
return
}
s.Running = true
turn := 1
for s.Running {
log.Println("Turn: ", turn)
if !s.checkPlayerConnections() {
s.Running = false
log.Println("all connections closed, stopping game")
break
}
timeout := time.Now().UTC().Add(time.Duration(1000000000 * (rand.Intn(deadlineOffset) + minDeadline)))
s.Deadline = timeout.Format(time.RFC3339)
s.writeStatus()
s.processPlayers(timeout, turn%6 == 0)
numLiving, lastLiving := s.getNumLiving()
/* receive actions */
if numLiving < 2 {
log.Println("all players but", lastLiving, "died, stopping game")
s.Running = false
break
}
time.Sleep(time.Now().UTC().Sub(timeout))
turn++
}
s.writeStatus()
s.closeConnections()
/* the last game is over, we start a new one */
sNew := NewGameStatus(s.config)
sNew.gui = s.gui
*s = *sNew
}
// NewGameStatus creates a new, non-running GameStatus with the specified configuration
func NewGameStatus(config *Config) *GameStatus {
log.Println("initializing lobby")
cells := make([][]int, config.Height)
for i := range cells {
cells[i] = make([]int, config.Width)
}
occupiedCells := make([][]uint64, config.Height)
for i := range occupiedCells {
occupiedCells[i] = make([]uint64, config.Width)
}
return &GameStatus{
Width: config.Width,
Height: config.Height,
Cells: cells,
Running: false,
Players: make(map[int]*Player, 0),
Deadline: "",
You: 0,
gui: nil,
config: config,
occupiedCells: occupiedCells,
mutex: &sync.Mutex{},
}
}