Imported Upstream version 2008.1+svn1553
[opeanno-debian-packaging.git] / game / world / settlement.py
blob196906abcdb22ebec997883b5b14f3b973132147
1 # ###################################################
2 # Copyright (C) 2008 The OpenAnno Team
3 # team@openanno.org
4 # This file is part of OpenAnno.
6 # OpenAnno is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the
18 # Free Software Foundation, Inc.,
19 # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 # ###################################################
21 import game.main
22 from game.world.storage import Storage
23 from game.util import WorldObject, Point, WeakList
25 class Settlement(WorldObject):
26 """The Settlement class describes a settlement and stores all the necessary information
27 like name, current inhabitants, lists of tiles and houses, etc belonging to the village."""
28 def __init__(self, owner):
29 """
30 @param owner: Player object that owns the settlement
31 """
32 self.name = game.main.db("SELECT name FROM data.citynames WHERE for_player = 1 ORDER BY random() LIMIT 1")[0][0]
33 self.owner = owner
34 self._inhabitants = 0
35 self.buildings = WeakList() # List of all the buildings belonging to the settlement
37 self.setup_storage()
39 def setup_storage(self):
40 self.inventory = Storage()
41 self.inventory.addChangeListener(self._changed)
42 resources = game.main.db("SELECT rowid FROM data.resource")
43 for (res,) in resources:
44 self.inventory.addSlot(res, 30)
46 def get_building(self, point):
47 """Returns the building at the position (x,y)
48 @param point: position to look at
49 @return: Building class instance or None if none is found.
50 """
51 for b in self.buildings:
52 if b.position.contains(point):
53 return b
54 else:
55 return None
57 def add_inhabitants(self, num):
58 self._inhabitants += num
60 def rem_inhabitants(self, num):
61 self._inhabitants -= num
63 def save(self, db, islandid):
64 db("INSERT INTO settlement (rowid, island, owner, inhabitants) VALUES(?, ?, ?, ?)",
65 self.getId(), islandid, self.owner.getId(), self._inhabitants)
66 db("INSERT INTO name (rowid, name) VALUES(?, ?)",
67 self.getId(), self.name)
68 self.inventory.save(db, self.getId())
70 # TODO:
71 # Tiles
73 @classmethod
74 def load(cls, db, worldid):
75 self = cls.__new__(cls)
77 super(Settlement, self).load(db, worldid)
79 self.owner = db("SELECT owner FROM settlement WHERE rowid = ?", worldid)[0][0]
80 self.owner = WorldObject.getObjectById(self.owner)
82 self._inhabitants = int(db("SELECT inhabitants FROM settlement WHERE rowid = ?", worldid)[0][0])
83 self.name = db("SELECT name FROM name WHERE rowid = ?", worldid)[0][0]
85 self.setup_storage()
86 self.inventory.load(db, worldid)
88 self.buildings = WeakList()
89 for building_id, building_type in \
90 db("SELECT rowid, type FROM building WHERE location = ?", worldid):
91 buildingclass = game.main.session.entities.buildings[building_type]
92 building = buildingclass.load(db, building_id)
93 building.settlement = self
94 game.main.session.world.get_island(building.position.origin.x,building.position.origin.y).add_building(building, self.owner)
95 self.buildings.append(building)
97 return self