예제 #1
0
    def __init__(self, character_tiles):
        self.__characters = []
        for character_obj in character_tiles:
            x = character_obj.x
            y = character_obj.y
            pos = (x,y)
            properties = character_obj.properties
            print(properties)
            speed = int(properties["speed"])
            character_type = properties["character"]
            health = int(properties["health"])
            direction = properties["direction"]

            if character_type == "enemy":
                self.__characters.append(self.__create_enemy(pos, speed, properties["enemy_type"], health, direction))
            elif character_type == "npc":
                self.__characters.append(NPC(pos))
            else:
                AwfulErrorHandling.throw_error("Invalid character type", character_type)
예제 #2
0
 def __create_enemy(self, pos, speed, enemy_type, health, direction):
     if enemy_type == "fire_elemental":
         return FireElemental(pos, speed, health, direction)
     else:
         AwfulErrorHandling.throw_error("Invalid enemy", enemy_type)