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
|
package game
import (
"fmt"
"io"
"log"
"math/rand"
"net/http"
"os"
"path"
"strings"
"golang.org/x/exp/slices"
"gopkg.in/yaml.v3"
)
const (
PROTOCOL string = "http://"
BASE_URL string = "localhost:8000/"
MAP_URL_PART string = "html/build/maps"
DEFAULT_RESOURCE_GAIN int = 5
DEFAULT_START_DECK string = "3 misc/farmer"
)
type MapYml struct {
Map string `yaml:"map"`
Symbols map[string]string `yaml:"symbols"`
StartDeckList string `yaml:"start_deck_list"`
Kings [][]int `yaml:"kings,omitempty"`
}
type Map struct {
// Tile slices of rows containing the individual tiles.
Tiles [][]Tile
symbols map[string]string
ResourceGain int
StartDeckList string
WinCondition WinCondition
Stores map[Position]*Store
Prepare func(*LocalState)
}
func readMap(r io.Reader) (*Map, error) {
data, err := io.ReadAll(r)
if err != nil {
return nil, err
}
return ParseMap(data)
}
// ParseMap constructs a Map from a yaml definition.
func ParseMap(data []byte) (*Map, error) {
mapYml := MapYml{}
err := yaml.Unmarshal(data, &mapYml)
if err != nil {
return nil, err
}
mapYml.Symbols[" "] = "neutral"
m := &Map{
Tiles: [][]Tile{},
symbols: mapYml.Symbols,
ResourceGain: DEFAULT_RESOURCE_GAIN,
StartDeckList: DEFAULT_START_DECK,
WinCondition: DummyWinCondition,
Stores: make(map[Position]*Store),
}
if mapYml.StartDeckList != "" {
m.StartDeckList = mapYml.StartDeckList
}
rows := strings.Split(mapYml.Map, "\n")
for y := range len(rows) {
row := rows[y]
m.Tiles = append(m.Tiles, []Tile{})
for x := range len(rows[y]) {
pos := Position{x, y}
s := string(row[x])
tile, err := NewTileFromString(mapYml.Symbols[s], pos)
if err != nil {
return nil, err
}
if tile.Type == TileTypes.Store {
m.Stores[pos] = NewStore()
}
m.Tiles[y] = append(m.Tiles[y], tile)
}
}
m.selectStreets()
if len(mapYml.Kings) > 0 {
m.WinCondition = KingGame
m.Prepare = func(s *LocalState) {
for i, kingPos := range mapYml.Kings {
card := NewCard("misc/king")
owner := s.PlayerById(i + 1)
// TODO: Fix position index base.
pos := Position{kingPos[0] - 1, kingPos[1] - 1}
if m.TileAt(pos) == nil {
log.Panic("invalid king pos", pos, len(m.Tiles[0]), "x", len(m.Tiles), "map")
}
s.addNewUnit(card, pos, owner)
}
}
}
return m, nil
}
func (m *Map) selectStreets() {
for y := range len(m.Tiles) {
for x := range len(m.Tiles[y]) {
tile := &m.Tiles[y][x]
if tile.Type != TileTypes.Street {
continue
}
connections, left, right, above, below := m.FindStreetConnections(x, y)
// Decide if curve or straight
if connections == 2 && (left || right) && (above || below) {
tile.Raw = "street 2"
}
if connections > 2 {
tile.Raw = fmt.Sprintf("street %d", connections)
}
}
}
}
func (m *Map) FindNeighbours(x, y int) (left, right, above, below *Tile) {
left, right, above, below = nil, nil, nil, nil
if y > 0 {
above = &m.Tiles[y-1][x]
}
if y < len(m.Tiles)-1 {
below = &m.Tiles[y+1][x]
}
if x > 0 {
left = &m.Tiles[y][x-1]
}
if x < len(m.Tiles[y])-1 {
right = &m.Tiles[y][x+1]
}
return left, right, above, below
}
func (m *Map) FindConnections(x, y int, isConnection func(TileType) bool) (connections int, left, right, above, below bool) {
leftT, rightT, aboveT, belowT := m.FindNeighbours(x, y)
connections = 0
if leftT != nil && isConnection(leftT.Type) {
left = true
connections += 1
}
if rightT != nil && isConnection(rightT.Type) {
right = true
connections += 1
}
if aboveT != nil && isConnection(aboveT.Type) {
above = true
connections += 1
}
if belowT != nil && isConnection(belowT.Type) {
below = true
connections += 1
}
return
}
func (m *Map) FindAnyConnections(x, y int) (connections int, left, right, above, below bool) {
return m.FindConnections(x, y, func(t TileType) bool { return t != TileTypes.Neutral })
}
func (m *Map) FindStreetConnections(x int, y int) (connections int, left, right, above, below bool) {
return m.FindConnections(x, y, func(t TileType) bool { return t == TileTypes.Street })
}
func (m *Map) FindFortificationConnections(x int, y int) (connections int, left, right, above, below bool) {
return m.FindConnections(x, y, func(t TileType) bool { return t.IsFortification() })
}
// GetMap creates a new map from the definition retrieved for the map's name.
func GetMap(name string) (*Map, error) {
url := path.Join(BASE_URL, MAP_URL_PART, name+".yml")
log.Printf("loading map from %s\n", url)
resp, err := http.Get(PROTOCOL + url)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
return readMap(resp.Body)
}
// LoadMap creates a new map from a definition stored in path.
func LoadMap(path string) (*Map, error) {
f, err := os.Open(path)
if err != nil {
log.Fatal("Opening map ", path, " failed: ", err)
}
defer f.Close()
return readMap(f)
}
// TileAt returns the tile at a certain position.
// If p is an invalid position, nil is returned.
func (m *Map) TileAt(p Position) *Tile {
if !p.Valid() || p.Y >= len(m.Tiles) || p.X >= len(m.Tiles[p.Y]) {
return nil
}
return &m.Tiles[p.Y][p.X]
}
// RandomTile returns the position of a randomly selected tile.
// The selected tile's type is included in the types input slice.
func (m *Map) RandomTile(r *rand.Rand, types []TileType) Position {
candidates := []Position{}
for y := range len(m.Tiles) {
for x := range len(m.Tiles[y]) {
candidate := m.Tiles[y][x]
for slices.Contains(types, candidate.Type) {
candidates = append(candidates, candidate.Position)
}
}
}
randIdx := r.Intn(len(candidates))
return candidates[randIdx]
}
// RandomTileFromSymbols returns the position of a randomly selected tile.
// The selected tile's type is represented in the symbols input slice.
func (m *Map) RandomTileFromSymbols(r *rand.Rand, symbols []string) (Position, error) {
types := make([]TileType, 0, len(symbols))
for _, symbol := range symbols {
tileString, ok := m.symbols[symbol]
if !ok {
return INVALID_POSITION(), fmt.Errorf("%s", fmt.Sprintf("symbol %s not in the map symbols %v", symbol, m.symbols))
}
tileType, ok := TileNames[tileString]
if !ok {
return INVALID_POSITION(), ErrInvalidTileName
}
types = append(types, tileType)
}
return m.RandomTile(r, types), nil
}
// FilterTiles returns a slice of tiles matching the filter.
// A tile is included in the result if the filter functions returns true for the given tile.
func (m *Map) FilterTiles(filter func(t *Tile) bool) []*Tile {
tiles := []*Tile{}
for y := range len(m.Tiles) {
for x := range len(m.Tiles[y]) {
tile := &m.Tiles[y][x]
if filter(tile) {
tiles = append(tiles, tile)
}
}
}
return tiles
}
// AllTiles returns all map tiles as flattened slice.
func (m *Map) AllTiles() []*Tile {
return m.FilterTiles(func(*Tile) bool { return true })
}
func (m *Map) FreeTiles() []*Tile {
return m.FilterTiles(func(t *Tile) bool { return t.IsFree() })
}
func (m *Map) AvailableTilesFor(c *Card) []*Tile {
return m.FilterTiles(func(t *Tile) bool {
return t.IsAvailableForCard(c)
})
}
func (m *Map) distributeStoreCards(cards PileOfCards, rand *rand.Rand) {
nStores := len(m.Stores)
stores := make([]*Store, 0, nStores)
for _, store := range m.Stores {
stores = append(stores, store)
}
d := NewDeckFrom(cards)
d.Shuffle(rand)
nCards := d.Size()
for i := range nCards {
c := d.DrawOne()
stores[i%nStores].AddCard(c)
}
}
func (m *Map) HasStores() bool {
return len(m.Stores) > 0
}
func (m *Map) StoreOn(p Position) *Store {
return m.Stores[p]
}
|