This repository was archived by the owner on Nov 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
175 lines (155 loc) · 4.33 KB
/
client.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
package main
import (
"encoding/xml"
"fmt"
"github.com/droundy/goopt"
"io"
"net"
)
type Room struct {
Id string `xml:"roomId"`
}
type Joined struct {
Id string `xml:"roomId"`
}
type WelcomeMessage struct {
Color string `xml:"color,attr"`
}
type Memento struct {
State State `xml:"state"`
}
type Card struct {
CardType string `xml:"type"`
}
type Player struct {
DisplayName string `xml:"displayName,attr"`
Color string `xml:"color,attr"`
Index int `xml:"index,attr"`
Carrots int `xml:"carrots,attr"`
Salads int `xml:"salads,attr"`
Cards []Card `xml:"cards"`
}
type State struct {
RedPlayer Player `xml:"red"`
BluePlayer Player `xml:"blue"`
Board Board `xml:"board"`
}
type Field struct {
FieldType string `xml:"type,attr"`
Index int `xml:"index,attr"`
}
type Board struct {
Fields []Field `xml:"fields"`
}
func Process(r io.Reader, w io.Writer) error {
d := xml.NewDecoder(r)
var myColor string
var currentState State
var roomId string
for {
v, err := d.Token()
if err != nil {
return err
}
switch t := v.(type) {
case xml.StartElement:
switch t.Name.Local {
case "data":
var class string = ""
for _, v := range t.Attr {
if v.Name.Local == "class" {
class = v.Value
break
}
}
switch class {
case "memento":
data := new(Memento)
err := d.DecodeElement(data, &t)
if err != nil {
return err
}
currentState = data.State
fmt.Printf("got memento %#v\n", data)
case "welcomeMessage":
data := new(WelcomeMessage)
err := d.DecodeElement(data, &t)
if err != nil {
return err
}
myColor = data.Color
fmt.Printf("we have color %s\n", myColor)
case "sc.framework.plugins.protocol.MoveRequest":
// move to next carrot field
var us Player
var opponent Player
if myColor == "red" {
us = currentState.RedPlayer
opponent = currentState.BluePlayer
} else {
us = currentState.BluePlayer
opponent = currentState.RedPlayer
}
var nextCarrotFieldIndex int
for _, v := range currentState.Board.Fields[us.Index+1 : 64] {
fmt.Printf("%d : %s\n", v.Index, v.FieldType)
if v.FieldType == "CARROT" && opponent.Index != v.Index {
nextCarrotFieldIndex = v.Index
break
}
}
fmt.Printf("we are at %d\n", us.Index)
fmt.Printf("next carrot field is at index %d\n", nextCarrotFieldIndex)
distance := nextCarrotFieldIndex - us.Index
if (distance*(distance+1))/2 > us.Carrots {
// not enough carrots to move forward
fmt.Println("will fall back to hedgehog field")
io.WriteString(w, fmt.Sprintf("<room roomId=\"%s\"><data class=\"move\"><fallBack order=\"0\" /></data></room>", roomId))
} else {
fmt.Printf("will advance %d fields\n", distance)
io.WriteString(w, fmt.Sprintf("<room roomId=\"%s\"><data class=\"move\"><advance order=\"0\" distance=\"%d\" /></data></room>", roomId, distance))
}
default:
fmt.Printf("got data of class %s\n", class)
}
case "joined":
for _, v := range t.Attr {
if v.Name.Local == "roomId" {
roomId = v.Value
break
}
}
fmt.Printf("joined room %s\n", roomId)
default:
//fmt.Printf("got xml start tag %s\n", t.Name.Local)
}
case xml.EndElement:
//fmt.Printf("got xml end tag %s\n", t.Name.Local)
}
}
}
func main() {
goopt.Description = func() string {
return "Software Challenge client"
}
goopt.Version = "0.1"
goopt.Summary = "Software Challenge client"
host := goopt.String([]string{"-h", "--host"}, "localhost", "hostname or IP address of the game server")
port := goopt.Int([]string{"-p", "--port"}, 13050, "port of the game server")
reservation := goopt.String([]string{"-r", "--reservation"}, "", "reservation id for the game to join (if empty, new game will be joined)")
goopt.Parse(nil)
con, err := net.Dial("tcp", fmt.Sprintf("%s:%d", *host, *port))
if err != nil {
panic("could not connect to server")
}
fmt.Println("connected to server")
// d := xml.NewDecoder(con)
io.WriteString(con, "<protocol>")
if *reservation == "" {
io.WriteString(con, "<join gameType=\"swc_2018_hase_und_igel\"/>")
} else {
io.WriteString(con, fmt.Sprintf("<joinPrepared reservationCode=\"%s\"/>", *reservation))
}
err = Process(con, con)
fmt.Printf("Err: %#v\n", err)
}