changeset 174:0cfc7a19a4d2

branch merged
author "Rex Tsai <chihchun@kalug.linux.org.tw>"
date Sun, 02 Nov 2008 04:12:23 +0800
parents e8a244ce5a1d (current diff) 2efa901871e5 (diff)
children 9f248c8460ce 8afd380c20ac dba0543daf36
files Ikariam.pm
diffstat 7 files changed, 187 insertions(+), 120 deletions(-) [+]
line wrap: on
line diff
--- a/Ikariam.pm	Sun Nov 02 04:12:00 2008 +0800
+++ b/Ikariam.pm	Sun Nov 02 04:12:23 2008 +0800
@@ -466,13 +466,20 @@
 sub plunderCity {
     my $self = shift;
     my $cityId = shift;
-    $self->{mech}->get(sprintf("http://%s/index.php?view=plunder&destinationCityId=%d", $self->{server}, $cityId));
-    $self->{mech}->submit_form(
-        form_number => 1,
-        fields      => {
-            cargo_army_302 => '2',
-        }
-    );
+    my $res = $self->{mech}->get(sprintf("http://%s/index.php?view=plunder&destinationCityId=%d", $self->{server}, $cityId));
+
+    # check peace treaty
+    my $treaty = Ikariam::Extractor->new(content => $res->content)->find('//div[@class="warning"]');
+    if(!defined($treaty)) {
+        $self->{mech}->submit_form(
+                form_number => 1,
+                fields      => {
+                cargo_army_302 => '2',
+                }
+                );
+    } else {
+        warn ($treaty);
+    }
 }
 
 sub changeCity {
--- a/ally.pl	Sun Nov 02 04:12:00 2008 +0800
+++ b/ally.pl	Sun Nov 02 04:12:23 2008 +0800
@@ -59,16 +59,16 @@
     }
     </style></head><body><table border=1>");
 
