]> git.scottworley.com Git - planeteer/blame - planeteer.go
Explicit -> implicit iteration.
[planeteer] / planeteer.go
CommitLineData
d07f3caa
SW
1/* Planeteer: Give trade route advice for Planets: The Exploration of Space
2 * Copyright (C) 2011 Scott Worley <sworley@chkno.net>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18package main
19
20import "flag"
c45c1bca 21import "fmt"
d07f3caa
SW
22import "json"
23import "os"
42f6427c 24import "runtime/pprof"
c45c1bca
SW
25import "strings"
26
330093c1
SW
27var funds = flag.Int("funds", 0,
28 "Starting funds")
29
c45c1bca
SW
30var start = flag.String("start", "",
31 "The planet to start at")
d07f3caa 32
e346cb37 33var flight_plan_string = flag.String("flight_plan", "",
63b4dbbc 34 "Your hyper-holes for the day, comma-separated.")
544108c4 35
1c1ede68 36var end_string = flag.String("end", "",
e9ff66cf 37 "A comma-separated list of acceptable ending planets.")
c45c1bca
SW
38
39var planet_data_file = flag.String("planet_data_file", "planet-data",
d07f3caa
SW
40 "The file to read planet data from")
41
63b4dbbc 42var fuel = flag.Int("fuel", 16, "Hyper Jump power left")
e9ff66cf
SW
43
44var hold = flag.Int("hold", 300, "Size of your cargo hold")
c45c1bca
SW
45
46var start_edens = flag.Int("start_edens", 0,
47 "How many Eden Warp Units are you starting with?")
48
49var end_edens = flag.Int("end_edens", 0,
50 "How many Eden Warp Units would you like to keep (not use)?")
51
52var cloak = flag.Bool("cloak", false,
53 "Make sure to end with a Device of Cloaking")
54
e9ff66cf 55var drones = flag.Int("drones", 0, "Buy this many Fighter Drones")
c45c1bca 56
e9ff66cf 57var batteries = flag.Int("batteries", 0, "Buy this many Shield Batterys")
c45c1bca 58
76db1b3c
SW
59var drone_price = flag.Int("drone_price", 0, "Today's Fighter Drone price")
60
61var battery_price = flag.Int("battery_price", 0, "Today's Shield Battery price")
62
c45c1bca
SW
63var visit_string = flag.String("visit", "",
64 "A comma-separated list of planets to make sure to visit")
65
42f6427c
SW
66var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file")
67
68
69var visit_cache []string
c45c1bca 70func visit() []string {
42f6427c
SW
71 if visit_cache == nil {
72 if *visit_string == "" {
73 return nil
74 }
75 visit_cache = strings.Split(*visit_string, ",")
e346cb37 76 }
42f6427c 77 return visit_cache
c45c1bca
SW
78}
79
42f6427c 80var flight_plan_cache []string
e346cb37 81func flight_plan() []string {
42f6427c
SW
82 if flight_plan_cache == nil {
83 if *flight_plan_string == "" {
84 return nil
85 }
86 flight_plan_cache = strings.Split(*flight_plan_string, ",")
e346cb37 87 }
42f6427c 88 return flight_plan_cache
e346cb37
SW
89}
90
42f6427c 91var end_cache map[string]bool
1c1ede68 92func end() map[string]bool {
42f6427c
SW
93 if end_cache == nil {
94 if *end_string == "" {
95 return nil
96 }
97 m := make(map[string]bool)
98 for _, p := range strings.Split(*end_string, ",") {
99 m[p] = true
100 }
101 end_cache = m
1c1ede68 102 }
42f6427c 103 return end_cache
1c1ede68
SW
104}
105
9b3b3d9a 106type Commodity struct {
9b3b3d9a
SW
107 BasePrice int
108 CanSell bool
109 Limit int
110}
12bc2cd7 111type Planet struct {
12bc2cd7 112 BeaconOn bool
370d1984 113 Private bool
12bc2cd7
SW
114 /* Use relative prices rather than absolute prices because you
115 can get relative prices without traveling to each planet. */
0e94bdac 116 RelativePrices map[string]int
12bc2cd7 117}
d07f3caa 118type planet_data struct {
0e94bdac
SW
119 Commodities map[string]Commodity
120 Planets map[string]Planet
e7e4bc13
SW
121 p2i, c2i map[string]int // Generated; not read from file
122 i2p, i2c []string // Generated; not read from file
d07f3caa
SW
123}
124
125func ReadData() (data planet_data) {
c45c1bca 126 f, err := os.Open(*planet_data_file)
d07f3caa
SW
127 if err != nil {
128 panic(err)
129 }
130 defer f.Close()
131 err = json.NewDecoder(f).Decode(&data)
132 if err != nil {
133 panic(err)
134 }
135 return
136}
137
c45c1bca
SW
138/* This program operates by filling in a state table representing the best
139 * possible trips you could make; the ones that makes you the most money.
140 * This is feasible because we don't look at all the possible trips.
141 * We define a list of things that are germane to this game and then only
142 * consider the best outcome in each possible game state.
143 *
144 * Each cell in the table represents a state in the game. In each cell,
145 * we track two things: 1. the most money you could possibly have while in
146 * that state and 2. one possible way to get into that state with that
147 * amount of money.
148 *
149 * A basic analysis can be done with a two-dimensional table: location and
150 * fuel. planeteer-1.0 used this two-dimensional table. This version
151 * adds features mostly by adding dimensions to this table.
152 *
153 * Note that the sizes of each dimension are data driven. Many dimensions
154 * collapse to one possible value (ie, disappear) if the corresponding
155 * feature is not enabled.
e7e4bc13
SW
156 *
157 * The order of the dimensions in the list of constants below determines
158 * their layout in RAM. The cargo-based 'dimensions' are not completely
159 * independent -- some combinations are illegal and not used. They are
160 * handled as three dimensions rather than one for simplicity. Placing
161 * these dimensions first causes the unused cells in the table to be
162 * grouped together in large blocks. This keeps them from polluting
0372f045
SW
163 * cache lines, and if they are large enough, allows the memory manager
164 * to swap out entire pages.
e346cb37
SW
165 *
166 * If the table gets too big to fit in RAM:
167 * * Combine the Edens, Cloaks, and UnusedCargo dimensions. Of the
168 * 24 combinations, only 15 are legal: a 38% savings.
169 * * Reduce the size of the Fuel dimension to 3. We only ever look
170 * backwards 2 units, so just rotate the logical values through
171 * the same 3 physical addresses. This is good for an 82% savings.
172 * * Reduce the size of the Edens dimension from 3 to 2, for the
173 * same reasons as Fuel above. 33% savings.
174 * * Buy more ram. (Just sayin'. It's cheaper than you think.)
175 *
c45c1bca
SW
176 */
177
178// The official list of dimensions:
179const (
0372f045
SW
180 // Name Num Size Description
181 Edens = iota // 1 3 # of Eden warp units (0 - 2 typically)
182 Cloaks // 2 1-2 # of Devices of Cloaking (0 or 1)
183 UnusedCargo // 3 4 # of unused cargo spaces (0 - 3 typically)
184 Fuel // 4 17 Hyper jump power left (0 - 16)
185 Location // 5 26 Location (which planet)
186 Hold // 6 15 Cargo bay contents (a *Commodity or nil)
187 Traded // 7 2 Traded yet?
188 BuyFighters // 8 1-2 Errand: Buy fighter drones
189 BuyShields // 9 1-2 Errand: Buy shield batteries
190 Visit // 10 1-2**N Visit: Stop by these N planets in the route
c45c1bca
SW
191
192 NumDimensions
193)
194
195func bint(b bool) int {
0e94bdac
SW
196 if b {
197 return 1
198 }
c45c1bca
SW
199 return 0
200}
201
202func DimensionSizes(data planet_data) []int {
203 eden_capacity := data.Commodities["Eden Warp Units"].Limit
330093c1
SW
204 if *start_edens > eden_capacity {
205 eden_capacity = *start_edens
206 }
c45c1bca 207 cloak_capacity := bint(*cloak)
64d87250
SW
208 dims := make([]int, NumDimensions)
209 dims[Edens] = eden_capacity + 1
210 dims[Cloaks] = cloak_capacity + 1
211 dims[UnusedCargo] = eden_capacity + cloak_capacity + 1
212 dims[Fuel] = *fuel + 1
213 dims[Location] = len(data.Planets)
c67c206a 214 dims[Hold] = len(data.Commodities) + 1
0372f045 215 dims[Traded] = 2
76db1b3c
SW
216 dims[BuyFighters] = bint(*drones > 0) + 1
217 dims[BuyShields] = bint(*batteries > 0) + 1
64d87250 218 dims[Visit] = 1 << uint(len(visit()))
2f4ed5ca
SW
219
220 // Remind myself to add a line above when adding new dimensions
221 for i, dim := range dims {
222 if dim < 1 {
223 panic(i)
224 }
225 }
c45c1bca
SW
226 return dims
227}
228
229func StateTableSize(dims []int) int {
e346cb37 230 product := 1
c45c1bca 231 for _, size := range dims {
e346cb37 232 product *= size
c45c1bca 233 }
e346cb37 234 return product
c45c1bca
SW
235}
236
237type State struct {
0372f045 238 value, from int32
c45c1bca
SW
239}
240
0372f045
SW
241const CELL_UNINITIALIZED = -2147483647
242const CELL_BEING_EVALUATED = -2147483646
243const CELL_RUBISH = -2147483645
244
245func EncodeIndex(dims, addr []int) int32 {
246 index := int32(addr[0])
e346cb37
SW
247 if addr[0] > dims[0] {
248 panic(0)
249 }
330093c1 250 for i := 1; i < NumDimensions; i++ {
d1ad6058 251 if addr[i] < 0 || addr[i] > dims[i] {
e346cb37
SW
252 panic(i)
253 }
0372f045 254 index = index*int32(dims[i]) + int32(addr[i])
c45c1bca
SW
255 }
256 return index
257}
258
0372f045 259func DecodeIndex(dims []int, index int32) []int {
330093c1
SW
260 addr := make([]int, NumDimensions)
261 for i := NumDimensions - 1; i > 0; i-- {
0372f045
SW
262 addr[i] = int(index) % dims[i]
263 index /= int32(dims[i])
c45c1bca 264 }
0372f045 265 addr[0] = int(index)
c45c1bca
SW
266 return addr
267}
268
0372f045 269func CreateStateTable(data planet_data, dims []int) []State {
330093c1 270 table := make([]State, StateTableSize(dims))
0372f045
SW
271 for i := range table {
272 table[i].value = CELL_UNINITIALIZED
273 }
330093c1
SW
274
275 addr := make([]int, NumDimensions)
276 addr[Fuel] = *fuel
277 addr[Edens] = *start_edens
278 addr[Location] = data.p2i[*start]
0372f045
SW
279 addr[Traded] = 1
280 table[EncodeIndex(dims, addr)].value = int32(*funds)
330093c1
SW
281
282 return table
e346cb37
SW
283}
284
0372f045
SW
285/* CellValue fills in the one cell at address addr by looking at all
286 * the possible ways to reach this cell and selecting the best one. */
330093c1 287
0372f045
SW
288func Consider(data planet_data, dims []int, table []State, there []int, value_difference int, best_value *int32, best_source []int) {
289 there_value := CellValue(data, dims, table, there)
290 if value_difference < 0 && int32(-value_difference) > there_value {
291 /* Can't afford this transition */
292 return
293 }
294 possible_value := there_value + int32(value_difference)
295 if possible_value > *best_value {
296 *best_value = possible_value
297 copy(best_source, there)
330093c1
SW
298 }
299}
300
0372f045
SW
301var cell_filled_count int
302func CellValue(data planet_data, dims []int, table []State, addr []int) int32 {
e346cb37 303 my_index := EncodeIndex(dims, addr)
0372f045
SW
304 if table[my_index].value == CELL_BEING_EVALUATED {
305 panic("Circular dependency")
306 }
307 if table[my_index].value != CELL_UNINITIALIZED {
308 return table[my_index].value
309 }
310 table[my_index].value = CELL_BEING_EVALUATED
311
312 best_value := int32(CELL_RUBISH)
313 best_source := make([]int, NumDimensions)
e346cb37
SW
314 other := make([]int, NumDimensions)
315 copy(other, addr)
0372f045 316 planet := data.i2p[addr[Location]]
e346cb37 317
0372f045
SW
318 /* Travel here */
319 if addr[Traded] == 0 { /* Can't have traded immediately after traveling. */
320 other[Traded] = 1 /* Travel from states that have done trading. */
321
322 /* Travel here via a 2-fuel unit jump */
323 if addr[Fuel]+2 < dims[Fuel] {
324 other[Fuel] = addr[Fuel] + 2
325 hole_index := (dims[Fuel] - 1) - (addr[Fuel] + 2)
326 if hole_index >= len(flight_plan()) || addr[Location] != data.p2i[flight_plan()[hole_index]] {
327 for other[Location] = 0; other[Location] < dims[Location]; other[Location]++ {
328 if data.Planets[data.i2p[addr[Location]]].BeaconOn {
329 Consider(data, dims, table, other, 0, &best_value, best_source)
330 }
331 }
beb45aca 332 }
0372f045
SW
333 other[Location] = addr[Location]
334 other[Fuel] = addr[Fuel]
e346cb37 335 }
e346cb37 336
0372f045
SW
337 /* Travel here via a 1-fuel unit jump (a hyper hole) */
338 if addr[Fuel]+1 < dims[Fuel] {
339 hole_index := (dims[Fuel] - 1) - (addr[Fuel] + 1)
340 if hole_index < len(flight_plan()) && addr[Location] == data.p2i[flight_plan()[hole_index]] {
341 other[Fuel] = addr[Fuel] + 1
342 for other[Location] = 0; other[Location] < dims[Location]; other[Location]++ {
343 Consider(data, dims, table, other, 0, &best_value, best_source)
344 }
345 other[Location] = addr[Location]
346 other[Fuel] = addr[Fuel]
7b5d9d13 347 }
e346cb37 348 }
e346cb37 349
0372f045
SW
350 /* Travel here via Eden Warp Unit */
351 if addr[Edens]+1 < dims[Edens] && addr[UnusedCargo] > 1 {
352 _, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Eden Warp Units"]
353 if !available {
354 other[Edens] = addr[Edens] + 1
355 if other[Hold] != 0 {
356 other[UnusedCargo] = addr[UnusedCargo] - 1
357 }
358 for other[Location] = 0; other[Location] < dims[Location]; other[Location]++ {
359 Consider(data, dims, table, other, 0, &best_value, best_source)
360 }
361 other[Location] = addr[Location]
362 other[UnusedCargo] = addr[UnusedCargo]
363 other[Edens] = addr[Edens]
0c27c344 364 }
330093c1 365 }
0372f045 366 other[Traded] = addr[Traded]
330093c1 367 }
330093c1 368
0372f045
SW
369 /* Trade */
370 if addr[Traded] == 1 {
371 other[Traded] = 0
330093c1 372
0372f045
SW
373 /* Consider not trading */
374 Consider(data, dims, table, other, 0, &best_value, best_source)
330093c1 375
0372f045 376 if !data.Planets[data.i2p[addr[Location]]].Private {
330093c1 377
0372f045
SW
378 /* Sell */
379 if addr[Hold] == 0 && addr[UnusedCargo] == 0 {
380 for other[Hold] = 0; other[Hold] < dims[Hold]; other[Hold]++ {
381 commodity := data.i2c[other[Hold]]
382 if !data.Commodities[commodity].CanSell {
383 continue
384 }
385 relative_price, available := data.Planets[planet].RelativePrices[commodity]
386 if !available {
387 // TODO: Dump cargo
388 continue
389 }
390 base_price := data.Commodities[commodity].BasePrice
391 absolute_price := float64(base_price) * float64(relative_price) / 100.0
392 sell_price := int(absolute_price * 0.9)
393
394 for other[UnusedCargo] = 0; other[UnusedCargo] < dims[UnusedCargo]; other[UnusedCargo]++ {
395 quantity := *hold - (other[UnusedCargo] + other[Cloaks] + other[Edens])
396 sale_value := quantity * sell_price
397 Consider(data, dims, table, other, sale_value, &best_value, best_source)
398 }
399 }
400 other[UnusedCargo] = addr[UnusedCargo]
401 other[Hold] = addr[Hold]
402 }
330093c1 403
0372f045
SW
404 /* Buy */
405 other[Traded] = addr[Traded] /* Buy after selling */
406 if addr[Hold] != 0 {
407 commodity := data.i2c[addr[Hold]]
408 if data.Commodities[commodity].CanSell {
409 relative_price, available := data.Planets[planet].RelativePrices[commodity]
410 if available {
411 base_price := data.Commodities[commodity].BasePrice
412 absolute_price := int(float64(base_price) * float64(relative_price) / 100.0)
413 quantity := *hold - (addr[UnusedCargo] + addr[Cloaks] + addr[Edens])
414 total_price := quantity * absolute_price
415 other[Hold] = 0
416 other[UnusedCargo] = 0
417 Consider(data, dims, table, other, -total_price, &best_value, best_source)
418 other[UnusedCargo] = addr[UnusedCargo]
419 other[Hold] = addr[Hold]
420 }
421 }
422 }
423 }
424 }
d16f3322 425
544108c4 426 /* Buy a Device of Cloaking */
ada59973
SW
427 if addr[Cloaks] == 1 && addr[UnusedCargo] < dims[UnusedCargo]-1 {
428 relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Device Of Cloakings"]
429 if available {
430 absolute_price := int(float64(data.Commodities["Device Of Cloakings"].BasePrice) * float64(relative_price) / 100.0)
431 other[Cloaks] = 0
f800f732
SW
432 if other[Hold] != 0 {
433 other[UnusedCargo] = addr[UnusedCargo] + 1
434 }
0372f045 435 Consider(data, dims, table, other, -absolute_price, &best_value, best_source)
ada59973
SW
436 other[UnusedCargo] = addr[UnusedCargo]
437 other[Cloaks] = addr[Cloaks]
438 }
439 }
76db1b3c 440
544108c4 441 /* Buy Fighter Drones */
76db1b3c
SW
442 if addr[BuyFighters] == 1 {
443 relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Fighter Drones"]
444 if available {
445 absolute_price := int(float64(data.Commodities["Fighter Drones"].BasePrice) * float64(relative_price) / 100.0)
446 other[BuyFighters] = 0
0372f045 447 Consider(data, dims, table, other, -absolute_price * *drones, &best_value, best_source)
76db1b3c
SW
448 other[BuyFighters] = addr[BuyFighters]
449 }
450 }
451
544108c4 452 /* Buy Shield Batteries */
76db1b3c
SW
453 if addr[BuyShields] == 1 {
454 relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Shield Batterys"]
455 if available {
456 absolute_price := int(float64(data.Commodities["Shield Batterys"].BasePrice) * float64(relative_price) / 100.0)
457 other[BuyShields] = 0
0372f045 458 Consider(data, dims, table, other, -absolute_price * *batteries, &best_value, best_source)
76db1b3c
SW
459 other[BuyShields] = addr[BuyShields]
460 }
461 }
462
544108c4 463 /* Visit this planet */
4d7362df
SW
464 var i uint
465 for i = 0; i < uint(len(visit())); i++ {
466 if addr[Visit] & (1 << i) != 0 && visit()[i] == data.i2p[addr[Location]] {
467 other[Visit] = addr[Visit] & ^(1 << i)
0372f045 468 Consider(data, dims, table, other, 0, &best_value, best_source)
4d7362df
SW
469 }
470 }
471 other[Visit] = addr[Visit]
76db1b3c 472
d16f3322
SW
473 /* Buy Eden warp units */
474 eden_limit := data.Commodities["Eden Warp Units"].Limit
475 if addr[Edens] > 0 && addr[Edens] <= eden_limit {
476 relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Eden Warp Units"]
477 if available {
478 absolute_price := int(float64(data.Commodities["Eden Warp Units"].BasePrice) * float64(relative_price) / 100.0)
479 for quantity := addr[Edens]; quantity > 0; quantity-- {
480 other[Edens] = addr[Edens] - quantity
481 if addr[Hold] != 0 {
482 other[UnusedCargo] = addr[UnusedCargo] + quantity
483 }
484 if other[UnusedCargo] < dims[UnusedCargo] {
0372f045 485 Consider(data, dims, table, other, -absolute_price * quantity, &best_value, best_source)
d16f3322
SW
486 }
487 }
488 other[Edens] = addr[Edens]
489 other[UnusedCargo] = addr[UnusedCargo]
490 }
491 }
d16f3322 492
0372f045
SW
493 if table[my_index].value != CELL_BEING_EVALUATED {
494 panic(my_index)
e7e4bc13 495 }
0372f045
SW
496 table[my_index].value = best_value
497 table[my_index].from = EncodeIndex(dims, best_source)
330093c1 498
0372f045
SW
499 cell_filled_count ++
500 if cell_filled_count & 0xff == 0 {
501 print(fmt.Sprintf("\r%3.1f%%", 100*float64(cell_filled_count)/float64(StateTableSize(dims))))
fcdc120b 502 }
e7e4bc13 503
0372f045 504 return table[my_index].value
e7e4bc13
SW
505}
506
0372f045 507func FindBestState(data planet_data, dims []int, table []State) int32 {
ad4de13f
SW
508 addr := make([]int, NumDimensions)
509 addr[Edens] = *end_edens
510 addr[Cloaks] = dims[Cloaks] - 1
76db1b3c
SW
511 addr[BuyFighters] = dims[BuyFighters] - 1
512 addr[BuyShields] = dims[BuyShields] - 1
ad4de13f 513 addr[Visit] = dims[Visit] - 1
0372f045 514 addr[Traded] = 1
ddef04ab 515 // Hold and UnusedCargo left at 0
0372f045
SW
516 max_index := int32(-1)
517 max_value := int32(0)
ddef04ab
SW
518 for addr[Fuel] = 0; addr[Fuel] < 2; addr[Fuel]++ {
519 for addr[Location] = 0; addr[Location] < dims[Location]; addr[Location]++ {
520 if len(end()) == 0 || end()[data.i2p[addr[Location]]] {
521 index := EncodeIndex(dims, addr)
0372f045
SW
522 value := CellValue(data, dims, table, addr)
523 if value > max_value {
524 max_value = value
ddef04ab
SW
525 max_index = index
526 }
809e65f4 527 }
ad4de13f
SW
528 }
529 }
530 return max_index
531}
532
0372f045 533func Commas(n int32) (s string) {
9eafb7a4
SW
534 r := n % 1000
535 n /= 1000
536 for n > 0 {
537 s = fmt.Sprintf(",%03d", r) + s
538 r = n % 1000
539 n /= 1000
540 }
541 s = fmt.Sprint(r) + s
542 return
543}
544
0372f045 545func DescribePath(data planet_data, dims []int, table []State, start int32) (description []string) {
2f4a9ae8 546 for index := start; index > 0 && table[index].from > 0; index = table[index].from {
e4a1b48f 547 var line string
2f4a9ae8
SW
548 addr := DecodeIndex(dims, index)
549 prev := DecodeIndex(dims, table[index].from)
e4a1b48f 550 if addr[Fuel] != prev[Fuel] {
2f4a9ae8
SW
551 from := data.i2p[prev[Location]]
552 to := data.i2p[addr[Location]]
63b4dbbc 553 line += fmt.Sprintf("Jump from %v to %v (%v hyper jump units)", from, to, prev[Fuel]-addr[Fuel])
e4a1b48f 554 }
d16f3322 555 if addr[Edens] == prev[Edens] - 1 {
e4a1b48f
SW
556 from := data.i2p[prev[Location]]
557 to := data.i2p[addr[Location]]
558 line += fmt.Sprintf("Eden warp from %v to %v", from, to)
2f4a9ae8
SW
559 }
560 if addr[Hold] != prev[Hold] {
561 if addr[Hold] == 0 {
562 quantity := *hold - (prev[UnusedCargo] + prev[Edens] + prev[Cloaks])
e4a1b48f 563 line += fmt.Sprintf("Sell %v %v", quantity, data.i2c[prev[Hold]])
2f4a9ae8
SW
564 } else if prev[Hold] == 0 {
565 quantity := *hold - (addr[UnusedCargo] + addr[Edens] + addr[Cloaks])
e4a1b48f 566 line += fmt.Sprintf("Buy %v %v", quantity, data.i2c[addr[Hold]])
2f4a9ae8
SW
567 } else {
568 panic("Switched cargo?")
569 }
570
571 }
f800f732
SW
572 if addr[Cloaks] == 1 && prev[Cloaks] == 0 {
573 // TODO: Dump cloaks, convert from cargo?
e4a1b48f
SW
574 line += "Buy a Cloak"
575 }
d16f3322 576 if addr[Edens] > prev[Edens] {
e4a1b48f
SW
577 line += fmt.Sprint("Buy ", addr[Edens] - prev[Edens], " Eden Warp Units")
578 }
76db1b3c
SW
579 if addr[BuyShields] == 1 && prev[BuyShields] == 0 {
580 line += fmt.Sprint("Buy ", *batteries, " Shield Batterys")
581 }
582 if addr[BuyFighters] == 1 && prev[BuyFighters] == 0 {
583 line += fmt.Sprint("Buy ", *drones, " Fighter Drones")
584 }
4d7362df
SW
585 if addr[Visit] != prev[Visit] {
586 // TODO: verify that the bit chat changed is addr[Location]
587 line += fmt.Sprint("Visit ", data.i2p[addr[Location]])
588 }
0372f045
SW
589 if line == "" && addr[Hold] == prev[Hold] && addr[Traded] != prev[Traded] {
590 // The Traded dimension is for housekeeping. It doesn't directly
591 // correspond to in-game actions, so don't report transitions.
592 continue
593 }
e4a1b48f
SW
594 if line == "" {
595 line = fmt.Sprint(prev, " -> ", addr)
f800f732 596 }
e4a1b48f 597 description = append(description, fmt.Sprintf("%13v ", Commas(table[index].value)) + line)
2f4a9ae8
SW
598 }
599 return
600}
601
c45c1bca 602// (Example of a use case for generics in Go)
e7e4bc13 603func IndexPlanets(m *map[string]Planet, start_at int) (map[string]int, []string) {
a1f10151
SW
604 e2i := make(map[string]int, len(*m)+start_at)
605 i2e := make([]string, len(*m)+start_at)
e7e4bc13 606 i := start_at
c45c1bca 607 for e := range *m {
e7e4bc13
SW
608 e2i[e] = i
609 i2e[i] = e
c45c1bca
SW
610 i++
611 }
e7e4bc13 612 return e2i, i2e
c45c1bca 613}
e7e4bc13 614func IndexCommodities(m *map[string]Commodity, start_at int) (map[string]int, []string) {
a1f10151
SW
615 e2i := make(map[string]int, len(*m)+start_at)
616 i2e := make([]string, len(*m)+start_at)
e7e4bc13 617 i := start_at
c45c1bca 618 for e := range *m {
e7e4bc13
SW
619 e2i[e] = i
620 i2e[i] = e
c45c1bca
SW
621 i++
622 }
e7e4bc13 623 return e2i, i2e
c45c1bca
SW
624}
625
d07f3caa
SW
626func main() {
627 flag.Parse()
42f6427c
SW
628 if *cpuprofile != "" {
629 f, err := os.Create(*cpuprofile)
630 if err != nil {
631 panic(err)
632 }
633 pprof.StartCPUProfile(f)
634 defer pprof.StopCPUProfile()
635 }
d07f3caa 636 data := ReadData()
76db1b3c
SW
637 if *drone_price > 0 {
638 temp := data.Commodities["Fighter Drones"]
639 temp.BasePrice = *drone_price
640 data.Commodities["Fighter Drones"] = temp
641 }
642 if *battery_price > 0 {
643 temp := data.Commodities["Shield Batterys"]
644 temp.BasePrice = *battery_price
645 data.Commodities["Shield Batterys"] = temp
646 }
e7e4bc13
SW
647 data.p2i, data.i2p = IndexPlanets(&data.Planets, 0)
648 data.c2i, data.i2c = IndexCommodities(&data.Commodities, 1)
c45c1bca 649 dims := DimensionSizes(data)
0372f045 650 table := CreateStateTable(data, dims)
ad4de13f 651 best := FindBestState(data, dims, table)
0372f045 652 print("\n")
ada59973
SW
653 if best == -1 {
654 print("Cannot acheive success criteria\n")
655 } else {
ada59973
SW
656 description := DescribePath(data, dims, table, best)
657 for i := len(description) - 1; i >= 0; i-- {
658 fmt.Println(description[i])
659 }
2f4a9ae8 660 }
d07f3caa 661}