コード例 #1
0
 def test_coordinate_interpollating(self):
     """Test coordinate interpollating."""
     grid = Grid(5)
     grid.create_grid()
     result = 20
     interp = grid.interpolate(0, 100, 0.2)
     self.assertEqual(interp, result)
コード例 #2
0
 def test_hex_rounding(self):
     """Test coordinate rounding."""
     grid = Grid(5)
     grid.create_grid()
     float_coordinates = (1.75, -0.75, -1.25)
     result_coordinates = (2, -1, -1)
     self.assertEqual(grid.hex_round(float_coordinates), result_coordinates)
コード例 #3
0
 def test_getting_neighbour_of_hex_in_direction(self):
     """Test get neighbour in direction."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((1, -1, 0))
     hex_result = Hex(2, -1, -1)
     self.assertEqual(grid.get_neighbour_in_direction(hex_a, 1), hex_result)
コード例 #4
0
 def test_dijkstra(self):
     """Test dijkstras."""
     grid = Grid(5)
     grid.create_grid()
     hexagon = Hex(-1, 1, 0)
     grid.get_hextile((0, 0, 0)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                   BiomeType.GRASSLAND)
     grid.get_hextile((0, 1, -1)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                    BiomeType.GRASSLAND)
     grid.get_hextile((-1, 0, 1)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                    BiomeType.GRASSLAND)
     result = [
         Hex(-1, 1, 0),
         Hex(-1, 2, -1),
         Hex(-2, 2, 0),
         Hex(-2, 1, 1),
         Hex(0, 2, -2),
         Hex(2, 0, -2),
         Hex(2, -1, -1),
         Hex(-2, 0, 2),
         Hex(2, -2, 0),
         Hex(1, -2, 1),
         Hex(0, -2, 2)
     ]
     dijkstra = [x for x in grid.dijkstra(hexagon, 2)]
     result = set(result).difference(dijkstra)
     self.assertEqual(set(), result)
コード例 #5
0
 def test_scaling_of_hex(self):
     """Test hex scaling."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((0, 1, -1))
     hex_result = Hex(0, 2, -2)
     self.assertEqual(grid.scale(hex_a, 2), hex_result)
コード例 #6
0
 def test_wrap_around(self):
     """Test wrap-around coordinates."""
     grid = Grid(5)
     grid.create_grid()
     coordinates = (-3, 3, 0)
     result = (0, -2, 2)
     self.assertEqual(grid.wrap_around(coordinates), result)
コード例 #7
0
 def test_rotate_left_of_hex(self):
     """Test rotate left."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((1, 0, -1))
     hex_result = Hex(1, -1, 0)
     self.assertEqual(grid.rotate_left(hex_a), hex_result)
コード例 #8
0
 def test_spiral_ring(self):
     """Test spiral rings."""
     grid = Grid(7)
     grid.create_grid()
     hexagon = Hex(-1, 1, 0)
     result = [
         Hex(-2, 1, 1),
         Hex(-1, 0, 1),
         Hex(0, 0, 0),
         Hex(0, 1, -1),
         Hex(-1, 2, -1),
         Hex(-2, 2, 0),
         Hex(-3, 1, 2),
         Hex(-2, 0, 2),
         Hex(-1, -1, 2),
         Hex(0, -1, 1),
         Hex(1, -1, 0),
         Hex(1, 0, -1),
         Hex(1, 1, -2),
         Hex(0, 2, -2),
         Hex(-1, 3, -2),
         Hex(-2, 3, -1),
         Hex(-3, 3, 0),
         Hex(-3, 2, 1),
         Hex(-1, 1, 0)
     ]
     self.assertEqual(grid.spiral_ring(hexagon, 2), result)
コード例 #9
0
 def test_subtracting_hex_from_hex(self):
     """Test subtracting hexs."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((1, 0, -1))
     hex_b = grid.get_hextile((-1, 2, -1))
     hex_result = Hex(2, -2, 0)
     self.assertEqual(grid.sub_coords(hex_a, hex_b), hex_result)
コード例 #10
0
 def test_adding_hex_to_hex(self):
     """Test adding hexs."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((1, 0, -1))
     hex_b = grid.get_hextile((-1, 2, -1))
     hex_result = Hex(0, 2, -2)
     self.assertEqual(grid.add_coords(hex_a, hex_b), hex_result)
コード例 #11
0
 def test_distance_between_hexes(self):
     """Test distance between hexs."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((-2, 0, 2))
     hex_b = grid.get_hextile((2, -2, 0))
     result = 4
     self.assertEqual(grid.hex_distance(hex_a, hex_b), result)
コード例 #12
0
 def test_intersecting_ranges(self):
     """Test intersecting hex ranges."""
     grid = Grid(7)
     grid.create_grid()
     range1 = [Hex(-1, 1, 0), Hex(0, 0, 0)]
     range2 = [Hex(1, -1, 0), Hex(0, 0, 0)]
     result = [Hex(0, 0, 0)]
     self.assertEqual(grid.intersecting_hex_ranges(range1, range2), result)
