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
|
package agent
import (
"cmp"
"fmt"
"math"
"slices"
"git.adyxax.org/adyxax/spacetraders/golang/pkg/model"
)
func distance2(a *model.Waypoint, b *model.Waypoint) int {
x2 := a.X - b.X
y2 := a.Y - b.Y
return x2*x2 + y2*y2
}
func (a *agent) isThereAShipAtWaypoint(waypointSymbol string) bool {
for _, ship := range a.ships {
if ship.Nav.WaypointSymbol == waypointSymbol {
return true
}
}
return false
}
func (a *agent) listWaypointsInSystemWithTrait(systemSymbol string, trait string) ([]model.Waypoint, error) {
waypoints, err := a.client.ListWaypointsInSystem(systemSymbol, a.db)
if err != nil {
return nil, fmt.Errorf("failed to list waypoints with trait: %w", err)
}
waypoints = slices.DeleteFunc(waypoints, func(waypoint model.Waypoint) bool {
for _, t := range waypoint.Traits {
if t.Symbol == trait {
return false
}
}
return true
})
return waypoints, nil
}
func (a *agent) listShipyardsInSystem(systemSymbol string) ([]model.Shipyard, error) {
waypoints, err := a.listWaypointsInSystemWithTrait(systemSymbol, "SHIPYARD")
if err != nil {
return nil, fmt.Errorf("failed to list shipyards in system %s: %w", systemSymbol, err)
}
var shipyards []model.Shipyard
for i := range waypoints {
shipyard, err := a.client.GetShipyard(&waypoints[i], a.db)
if err != nil {
return nil, fmt.Errorf("failed to list shipyards in system %s: %w", systemSymbol, err)
}
shipyards = append(shipyards, *shipyard)
}
return shipyards, nil
}
func (a *agent) sendShipToShipyardThatSells(ship *model.Ship, shipType string) error {
shipyards, err := a.listShipyardsInSystem(ship.Nav.SystemSymbol)
if err != nil {
return fmt.Errorf("failed to send ship %s to a shipyard that sells %s: %w", ship.Symbol, shipType, err)
}
// filter out the shipyards that do not sell our ship
shipyards = slices.DeleteFunc(shipyards, func(shipyard model.Shipyard) bool {
for _, t := range shipyard.ShipTypes {
if t.Type == shipType {
return false
}
}
return true
})
// sort by cheapest
slices.SortFunc(shipyards, func(a, b model.Shipyard) int {
aPrice := math.MaxInt
for _, ship := range a.Ships {
if ship.Type == shipType {
aPrice = ship.PurchasePrice
break
}
}
bPrice := math.MaxInt
for _, ship := range b.Ships {
if ship.Type == shipType {
bPrice = ship.PurchasePrice
break
}
}
return cmp.Compare(aPrice, bPrice)
})
if err := a.client.Navigate(ship, shipyards[0].Symbol, a.db); err != nil {
return fmt.Errorf("failed to send ship %s to a shipyard that sells %s: %w", ship.Symbol, shipType, err)
}
return nil
}
func sortByDistanceFrom(origin *model.Waypoint, destinations []model.Waypoint) {
slices.SortFunc(destinations, func(a, b model.Waypoint) int {
return cmp.Compare(distance2(origin, &a), distance2(origin, &b))
})
}
|