AI-Project/survival/systems/movement_system.py

24 lines
1.2 KiB
Python
Raw Normal View History

from survival import esper, GameMap
2021-03-28 18:05:52 +02:00
from survival.components.movement_component import MovementComponent
from survival.components.moving_component import MovingComponent
from survival.components.position_component import PositionComponent
from survival.components.sprite_component import SpriteComponent
class MovementSystem(esper.Processor):
def __init__(self, game_map: GameMap):
self.map = game_map
2021-03-28 18:05:52 +02:00
def process(self, dt):
for ent, (mov, pos, moving, sprite) in self.world.get_components(MovementComponent, PositionComponent,
MovingComponent,
SpriteComponent):
cost = self.map.get_cost(moving.target)
2021-05-24 17:20:08 +02:00
pos.position[0] += moving.direction_vector[0] * mov.speed * dt / 100 / cost
pos.position[1] += moving.direction_vector[1] * mov.speed * dt / 100 / cost
2021-03-28 18:05:52 +02:00
if abs(moving.target[0] * 32 - pos.position[0]) < 0.1 * mov.speed and abs(
pos.position[1] - moving.target[1] * 32) < 0.1 * mov.speed:
pos.position = [moving.target[0] * 32, moving.target[1] * 32]
self.world.remove_component(ent, MovingComponent)