コード例 #13
0
 def test_hex_interpollating(self):
     """Test hex interpollating."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = Hex(-1, 0, 1)
     hex_b = Hex(1, 0, -1)
     hex_result = (0, 0, 0)
     self.assertEqual(grid.hex_interpolate(hex_a, hex_b, 0.5), hex_result)
コード例 #14
0
 def test_getting_neighbours_of_hex(self):
     """Test get neighbours (adjacent tiles)."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = grid.get_hextile((1, -1, 0))
     result = [
         Hex(2, -2, 0),
         Hex(2, -1, -1),
         Hex(1, 0, -1),
         Hex(0, 0, 0),
         Hex(0, -1, 1),
         Hex(1, -2, 1)
     ]
     self.assertEqual(grid.get_all_neighbours(hex_a), result)
コード例 #15
0
 def test_shortest_path(self):
     """Test shortest path."""
     grid = Grid(5)
     grid.create_grid()
     start = Hex(-1, 1, 0)
     end = Hex(1, -1, 0)
     grid.get_hextile((0, 0, 0)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                   BiomeType.GRASSLAND)
     grid.get_hextile((0, 1, -1)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                    BiomeType.GRASSLAND)
     grid.get_hextile((-1, 0, 1)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                    BiomeType.GRASSLAND)
     result = [Hex(-1, 2, -1), Hex(2, -2, 0), Hex(1, -1, 0)]
     self.assertEqual(grid.shortest_path(start, end, 3), result)
コード例 #16
0
 def test_get_diagonals_of_hex(self):
     """Test get diagonals."""
     grid = Grid(7)
     grid.create_grid()
     hex_a = grid.get_hextile((0, -1, 1))
     result = [
         Hex(2, -2, 0),
         Hex(1, 0, -1),
         Hex(-1, 1, 0),
         Hex(-2, 0, 2),
         Hex(-1, -2, 3),
         Hex(1, -3, 2)
     ]
     self.assertEqual(grid.get_diagonals(hex_a), result)
コード例 #17
0
 def test_hex_linedrawing(self):
     """Test line drawing."""
     grid = Grid(5)
     grid.create_grid()
     hex_a = Hex(-2, 0, 2)
     hex_b = Hex(2, 0, -2)
     result = [
         Hex(-2, 0, 2),
         Hex(-1, 0, 1),
         Hex(0, 0, 0),
         Hex(1, 0, -1),
         Hex(2, 0, -2)
     ]
     self.assertEqual(grid.hex_linedraw(hex_a, hex_b), result)
コード例 #18
0
 def test_vision(self):
     """Test vision."""
     grid = Grid(5)
     grid.create_grid()
     hexagon = Hex(-2, 2, 0)
     grid.get_hextile((-1, 1, 0)).terrain = Terrain(TerrainType.MOUNTAIN,
                                                    BiomeType.GRASSLAND)
     result = [
         Hex(-1, 1, 0),
         Hex(0, 2, -2),
         Hex(-2, 0, 2),
         Hex(-2, 1, 1),
         Hex(-2, 2, 0),
         Hex(-1, 0, 1),
         Hex(-1, 2, -1),
         Hex(0, 1, -1)
     ]
     self.assertEqual(set(grid.vision(hexagon, 2)), set(result))
コード例 #19
0
    def __init__(self):
        """Initialise a new Server object."""
        with open(os.path.join("..", "config", "config.json")) as config_file:
            config = json.load(config_file)
        db_connection = database_API.Connection(config["postgres"]["user"],
                                                config["postgres"]["password"],
                                                config["postgres"]["database"])
        self._session = db_connection.get_session()
        logger = Logger(self._session, "Server Connection Handler",
                        config["logging"]["log_level"])

        self._log = logger.get_logger()
        self._connection_handler = ConnectionHandler(self.handle_message,
                                                     self._log)
        grid = Grid(20)
        grid.create_grid()
        grid.static_map()
        game_id = database_API.Game.insert(self._session, 1, True)
        self._gamestate = GameState(game_id, 1, grid, self._log, self._session)
        try:
            self._connection_handler.start(config["server"]["port"])
        except KeyboardInterrupt:
            self._connection_handler.stop()
            sys.exit()
コード例 #20
0
            self._hud.draw_quick_surface(layouts)
            self._screen.blit(self._hud_quick_surface, (0, 0))
            pygame.display.flip()
            if self._menu_displayed:
                self._select_menu.display_menu()
        else:
            self._main_menu.display_menu()

    def render_hud(self):
        """Render heads up display."""
        while not self._shutdown:
            self._hud.draw()
            time.sleep(1)


if __name__ == "__main__":
    with open(os.path.join("..", "config", "config.json")) as config_file:
        config = json.load(config_file)
    map_ref = Grid(26)
    map_ref.create_grid()
    map_ref.static_map()
    logger = Logger("client.log", "client", config["logging"]["log_level"])
    logger = logger.get_logger()
    civ = Civilisation(1, map_ref, logger)
    game_state = GameState(1, 1, map_ref, logger)
    game_state.add_civ(civ)
    game_state.my_id = 1
    server_api = server_API.ServerAPI()
    game = Game(game_state, logger, server_api)
    game.start()
コード例 #21
0
 def test_grid_amount_of_hex_tiles_from_size(self):
     """Test creating grid."""
     grid = Grid(5)
     grid.create_grid()
     self.assertEqual(len(grid._hextiles), 19)