forked from cwren/davesgalaxy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmovefleets
executable file
·70 lines (56 loc) · 1.87 KB
/
movefleets
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
#!/usr/bin/env python
# vim: set ts=2 sw=2 expandtab:
import game
from optparse import OptionParser
import sys
import shape
def main():
parser = OptionParser()
parser.add_option("-U", "--username", dest="username",
help="username of login")
parser.add_option("-P", "--password", dest="password",
help="password for login")
parser.add_option("-n", "--noupgrade", dest="doupgrade",
action="store_false", default=True, help="dry run")
parser.add_option("-s", "--source_route", dest="source",
type="string", help="route enclosing source")
parser.add_option("-d", "--destination", dest="dest",
type="string", help="desination planet or route")
(options, args) = parser.parse_args()
if options.source == None or options.dest == None:
print "not enough arguments"
parser.print_help()
sys.exit(1)
print "options " + str(options)
g=game.Galaxy()
if options.username and options.password:
# explicit login
g.login(options.username, options.password, force=True)
else:
# try to pick up stored credentials
g.login()
g.load_routes()
try:
source_route = g.find_route(options.source)
source_shape = shape.Polygon(*(source_route.points))
except:
print "could't find source route"
sys.exit(1)
try:
dest_route = g.find_route(options.dest)
destshape = shape.Polygon(*(dest_route.points))
except:
print "could't find dest route"
sys.exit(1)
MoveFleets(g, options.doupgrade, source_shape, dest_route)
def MoveFleets(g, doupgrade, source, dest):
g.load_fleet_cache()
for f in g.fleets:
if source.inside(f.coords):
#if f.disposition == "Trade":
print "moving fleet %s" % f
if doupgrade:
success = f.move_to_route(dest)
g.write_fleet_cache()
if __name__ == "__main__":
main()