本文整理汇总了Python中simulation.world_map.WorldMap.is_on_map方法的典型用法代码示例。如果您正苦于以下问题:Python WorldMap.is_on_map方法的具体用法?Python WorldMap.is_on_map怎么用?Python WorldMap.is_on_map使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simulation.world_map.WorldMap
的用法示例。
在下文中一共展示了WorldMap.is_on_map方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_grid_expand
# 需要导入模块: from simulation.world_map import WorldMap [as 别名]
# 或者: from simulation.world_map.WorldMap import is_on_map [as 别名]
def test_grid_expand(self):
world_map.TARGET_NUM_CELLS_PER_AVATAR = 5
map = WorldMap(self._generate_grid())
map.update(1)
self.assertTrue(map.is_on_map(Location(-1, -1)))
self.assertTrue(map.is_on_map(Location(-1, 2)))
self.assertTrue(map.is_on_map(Location(2, 2)))
self.assertTrue(map.is_on_map(Location(2, -1)))
self.assertGridSize(map, 4)
map.update(4)
self.assertGridSize(map, 6)
self.assertTrue(map.is_on_map(Location(0, 3)))
self.assertTrue(map.is_on_map(Location(3, 0)))
self.assertTrue(map.is_on_map(Location(-2, 0)))
self.assertTrue(map.is_on_map(Location(0, -2)))
示例2: test_retrieve_negative
# 需要导入模块: from simulation.world_map import WorldMap [as 别名]
# 或者: from simulation.world_map.WorldMap import is_on_map [as 别名]
def test_retrieve_negative(self):
map = WorldMap(self._generate_grid(3, 3))
self.assertTrue(map.is_on_map(Location(-1, -1)))
示例3: test_empty_grid
# 需要导入模块: from simulation.world_map import WorldMap [as 别名]
# 或者: from simulation.world_map.WorldMap import is_on_map [as 别名]
def test_empty_grid(self):
map = WorldMap({})
self.assertFalse(map.is_on_map(Location(0, 0)))
示例4: test_y_off_map
# 需要导入模块: from simulation.world_map import WorldMap [as 别名]
# 或者: from simulation.world_map.WorldMap import is_on_map [as 别名]
def test_y_off_map(self):
map = WorldMap(self._generate_grid())
for x in (0, 1):
self.assertFalse(map.is_on_map(Location(x, -1)))
self.assertFalse(map.is_on_map(Location(x, 2)))
示例5: test_x_off_map
# 需要导入模块: from simulation.world_map import WorldMap [as 别名]
# 或者: from simulation.world_map.WorldMap import is_on_map [as 别名]
def test_x_off_map(self):
map = WorldMap(self._generate_grid())
for y in (0, 1):
self.assertFalse(map.is_on_map(Location(-1, y)))
self.assertFalse(map.is_on_map(Location(2, y)))
示例6: test_location_on_map
# 需要导入模块: from simulation.world_map import WorldMap [as 别名]
# 或者: from simulation.world_map.WorldMap import is_on_map [as 别名]
def test_location_on_map(self):
map = WorldMap(self._generate_grid())
for x in (0, 1):
for y in (0, 1):
self.assertTrue(map.is_on_map(Location(x, y)))