Mercurial > eagle-eye
view inference.pl @ 30:de5de6d472f9
added space checking
author | "Rex Tsai <chihchun@kalug.linux.org.tw>" |
---|---|
date | Fri, 10 Oct 2008 05:24:04 +0800 |
parents | dbec53e754e3 |
children | 91e387b51aa0 |
line wrap: on
line source
#!/usr/bin/perl use strict; use Ikariam; use Data::Dumper; package main; our $cities; our $server = 's2.ikariam.tw'; sub Warn { my ($city, $msg) = @_; printf("WARNING: http://%s/index.php?view=city&id=%s (%s) %s \n", $server, $city, $cities->{$city}->{name}, $msg); } our $i = new Ikariam($server, "chihchun", "c795d57d"); $i->login; $cities = $i->check; $i->logout; print(Dumper($cities)); sub rule_happiness { my $id = shift; if($cities->{$id}->{happiness} >= 3) { Warn($id, sprintf("is not happy (%s)!", $cities->{$id}->{happiness_text})); } } sub rule_resource { my $id = shift; # checking goods foreach my $good (qw/wood wine marble crystal/) { if($cities->{$id}->{$good} <= 100) { Warn($id, sprintf("Running out %s (%d)!", $good, $cities->{$id}->{$good})); } } } sub rule_building { my $cityId = shift; # 城鎮跟圍牆 if($cities->{$cityId}->{buildings}->{wall} < $cities->{$cityId}->{buildings}->{townHall}) { Warn($cityId, sprintf("Wall level (%d) is lower then town hall (%d)!", $cities->{$cityId}->{buildings}->{wall}, $cities->{$cityId}->{buildings}->{townHall} )); } } sub rule_space { my $cityId = shift; if($cities->{$cityId}->{space}->{total} == $cities->{$cityId}->{space}->{occupied}) { Warn($cityId, sprintf("your space is full, upgraded the hall")) if($cities->{$cityId}->{construction} != 1) } } sub rule_engagement { } # 貪腐 sub rule_corruption { my $id = shift; if($cities->{$id}->{corruption} > 0) { Warn($id, sprintf("corruption is %d", $cities->{$id}->{corruption})); } } # space # Checking rules foreach my $procedure (qw/rule_happiness rule_corruption rule_building rule_space rule_resource/) { foreach my $id (keys(%$cities)) { eval(sprintf("%s(%s);", $procedure, $id)); } }