-foreach my $x ($x1..$x2)
+foreach my $y($y1..$y2)
 {
     print(OUT "<tr>");
-    foreach my $y($y1..$y2)
+    foreach my $x ($x1..$x2)
     {
         # printf("<div stlye='float:left; background-color: black; padding: 0; Display:inline;'>o</div>");
         if(defined($maps{$x}{$y}{'density'})) {
             my $c = 255 - (15 * $maps{$x}{$y}{'density'});
-            printf(OUT "<td style=\"background-color: rgb(255,%d,%d);\"><a href=\"http://s2.ikariam.tw/index.php?view=island&id=%d\" title=\"[%d,%d] (%d)\">[%d,%d]</a></td>",
-                $c, $c, $maps{$x}{$y}{'id'}, $x, $y, $maps{$x}{$y}{'density'}, $x, $y);
+            printf(OUT "<td style=\"background-color: rgb(255,%d,%d);\"><a href=\"http://%s/index.php?view=island&id=%d\" title=\"[%d,%d] (%d)\">[%d,%d]</a></td>",
+                $c, $c, $::server, $maps{$x}{$y}{'id'}, $x, $y, $maps{$x}{$y}{'density'}, $x, $y);
         } else {
             printf(OUT "<td style=\"background-color: rgb(255,255,255);\">[%d,%d]</td>", $x, $y);
         }
--- a/overall.yaml	Sun Nov 02 04:12:00 2008 +0800
+++ b/overall.yaml	Sun Nov 02 04:12:23 2008 +0800
@@ -22,15 +22,12 @@
      # 發明 (兵工廠)
      - is_invention_researched:
         0: research_knowledge
-     # 異國文化
+     # 異國文化, 建造博物館
      - is_culturalexchange_researched:
-        0: research_seafaring
+        0: research_knowledge
      # 希臘火, 建造噴火船
      - is_greekfire_researched:
         0: research_seafaring
-     # 文化交流, 建造博物館
-     - is_culturalexchange_researched:
-        0: research_knowledge
         
    1: run_defence
    # we are being attacked!!!!!!!!!!!!!
--- a/pyikriam/__init__.py	Sun Nov 02 04:12:00 2008 +0800
+++ b/pyikriam/__init__.py	Sun Nov 02 04:12:23 2008 +0800
@@ -1,104 +1,3 @@
-from lazy.www import c
-from lconf import LoadConfigfile
-import cookielib
-import os
-import urllib2
-import urllib
-from utils import dyna_prog, decorator
-
-class fake_moz(object):
-    __metaclass__ = decorator
-
-    def __init__(self):
-        super(fake_moz, self).__init__()
-        cookie_jar = cookielib.LWPCookieJar()
-        cookie_proc = urllib2.HTTPCookieProcessor(cookie_jar)
-        opener = urllib2.build_opener(cookie_proc)
-        opener.addheaders = [('User-agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-TW; rv:1.8.1.12pre) Gecko/20071220 BonEcho/2.0.0.12pre')]
-        fake_moz.set_backend(self, opener)
-        self.cookie_jar = cookie_jar
-        pass
-    pass
-
-
-class Ikariam:
-
-    cities = {}
-    COOKIEFILE = '/tmp/ikariam.lwp'
-
-    def __init__(self):
-        browser = fake_moz()
-        self.browser = browser
-        self._cookie_jar = browser.cookie_jar
-
-        if os.path.isfile(self.COOKIEFILE):
-            self._cookie_jar.load(self.COOKIEFILE)
-            pass
- 
-        urllib2.install_opener(browser)
-
-	self.confdata=LoadConfigfile().cd
-        self.baseurl='http://'+self.confdata['server']
-
-        self.login()
-        pass
+from ikariam import Ikariam
 
-    def login(self):     
-	print "login to %s...." % self.confdata['server']
-        params = {"universe":self.confdata['server'], \
-        "name":self.confdata['user'], \
-        "password":self.confdata['pass']}
-        ret = c(self.baseurl+'/index.php?action=loginAvatar&function=login').get(params).get_content()
-        self._cookie_jar.save(self.COOKIEFILE)
-        pass
-
-    def logout(self):
-	print "logut from %s...." % self.confdata['server']
-        c(self.baseurl+'/index.php?action=loginAvatar&function=logout')
-        os.remove(self.COOKIEFILE)
-        pass
-    
-    ##
-    # \note We can cache data with decorator 'dynamic programming'.
-    #
-    @dyna_prog
-    def city(self, id):
-        return IkariamCity(id=id, core=self)
-    pass
-
-class IkariamCity:
-    data_patterns = {
-        'gold': '/div[@id=\'globalResources\']/ul/li/a/span[@id=\'value_gold\']/text()',
-        'inhabitants': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_inhabitants\']/text()',
-        'wood': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_wood\']/text()',
-        'wine': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_wine\']/text()',
-        'marble': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_marble\']/text()',
-        'crystal': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_crystal\']/text()',
-        'sulfur': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_sulfur\']/text()'
-        }
-    def __init__(self, id, core ):
-        self.core = core
-        self.id = id
-        self.params = {'view':'city','id':id}
-        
-    def sync(self):
-        from lxml import etree
-        from StringIO import StringIO
-
-        page = c(self.core.baseurl).get(self.params).get_content()
-        parser = etree.HTMLParser(encoding='utf8')
-        page_dom = etree.parse(StringIO(page), parser)
-
-        xpath_globalinfo = "/html/body[@id='city']/div[@id='container']/div[@id='container2']"
-        for name, path in self.data_patterns.items():
-            xpath = xpath_globalinfo + path
-            value = page_dom.xpath(xpath)[0]
-            setattr(self, name, value)
-            pass
-        
-        xpath_mainview = '/html/body/div/div/div[@id=\'mainview\']/ul/li'
-        pos_doms = page_dom.xpath(xpath_mainview)
-        positions = [pos_dom.get('class').split()[-1] for pos_dom in pos_doms]
-        self.positions = positions
-        pass
-    pass
+__all__ = ('Ikariam',)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pyikriam/buildings.py	Sun Nov 02 04:12:23 2008 +0800
@@ -0,0 +1,45 @@
+from lazy.www import c
+from lxml import etree
+from StringIO import StringIO
+
+class position(object):
+    def __init__(self, build_type, city_id, idx, baseurl):
+        self._baseurl = baseurl + '/index.php'
+        self.build_type = build_type
+        self.city_id = city_id
+        self.idx = idx
+        self._params = {'view': 'buildingGround',
+                        'id': city_id,
+                        'position': idx}
+        pass
+
+    def get_page(self):
+        page = c(self._baseurl).get(self._params).get_content()
+        return page
+    pass
+
+class townhall(position):
+    xpath_patterns = {
+        'level': '/div/div/div[@class=\'buildingLevel\']/text()'
+        }
+
+    def __init__(self, city_id, idx, baseurl):
+        super(townhall, self).__init__('townhall', city_id, idx, baseurl)
+        pass
+
+    def _sync(self, page):
+        parser = etree.HTMLParser(encoding='utf8')
+        page_dom = etree.parse(StringIO(page), parser)
+        xpath_building = '/html/body/div/div'
+        for name, ptn in self.xpath_patterns.items():
+            path = xpath_building + ptn
+            value = page_dom.xpath(path)[0]
+            setattr(self, name, value)
+            pass
+        pass
+
+    def sync(self):
+        page = self.get_page()
+        self._sync(page)
+        pass
+    pass
--- a/pyikriam/example.py	Sun Nov 02 04:12:00 2008 +0800
+++ b/pyikriam/example.py	Sun Nov 02 04:12:23 2008 +0800
@@ -1,5 +1,5 @@
 import sys
-from __init__ import Ikariam
+from ikariam import Ikariam
 
 if len(sys.argv) != 2:
     print >> sys.stderr, 'Usage: %s <city id>' % (sys.argv[0])
@@ -23,3 +23,5 @@
 print 'sulfur is ' + city.sulfur
 print 'positions ' + repr(city.positions)
 
+city.positions[0].sync()
+print 'positions[0] level is ' + str(city.positions[0].level)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pyikriam/ikariam.py	Sun Nov 02 04:12:23 2008 +0800
@@ -0,0 +1,117 @@
+from lazy.www import c
+from lconf import LoadConfigfile
+import cookielib
+import os
+import urllib2
+import urllib
+from utils import dyna_prog, decorator
+from lxml import etree
+from StringIO import StringIO
+
+class fake_moz(object):
+    __metaclass__ = decorator
+
+    def __init__(self):
+        super(fake_moz, self).__init__()
+        cookie_jar = cookielib.LWPCookieJar()
+        cookie_proc = urllib2.HTTPCookieProcessor(cookie_jar)
+        opener = urllib2.build_opener(cookie_proc)
+        opener.addheaders = [('User-agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-TW; rv:1.8.1.12pre) Gecko/20071220 BonEcho/2.0.0.12pre')]
+        fake_moz.set_backend(self, opener)
+        self.cookie_jar = cookie_jar
+        pass
+    pass
+
+
+class Ikariam:
+
+    cities = {}
+    COOKIEFILE = '/tmp/ikariam.lwp'
+
+    def __init__(self):
+        browser = fake_moz()
+        self.browser = browser
+        self._cookie_jar = browser.cookie_jar
+
+        if os.path.isfile(self.COOKIEFILE):
+            self._cookie_jar.load(self.COOKIEFILE)
+            pass
+ 
+        urllib2.install_opener(browser)
+
+	self.confdata=LoadConfigfile().cd
+        self.baseurl='http://'+self.confdata['server']
+
+        self.login()
+        pass
+
+    def login(self):     
+	print "login to %s...." % self.confdata['server']
+        params = {"universe":self.confdata['server'], \
+        "name":self.confdata['user'], \
+        "password":self.confdata['pass']}
+        ret = c(self.baseurl+'/index.php?action=loginAvatar&function=login').get(params).get_content()
+        self._cookie_jar.save(self.COOKIEFILE)
+        pass
+
+    def logout(self):
+	print "logut from %s...." % self.confdata['server']
+        c(self.baseurl+'/index.php?action=loginAvatar&function=logout')
+        os.remove(self.COOKIEFILE)
+        pass
+    
+    ##
+    # \note We can cache data with decorator 'dynamic programming'.
+    #
+    @dyna_prog
+    def city(self, id):
+        return IkariamCity(id=id, core=self)
+    pass
+
+class IkariamCity:
+    data_patterns = {
+        'gold': '/div[@id=\'globalResources\']/ul/li/a/span[@id=\'value_gold\']/text()',
+        'inhabitants': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_inhabitants\']/text()',
+        'wood': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_wood\']/text()',
+        'wine': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_wine\']/text()',
+        'marble': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_marble\']/text()',
+        'crystal': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_crystal\']/text()',
+        'sulfur': '/div[@id=\'cityResources\']/ul/li/span[@id=\'value_sulfur\']/text()'
+        }
+    def __init__(self, id, core ):
+        self.core = core
+        self.id = id
+        self.params = {'view':'city','id':id}
+        
+    def sync(self):
+        page = c(self.core.baseurl).get(self.params).get_content()
+        parser = etree.HTMLParser(encoding='utf8')
+        page_dom = etree.parse(StringIO(page), parser)
+
+        xpath_globalinfo = "/html/body[@id='city']/div[@id='container']/div[@id='container2']"
+        for name, path in self.data_patterns.items():
+            xpath = xpath_globalinfo + path
+            value = page_dom.xpath(xpath)[0]
+            setattr(self, name, value)
+            pass
+        
+        xpath_mainview = '/html/body/div/div/div[@id=\'mainview\']/ul/li'
+        pos_doms = page_dom.xpath(xpath_mainview)
+        positions = [self._mk_position(pos_dom, idx)
+                     for idx, pos_dom in enumerate(pos_doms)]
+        self.positions = positions
+        pass
+
+    def _mk_position(self, pos_dom, idx):
+        import buildings
+
+        build_type = pos_dom.get('class').split()[-1].lower()
+        if hasattr(buildings, build_type):
+            clz = getattr(buildings, build_type)
+            if issubclass(clz, buildings.position):
+                building = clz(self.id, idx, self.core.baseurl)
+                return building
+            pass
+        return build_type
+    pass
+