Mercurial > parpg-core
annotate src/parpg/gamemodel.py @ 187:f612b4638744
Statistics are being saved and loaded.
author | KarstenBock@gmx.net |
---|---|
date | Sat, 05 Nov 2011 16:04:59 +0100 |
parents | 8cc26e89398c |
children | d0aa0f3eecc1 |
rev | line source |
---|---|
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
1 # This file is part of PARPG. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
2 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
3 # PARPG is free software: you can redistribute it and/or modify |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
4 # it under the terms of the GNU General Public License as published by |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
5 # the Free Software Foundation, either version 3 of the License, or |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
6 # (at your option) any later version. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
7 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
8 # PARPG is distributed in the hope that it will be useful, |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
11 # GNU General Public License for more details. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
12 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
13 # You should have received a copy of the GNU General Public License |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
14 # along with PARPG. If not, see <http://www.gnu.org/licenses/>. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
15 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
16 # there should be NO references to FIFE here! |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
17 import sys |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
18 import os.path |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
19 import logging |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
20 from copy import deepcopy |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
21 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
22 from fife import fife |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
23 from fife.extensions.serializers.xmlobject import XMLObjectLoader |
92
0f659c7675f6
Changed "import bGrease" to "import parpg.bGrease".
KarstenBock@gmx.net
parents:
88
diff
changeset
|
24 from parpg.bGrease.geometry import Vec2d |
186
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
25 from serializers import XmlSerializer |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
26 |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
27 from parpg import vfs |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
28 from gamestate import GameState |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
29 from gamemap import GameMap |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
30 from common.utils import locateFiles |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
31 from common.utils import parseBool |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
32 from parpg.dialogueparsers import YamlDialogueParser, DialogueFormatError |
64
32faacaf6f28
Added funcionality to load Entities from file
KarstenBock@gmx.net
parents:
12
diff
changeset
|
33 from parpg.entities import createEntity |
32faacaf6f28
Added funcionality to load Entities from file
KarstenBock@gmx.net
parents:
12
diff
changeset
|
34 from parpg import behaviours |
118 | 35 from parpg import components |
187 | 36 from parpg.components import fifeagent, container, equip, character_statistics |
37 import characterstatistics as char_stats | |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
38 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
39 try: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
40 import xml.etree.cElementTree as ElementTree |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
41 except ImportError: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
42 import xml.etree.ElementTree as ElementTree |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
43 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
44 import yaml |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
45 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
46 logger = logging.getLogger('gamemodel') |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
47 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
48 class GameModel(object): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
49 """GameModel holds the logic for the game. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
50 Since some data (object position and so forth) is held in the |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
51 fife, and would be pointless to replicate, we hold a instance of |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
52 the fife view here. This also prevents us from just having a |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
53 function heavy controller.""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
54 ALL_AGENTS_KEY = "All" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
55 MAX_ID_NUMBER = 1000 |
146 | 56 GENERIC_ITEM_GFX = "generic_item" |
187 | 57 DEFAULT_STAT_VALUE = 50 |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
58 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
59 def __init__(self, engine, settings): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
60 """Initialize the instance. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
61 @param engine: A fife.Engine object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
62 @type emgome: fife.Engine |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
63 @param setting: The applications settigns |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
64 @type setting: parpg.settings.Settings object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
65 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
66 self.settings = settings |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
67 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
68 self.map_change = False |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
69 self.load_saver = False |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
70 self.savegame = None |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
71 quests_directory = settings.parpg.QuestsPath |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
72 self.game_state = GameState(quests_dir=quests_directory) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
73 #self.game_state.quest_engine = |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
74 #self.game_state.quest_engine.readQuests() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
75 self.pc_run = 1 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
76 self.target_position = None |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
77 self.target_map_name = None |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
78 self.object_db = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
79 self.active_map = None |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
80 self.map_files = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
81 self.agents = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
82 self.agents[self.ALL_AGENTS_KEY] = {} |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
83 self.items = {} |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
84 self.engine = engine |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
85 self.fife_model = engine.getModel() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
86 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
87 # set values from settings |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
88 maps_directory = settings.parpg.MapsPath |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
89 self.game_state.maps_file = '/'.join([maps_directory, |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
90 settings.parpg.MapsFile]) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
91 self.all_agents_file = '/'.join([maps_directory, |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
92 settings.parpg.AllAgentsFile]) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
93 objects_directory = self.settings.parpg.ObjectsPath |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
94 self.objects_directory = objects_directory |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
95 self.object_db_file = '/'.join([objects_directory, |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
96 settings.parpg.ObjectDatabaseFile]) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
97 self.dialogue_directory = settings.parpg.DialoguesPath |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
98 self.dialogues = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
99 self.agent_import_files = {} |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
100 self.obj_loader = XMLObjectLoader(self.engine) |
186
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
101 # FIXME M. George Hansen 2011-06-06: character stats scripts aren't |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
102 # finished, unfortunately. |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
103 #primary_stats_file = \ |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
104 # vfs.VFS.open('character_scripts/primary_stats.xml') |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
105 #self.primary_stats = XmlSerializer.deserialize(primary_stats_file) |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
106 #secondary_stats_file = \ |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
107 # vfs.VFS.open('character_scripts/secondary_stats.xml') |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
108 #self.secondary_stats = XmlSerializer.deserialize(secondary_stats_file) |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
109 self.primary_stats = [] |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
110 self.secondary_stats = [] |
8cc26e89398c
Moved code from CharacterCreationController to GameModel
KarstenBock@gmx.net
parents:
182
diff
changeset
|
111 |
187 | 112 def create_stats(self, entity): |
113 for primary_stat in self.primary_stats: | |
114 long_name = primary_stat.long_name | |
115 entity.characterstats.primary_stats[long_name] = ( | |
116 char_stats.PrimaryStatisticValue( | |
117 primary_stat, entity.characterstats, | |
118 self.DEFAULT_STAT_VALUE) | |
119 ) | |
120 for secondary_stat in self.secondary_stats: | |
121 name = secondary_stat.name | |
122 entity.characterstats.secondary_stats[name] = ( | |
123 char_stats.SecondaryStatisticValue(secondary_stat, | |
124 entity.characterstats | |
125 ) | |
126 ) | |
127 | |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
128 def checkAttributes(self, attributes, template): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
129 """Checks for attributes that where not given in the map file |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
130 and fills them with values from the object database |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
131 @param attributes: attributes to check |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
132 @type attributes: Dictionary |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
133 @param template: Template from which the values will be used |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
134 @return: The modified attributes""" |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
135 if self.object_db.has_key(template): |
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
136 db_attributes = deepcopy(self.object_db[template]) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
137 for key in db_attributes.keys(): |
113
7b0846025412
Fixed bug in checkAttributes that caused that values where not correctly set from the Template.
KarstenBock@gmx.net
parents:
108
diff
changeset
|
138 if attributes.has_key(key): |
7b0846025412
Fixed bug in checkAttributes that caused that values where not correctly set from the Template.
KarstenBock@gmx.net
parents:
108
diff
changeset
|
139 tmp_attributes = db_attributes[key] |
7b0846025412
Fixed bug in checkAttributes that caused that values where not correctly set from the Template.
KarstenBock@gmx.net
parents:
108
diff
changeset
|
140 tmp_attributes.update(attributes[key]) |
7b0846025412
Fixed bug in checkAttributes that caused that values where not correctly set from the Template.
KarstenBock@gmx.net
parents:
108
diff
changeset
|
141 attributes[key] = tmp_attributes |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
142 else: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
143 attributes[key] = db_attributes[key] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
144 return attributes |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
145 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
146 def isIDUsed(self, ID): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
147 if self.game_state.hasObject(ID): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
148 return True |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
149 for namespace in self.agents: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
150 if ID in self.agents[namespace]: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
151 return True |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
152 return False |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
153 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
154 def createUniqueID(self, ID): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
155 if self.isIDUsed(ID): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
156 id_number = 1 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
157 while self.isIDUsed(ID + "_" + str(id_number)): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
158 id_number += 1 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
159 if id_number > self.MAX_ID_NUMBER: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
160 raise ValueError( |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
161 "Number exceeds MAX_ID_NUMBER:" + |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
162 str(self.MAX_ID_NUMBER) |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
163 ) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
164 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
165 ID = ID + "_" + str(id_number) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
166 return ID |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
167 |
114
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
168 def moveObject(self, object_id, new_map): |
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
169 """Moves the object to a new map, or in a container |
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
170 @param object_id: ID of the object |
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
171 @type object_id: str |
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
172 @param new_map: ID of the new map, or None |
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
173 @type object_id: str """ |
131 | 174 game_object = self.deleteObject(object_id) |
114
b10d12fbbb3f
Added moveObject method to the GameModel class.
KarstenBock@gmx.net
parents:
113
diff
changeset
|
175 self.game_state.addObject(object_id, new_map, game_object) |
146 | 176 |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
177 def deleteObject(self, object_id): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
178 """Removes an object from the game |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
179 @param object_id: ID of the object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
180 @type object_id: str """ |
146 | 181 if self.agents["All"].has_key(object_id): |
182 del self.agents["All"][object_id] | |
183 else: | |
184 del self.items[object_id] | |
131 | 185 return self.game_state.deleteObject(object_id) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
186 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
187 def save(self, path, filename): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
188 """Writes the saver to a file. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
189 @type filename: string |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
190 @param filename: the name of the file to write to |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
191 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
192 fname = '/'.join([path, filename]) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
193 try: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
194 save_file = open(fname, 'w') |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
195 except(IOError): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
196 sys.stderr.write("Error: Can't create save game: " + fname + "\n") |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
197 return |
131 | 198 |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
199 save_state = {} |
131 | 200 save_state["Agents"] = self.agents |
201 save_state["Items"] = self.items | |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
202 save_state["GameState"] = self.game_state.getStateForSaving() |
131 | 203 |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
204 yaml.dump(save_state, save_file) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
205 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
206 save_file.close() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
207 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
208 def load(self, path, filename): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
209 """Loads a saver from a file. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
210 @type filename: string |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
211 @param filename: the name of the file (including path) to load from |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
212 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
213 fname = '/'.join([path, filename]) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
214 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
215 try: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
216 load_file = open(fname, 'r') |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
217 except(IOError): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
218 sys.stderr.write("Error: Can't find save game file\n") |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
219 return |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
220 self.deleteMaps() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
221 self.clearAgents() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
222 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
223 save_state = yaml.load(load_file) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
224 self.game_state.restoreFromState(save_state["GameState"]) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
225 maps = save_state["Agents"] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
226 for map_name in maps: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
227 for agent_name in maps[map_name]: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
228 agent = {agent_name:maps[map_name][agent_name]} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
229 self.addAgent(map_name, agent) |
131 | 230 self.items = save_state["Items"] |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
231 |
131 | 232 load_file.close() |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
233 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
234 def teleport(self, agent, position): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
235 """Called when a an agent is moved instantly to a new position. |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
236 The setting of position may wan to be created as its own method down |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
237 the road. |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
238 @type position: String Tuple |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
239 @param position: X,Y coordinates passed from engine.changeMap |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
240 @return: fife.Location""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
241 logging.debug(position) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
242 coord = fife.DoublePoint3D(float(position[0]), float(position[1]), 0) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
243 location = fife.Location(self.active_map.agent_layer) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
244 location.setMapCoordinates(coord) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
245 agent.teleport(location) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
246 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
247 def getObjectAtCoords(self, coords): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
248 """Get the object which is at the given coords |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
249 @type coords: fife.Screenpoint |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
250 @param coords: Coordinates where to check for an object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
251 @rtype: fife.Object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
252 @return: An object or None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
253 instances = self.active_map.cameras[ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
254 self.active_map.my_cam_id].\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
255 getMatchingInstances(coords, self.active_map.agent_layer) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
256 # no object returns an empty tuple |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
257 if(instances != ()): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
258 front_y = 0 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
259 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
260 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
261 for obj in instances: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
262 # check to see if this in our list at all |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
263 if(self.objectActive(obj.getId())): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
264 # check if the object is on the foreground |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
265 obj_map_coords = \ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
266 obj.getLocation().getMapCoordinates() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
267 obj_screen_coords = self.active_map.\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
268 cameras[self.active_map.my_cam_id]\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
269 .toScreenCoordinates(obj_map_coords) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
270 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
271 if obj_screen_coords.y > front_y: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
272 #Object on the foreground |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
273 front_y = obj_screen_coords.y |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
274 return obj |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
275 else: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
276 return None |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
277 else: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
278 return None |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
279 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
280 def getCoords(self, click): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
281 """Get the map location x, y coordinates from the screen coordinates |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
282 @type click: fife.ScreenPoint |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
283 @param click: Screen coordinates |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
284 @rtype: fife.Location |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
285 @return: The map coordinates""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
286 coord = self.active_map.cameras[self.active_map.my_cam_id].\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
287 toMapCoordinates(click, False) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
288 coord.z = 0 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
289 location = fife.Location(self.active_map.agent_layer) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
290 location.setMapCoordinates(coord) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
291 return location |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
292 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
293 def pause(self, paused): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
294 """ Pause/Unpause the game |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
295 @return: nothing""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
296 if self.active_map: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
297 self.active_map.pause(paused) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
298 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
299 def togglePause(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
300 """ Toggle paused state. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
301 @return: nothing""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
302 self.active_map.togglePause() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
303 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
304 def isPaused(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
305 """Returns wheter the game is paused or not""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
306 return self.active_map.isPaused() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
307 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
308 def readMapFiles(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
309 """Read all a available map-files and store them""" |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
310 maps_file = vfs.VFS.open(self.game_state.maps_file) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
311 self.map_files = yaml.load(maps_file)["Maps"] |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
312 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
313 def addAgent(self, namespace, agent): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
314 """Adds an agent to the agents dictionary |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
315 @param namespace: the namespace where the agent is to be added to |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
316 @type namespace: str |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
317 @param agent: The agent to be added |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
318 @type agent: dict """ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
319 from fife.extensions.serializers.xml_loader_tools import loadImportFile |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
320 if not self.agents.has_key(namespace): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
321 self.agents[namespace] = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
322 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
323 agent_values = agent.values()[0] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
324 unique_agent_id = self.createUniqueID(agent.keys()[0]) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
325 del agent[agent.keys()[0]] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
326 agent[unique_agent_id] = agent_values |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
327 self.agents[namespace].update(agent) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
328 object_model = "" |
122 | 329 if agent_values["Entity"].has_key("graphics") \ |
330 and agent_values["Entity"]["graphics"].has_key("gfx"): | |
331 object_model = agent_values["Entity"]["graphics"]["gfx"] | |
146 | 332 elif agent_values.has_key("Template"): |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
333 template = self.object_db[agent_values["Template"]] |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
334 object_model = template["graphics"]["gfx"] |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
335 else: |
146 | 336 object_model = self.GENERIC_ITEM_GFX |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
337 import_file = self.agent_import_files[object_model] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
338 loadImportFile(self.obj_loader, import_file, self.engine) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
339 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
340 def readAgentsOfMap(self, map_name): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
341 """Read the agents of the map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
342 @param map_name: Name of the map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
343 @type map_name: str """ |
137 | 344 #Get the agents of the map |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
345 map_agents_file = self.map_files[map_name].\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
346 replace(".xml", "_agents.yaml") |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
347 agents_data = vfs.VFS.open(map_agents_file) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
348 agents = yaml.load_all(agents_data) |
137 | 349 self.agents[map_name] = {} |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
350 for agent in agents: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
351 if not agent == None: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
352 self.addAgent(map_name, agent) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
353 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
354 def readAllAgents(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
355 """Read the agents of the all_agents_file and store them""" |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
356 agents_file = vfs.VFS.open(self.all_agents_file) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
357 agents = yaml.load_all(agents_file) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
358 for agent in agents: |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
359 if agent is not None: |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
360 self.addAgent(self.ALL_AGENTS_KEY, agent) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
361 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
362 def getAgentsOfMap(self, map_name): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
363 """Returns the agents that are on the given map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
364 @param map_name: Name of the map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
365 @type map_name: str |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
366 @return: A dictionary with the agents of the map""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
367 if not self.agents.has_key(map_name): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
368 return {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
369 ret_dict = self.agents[map_name].copy() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
370 for agent_name, agent_value in self.agents[self.ALL_AGENTS_KEY]\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
371 .iteritems(): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
372 if agent_value["Map"] == map_name: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
373 ret_dict[agent_name] = agent_value |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
374 return ret_dict |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
375 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
376 def getAgentsOfActiveMap(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
377 """Returns the agents that are on active map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
378 @return: A dictionary with the agents of the map """ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
379 return self.getAgentsOfMap(self.active_map.map.getId()) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
380 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
381 def clearAgents(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
382 """Resets the agents dictionary""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
383 self.agents = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
384 self.agents[self.ALL_AGENTS_KEY] = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
385 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
386 def loadMap(self, map_name): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
387 """Load a new map. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
388 @type map_name: string |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
389 @param map_name: Name of the map to load |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
390 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
391 if not map_name in self.game_state.maps: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
392 map_file = self.map_files[map_name] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
393 new_map = GameMap(self.engine, self) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
394 self.game_state.maps[map_name] = new_map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
395 new_map.load(map_file) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
396 |
64
32faacaf6f28
Added funcionality to load Entities from file
KarstenBock@gmx.net
parents:
12
diff
changeset
|
397 def createAgent(self, agent, inst_id, world): |
129
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
398 if self.game_state.hasObject(inst_id): |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
399 return None |
118 | 400 entity_data = deepcopy(agent["Entity"]) |
122 | 401 entity_data["fifeagent"] = {} |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
402 template = None |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
403 if agent.has_key("Template"): |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
404 template = agent["Template"] |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
405 entity_data = self.checkAttributes(entity_data, template) |
146 | 406 object_id = (entity_data["graphics"]["gfx"] |
407 if entity_data.has_key("graphics") and | |
408 entity_data["graphics"].has_key("gfx") | |
409 else self.GENERIC_ITEM_GFX | |
410 ) | |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
411 map_obj = self.fife_model.getObject(str(object_id), "PARPG") |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
412 if not map_obj: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
413 logging.warning("Object with inst_id={0}, ns=PARPG, " |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
414 "could not be found. " |
118 | 415 "Omitting...".format(str(object_id))) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
416 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
417 x_pos = agent["Position"][0] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
418 y_pos = agent["Position"][1] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
419 z_pos = agent["Position"][2] if len(agent["Position"]) == 3 \ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
420 else 0.0 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
421 stack_pos = agent["Stackposition"] if \ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
422 agent.has_key("StackPosition") \ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
423 else None |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
424 inst = self.active_map.agent_layer.\ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
425 createInstance(map_obj, |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
426 fife.ExactModelCoordinate(x_pos, |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
427 y_pos, |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
428 z_pos), |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
429 inst_id) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
430 inst.setId(inst_id) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
431 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
432 rotation = agent["Rotation"] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
433 inst.setRotation(rotation) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
434 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
435 fife.InstanceVisual.create(inst) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
436 if (stack_pos): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
437 inst.get2dGfxVisual().setStackPosition(int(stack_pos)) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
438 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
439 if (map_obj.getAction('default')): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
440 target = fife.Location(self.active_map.agent_layer) |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
441 inst.act('default', target, True) |
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
442 |
120 | 443 if entity_data.has_key("behaviour"): |
444 entity_data["fifeagent"]["behaviour"] = \ | |
445 getattr(behaviours, | |
446 entity_data["behaviour"]["behaviour_type"])() | |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
447 else: |
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
448 entity_data["fifeagent"]["behaviour"] = behaviours.Base() |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
449 if self.dialogues.has_key(inst_id): |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
450 entity_data["dialogue"] = {} |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
451 entity_data["dialogue"]["dialogue"] = self.dialogues[inst_id] |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
452 if (entity_data.has_key("containable") and not |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
453 entity_data["containable"].has_key("item_type") |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
454 ): |
187 | 455 entity_data["containable"]["item_type"] = template |
456 | |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
457 obj = self.createMapObject(self.active_map.agent_layer, |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
458 entity_data, inst_id, world) |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
459 |
187 | 460 if agent.has_key("Statistics"): |
461 self.create_stats(obj) | |
462 for name, val in agent["Statistics"].iteritems(): | |
463 obj.characterstats.primary_stats[name].value = val | |
464 | |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
465 if agent.has_key("Inventory"): |
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
466 inv = agent["Inventory"] |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
467 self.createInventoryItems(inv, obj, world) |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
468 |
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
469 if agent.has_key("Equipment"): |
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
470 for slot, data in agent["Equipment"].iteritems(): |
129
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
471 item = None |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
472 if data.has_key("type"): |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
473 item_type = data["type"] |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
474 item_data = {} |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
475 item_data = self.checkAttributes(item_data, item_type) |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
476 if (item_data.has_key("containable") and |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
477 item_data.has_key("equipable")): |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
478 item = self.createItem( |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
479 self.createUniqueID(data["ID"]), |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
480 item_data, world, item_type) |
129
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
481 else: |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
482 raise Exception( |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
483 "Item %s is not containable or equipable." % |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
484 item_type |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
485 ) |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
486 else: |
129
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
487 identifier = data["ID"] |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
488 if self.game_state.hasObject(identifier): |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
489 item = self.game_state.getObjectById(identifier) |
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
490 else: |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
491 item_data = self.items[identifier]["Entity"] |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
492 item_type = item_data["containable"]["item_type"] |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
493 item = self.createItem(identifier, item_data, |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
494 world, item_type) |
129
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
495 equip.equip(obj.equip, item.equipable, slot) |
135
e28c13a4802a
Fixed graphical representation of lockables, that are open, when creating the agent.
KarstenBock@gmx.net
parents:
131
diff
changeset
|
496 if (obj.fifeagent and (obj.lockable and not obj.lockable.closed)): |
e28c13a4802a
Fixed graphical representation of lockables, that are open, when creating the agent.
KarstenBock@gmx.net
parents:
131
diff
changeset
|
497 obj.fifeagent.behaviour.animate("opened", repeating=True) |
129
7583965ddcd6
If Items in containers or being equipped have no type the game will now try to get the object using the ID.
KarstenBock@gmx.net
parents:
128
diff
changeset
|
498 return obj |
108
2f928c913c78
Fixed item_type not being set when creating items.
KarstenBock@gmx.net
parents:
106
diff
changeset
|
499 |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
500 def createInventoryItems(self, inv, obj, world): |
161
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
501 slots = inv["Slots"] |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
502 obj.container.children = list() |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
503 for x in xrange(slots): |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
504 obj.container.children.append(None) |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
505 items = inv["Items"] if inv.has_key("Items") else list() |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
506 for data in items: |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
507 item = None |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
508 slot = data["Slot"] if data.has_key("Slot") else -1 |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
509 if data.has_key("type"): |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
510 item_type = data["type"] |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
511 item = self.createItemByType(item_type, data["ID"], world) |
161
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
512 else: |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
513 identifier = data["ID"] |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
514 item = self.createItemByID(world, identifier) |
161
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
515 |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
516 container.put_item(obj.container, item.containable, slot) |
d1f9652d0651
Fixed contents of containers, that are contained in other containers, not correctly restoring.
KarstenBock@gmx.net
parents:
157
diff
changeset
|
517 |
162
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
518 def createItemByID(self, world, identifier): |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
519 if self.game_state.hasObject(identifier): |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
520 item = self.game_state.getObjectById(identifier) |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
521 else: |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
522 agent_data = self.items[identifier] |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
523 item_data = agent_data["Entity"] |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
524 item_type = item_data["containable"]["item_type"] |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
525 item = self.createItem(identifier, item_data, |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
526 world, item_type) |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
527 if item.container and agent_data.has_key("Inventory"): |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
528 self.createInventoryItems(agent_data["Inventory"], |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
529 item, world) |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
530 return item |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
531 |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
532 def createItemByType(self, item_type, identifier, world): |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
533 item_data = {} |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
534 item_data = self.checkAttributes(item_data, item_type) |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
535 if item_data.has_key("containable"): |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
536 return self.createItem( self.createUniqueID(identifier), |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
537 item_data, world, item_type) |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
538 else: |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
539 raise Exception("Item %s is not containable." % item_type) |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
540 |
79c186b69603
Split code off from createInventoryItems to createItemByID and createItemByType.
KarstenBock@gmx.net
parents:
161
diff
changeset
|
541 def createItem(self, identifier, item_data, world, item_type): |
146 | 542 if not item_data["description"].has_key("view_name"): |
543 item_data["description"]["view_name"] = ( | |
544 item_data["description"]["real_name"]) | |
116
9b5498e3bda0
Move the identifier field from the FifeAgent component to the new General component.
KarstenBock@gmx.net
parents:
114
diff
changeset
|
545 item = createEntity(item_data, identifier, world, None) |
108
2f928c913c78
Fixed item_type not being set when creating items.
KarstenBock@gmx.net
parents:
106
diff
changeset
|
546 item.containable.item_type = item_type |
116
9b5498e3bda0
Move the identifier field from the FifeAgent component to the new General component.
KarstenBock@gmx.net
parents:
114
diff
changeset
|
547 self.game_state.addObject(identifier, None, item) |
167
097782ae9c77
createItem now calls UpdateObjectDB after it created the item.
KarstenBock@gmx.net
parents:
162
diff
changeset
|
548 self.updateObjectDB(world) |
108
2f928c913c78
Fixed item_type not being set when creating items.
KarstenBock@gmx.net
parents:
106
diff
changeset
|
549 return item |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
550 |
64
32faacaf6f28
Added funcionality to load Entities from file
KarstenBock@gmx.net
parents:
12
diff
changeset
|
551 def placeAgents(self, world): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
552 """Places the current maps agents """ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
553 if not self.active_map: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
554 return |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
555 agents = self.getAgentsOfMap(self.game_state.current_map_name) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
556 for agent in agents: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
557 if agent == "PlayerCharacter": |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
558 continue |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
559 if self.active_map.agent_layer.getInstances(agent): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
560 continue |
64
32faacaf6f28
Added funcionality to load Entities from file
KarstenBock@gmx.net
parents:
12
diff
changeset
|
561 self.createAgent(agents[agent], agent, world) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
562 |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
563 def placePC(self, world): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
564 """Places the PlayerCharacter on the map""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
565 agent = self.agents[self.ALL_AGENTS_KEY]["PlayerCharacter"] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
566 inst_id = "PlayerCharacter" |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
567 self.createAgent(agent, inst_id, world) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
568 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
569 # create the PlayerCharacter agent |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
570 self.active_map.addPC() |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
571 #self.game_state.getObjectById("PlayerCharacter").fifeagent.start() |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
572 if agent.has_key("PeopleKnown"): |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
573 player = self.game_state.getObjectById("PlayerCharacter") |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
574 player.fifeagent.people_i_know = agent["PeopleKnown"] |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
575 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
576 def changeMap(self, map_name, target_position = None): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
577 """Registers for a map change on the next pump(). |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
578 @type map_name: String |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
579 @param map_name: Id of the map to teleport to |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
580 @type map_file: String |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
581 @param map_file: Filename of the map to teleport to |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
582 @type target_position: Tuple |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
583 @param target_position: Position of PlayerCharacter on target map. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
584 @return None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
585 # set the parameters for the map change if moving to a new map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
586 if map_name != self.game_state.current_map_name: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
587 self.target_map_name = map_name |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
588 self.target_position = target_position |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
589 # issue the map change |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
590 self.map_change = True |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
591 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
592 def deleteMaps(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
593 """Clear all currently loaded maps from FIFE as well as clear our |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
594 local map cache |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
595 @return: nothing""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
596 self.engine.getModel().deleteMaps() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
597 self.engine.getModel().deleteObjects() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
598 self.game_state.clearObjects() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
599 self.game_state.maps = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
600 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
601 def setActiveMap(self, map_name): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
602 """Sets the active map that is to be rendered. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
603 @type map_name: String |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
604 @param map_name: The name of the map to load |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
605 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
606 # Turn off the camera on the old map before we turn on the camera |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
607 # on the new map. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
608 self.active_map.cameras[self.active_map.my_cam_id].setEnabled(False) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
609 # Make the new map active. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
610 self.active_map = self.game_state.maps[map_name] |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
611 self.active_map.makeActive() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
612 self.game_state.current_map_name = map_name |
138
c9fba51214ed
Fixed bug where the objects of a map where not correctly restored when changing between maps.
KarstenBock@gmx.net
parents:
137
diff
changeset
|
613 if not self.agents.has_key(map_name): |
c9fba51214ed
Fixed bug where the objects of a map where not correctly restored when changing between maps.
KarstenBock@gmx.net
parents:
137
diff
changeset
|
614 self.readAgentsOfMap(map_name) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
615 |
116
9b5498e3bda0
Move the identifier field from the FifeAgent component to the new General component.
KarstenBock@gmx.net
parents:
114
diff
changeset
|
616 def createMapObject (self, layer, attributes, inst_id, world): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
617 """Create an object and add it to the current map. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
618 @type layer: fife.Layer |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
619 @param layer: FIFE layer object exists in |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
620 @type attributes: Dictionary |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
621 @param attributes: Dictionary of all object attributes |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
622 @type instance: fife.Instance |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
623 @param instance: FIFE instance corresponding to the object |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
624 @return: The created object""" |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
625 # create the extra data |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
626 extra = {} |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
627 if layer is not None: |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
628 extra['fifeagent'] = {} |
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
629 extra['fifeagent']['layer'] = layer |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
630 |
116
9b5498e3bda0
Move the identifier field from the FifeAgent component to the new General component.
KarstenBock@gmx.net
parents:
114
diff
changeset
|
631 obj = createEntity(attributes, inst_id, world, extra) |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
632 if obj: |
105
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
633 self.addObject(layer, obj) |
7829eb185d6f
(Re)added setting of inventory and equipment in the object files.
KarstenBock@gmx.net
parents:
92
diff
changeset
|
634 return obj |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
635 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
636 def addPC(self, layer, player_char): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
637 """Add the PlayerCharacter to the map |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
638 @type layer: fife.Layer |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
639 @param layer: FIFE layer object exists in |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
640 @type player_char: PlayerCharacter |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
641 @param player_char: PlayerCharacter object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
642 @type instance: fife.Instance |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
643 @param instance: FIFE instance of PlayerCharacter |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
644 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
645 # For now we copy the PlayerCharacter, |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
646 # in the future we will need to copy |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
647 # PlayerCharacter specifics between the different PlayerCharacter's |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
648 player = self.game_state.getObjectById("PlayerCharacter") |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
649 player.fifeagent = player_char |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
650 player.fifeagent.setup() |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
651 player.fifeagent.behaviour.speed = self.settings.parpg.PCSpeed |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
652 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
653 |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
654 def addObject(self, layer, obj): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
655 """Adds an object to the map. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
656 @type layer: fife.Layer |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
657 @param layer: FIFE layer object exists in |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
658 @type obj: GameObject |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
659 @param obj: corresponding object class |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
660 @type instance: fife.Instance |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
661 @param instance: FIFE instance of object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
662 @return: None""" |
116
9b5498e3bda0
Move the identifier field from the FifeAgent component to the new General component.
KarstenBock@gmx.net
parents:
114
diff
changeset
|
663 ref = self.game_state.getObjectById(obj.general.identifier, |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
664 self.game_state.current_map_name) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
665 if ref is None: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
666 # no, add it to the game state |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
667 self.game_state.addObject(obj.general.identifier, |
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
668 self.game_state.current_map_name, obj) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
669 else: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
670 # yes, use the current game state data |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
671 obj.fifeagent.pos.X = ref.X |
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
672 obj.fifeagent.pos.Y = ref.Y |
118 | 673 obj.fifeagent.gfx = ref.gfx |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
674 |
88
d89e88a90c9e
Implemented creation of dynamic entities.
KarstenBock@gmx.net
parents:
84
diff
changeset
|
675 if obj.fifeagent.behaviour: |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
676 obj.fifeagent.behaviour.parent = obj |
73
58661f5b2f6b
Removed layer as attribute of BaseBehaviour and added it as a parameter to the attachToLayer method.
KarstenBock@gmx.net
parents:
69
diff
changeset
|
677 fifeagent.setup_behaviour(obj.fifeagent) |
58661f5b2f6b
Removed layer as attribute of BaseBehaviour and added it as a parameter to the attachToLayer method.
KarstenBock@gmx.net
parents:
69
diff
changeset
|
678 obj.fifeagent.behaviour.speed = self.settings.parpg.PCSpeed |
58661f5b2f6b
Removed layer as attribute of BaseBehaviour and added it as a parameter to the attachToLayer method.
KarstenBock@gmx.net
parents:
69
diff
changeset
|
679 #Start the behaviour |
58661f5b2f6b
Removed layer as attribute of BaseBehaviour and added it as a parameter to the attachToLayer method.
KarstenBock@gmx.net
parents:
69
diff
changeset
|
680 obj.fifeagent.behaviour.idle() |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
681 # create the agent |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
682 #obj.setup() |
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
683 #obj.behaviour.speed = self.settings.parpg.PCSpeed |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
684 # create the PlayerCharacter agent |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
685 #obj.start() |
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
686 #if obj.trueAttr("AnimatedContainer"): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
687 # create the agent |
69
ad75fa042b99
Changes to make PARPG "runable" with grease. (With the correct modified assets)
KarstenBock@gmx.net
parents:
66
diff
changeset
|
688 #obj.setup() |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
689 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
690 def objectActive(self, ident): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
691 """Given the objects ID, pass back the object if it is active, |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
692 False if it doesn't exist or not displayed |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
693 @type ident: string |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
694 @param ident: ID of object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
695 @rtype: boolean |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
696 @return: Status of result (True/False)""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
697 for game_object in \ |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
698 self.game_state.getObjectsFromMap(self.game_state.current_map_name): |
116
9b5498e3bda0
Move the identifier field from the FifeAgent component to the new General component.
KarstenBock@gmx.net
parents:
114
diff
changeset
|
699 if (game_object.general.identifier == ident): |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
700 # we found a match |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
701 return game_object |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
702 # no match |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
703 return False |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
704 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
705 def movePlayer(self, position): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
706 """Code called when the player should move to another location |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
707 @type position: fife.ScreenPoint |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
708 @param position: Screen position to move to |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
709 @return: None""" |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
710 player = self.game_state.getObjectById("PlayerCharacter") |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
711 if(self.pc_run == 1): |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
712 player.fifeagent.behaviour.run(position) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
713 else: |
182
59c9ce2b8351
PARPG now works with, and needs Fife 0.3.3.
KarstenBock@gmx.net
parents:
167
diff
changeset
|
714 player.fifeagent.behaviour.walk(position) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
715 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
716 def teleportAgent(self, agent, position): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
717 """Code called when an agent should teleport to another location |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
718 @type position: fife.ScreenPoint |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
719 @param position: Screen position to teleport to |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
720 @return: None""" |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
721 agent.teleport(position) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
722 self.agents[agent.ID]["Position"] = position |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
723 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
724 def readObjectDB(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
725 """Reads the Object Information Database from a file. """ |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
726 database_file = vfs.VFS.open(self.object_db_file) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
727 database = yaml.load_all(database_file) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
728 for object_info in database: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
729 self.object_db.update(object_info) |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
730 |
118 | 731 def updateObjectDB(self, world): |
732 """Updates the values in the object database with the worlds values""" | |
733 | |
157
db6403c1a7a1
Fixed that dropped items cannot be picked up.
KarstenBock@gmx.net
parents:
155
diff
changeset
|
734 all_agents = self.agents[self.ALL_AGENTS_KEY] |
118 | 735 for entity in world.entities: |
736 identifier = entity.general.identifier | |
737 agent_data = {} | |
738 map_id = self.game_state.getMapOfObject(identifier) | |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
739 if map_id: |
157
db6403c1a7a1
Fixed that dropped items cannot be picked up.
KarstenBock@gmx.net
parents:
155
diff
changeset
|
740 if all_agents.has_key(identifier): |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
741 agent_data = self.agents[self.ALL_AGENTS_KEY][identifier] |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
742 else: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
743 agent_data = self.agents[map_id][identifier] |
157
db6403c1a7a1
Fixed that dropped items cannot be picked up.
KarstenBock@gmx.net
parents:
155
diff
changeset
|
744 |
118 | 745 else: |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
746 if not self.items.has_key(identifier): |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
747 self.items[identifier] = {} |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
748 agent_data = self.items[identifier] |
118 | 749 entity_data = {} |
750 entity_data["general"] = {"identifier": identifier} | |
751 for name, component in components.components.iteritems(): | |
120 | 752 if getattr(entity, name): |
118 | 753 comp_data = {} |
128
2a661e259b8b
updateObjectDB of GameModel now uses saveable_fields.
KarstenBock@gmx.net
parents:
122
diff
changeset
|
754 comp_vals = getattr(entity, name) |
2a661e259b8b
updateObjectDB of GameModel now uses saveable_fields.
KarstenBock@gmx.net
parents:
122
diff
changeset
|
755 #Items that are in containers will be saved with them. |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
756 for field in component.saveable_fields: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
757 try: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
758 comp_data[field] = getattr(comp_vals, field) |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
759 except AttributeError: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
760 #The entity doesn't have this specific value, |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
761 #ignore it |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
762 pass |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
763 if comp_data: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
764 entity_data[name] = comp_data |
118 | 765 if name == "fifeagent": |
766 if entity.fifeagent.layer: | |
767 layer = entity.fifeagent.layer | |
768 inst = layer.getInstance(identifier) | |
769 loc = inst.getLocation().getExactLayerCoordinates() | |
770 agent_data["Position"] = (loc.x, loc.y, loc.z) | |
157
db6403c1a7a1
Fixed that dropped items cannot be picked up.
KarstenBock@gmx.net
parents:
155
diff
changeset
|
771 if all_agents.has_key(identifier): |
db6403c1a7a1
Fixed that dropped items cannot be picked up.
KarstenBock@gmx.net
parents:
155
diff
changeset
|
772 agent_data["Map"] = map_id |
118 | 773 agent_data["Rotation"] = inst.getRotation() |
187 | 774 elif name == "characterstats": |
775 agent_data["Statistics"] = ( | |
776 character_statistics.get_stat_values( | |
777 entity.characterstats | |
778 )["primary"] | |
779 ) | |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
780 elif name == "container" and hasattr(comp_vals, |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
781 "children"): |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
782 inventory_data = {} |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
783 inventory_data["Slots"] = len(comp_vals.children) |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
784 items = [] |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
785 for child in comp_vals.children: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
786 if not child: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
787 continue |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
788 items.append( |
136
e1fd4cda237d
Added optional Slot value to the "Items" list in the agents file.
KarstenBock@gmx.net
parents:
135
diff
changeset
|
789 {"ID": child.entity.general.identifier, |
e1fd4cda237d
Added optional Slot value to the "Items" list in the agents file.
KarstenBock@gmx.net
parents:
135
diff
changeset
|
790 "Slot": child.slot} |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
791 ) |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
792 inventory_data["Items"] = items |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
793 agent_data["Inventory"] = inventory_data |
118 | 794 elif name == "equip": |
130
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
795 equip_data = {} |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
796 for field in component.fields: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
797 if(hasattr(comp_vals, field)): |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
798 equipable = getattr(comp_vals, field) |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
799 if equipable: |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
800 equip_data[field] = { |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
801 "ID": |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
802 equipable.entity.general.identifier |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
803 } |
9fcff924eb6f
updateObjectDB now saves equipment and inventory too.
KarstenBock@gmx.net
parents:
129
diff
changeset
|
804 agent_data["Equipment"] = equip_data |
187 | 805 agent_data["Entity"] = entity_data |
118 | 806 |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
807 def getAgentImportFiles(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
808 """Searches the agents directory for import files """ |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
809 filepaths = locateFiles("*.xml", self.objects_directory) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
810 for filepath in filepaths: |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
811 try: |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
812 xml_file = vfs.VFS.open(filepath) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
813 root = ElementTree.parse(xml_file).getroot() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
814 if root.tag == "object": |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
815 self.agent_import_files[root.attrib["id"]] = filepath |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
816 except SyntaxError as error: |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
817 logging.error("Error parsing file {0}: {1}".format(filepath, |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
818 error)) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
819 |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
820 def getDialogues(self): |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
821 """Searches the dialogue directory for dialogues """ |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
822 files = locateFiles("*.yaml", self.dialogue_directory) |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
823 dialogue_parser = YamlDialogueParser() |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
824 for dialogue_filepath in files: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
825 # Note Technomage 2010-11-13: the new DialogueEngine uses its own |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
826 # parser now, YamlDialogueParser. |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
827 # dialogues = yaml.load_all(file(dialogue_file, "r")) |
12
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
828 dialogue_file = vfs.VFS.open(dialogue_filepath) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
829 try: |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
830 dialogue = dialogue_parser.load(dialogue_file) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
831 except DialogueFormatError as error: |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
832 logging.error('unable to load dialogue file {0}: {1}' |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
833 .format(dialogue_filepath, error)) |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
834 else: |
d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
M. George Hansen <technopolitica@gmail.com>
parents:
0
diff
changeset
|
835 self.dialogues[dialogue.npc_name] = dialogue |
0
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
836 # Note Technomage 2010-11-13: the below code is used to load |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
837 # multiple dialogues from a single file. Is this functionality |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
838 # used/necessary? |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
839 # for dialogue in dialogues: |
1fd2201f5c36
Initial commit of parpg-core.
M. George Hansen <technopolitica@gmail.com>
parents:
diff
changeset
|
840 # self.dialogues[dialogue["NPC"]] = dialogue |