71 lines
1.6 KiB
C++
71 lines
1.6 KiB
C++
// Copyright (c) 2023 Dominic Masters
|
|
//
|
|
// This software is released under the MIT License.
|
|
// https://opensource.org/licenses/MIT
|
|
|
|
#include "assert/assert.hpp"
|
|
#include "util/Flag.hpp"
|
|
#include "scene/Scene.hpp"
|
|
#include "game/Game.hpp"
|
|
|
|
using namespace Dawn;
|
|
|
|
void SceneComponent::init(const std::shared_ptr<SceneItem> item) {
|
|
assertFlagOff(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_INIT,
|
|
"SceneComponent is already initialized!"
|
|
);
|
|
Flag::turnOn<uint_fast8_t>(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_INIT
|
|
);
|
|
this->item = item;
|
|
this->onInit();
|
|
}
|
|
|
|
void SceneComponent::dispose() {
|
|
assertFlagOn(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_INIT,
|
|
"SceneComponent is not initialized!"
|
|
);
|
|
assertFlagOff(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_DISPOSED,
|
|
"SceneComponent is already disposed!"
|
|
);
|
|
Flag::turnOn<uint_fast8_t>(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_DISPOSED
|
|
);
|
|
this->onDispose();
|
|
this->item.reset();
|
|
}
|
|
|
|
std::shared_ptr<SceneItem> SceneComponent::getItem() {
|
|
return this->item.lock();
|
|
}
|
|
|
|
std::shared_ptr<Scene> SceneComponent::getScene() {
|
|
auto item = this->getItem();
|
|
return item->getScene();
|
|
}
|
|
|
|
std::shared_ptr<Game> SceneComponent::getGame() {
|
|
auto scene = this->getScene();
|
|
return scene->getGame();
|
|
}
|
|
|
|
SceneComponent::~SceneComponent() {
|
|
if(Flag::isOn<uint_fast8_t>(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_INIT
|
|
)) {
|
|
assertFlagOn(
|
|
sceneComponentState,
|
|
SCENE_COMPONENT_STATE_DISPOSED,
|
|
"SceneComponent is initialized but was not properly disposed!"
|
|
);
|
|
}
|
|
} |