]>
Commit | Line | Data |
---|---|---|
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, version 3. | |
7 | * | |
8 | * This program is distributed in the hope that it will be useful, | |
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
11 | * GNU Affero General Public License for more details. | |
12 | * | |
13 | * You should have received a copy of the GNU Affero General Public License | |
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
15 | */ | |
16 | ||
17 | package main | |
18 | ||
19 | import "flag" | |
20 | import "fmt" | |
21 | import "encoding/json" | |
22 | import "os" | |
23 | import "runtime/pprof" | |
24 | import "strings" | |
25 | ||
26 | var funds = flag.Int("funds", 0, | |
27 | "Starting funds") | |
28 | ||
29 | var start = flag.String("start", "", | |
30 | "The planet to start at") | |
31 | ||
32 | var flight_plan_string = flag.String("flight_plan", "", | |
33 | "Your hyper-holes for the day, comma-separated.") | |
34 | ||
35 | var end_string = flag.String("end", "", | |
36 | "A comma-separated list of acceptable ending planets.") | |
37 | ||
38 | var planet_data_file = flag.String("planet_data_file", "planet-data", | |
39 | "The file to read planet data from") | |
40 | ||
41 | var fuel = flag.Int("fuel", 16, "Hyper Jump power left") | |
42 | ||
43 | var hold = flag.Int("hold", 300, "Size of your cargo hold") | |
44 | ||
45 | var start_hold = flag.String("start_hold", "", "Start with a hold full of cargo") | |
46 | ||
47 | var start_edens = flag.Int("start_edens", 0, | |
48 | "How many Eden Warp Units are you starting with?") | |
49 | ||
50 | var end_edens = flag.Int("end_edens", 0, | |
51 | "How many Eden Warp Units would you like to keep (not use)?") | |
52 | ||
53 | var cloak = flag.Bool("cloak", false, | |
54 | "Make sure to end with a Device of Cloaking") | |
55 | ||
56 | var drones = flag.Int("drones", 0, "Buy this many Fighter Drones") | |
57 | ||
58 | var batteries = flag.Int("batteries", 0, "Buy this many Shield Batterys") | |
59 | ||
60 | var drone_price = flag.Int("drone_price", 0, "Today's Fighter Drone price") | |
61 | ||
62 | var battery_price = flag.Int("battery_price", 0, "Today's Shield Battery price") | |
63 | ||
64 | var visit_string = flag.String("visit", "", | |
65 | "A comma-separated list of planets to make sure to visit") | |
66 | ||
67 | var tomorrow_weight = flag.Float64("tomorrow_weight", 1.0, | |
68 | "Weight for the expected value of tomorrow's trading. 0.0 - 1.0") | |
69 | ||
70 | var extra_stats = flag.Bool("extra_stats", true, | |
71 | "Show additional information of possible interest") | |
72 | ||
73 | var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file") | |
74 | ||
75 | var visit_cache []string | |
76 | ||
77 | func visit() []string { | |
78 | if visit_cache == nil { | |
79 | if *visit_string == "" { | |
80 | return nil | |
81 | } | |
82 | visit_cache = strings.Split(*visit_string, ",") | |
83 | } | |
84 | return visit_cache | |
85 | } | |
86 | ||
87 | var flight_plan_cache []string | |
88 | ||
89 | func flight_plan() []string { | |
90 | if flight_plan_cache == nil { | |
91 | if *flight_plan_string == "" { | |
92 | return nil | |
93 | } | |
94 | flight_plan_cache = strings.Split(*flight_plan_string, ",") | |
95 | } | |
96 | return flight_plan_cache | |
97 | } | |
98 | ||
99 | var end_cache map[string]bool | |
100 | ||
101 | func end() map[string]bool { | |
102 | if end_cache == nil { | |
103 | if *end_string == "" { | |
104 | return nil | |
105 | } | |
106 | m := make(map[string]bool) | |
107 | for _, p := range strings.Split(*end_string, ",") { | |
108 | m[p] = true | |
109 | } | |
110 | end_cache = m | |
111 | } | |
112 | return end_cache | |
113 | } | |
114 | ||
115 | type Commodity struct { | |
116 | BasePrice int | |
117 | CanSell bool | |
118 | Limit int | |
119 | } | |
120 | type Planet struct { | |
121 | BeaconOn bool | |
122 | Private bool | |
123 | TomorrowValue int | |
124 | /* Use relative prices rather than absolute prices because you | |
125 | can get relative prices without traveling to each planet. */ | |
126 | RelativePrices map[string]int | |
127 | } | |
128 | type planet_data struct { | |
129 | Commodities map[string]Commodity | |
130 | Planets map[string]Planet | |
131 | p2i, c2i map[string]int // Generated; not read from file | |
132 | i2p, i2c []string // Generated; not read from file | |
133 | } | |
134 | ||
135 | func json_slurp(filename string, receptacle interface{}) error { | |
136 | f, err := os.Open(filename) | |
137 | if err != nil { | |
138 | return err | |
139 | } | |
140 | defer f.Close() | |
141 | err = json.NewDecoder(f).Decode(receptacle) | |
142 | if err != nil { | |
143 | return err | |
144 | } | |
145 | return nil | |
146 | } | |
147 | ||
148 | func ReadData() planet_data { | |
149 | var data planet_data | |
150 | err := json_slurp(*planet_data_file, &data) | |
151 | if err != nil { | |
152 | panic(err) | |
153 | } | |
154 | return data | |
155 | } | |
156 | ||
157 | /* This program operates by filling in a state table representing the best | |
158 | * possible trips you could make; the ones that makes you the most money. | |
159 | * This is feasible because we don't look at all the possible trips. | |
160 | * We define a list of things that are germane to this game and then only | |
161 | * consider the best outcome in each possible game state. | |
162 | * | |
163 | * Each cell in the table represents a state in the game. In each cell, | |
164 | * we track two things: 1. the most money you could possibly have while in | |
165 | * that state and 2. one possible way to get into that state with that | |
166 | * amount of money. | |
167 | * | |
168 | * A basic analysis can be done with a two-dimensional table: location and | |
169 | * fuel. planeteer-1.0 used this two-dimensional table. This version | |
170 | * adds features mostly by adding dimensions to this table. | |
171 | * | |
172 | * Note that the sizes of each dimension are data driven. Many dimensions | |
173 | * collapse to one possible value (ie, disappear) if the corresponding | |
174 | * feature is not enabled. | |
175 | * | |
176 | * The order of the dimensions in the list of constants below determines | |
177 | * their layout in RAM. The cargo-based 'dimensions' are not completely | |
178 | * independent -- some combinations are illegal and not used. They are | |
179 | * handled as three dimensions rather than one for simplicity. Placing | |
180 | * these dimensions first causes the unused cells in the table to be | |
181 | * grouped together in large blocks. This keeps the unused cells from | |
182 | * polluting cache lines, and if the spans of unused cells are large | |
183 | * enough, allows the memory manager to swap out entire pages. | |
184 | * | |
185 | * If the table gets too big to fit in RAM: | |
186 | * * Combine the Edens, Cloaks, and UnusedCargo dimensions. Of the | |
187 | * 24 combinations, only 15 are legal: a 38% savings. | |
188 | * * Reduce the size of the Fuel dimension to 3. Explicit iteration | |
189 | * only ever needs to look backwards 2 units, so the logical values | |
190 | * can rotate through the same 3 physical addresses. This would be | |
191 | * good for an 82% savings. Note that explicit iteration went away | |
192 | * in 0372f045. | |
193 | * * Reduce the size of the Edens dimension from 3 to 2, for the | |
194 | * same reasons as Fuel above. 33% savings. | |
195 | * * Buy more ram. (Just sayin'. It's cheaper than you think.) | |
196 | * | |
197 | */ | |
198 | ||
199 | // The official list of dimensions: | |
200 | const ( | |
201 | // Name Num Size Description | |
202 | Edens = iota // 1 3 # of Eden warp units (0 - 2 typically) | |
203 | Cloaks // 2 1-2 # of Devices of Cloaking (0 or 1) | |
204 | UnusedCargo // 3 4 # of unused cargo spaces (0 - 3 typically) | |
205 | Fuel // 4 17 Hyper jump power left (0 - 16) | |
206 | Location // 5 26 Location (which planet) | |
207 | Hold // 6 15 Cargo bay contents (a *Commodity or nil) | |
208 | Traded // 7 2 Traded yet? | |
209 | BuyFighters // 8 1-2 Errand: Buy fighter drones | |
210 | BuyShields // 9 1-2 Errand: Buy shield batteries | |
211 | Visit // 10 1-2**N Visit: Stop by these N planets in the route | |
212 | ||
213 | NumDimensions | |
214 | ) | |
215 | ||
216 | func bint(b bool) int { | |
217 | if b { | |
218 | return 1 | |
219 | } | |
220 | return 0 | |
221 | } | |
222 | ||
223 | func DimensionSizes(data planet_data) LogicalIndex { | |
224 | eden_capacity := data.Commodities["Eden Warp Units"].Limit | |
225 | if *start_edens > eden_capacity { | |
226 | eden_capacity = *start_edens | |
227 | } | |
228 | cloak_capacity := bint(*cloak) | |
229 | dims := make(LogicalIndex, NumDimensions) | |
230 | dims[Edens] = eden_capacity + 1 | |
231 | dims[Cloaks] = cloak_capacity + 1 | |
232 | dims[UnusedCargo] = eden_capacity + cloak_capacity + 1 | |
233 | dims[Fuel] = *fuel + 1 | |
234 | dims[Location] = len(data.Planets) | |
235 | dims[Hold] = len(data.Commodities) + 1 | |
236 | dims[Traded] = 2 | |
237 | dims[BuyFighters] = bint(*drones > 0) + 1 | |
238 | dims[BuyShields] = bint(*batteries > 0) + 1 | |
239 | dims[Visit] = 1 << uint(len(visit())) | |
240 | ||
241 | // Remind myself to add a line above when adding new dimensions | |
242 | for i, dim := range dims { | |
243 | if dim < 1 { | |
244 | panic(i) | |
245 | } | |
246 | } | |
247 | return dims | |
248 | } | |
249 | ||
250 | type Value int32 | |
251 | type PhysicalIndex int32 | |
252 | type LogicalIndex []int | |
253 | ||
254 | func StateTableSize(dims LogicalIndex) int { | |
255 | product := 1 | |
256 | for _, size := range dims { | |
257 | product *= size | |
258 | } | |
259 | return product | |
260 | } | |
261 | ||
262 | type State struct { | |
263 | value Value | |
264 | from PhysicalIndex | |
265 | } | |
266 | ||
267 | const ( | |
268 | FROM_ROOT = -2147483647 + iota | |
269 | FROM_UNINITIALIZED | |
270 | VALUE_UNINITIALIZED | |
271 | VALUE_BEING_EVALUATED | |
272 | VALUE_RUBISH | |
273 | ) | |
274 | ||
275 | func EncodeIndex(dims, addr LogicalIndex) PhysicalIndex { | |
276 | index := addr[0] | |
277 | if addr[0] > dims[0] { | |
278 | panic(0) | |
279 | } | |
280 | for i := 1; i < NumDimensions; i++ { | |
281 | if addr[i] < 0 || addr[i] >= dims[i] { | |
282 | panic(i) | |
283 | } | |
284 | index = index*dims[i] + addr[i] | |
285 | } | |
286 | return PhysicalIndex(index) | |
287 | } | |
288 | ||
289 | func DecodeIndex(dims LogicalIndex, index PhysicalIndex) LogicalIndex { | |
290 | scratch := int(index) | |
291 | addr := make(LogicalIndex, NumDimensions) | |
292 | for i := NumDimensions - 1; i > 0; i-- { | |
293 | addr[i] = scratch % dims[i] | |
294 | scratch /= dims[i] | |
295 | } | |
296 | addr[0] = scratch | |
297 | return addr | |
298 | } | |
299 | ||
300 | func PlanetIndex(data planet_data, name string) int { | |
301 | index, ok := data.p2i[name] | |
302 | if !ok { | |
303 | panic("Unknown planet " + name) | |
304 | } | |
305 | return index | |
306 | } | |
307 | ||
308 | func CommodityIndex(data planet_data, name string) int { | |
309 | index, ok := data.c2i[name] | |
310 | if !ok { | |
311 | panic("Unknown commodity " + name) | |
312 | } | |
313 | return index | |
314 | } | |
315 | ||
316 | func CreateStateTable(data planet_data, dims LogicalIndex) []State { | |
317 | table := make([]State, StateTableSize(dims)) | |
318 | for i := range table { | |
319 | table[i].value = VALUE_UNINITIALIZED | |
320 | table[i].from = FROM_UNINITIALIZED | |
321 | } | |
322 | ||
323 | addr := make(LogicalIndex, NumDimensions) | |
324 | addr[Fuel] = *fuel | |
325 | addr[Edens] = *start_edens | |
326 | addr[Location] = PlanetIndex(data, *start) | |
327 | if *start_hold != "" { | |
328 | addr[Hold] = CommodityIndex(data, *start_hold) | |
329 | } | |
330 | start_index := EncodeIndex(dims, addr) | |
331 | table[start_index].value = Value(*funds) | |
332 | table[start_index].from = FROM_ROOT | |
333 | ||
334 | return table | |
335 | } | |
336 | ||
337 | /* CellValue fills in the one cell at address addr by looking at all | |
338 | * the possible ways to reach this cell and selecting the best one. */ | |
339 | ||
340 | func Consider(data planet_data, dims LogicalIndex, table []State, there LogicalIndex, value_difference int, best_value *Value, best_source LogicalIndex) { | |
341 | there_value := CellValue(data, dims, table, there) | |
342 | if value_difference < 0 && Value(-value_difference) > there_value { | |
343 | /* Can't afford this transition */ | |
344 | return | |
345 | } | |
346 | possible_value := there_value + Value(value_difference) | |
347 | if possible_value > *best_value { | |
348 | *best_value = possible_value | |
349 | copy(best_source, there) | |
350 | } | |
351 | } | |
352 | ||
353 | var cell_filled_count int | |
354 | ||
355 | func CellValue(data planet_data, dims LogicalIndex, table []State, addr LogicalIndex) Value { | |
356 | my_index := EncodeIndex(dims, addr) | |
357 | if table[my_index].value == VALUE_BEING_EVALUATED { | |
358 | panic("Circular dependency") | |
359 | } | |
360 | if table[my_index].value != VALUE_UNINITIALIZED { | |
361 | return table[my_index].value | |
362 | } | |
363 | table[my_index].value = VALUE_BEING_EVALUATED | |
364 | ||
365 | best_value := Value(VALUE_RUBISH) | |
366 | best_source := make(LogicalIndex, NumDimensions) | |
367 | other := make(LogicalIndex, NumDimensions) | |
368 | copy(other, addr) | |
369 | planet := data.i2p[addr[Location]] | |
370 | ||
371 | /* Travel here */ | |
372 | if addr[Traded] == 0 { /* Can't have traded immediately after traveling. */ | |
373 | other[Traded] = 1 /* Travel from states that have done trading. */ | |
374 | ||
375 | /* Travel here via a 2-fuel unit jump */ | |
376 | if data.Planets[data.i2p[addr[Location]]].BeaconOn && addr[Fuel]+2 < dims[Fuel] { | |
377 | other[Fuel] = addr[Fuel] + 2 | |
378 | hole_index := (dims[Fuel] - 1) - (addr[Fuel] + 2) | |
379 | if hole_index >= len(flight_plan()) || addr[Location] != PlanetIndex(data, flight_plan()[hole_index]) { | |
380 | for other[Location] = 0; other[Location] < dims[Location]; other[Location]++ { | |
381 | Consider(data, dims, table, other, 0, &best_value, best_source) | |
382 | } | |
383 | } | |
384 | other[Location] = addr[Location] | |
385 | other[Fuel] = addr[Fuel] | |
386 | } | |
387 | ||
388 | /* Travel here via a 1-fuel unit jump (a hyper hole) */ | |
389 | if addr[Fuel]+1 < dims[Fuel] { | |
390 | hole_index := (dims[Fuel] - 1) - (addr[Fuel] + 1) | |
391 | if hole_index < len(flight_plan()) && addr[Location] == PlanetIndex(data, flight_plan()[hole_index]) { | |
392 | other[Fuel] = addr[Fuel] + 1 | |
393 | for other[Location] = 0; other[Location] < dims[Location]; other[Location]++ { | |
394 | Consider(data, dims, table, other, 0, &best_value, best_source) | |
395 | } | |
396 | other[Location] = addr[Location] | |
397 | other[Fuel] = addr[Fuel] | |
398 | } | |
399 | } | |
400 | ||
401 | /* Travel here via Eden Warp Unit */ | |
402 | if addr[Edens]+1 < dims[Edens] && (addr[Hold] == 0 || addr[UnusedCargo] > 0) { | |
403 | _, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Eden Warp Units"] | |
404 | if !available { | |
405 | other[Edens] = addr[Edens] + 1 | |
406 | if other[Hold] != 0 { | |
407 | other[UnusedCargo] = addr[UnusedCargo] - 1 | |
408 | } | |
409 | for other[Location] = 0; other[Location] < dims[Location]; other[Location]++ { | |
410 | Consider(data, dims, table, other, 0, &best_value, best_source) | |
411 | } | |
412 | other[Location] = addr[Location] | |
413 | other[UnusedCargo] = addr[UnusedCargo] | |
414 | other[Edens] = addr[Edens] | |
415 | } | |
416 | } | |
417 | other[Traded] = addr[Traded] | |
418 | } | |
419 | ||
420 | /* Trade */ | |
421 | if addr[Traded] == 1 { | |
422 | other[Traded] = 0 | |
423 | ||
424 | /* Consider not trading */ | |
425 | Consider(data, dims, table, other, 0, &best_value, best_source) | |
426 | ||
427 | if !data.Planets[data.i2p[addr[Location]]].Private { | |
428 | ||
429 | /* Sell */ | |
430 | if addr[Hold] == 0 && addr[UnusedCargo] == 0 { | |
431 | for other[Hold] = 0; other[Hold] < dims[Hold]; other[Hold]++ { | |
432 | commodity := data.i2c[other[Hold]] | |
433 | if !data.Commodities[commodity].CanSell { | |
434 | continue | |
435 | } | |
436 | relative_price, available := data.Planets[planet].RelativePrices[commodity] | |
437 | if !available { | |
438 | // TODO: Dump cargo | |
439 | continue | |
440 | } | |
441 | base_price := data.Commodities[commodity].BasePrice | |
442 | absolute_price := float64(base_price) * float64(relative_price) / 100.0 | |
443 | sell_price := int(absolute_price * 0.9) | |
444 | ||
445 | for other[UnusedCargo] = 0; other[UnusedCargo] < dims[UnusedCargo]; other[UnusedCargo]++ { | |
446 | quantity := *hold - (other[UnusedCargo] + other[Cloaks] + other[Edens]) | |
447 | sale_value := quantity * sell_price | |
448 | Consider(data, dims, table, other, sale_value, &best_value, best_source) | |
449 | } | |
450 | } | |
451 | other[UnusedCargo] = addr[UnusedCargo] | |
452 | other[Hold] = addr[Hold] | |
453 | } | |
454 | ||
455 | /* Buy */ | |
456 | other[Traded] = addr[Traded] /* Buy after selling */ | |
457 | if addr[Hold] != 0 { | |
458 | commodity := data.i2c[addr[Hold]] | |
459 | if data.Commodities[commodity].CanSell { | |
460 | relative_price, available := data.Planets[planet].RelativePrices[commodity] | |
461 | if available { | |
462 | base_price := data.Commodities[commodity].BasePrice | |
463 | absolute_price := int(float64(base_price) * float64(relative_price) / 100.0) | |
464 | quantity := *hold - (addr[UnusedCargo] + addr[Cloaks] + addr[Edens]) | |
465 | total_price := quantity * absolute_price | |
466 | other[Hold] = 0 | |
467 | other[UnusedCargo] = 0 | |
468 | Consider(data, dims, table, other, -total_price, &best_value, best_source) | |
469 | other[UnusedCargo] = addr[UnusedCargo] | |
470 | other[Hold] = addr[Hold] | |
471 | } | |
472 | } | |
473 | } | |
474 | } | |
475 | other[Traded] = addr[Traded] | |
476 | } | |
477 | ||
478 | /* Buy a Device of Cloaking */ | |
479 | if addr[Cloaks] == 1 && addr[UnusedCargo] < dims[UnusedCargo]-1 { | |
480 | relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Device Of Cloakings"] | |
481 | if available { | |
482 | absolute_price := int(float64(data.Commodities["Device Of Cloakings"].BasePrice) * float64(relative_price) / 100.0) | |
483 | other[Cloaks] = 0 | |
484 | if other[Hold] != 0 { | |
485 | other[UnusedCargo] = addr[UnusedCargo] + 1 | |
486 | } | |
487 | Consider(data, dims, table, other, -absolute_price, &best_value, best_source) | |
488 | other[UnusedCargo] = addr[UnusedCargo] | |
489 | other[Cloaks] = addr[Cloaks] | |
490 | } | |
491 | } | |
492 | ||
493 | /* Buy Fighter Drones */ | |
494 | if addr[BuyFighters] == 1 { | |
495 | relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Fighter Drones"] | |
496 | if available { | |
497 | absolute_price := int(float64(data.Commodities["Fighter Drones"].BasePrice) * float64(relative_price) / 100.0) | |
498 | other[BuyFighters] = 0 | |
499 | Consider(data, dims, table, other, -absolute_price**drones, &best_value, best_source) | |
500 | other[BuyFighters] = addr[BuyFighters] | |
501 | } | |
502 | } | |
503 | ||
504 | /* Buy Shield Batteries */ | |
505 | if addr[BuyShields] == 1 { | |
506 | relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Shield Batterys"] | |
507 | if available { | |
508 | absolute_price := int(float64(data.Commodities["Shield Batterys"].BasePrice) * float64(relative_price) / 100.0) | |
509 | other[BuyShields] = 0 | |
510 | Consider(data, dims, table, other, -absolute_price**batteries, &best_value, best_source) | |
511 | other[BuyShields] = addr[BuyShields] | |
512 | } | |
513 | } | |
514 | ||
515 | /* Visit this planet */ | |
516 | for i := uint(0); i < uint(len(visit())); i++ { | |
517 | if addr[Visit]&(1<<i) != 0 && visit()[i] == data.i2p[addr[Location]] { | |
518 | other[Visit] = addr[Visit] & ^(1 << i) | |
519 | Consider(data, dims, table, other, 0, &best_value, best_source) | |
520 | } | |
521 | } | |
522 | other[Visit] = addr[Visit] | |
523 | ||
524 | /* Buy Eden warp units */ | |
525 | eden_limit := data.Commodities["Eden Warp Units"].Limit | |
526 | if addr[Edens] > 0 && addr[Edens] <= eden_limit { | |
527 | relative_price, available := data.Planets[data.i2p[addr[Location]]].RelativePrices["Eden Warp Units"] | |
528 | if available { | |
529 | absolute_price := int(float64(data.Commodities["Eden Warp Units"].BasePrice) * float64(relative_price) / 100.0) | |
530 | for quantity := addr[Edens]; quantity > 0; quantity-- { | |
531 | other[Edens] = addr[Edens] - quantity | |
532 | if addr[Hold] != 0 { | |
533 | other[UnusedCargo] = addr[UnusedCargo] + quantity | |
534 | } | |
535 | if other[UnusedCargo] < dims[UnusedCargo] { | |
536 | Consider(data, dims, table, other, -absolute_price*quantity, &best_value, best_source) | |
537 | } | |
538 | } | |
539 | other[Edens] = addr[Edens] | |
540 | other[UnusedCargo] = addr[UnusedCargo] | |
541 | } | |
542 | } | |
543 | ||
544 | // Check that we didn't lose track of any temporary modifications to other. | |
545 | for i := 0; i < NumDimensions; i++ { | |
546 | if addr[i] != other[i] { | |
547 | panic(i) | |
548 | } | |
549 | } | |
550 | ||
551 | // Sanity check: This cell was in state BEING_EVALUATED | |
552 | // the whole time that it was being evaluated. | |
553 | if table[my_index].value != VALUE_BEING_EVALUATED { | |
554 | panic(my_index) | |
555 | } | |
556 | ||
557 | // Record our findings | |
558 | table[my_index].value = best_value | |
559 | table[my_index].from = EncodeIndex(dims, best_source) | |
560 | ||
561 | // UI: Progress bar | |
562 | cell_filled_count++ | |
563 | if cell_filled_count&0xfff == 0 { | |
564 | print(fmt.Sprintf("\r%3.1f%%", 100*float64(cell_filled_count)/float64(StateTableSize(dims)))) | |
565 | } | |
566 | ||
567 | return table[my_index].value | |
568 | } | |
569 | ||
570 | func FinalState(dims LogicalIndex) LogicalIndex { | |
571 | addr := make(LogicalIndex, NumDimensions) | |
572 | addr[Edens] = *end_edens | |
573 | addr[Cloaks] = dims[Cloaks] - 1 | |
574 | addr[BuyFighters] = dims[BuyFighters] - 1 | |
575 | addr[BuyShields] = dims[BuyShields] - 1 | |
576 | addr[Visit] = dims[Visit] - 1 | |
577 | addr[Traded] = 1 | |
578 | addr[Hold] = 0 | |
579 | addr[UnusedCargo] = 0 | |
580 | // Fuel and Location are determined by FindBestState | |
581 | return addr | |
582 | } | |
583 | ||
584 | func FindBestState(data planet_data, dims LogicalIndex, table []State, addr LogicalIndex) PhysicalIndex { | |
585 | max_index := PhysicalIndex(-1) | |
586 | max_value := 0.0 | |
587 | max_fuel := 1 | |
588 | if *fuel == 0 { | |
589 | max_fuel = 0 | |
590 | } | |
591 | for addr[Fuel] = 0; addr[Fuel] <= max_fuel; addr[Fuel]++ { | |
592 | for addr[Location] = 0; addr[Location] < dims[Location]; addr[Location]++ { | |
593 | planet := data.i2p[addr[Location]] | |
594 | if len(end()) == 0 || end()[planet] { | |
595 | index := EncodeIndex(dims, addr) | |
596 | today_value := CellValue(data, dims, table, addr) | |
597 | tomorrow_value := *tomorrow_weight * float64(*hold+data.Planets[planet].TomorrowValue) | |
598 | value := float64(today_value) + tomorrow_value | |
599 | if value > max_value { | |
600 | max_value = value | |
601 | max_index = index | |
602 | } | |
603 | } | |
604 | } | |
605 | } | |
606 | return max_index | |
607 | } | |
608 | ||
609 | func Commas(n Value) string { | |
610 | var s string | |
611 | if n < 0 { | |
612 | panic(n) | |
613 | } | |
614 | r := n % 1000 | |
615 | n /= 1000 | |
616 | for n > 0 { | |
617 | s = fmt.Sprintf(",%03d", r) + s | |
618 | r = n % 1000 | |
619 | n /= 1000 | |
620 | } | |
621 | s = fmt.Sprint(r) + s | |
622 | return s | |
623 | } | |
624 | ||
625 | func FighterAndShieldCost(data planet_data, dims LogicalIndex, table []State, best PhysicalIndex) { | |
626 | if *drones == 0 && *batteries == 0 { | |
627 | return | |
628 | } | |
629 | fmt.Println() | |
630 | if *drones > 0 { | |
631 | final_state := FinalState(dims) | |
632 | final_state[BuyFighters] = 0 | |
633 | alt_best := FindBestState(data, dims, table, final_state) | |
634 | cost := table[alt_best].value - table[best].value | |
635 | fmt.Printf("\rDrones were %.2f each\n", float64(cost)/float64(*drones)) | |
636 | } | |
637 | if *batteries > 0 { | |
638 | final_state := FinalState(dims) | |
639 | final_state[BuyShields] = 0 | |
640 | alt_best := FindBestState(data, dims, table, final_state) | |
641 | cost := table[alt_best].value - table[best].value | |
642 | fmt.Printf("\rBatteries were %.2f each\n", float64(cost)/float64(*batteries)) | |
643 | } | |
644 | } | |
645 | ||
646 | func EndEdensCost(data planet_data, dims LogicalIndex, table []State, best PhysicalIndex) { | |
647 | if *end_edens == 0 { | |
648 | return | |
649 | } | |
650 | fmt.Println() | |
651 | final_state := FinalState(dims) | |
652 | for extra_edens := 1; extra_edens <= *end_edens; extra_edens++ { | |
653 | final_state[Edens] = *end_edens - extra_edens | |
654 | alt_best := FindBestState(data, dims, table, final_state) | |
655 | extra_funds := table[alt_best].value - table[best].value | |
656 | fmt.Println("\rUse", extra_edens, "extra edens, make an extra", | |
657 | Commas(extra_funds), "(", | |
658 | Commas(extra_funds/Value(extra_edens)), "per eden)") | |
659 | } | |
660 | } | |
661 | ||
662 | func VisitCost(data planet_data, dims LogicalIndex, table []State, best PhysicalIndex) { | |
663 | if dims[Visit] == 1 { | |
664 | return | |
665 | } | |
666 | fmt.Println() | |
667 | final_state := FinalState(dims) | |
668 | for i := uint(0); i < uint(len(visit())); i++ { | |
669 | all_bits := dims[Visit] - 1 | |
670 | final_state[Visit] = all_bits & ^(1 << i) | |
671 | alt_best := FindBestState(data, dims, table, final_state) | |
672 | cost := table[alt_best].value - table[best].value | |
673 | fmt.Printf("\r%11v Cost to visit %v\n", Commas(cost), visit()[i]) | |
674 | } | |
675 | } | |
676 | ||
677 | func EndLocationCost(data planet_data, dims LogicalIndex, table []State, best PhysicalIndex) { | |
678 | if len(end()) == 0 { | |
679 | return | |
680 | } | |
681 | fmt.Println() | |
682 | final_state := FinalState(dims) | |
683 | save_end_string := *end_string | |
684 | *end_string = "" | |
685 | end_cache = nil | |
686 | alt_best := FindBestState(data, dims, table, final_state) | |
687 | cost := table[alt_best].value - table[best].value | |
688 | fmt.Printf("\r%11v Cost of --end %v\n", Commas(cost), save_end_string) | |
689 | *end_string = save_end_string | |
690 | } | |
691 | ||
692 | func DescribePath(data planet_data, dims LogicalIndex, table []State, start PhysicalIndex) []string { | |
693 | var description []string | |
694 | for index := start; table[index].from > FROM_ROOT; index = table[index].from { | |
695 | if table[index].from == FROM_UNINITIALIZED { | |
696 | panic(index) | |
697 | } | |
698 | var line string | |
699 | addr := DecodeIndex(dims, index) | |
700 | prev := DecodeIndex(dims, table[index].from) | |
701 | if addr[Fuel] != prev[Fuel] { | |
702 | from := data.i2p[prev[Location]] | |
703 | to := data.i2p[addr[Location]] | |
704 | line += fmt.Sprintf("Jump from %v to %v (%v hyper jump units)", from, to, prev[Fuel]-addr[Fuel]) | |
705 | } | |
706 | if addr[Edens] == prev[Edens]-1 { | |
707 | from := data.i2p[prev[Location]] | |
708 | to := data.i2p[addr[Location]] | |
709 | line += fmt.Sprintf("Eden warp from %v to %v", from, to) | |
710 | } | |
711 | if addr[Hold] != prev[Hold] { | |
712 | if addr[Hold] == 0 { | |
713 | quantity := *hold - (prev[UnusedCargo] + prev[Edens] + prev[Cloaks]) | |
714 | line += fmt.Sprintf("Sell %v %v", quantity, data.i2c[prev[Hold]]) | |
715 | } else if prev[Hold] == 0 { | |
716 | quantity := *hold - (addr[UnusedCargo] + addr[Edens] + addr[Cloaks]) | |
717 | line += fmt.Sprintf("Buy %v %v", quantity, data.i2c[addr[Hold]]) | |
718 | } else { | |
719 | panic("Switched cargo?") | |
720 | } | |
721 | ||
722 | } | |
723 | if addr[Cloaks] == 1 && prev[Cloaks] == 0 { | |
724 | // TODO: Dump cloaks, convert from cargo? | |
725 | line += "Buy a Cloak" | |
726 | } | |
727 | if addr[Edens] > prev[Edens] { | |
728 | line += fmt.Sprint("Buy ", addr[Edens]-prev[Edens], " Eden Warp Units") | |
729 | } | |
730 | if addr[BuyShields] == 1 && prev[BuyShields] == 0 { | |
731 | line += fmt.Sprint("Buy ", *batteries, " Shield Batterys") | |
732 | } | |
733 | if addr[BuyFighters] == 1 && prev[BuyFighters] == 0 { | |
734 | line += fmt.Sprint("Buy ", *drones, " Fighter Drones") | |
735 | } | |
736 | if addr[Visit] != prev[Visit] { | |
737 | // TODO: verify that the bit chat changed is addr[Location] | |
738 | line += fmt.Sprint("Visit ", data.i2p[addr[Location]]) | |
739 | } | |
740 | if line == "" && addr[Hold] == prev[Hold] && addr[Traded] != prev[Traded] { | |
741 | // The Traded dimension is for housekeeping. It doesn't directly | |
742 | // correspond to in-game actions, so don't report transitions. | |
743 | continue | |
744 | } | |
745 | if line == "" { | |
746 | line = fmt.Sprint(prev, " -> ", addr) | |
747 | } | |
748 | description = append(description, fmt.Sprintf("%13v ", Commas(table[index].value))+line) | |
749 | } | |
750 | return description | |
751 | } | |
752 | ||
753 | // (Example of a use case for generics in Go) | |
754 | func IndexPlanets(m *map[string]Planet, start_at int) (map[string]int, []string) { | |
755 | e2i := make(map[string]int, len(*m)+start_at) | |
756 | i2e := make([]string, len(*m)+start_at) | |
757 | i := start_at | |
758 | for e := range *m { | |
759 | e2i[e] = i | |
760 | i2e[i] = e | |
761 | i++ | |
762 | } | |
763 | return e2i, i2e | |
764 | } | |
765 | func IndexCommodities(m *map[string]Commodity, start_at int) (map[string]int, []string) { | |
766 | e2i := make(map[string]int, len(*m)+start_at) | |
767 | i2e := make([]string, len(*m)+start_at) | |
768 | i := start_at | |
769 | for e := range *m { | |
770 | e2i[e] = i | |
771 | i2e[i] = e | |
772 | i++ | |
773 | } | |
774 | return e2i, i2e | |
775 | } | |
776 | ||
777 | func main() { | |
778 | flag.Parse() | |
779 | if *start == "" || *funds == 0 { | |
780 | print("--start and --funds are required. --help for more\n") | |
781 | return | |
782 | } | |
783 | if *cpuprofile != "" { | |
784 | f, err := os.Create(*cpuprofile) | |
785 | if err != nil { | |
786 | panic(err) | |
787 | } | |
788 | pprof.StartCPUProfile(f) | |
789 | defer pprof.StopCPUProfile() | |
790 | } | |
791 | data := ReadData() | |
792 | if *drone_price > 0 { | |
793 | temp := data.Commodities["Fighter Drones"] | |
794 | temp.BasePrice = *drone_price | |
795 | data.Commodities["Fighter Drones"] = temp | |
796 | } | |
797 | if *battery_price > 0 { | |
798 | temp := data.Commodities["Shield Batterys"] | |
799 | temp.BasePrice = *battery_price | |
800 | data.Commodities["Shield Batterys"] = temp | |
801 | } | |
802 | data.p2i, data.i2p = IndexPlanets(&data.Planets, 0) | |
803 | data.c2i, data.i2c = IndexCommodities(&data.Commodities, 1) | |
804 | dims := DimensionSizes(data) | |
805 | table := CreateStateTable(data, dims) | |
806 | final_state := FinalState(dims) | |
807 | best := FindBestState(data, dims, table, final_state) | |
808 | print("\n") | |
809 | if best == -1 { | |
810 | print("Cannot achieve success criteria\n") | |
811 | return | |
812 | } | |
813 | description := DescribePath(data, dims, table, best) | |
814 | for i := len(description) - 1; i >= 0; i-- { | |
815 | fmt.Println(description[i]) | |
816 | } | |
817 | ||
818 | if *extra_stats { | |
819 | FighterAndShieldCost(data, dims, table, best) | |
820 | EndEdensCost(data, dims, table, best) | |
821 | VisitCost(data, dims, table, best) | |
822 | EndLocationCost(data, dims, table, best) | |
823 | } | |
824 | } |