-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmain.go
325 lines (291 loc) · 9.1 KB
/
main.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// ChessBuddy - Play chess with Go, HTML5, WebSockets and random strangers!
//
// Copyright (c) 2012 by Christoph Hack <[email protected]>
// All rights reserved. Distributed under the Simplified BSD License.
package main
import (
"code.google.com/p/go.net/websocket"
"expvar"
"flag"
"fmt"
"github.com/tux21b/ChessBuddy/chess"
"go/build"
"html/template"
"log"
"math/rand"
"net"
"net/http"
"path/filepath"
"runtime"
"sync/atomic"
"time"
)
// General message struct which is used for parsing client requests and sending
// back responses.
type Message struct {
Cmd string `json:"cmd"`
Turn int `json:"turn"`
Src chess.Square `json:"src"`
Dst chess.Square `json:"dst"`
Color uint8 `json:"color"`
NumPlayers int32
History string
RemainingA, RemainingB time.Duration
Text string
Moves []chess.Square `json:"moves"`
}
type Player struct {
Conn *websocket.Conn
Color uint8
Remaining time.Duration
Out chan<- Message
ReqAI chan bool
}
// Check wethever the player is still connected by sending a ping command.
func (p *Player) Alive() bool {
if err := websocket.JSON.Send(p.Conn, Message{Cmd: "ping"}); err != nil {
return false
}
var msg Message
if err := websocket.JSON.Receive(p.Conn, &msg); err != nil {
return false
}
return msg.Cmd == "pong"
}
func (p *Player) String() string {
switch p.Color {
case chess.White:
return "White"
case chess.Black:
return "Black"
}
return "Unknown"
}
func (p *Player) Send(msg Message) {
if p.Conn != nil {
p.Out <- msg
}
}
// Available Players which are currently looking for a taff opponent.
var available = make(chan *Player, 100)
// Total number of connected players
var numPlayers int32 = 0
// GoRoutine for hooking up pairs of available players.
func hookUp() {
a := <-available
for {
select {
case b := <-available:
if a.Alive() {
go play(a, b)
a = <-available
} else {
close(a.Out)
a = b
}
case <-a.ReqAI:
go play(a, &Player{})
a = <-available
}
}
}
func play(a, b *Player) {
defer func() {
if a.Conn != nil {
close(a.Out)
}
if b.Conn != nil {
close(b.Out)
}
}()
log.Println("Starting new game")
board := chess.NewBoard()
if rand.Float32() > 0.5 {
a, b = b, a
}
a.Color = chess.White
a.Remaining = *timeLimit
b.Color = chess.Black
b.Remaining = *timeLimit
a.Send(Message{Cmd: "start", Color: a.Color, Turn: board.Turn(),
RemainingA: a.Remaining, RemainingB: b.Remaining})
b.Send(Message{Cmd: "start", Color: b.Color, Turn: board.Turn(),
RemainingA: a.Remaining, RemainingB: b.Remaining})
start := time.Now()
for {
var msg Message
if a.Conn == nil {
msg.Cmd, msg.Turn = "move", board.Turn()
msg.Src, msg.Dst = board.MoveAI()
} else {
a.Conn.SetReadDeadline(start.Add(a.Remaining))
if err := websocket.JSON.Receive(a.Conn, &msg); err != nil {
if err, ok := err.(net.Error); ok && err.Timeout() {
a.Remaining = 0
msg = Message{
Cmd: "msg",
Text: fmt.Sprintf("Out of time: %v wins!", b),
}
b.Send(msg)
a.Send(msg)
} else {
msg = Message{
Cmd: "msg",
Text: "Opponent quit... Reload?",
}
b.Send(msg)
a.Send(msg)
}
break
}
}
if msg.Cmd == "move" && msg.Turn == board.Turn() &&
a.Color == board.Color() && board.Move(msg.Src, msg.Dst) {
msg.Color = a.Color
msg.History = board.LastMove()
now := time.Now()
a.Remaining -= now.Sub(start)
if a.Remaining <= 10*time.Millisecond {
a.Remaining = 10 * time.Millisecond
}
start = now
msg.RemainingA, msg.RemainingB = a.Remaining, b.Remaining
if a.Color == chess.Black {
msg.RemainingA, msg.RemainingB = b.Remaining, a.Remaining
}
a, b = b, a
a.Send(msg)
b.Send(msg)
if board.Checkmate() {
msg = Message{
Cmd: "msg",
Text: fmt.Sprintf("Checkmate: %v wins!", b),
}
b.Send(msg)
a.Send(msg)
return
} else if board.Stalemate() {
msg = Message{
Cmd: "msg",
Text: "Stalemate",
}
b.Send(msg)
a.Send(msg)
return
}
} else if msg.Cmd == "select" {
msg.Moves = board.Moves(msg.Src)
a.Send(msg)
}
}
}
// Serve the index page.
func handleIndex(w http.ResponseWriter, r *http.Request) {
wsURL := fmt.Sprintf("ws://%s/ws", r.Host)
if r.URL.Path == "/ai" {
wsURL += "?ai=true"
} else if r.URL.Path != "/" {
http.Error(w, "Not Found", http.StatusNotFound)
return
}
if err := tmpl.Execute(w, wsURL); err != nil {
log.Printf("tmpl.Execute: %v", err)
}
}
// Serve a static file (e.g. style sheets, scripts or images).
func handleFile(path string) http.HandlerFunc {
path = filepath.Join(root, path)
return func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, path)
}
}
func handleWS(ws *websocket.Conn) {
log.Println("Connected:", ws.Request().RemoteAddr)
atomic.AddInt32(&numPlayers, 1)
exitStat := make(chan bool, 1)
defer func() {
exitStat <- true
atomic.AddInt32(&numPlayers, -1)
log.Println("Disconnected", ws.Request().RemoteAddr)
ws.Close()
}()
// Send statistics (i.e. player count) regularly. This will help to to
// detect disconnected players earlier and will prevent stupid proxies
// from closing inactive connections.
go func() {
ticker := time.NewTicker(20 * time.Second)
defer ticker.Stop()
msg := Message{Cmd: "stat"}
for {
msg.NumPlayers = atomic.LoadInt32(&numPlayers)
if err := websocket.JSON.Send(ws, msg); err != nil {
if nerr, ok := err.(net.Error); ok && !nerr.Temporary() {
log.Printf("Network Error: %v", nerr)
ws.Close()
return
}
}
select {
case <-ticker.C:
// continue
case <-exitStat:
return
}
}
}()
// Add the player to the pool of available players so that he can get
// hooked up
reqAI := make(chan bool, 1)
if ws.Request().FormValue("ai") == "true" {
reqAI <- true
}
out := make(chan Message, 1)
available <- &Player{Conn: ws, Out: out, ReqAI: reqAI}
// Send the move commands from the game asynchronously, so that a slow
// internet connection can not be simulated to use up the opponents
// time limit.
for msg := range out {
if err := websocket.JSON.Send(ws, msg); err != nil {
log.Printf("websocket.Send: %v", err)
return
}
}
}
const basePkg = "github.com/tux21b/ChessBuddy"
var tmpl *template.Template
var root string = "."
var timeLimit *time.Duration = flag.Duration("time", 5*time.Minute,
"time limit per side (sudden death, no add)")
var listenAddr *string = flag.String("http", ":8000",
"listen on this http address")
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
rand.Seed(time.Now().UnixNano())
flag.Parse()
if flag.NArg() > 0 {
flag.Usage()
return
}
expvar.Publish("numplayers", expvar.Func(func() interface{} {
return atomic.LoadInt32(&numPlayers)
}))
p, err := build.Default.Import(basePkg, "", build.FindOnly)
if err != nil {
log.Fatalf("Couldn't find ChessBuddy files: %v", err)
}
root = p.Dir
tmpl, err = template.ParseFiles(filepath.Join(root, "chess.html"))
if err != nil {
log.Fatalf("Couldn't parse chess.html: %v", err)
}
go hookUp()
http.HandleFunc("/", handleIndex)
http.HandleFunc("/chess.js", handleFile("chess.js"))
http.HandleFunc("/chess.css", handleFile("chess.css"))
http.HandleFunc("/bg.png", handleFile("bg.png"))
http.HandleFunc("/favicon.ico", handleFile("favicon.ico"))
http.Handle("/ws", websocket.Handler(handleWS))
if err := http.ListenAndServe(*listenAddr, nil); err != nil {
log.Fatalf("http.ListenAndServe: %v", err)
}
}