Switched map loops to weakptrs
This commit is contained in:
@ -18,7 +18,6 @@ void Camera::onInit() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Camera::onDispose() {
|
void Camera::onDispose() {
|
||||||
std::cout << "Camera Disposing" << std::endl;
|
|
||||||
renderTarget = nullptr;
|
renderTarget = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@ SceneItem::SceneItem(const std::weak_ptr<Scene> scene) :
|
|||||||
SceneItemTransform(),
|
SceneItemTransform(),
|
||||||
SceneItemComponents()
|
SceneItemComponents()
|
||||||
{
|
{
|
||||||
std::cout << "Scene Item Initializing" << std::endl;
|
|
||||||
SCENE_ITEMS_ACTIVE++;
|
SCENE_ITEMS_ACTIVE++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,6 +40,5 @@ void SceneItem::remove() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SceneItem::~SceneItem() {
|
SceneItem::~SceneItem() {
|
||||||
std::cout << "Scene Item Disposing" << std::endl;
|
|
||||||
SCENE_ITEMS_ACTIVE--;
|
SCENE_ITEMS_ACTIVE--;
|
||||||
}
|
}
|
@ -21,7 +21,7 @@ const glm::vec3 EntityTilePosition::toWorldSpace() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Entity::onInit() {
|
void Entity::onInit() {
|
||||||
assertNotNull(this->map, "Entity map cannot be null.");
|
assertNotNull(this->getMap(), "Entity map cannot be null.");
|
||||||
|
|
||||||
// Listen for turn time
|
// Listen for turn time
|
||||||
listeners.push_back(getScene()->onUnpausedUpdate.listen([this](float_t delta){
|
listeners.push_back(getScene()->onUnpausedUpdate.listen([this](float_t delta){
|
||||||
@ -53,12 +53,22 @@ void Entity::onInit() {
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
// Notify map.
|
// Notify map.
|
||||||
this->map->entityNotifyInit(this->getItem());
|
getMap()->entityNotifyInit(this->getItem());
|
||||||
}
|
}
|
||||||
|
|
||||||
void Entity::onDispose() {
|
void Entity::onDispose() {
|
||||||
this->map->entityNotifyDispose(this->getItem());
|
auto map = this->map.lock();
|
||||||
this->map = nullptr;
|
if(map) map->entityNotifyDispose(this->getItem());
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<Map> Entity::getMap() {
|
||||||
|
auto map = this->map.lock();
|
||||||
|
assertNotNull(map, "Map cannot be null?");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<World> Entity::getWorld() {
|
||||||
|
return this->getMap()->getWorld();
|
||||||
}
|
}
|
||||||
|
|
||||||
struct EntityStepResult Entity::move(
|
struct EntityStepResult Entity::move(
|
||||||
@ -74,6 +84,7 @@ struct EntityStepResult Entity::move(
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
auto map = this->getMap();
|
||||||
struct EntityTilePosition newPosition = this->tilePosition;
|
struct EntityTilePosition newPosition = this->tilePosition;
|
||||||
switch(direction) {
|
switch(direction) {
|
||||||
case EntityDirection::Up:
|
case EntityDirection::Up:
|
||||||
@ -93,7 +104,7 @@ struct EntityStepResult Entity::move(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check for entity in way.
|
// Check for entity in way.
|
||||||
auto entityInWay = this->map->getEntityAt(newPosition);
|
auto entityInWay = map->getEntityAt(newPosition);
|
||||||
if(entityInWay) {
|
if(entityInWay) {
|
||||||
result.type = EntityStepResultType::EntityInWay;
|
result.type = EntityStepResultType::EntityInWay;
|
||||||
result.entityInWay = entityInWay;
|
result.entityInWay = entityInWay;
|
||||||
|
@ -47,8 +47,8 @@ namespace Dawn {
|
|||||||
struct EntityTilePosition tilePosition;
|
struct EntityTilePosition tilePosition;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
std::weak_ptr<Map> map;
|
||||||
enum EntityID id = EntityID::Null;
|
enum EntityID id = EntityID::Null;
|
||||||
std::shared_ptr<Map> map;
|
|
||||||
|
|
||||||
Event<> eventStepStart;
|
Event<> eventStepStart;
|
||||||
Event<> eventStepEnd;
|
Event<> eventStepEnd;
|
||||||
@ -58,6 +58,20 @@ namespace Dawn {
|
|||||||
void onInit() override;
|
void onInit() override;
|
||||||
void onDispose() override;
|
void onDispose() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the map that the entity is on.
|
||||||
|
*
|
||||||
|
* @return The map that the entity is on.
|
||||||
|
*/
|
||||||
|
std::shared_ptr<Map> getMap();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the world that the entity is on.
|
||||||
|
*
|
||||||
|
* @return The world that the entity is on.
|
||||||
|
*/
|
||||||
|
std::shared_ptr<World> getWorld();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Moves the entity in the given direction.
|
* Moves the entity in the given direction.
|
||||||
*
|
*
|
||||||
|
@ -29,11 +29,15 @@ void Map::entityNotifyDispose(std::shared_ptr<SceneItem> item) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Map::onInit() {
|
void Map::onInit() {
|
||||||
assertNotNull(this->world, "Map must have a world.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Map::onDispose() {
|
void Map::onDispose() {
|
||||||
this->world = nullptr;
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<World> Map::getWorld() {
|
||||||
|
auto world = this->world.lock();
|
||||||
|
assertNotNull(world, "World cannot be null?");
|
||||||
|
return world;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::shared_ptr<Entity> Map::getEntity(const EntityID id) {
|
std::shared_ptr<Entity> Map::getEntity(const EntityID id) {
|
||||||
|
@ -28,11 +28,18 @@ namespace Dawn {
|
|||||||
void entityNotifyDispose(std::shared_ptr<SceneItem> entity);
|
void entityNotifyDispose(std::shared_ptr<SceneItem> entity);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
std::shared_ptr<World> world;
|
std::weak_ptr<World> world;
|
||||||
|
|
||||||
void onInit() override;
|
void onInit() override;
|
||||||
void onDispose() override;
|
void onDispose() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the world that this map belongs to.
|
||||||
|
*
|
||||||
|
* @return The world that this map belongs to.
|
||||||
|
*/
|
||||||
|
std::shared_ptr<World> getWorld();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the entity with the given ID.
|
* Gets the entity with the given ID.
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user