X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=new%2Fplomrogue%2Fgame.py;h=9b20cb2e48e78036c6495849d12a3541ebab0843;hb=34a2854e63892c17232fed7795d1b0d16d014626;hp=a031406b19e32a36432bea01131df305df0a3c5f;hpb=faf90001efa004054b41df5e2638b6c7c4c1fd98;p=plomrogue2-experiments diff --git a/new/plomrogue/game.py b/new/plomrogue/game.py index a031406..9b20cb2 100755 --- a/new/plomrogue/game.py +++ b/new/plomrogue/game.py @@ -1,4 +1,4 @@ -from plomrogue.tasks import Task_WAIT, Task_MOVE +from plomrogue.tasks import Task_WAIT, Task_MOVE, Task_PICKUP, Task_DROP from plomrogue.errors import ArgError from plomrogue.commands import (cmd_GEN_WORLD, cmd_GET_GAMESTATE, cmd_MAP, cmd_MAP, cmd_THING_TYPE, cmd_THING_POS, @@ -8,7 +8,7 @@ from plomrogue.mapping import MapHex from plomrogue.parser import Parser from plomrogue.io import GameIO from plomrogue.misc import quote, stringify_yx -from plomrogue.things import Thing, ThingMonster, ThingHuman +from plomrogue.things import Thing, ThingMonster, ThingHuman, ThingItem @@ -37,6 +37,11 @@ class World(WorldBase): super().__init__(*args, **kwargs) self.player_id = 0 + def new_thing_id(self): + if len(self.things) == 0: + return 0 + return self.things[-1].id_ + 1 + def new_map(self, yx): self.map_ = self.game.map_type(yx) @@ -69,6 +74,15 @@ class World(WorldBase): def make_new(self, yx, seed): import random + + def add_thing(type_): + t = self.game.thing_types[type_](self) + t.position = [random.randint(0, yx[0] -1), + random.randint(0, yx[1] - 1)] + self.things += [t] + return t + + self.things = [] random.seed(seed) self.turn = 0 self.new_map(yx) @@ -77,13 +91,13 @@ class World(WorldBase): self.map_[pos] = '#' continue self.map_[pos] = random.choice(('.', '.', '.', '.', 'x')) - player = self.game.thing_types['human'](self, 0) - player.position = [random.randint(0, yx[0] -1), - random.randint(0, yx[1] - 1)] - npc = self.game.thing_types['monster'](self, 1) - npc.position = [random.randint(0, yx[0] -1), - random.randint(0, yx[1] -1)] - self.things = [player, npc] + + player = add_thing('human') + self.player_id = player.id_ + add_thing('monster') + add_thing('monster') + add_thing('item') + add_thing('item') return 'success' @@ -93,7 +107,10 @@ class Game: def __init__(self, game_file_name): self.io = GameIO(game_file_name, self) self.map_type = MapHex - self.tasks = {'WAIT': Task_WAIT, 'MOVE': Task_MOVE} + self.tasks = {'WAIT': Task_WAIT, + 'MOVE': Task_MOVE, + 'PICKUP': Task_PICKUP, + 'DROP': Task_DROP} self.commands = {'GEN_WORLD': cmd_GEN_WORLD, 'GET_GAMESTATE': cmd_GET_GAMESTATE, 'MAP': cmd_MAP, @@ -107,7 +124,9 @@ class Game: self.world_type = World self.world = self.world_type(self) self.thing_type = Thing - self.thing_types = {'human': ThingHuman, 'monster': ThingMonster} + self.thing_types = {'human': ThingHuman, + 'monster': ThingMonster, + 'item': ThingItem} def get_string_options(self, string_option_type): if string_option_type == 'direction': @@ -131,6 +150,16 @@ class Game: stringify_yx(thing.position))) player = self.world.get_player() self.io.send('PLAYER_POS %s' % (stringify_yx(player.position))) + if len(player.inventory) > 0: + self.io.send('PLAYER_INVENTORY %s' % ','.join([str(i) for i in + player.inventory])) + else: + self.io.send('PLAYER_INVENTORY ,') + for id_ in player.inventory: + thing = self.world.get_thing(id_) + self.io.send('THING_TYPE %s %s' % (thing.id_, thing.type_)) + self.io.send('THING_POS %s %s' % (thing.id_, + stringify_yx(thing.position))) self.io.send('GAME_STATE_COMPLETE') def proceed(self):