// Copyright (c) 2024 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "component/world/Map.hpp" #include "event/Event.hpp" #include "EntityDirection.hpp" #define ENTITY_STEP_SPEED_DEFAULT 3.0f #define ENTITY_STEP_SPEED_RUNNING 6.0f #define ENTITY_TURN_TIME 0.06f namespace Dawn { class Entity; enum class EntityStepResultType : uint8_t { Turn, Step, EntityInWay, SolidTileInWay }; struct EntityStepResult { enum EntityStepResultType type; // I'd love to unionize this but it seems that it's not ideal rn. std::shared_ptr entityInWay; std::shared_ptr tileInWayChunk; struct TilePosition tileInWayPosition; }; class Entity : public SceneComponent { private: float_t turnTime = 0.0f; struct EntityTilePosition lastTilePosition; float_t stepTime = 0.0f; float_t stepSpeed = ENTITY_STEP_SPEED_DEFAULT; protected: enum EntityDirection direction = EntityDirection::Down; struct EntityTilePosition tilePosition; public: std::weak_ptr map; enum EntityID id = EntityID::Null; Event<> eventStepStart; Event<> eventStepEnd; Event<> eventMove; Event<> eventTurn; void onInit() override; void onDispose() override; /** * Gets the map that the entity is on. * * @return The map that the entity is on. */ std::shared_ptr getMap(); /** * Gets the world that the entity is on. * * @return The world that the entity is on. */ std::shared_ptr getWorld(); /** * Moves the entity in the given direction. * * @param direction The direction to move in. * @param stepSpeed The speed to move at. */ struct EntityStepResult move( const enum EntityDirection direction, const float_t stepSpeed = ENTITY_STEP_SPEED_DEFAULT ); /** * Turns the entity in the given direction. This will have a slight delay * and count as moving. * * @param direction The direction to turn in. */ void turn(const enum EntityDirection direction); /** * Safely sets the position of the entity. This will invoke movement * events but not step events, so steps may be cancelled in this context. * * @param position The new position of the entity. */ void setPosition(struct EntityTilePosition position); /** * Checks if the entity is currently moving (in a step). * * @return True if the entity is moving, false otherwise. */ bool_t isMoving(); friend class World; friend class Map; }; }