Mercurial > eagle-eye
annotate planner.pl @ 331:6eac624efc80
removed debug message
author | "Rex Tsai <chihchun@kalug.linux.org.tw>" |
---|---|
date | Thu, 12 Feb 2009 01:53:59 +0800 |
parents | 0db3e2bcbd0f |
children | 65f45552060e |
rev | line source |
---|---|
271 | 1 #!/usr/bin/perl |
2 use Ikariam; | |
3 use Data::Dumper; | |
4 use Decision::ParseTree q{ParseTree}; | |
5 use YAML qw/LoadFile Dump DumpFile/; | |
301
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
6 use Getopt::Std; |
271 | 7 |
8 Ikariam::Cities->has_a(island => 'Ikariam::Island'); | |
9 | |
10 my $army = { | |
11 "Slinger" => 301, | |
12 "Swordsman" => 302, | |
13 "Phalanx" => 303, | |
14 "Ram" => 307, | |
15 "Archer" => 313, | |
16 "Catapult" => 306, | |
17 "Gunsman" => 304, | |
18 "Mortar" => 305, | |
19 "SteamGiant" => 308, | |
20 "Gyrocopter" => 312, | |
21 "Bombardier" => 309, | |
22 "Doctor" => 311, | |
23 "Cook" => 310, | |
24 }; | |
25 | |
26 my $fleet = { | |
27 "CargoShip" => 201, | |
28 "Ram-Ship" => 210, | |
29 "BallistaShip" => 213, | |
30 "Flamethrower" => 211, | |
31 "CatapultShip" => 214, | |
32 "MortarShip" => 215, | |
303 | 33 "PaddleWheelRam" => 216, |
271 | 34 "DivingBoat" => 212, |
35 }; | |
36 | |
37 # return minutes. | |
38 sub travelTime { | |
39 my ($x1, $y1, $x2, $y2, $speed) = @_; | |
40 $speed = 20 unless(defined($speed)); | |
41 return int( (sqrt((abs($x1 - $x2) * abs($x1 - $x2)) + (abs($y1 - $y2) * abs($y1 - $y2)))+1) * (400/$speed)); | |
42 } | |
43 | |
44 package main; | |
301
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
45 getopts('w'); |
271 | 46 if($#ARGV < 2) { |
47 die("Usage: %s targetCity navyCity armyCity wingman1.. wingman2..\n"); | |
48 } | |
49 my $targetCityId = shift(@ARGV); | |
50 my $navyCity = shift(@ARGV); | |
51 my $armyCity = shift(@ARGV); | |
52 my @wingman = @ARGV; | |
53 | |
54 my $targetCity = Ikariam::Cities->retrieve($targetCityId); | |
55 | |
56 | |
57 # NAVY | |
58 my $city = LoadFile(sprintf("city-%s-dump.yaml", $navyCity)); | |
327 | 59 $city->{distance} = travelTime($targetCity->island->x, $targetCity->island->y, $city->{island}->{x}, $city->{island}->{y}, 33) + 25; |
271 | 60 $city->{type} = "navy"; |
61 push (@cities, $city); | |
62 | |
63 # ARMY | |
64 my $city = LoadFile(sprintf("city-%s-dump.yaml", $armyCity)); | |
327 | 65 $city->{distance} = travelTime($targetCity->island->x, $targetCity->island->y, $city->{island}->{x}, $city->{island}->{y}, 50) + 5; |
271 | 66 $city->{type} = "army"; |
67 push (@cities, $city); | |
68 | |
69 # wingman, army | |
301
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
70 foreach my $i (0..$#wingman) { |
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
71 my $cityId = $wingman[$i]; |
271 | 72 my $city = LoadFile(sprintf("city-%s-dump.yaml", $cityId)); |
307
2972852a4ee5
added comment onn wingman
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
303
diff
changeset
|
73 $city->{type} = "wingman" . ($i+1); |
301
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
74 if(defined($opt_w)) { |
327 | 75 $city->{distance} = travelTime($targetCity->island->x, $targetCity->island->y, $city->{island}->{x}, $city->{island}->{y}, 50) - ($i * 20 + 20); |
301
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
76 } else { |
327 | 77 $city->{distance} = travelTime($targetCity->island->x, $targetCity->island->y, $city->{island}->{x}, $city->{island}->{y}, 50); |
301
07f51bb67e56
option for wave attack
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
293
diff
changeset
|
78 } |
271 | 79 push (@cities, $city); |
80 } | |
81 | |
82 @cities = sort { $a->{distance} <=> $b->{distance}; } (@cities); | |
83 | |
84 | |
85 # print the code. | |
86 print <<EOF; | |
87 #!/usr/bin/perl | |
88 use strict; | |
89 use Ikariam; | |
90 use Data::Dumper; | |
91 package main; | |
92 my \$ikariam = new Ikariam(\$::server, \$::user, \$::pass); | |
93 EOF | |
94 | |
276
8355ec8514f9
refined output data
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
271
diff
changeset
|
95 printf ("# %s %s [%s:%s]\n", $targetCity->owner, $targetCity->cityname, $targetCity->island->x, $targetCity->island->y); |
8355ec8514f9
refined output data
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
271
diff
changeset
|
96 printf ("# http://%s/index.php?view=island&id=%d&selectCity=%d\n", $::server, $targetCity->island->id, $targetCity->id); |
271 | 97 |
98 for(my $i = ($#cities + 1) ; $i-- ; $i < 0 ) { | |
99 | |
276
8355ec8514f9
refined output data
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
271
diff
changeset
|
100 if($i ne $#cities) { |
8355ec8514f9
refined output data
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
271
diff
changeset
|
101 # TODO, 計算港口速度 |
8355ec8514f9
refined output data
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
271
diff
changeset
|
102 # 減掉 cities[$i+1]->buliding->port 的速度 |
271 | 103 printf("sleep(%d*60);\n", |
104 ($cities[$i+1]->{distance} - $cities[$i]->{distance})); | |
105 } | |
276
8355ec8514f9
refined output data
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
271
diff
changeset
|
106 printf("\n# %s %s %dm\n", $cities[$i]->{name}, $cities[$i]->{type}, $cities[$i]->{distance}); |
285
c864134ebe3e
refined output format
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
276
diff
changeset
|
107 printf("# ActionPoint %d/%d\n", $cities[$i]->{actionPoints}, $cities[$i]->{maxActionPoints}); |
271 | 108 |
109 printf('$ikariam->login;' . "\n"); | |
110 if($cities[$i]->{type} eq "navy") { | |
111 printf('$ikariam->changeCity(%d);' . "\n", $cities[$i]->{id}); | |
112 printf('$ikariam->blockadeCity(%d, {' . "\n", $targetCity->id); | |
285
c864134ebe3e
refined output format
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
276
diff
changeset
|
113 printf("\tblockadeDuration => 2*60*60," . "\n"); |
271 | 114 while (my ($k, $v) = each(%{$cities[$i]->{fleet}})) { |
115 if($v > 0) { | |
285
c864134ebe3e
refined output format
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
276
diff
changeset
|
116 printf("\tcargo_fleet_%s => %s, # %s \n", $fleet->{$k}, $v, $k); |
271 | 117 } |
118 } | |
119 printf('});' . "\n", $cities[$i]->{id}); | |
120 } else { | |
121 printf('$ikariam->changeCity(%d);' . "\n", $cities[$i]->{id}); | |
122 printf('$ikariam->plunderCity(%d, {' . "\n", $targetCity->id); | |
123 while (my ($k, $v) = each(%{$cities[$i]->{army}})) { | |
124 if($v > 0) { | |
285
c864134ebe3e
refined output format
"Rex Tsai <chihchun@kalug.linux.org.tw>"
parents:
276
diff
changeset
|
125 printf("\tcargo_army_%s => %s, # %s \n", $army->{$k}, $v, $k); |
271 | 126 } |
127 } | |
327 | 128 printf("\ttransporter => %s, # transporter\n", $cities[$i]->{transporters}->{avail}); |
271 | 129 printf('});' . "\n", $cities[$i]->{id}); |
130 } | |
131 printf('$ikariam->logout;' . "\n"); | |
132 } |