X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/git-logo.png?a=blobdiff_plain;ds=sidebyside;f=server_%2Fgame.py;h=bcf41b7ddeb10bd50f3283da04b76c898bb00c7a;hb=4fc1e457d1a4b4497334f3141a372d525d25bcfe;hp=82759c25aee6b97fa37e978589f1fc3d05744aae;hpb=f2dd5a3a7f60321fdfd4189d453ac952f6b15716;p=plomrogue2-experiments diff --git a/server_/game.py b/server_/game.py index 82759c2..bcf41b7 100644 --- a/server_/game.py +++ b/server_/game.py @@ -10,25 +10,33 @@ class GameError(Exception): class Map(game_common.Map): def __getitem__(self, yx): - return self.terrain[self.get_pos_i(yx)] + return self.terrain[self.get_position_index(yx)] def __setitem__(self, yx, c): - pos_i = self.get_pos_i(yx) + pos_i = self.get_position_index(yx) self.terrain = self.terrain[:pos_i] + c + self.terrain[pos_i + 1:] def __iter__(self): + """Iterate over YX position coordinates.""" for y in range(self.size[0]): for x in range(self.size[1]): yield [y, x] + def lines(self): + width = self.size[1] + for y in range(self.size[0]): + yield (y, self.terrain[y * width:(y + 1) * width]) + + # The following is used nowhere, so not implemented. + #def items(self): + # for y in range(self.size[0]): + # for x in range(self.size[1]): + # yield ([y, x], self.terrain[self.get_position_index([y, x])]) + @property def size_i(self): return self.size[0] * self.size[1] - def get_line(self, y): - width = self.size[1] - return self.terrain[y * width:(y + 1) * width] - def get_directions(self): directions = [] for name in dir(self): @@ -36,14 +44,22 @@ class Map(game_common.Map): directions += [name[5:]] return directions - def get_pos_i(self, yx): - return yx[0] * self.size[1] + yx[1] - def new_from_shape(self, init_char): return Map(self.size, init_char*self.size_i) + #def are_neighbors(self, pos_1, pos_2): + # return abs(pos_1[0] - pos_2[0]) <= 1 and abs(pos_1[1] - pos_2[1] <= 1) + def are_neighbors(self, pos_1, pos_2): - return abs(pos_1[0] - pos_2[0]) <= 1 and abs(pos_1[1] - pos_2[1] <= 1) + if pos_1[0] == pos_2[0] and abs(pos_1[1] - pos_2[1]) <= 1: + return True + elif abs(pos_1[0] - pos_2[0]) == 1: + if pos_1[0] % 2 == 0: + if pos_2[1] in (pos_1[1], pos_1[1] - 1): + return True + elif pos_2[1] in (pos_1[1], pos_1[1] + 1): + return True + return False def move(self, start_pos, direction): mover = getattr(self, 'move_' + direction) @@ -53,24 +69,49 @@ class Map(game_common.Map): raise GameError('would move outside map bounds') return new_pos - def move_UP(self, start_pos): - return [start_pos[0] - 1, start_pos[1]] - - def move_DOWN(self, start_pos): - return [start_pos[0] + 1, start_pos[1]] - def move_LEFT(self, start_pos): return [start_pos[0], start_pos[1] - 1] def move_RIGHT(self, start_pos): return [start_pos[0], start_pos[1] + 1] + #def move_UP(self, start_pos): + # return [start_pos[0] - 1, start_pos[1]] + + #def move_DOWN(self, start_pos): + # return [start_pos[0] + 1, start_pos[1]] + + def move_UPLEFT(self, start_pos): + if start_pos[0] % 2 == 0: + return [start_pos[0] - 1, start_pos[1] - 1] + else: + return [start_pos[0] - 1, start_pos[1]] + + def move_UPRIGHT(self, start_pos): + if start_pos[0] % 2 == 0: + return [start_pos[0] - 1, start_pos[1]] + else: + return [start_pos[0] - 1, start_pos[1] + 1] + + def move_DOWNLEFT(self, start_pos): + if start_pos[0] % 2 == 0: + return [start_pos[0] + 1, start_pos[1] - 1] + else: + return [start_pos[0] + 1, start_pos[1]] + + def move_DOWNRIGHT(self, start_pos): + if start_pos[0] % 2 == 0: + return [start_pos[0] + 1, start_pos[1]] + else: + return [start_pos[0] + 1, start_pos[1] + 1] + class World(game_common.World): def __init__(self): super().__init__() self.Thing = Thing # use local Thing class instead of game_common's + self.Map = Map # use local Map class instead of game_common's self.map_ = Map() # use extended child class self.player_id = 0 @@ -236,11 +277,10 @@ class Game(game_common.CommonCommandsMixin): return 'Y:' + str(tuple_[0]) + ',X:' + str(tuple_[1]) self.io.send('NEW_TURN ' + str(self.world.turn)) - self.io.send('MAP_SIZE ' + stringify_yx(self.world.map_.size)) + self.io.send('MAP ' + stringify_yx(self.world.map_.size)) visible_map = self.world.get_player().get_visible_map() - for y in range(self.world.map_.size[0]): - self.io.send('VISIBLE_MAP_LINE %5s %s' % - (y, self.io.quote(visible_map.get_line(y)))) + for y, line in visible_map.lines(): + self.io.send('VISIBLE_MAP_LINE %5s %s' % (y, self.io.quote(line))) visible_things = self.world.get_player().get_visible_things() for thing in visible_things: self.io.send('THING_TYPE %s %s' % (thing.id_, thing.type_))