Bit of const cleanup

This commit is contained in:
2024-12-02 22:30:41 -06:00
parent 7989be5fe7
commit 68fab7c94d
15 changed files with 16 additions and 72 deletions

View File

@ -5,7 +5,6 @@
target_sources(${DAWN_TARGET_NAME} target_sources(${DAWN_TARGET_NAME}
PRIVATE PRIVATE
SimpleComponent.cpp
SceneComponentRegistry.cpp SceneComponentRegistry.cpp
) )

View File

@ -1,27 +0,0 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "SimpleComponent.hpp"
using namespace Dawn;
void SimpleComponent::onInit() {
this->initMethod(*this, this->events);
}
void SimpleComponent::onDispose() {
for(auto &event : this->events) {
event();
}
}
std::shared_ptr<SimpleComponent> Dawn::addSimpleComponent(
std::shared_ptr<SceneItem> item,
std::function<void(SceneComponent&, std::vector<std::function<void()>>&)> init
) {
auto cmp = item->addComponent<SimpleComponent>();
cmp->initMethod = init;
return cmp;
}

View File

@ -1,28 +0,0 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "scene/Scene.hpp"
namespace Dawn {
class SimpleComponent final : public SceneComponent {
public:
std::function<void(
SceneComponent&,
std::vector<std::function<void()>>&
)> initMethod;
void onInit() override;
void onDispose() override;
};
std::shared_ptr<SimpleComponent> addSimpleComponent(
std::shared_ptr<SceneItem> item,
std::function<void(
SceneComponent&,
std::vector<std::function<void()>>&
)> init
);
}

View File

@ -132,7 +132,7 @@ float_t Camera::lookAtPixelPerfect(
); );
} }
void Camera::setRenderTarget(std::shared_ptr<RenderTarget> renderTarget) { void Camera::setRenderTarget(const std::shared_ptr<RenderTarget> renderTarget) {
onResizeListener(); onResizeListener();
this->renderTarget = renderTarget; this->renderTarget = renderTarget;
this->onResizeListener = this->getRenderTarget()->onResize.listen([&]( this->onResizeListener = this->getRenderTarget()->onResize.listen([&](

View File

@ -8,7 +8,7 @@
#include "display/RenderTarget.hpp" #include "display/RenderTarget.hpp"
namespace Dawn { namespace Dawn {
enum CameraType { enum class CameraType {
PERSPECTIVE, PERSPECTIVE,
ORTHOGONAL ORTHOGONAL
}; };
@ -77,6 +77,6 @@ namespace Dawn {
* *
* @param renderTarget The render target to set. * @param renderTarget The render target to set.
*/ */
void setRenderTarget(std::shared_ptr<RenderTarget> renderTarget); void setRenderTarget(const std::shared_ptr<RenderTarget> renderTarget);
}; };
} }

View File

@ -30,7 +30,9 @@ std::shared_ptr<Texture> SimpleTexturedMaterial::getTexture() {
return this->texture; return this->texture;
} }
void SimpleTexturedMaterial::setTexture(std::shared_ptr<Texture> texture) { void SimpleTexturedMaterial::setTexture(
const std::shared_ptr<Texture> texture
) {
this->texture = texture; this->texture = texture;
} }

View File

@ -34,7 +34,7 @@ namespace Dawn {
* *
* @param texture The texture to set. * @param texture The texture to set.
*/ */
void setTexture(std::shared_ptr<Texture> texture); void setTexture(const std::shared_ptr<Texture> texture);
/** /**
* Sets the color of this material. * Sets the color of this material.

View File

@ -139,6 +139,6 @@ void UICanvas::flushPass() {
textureBindings.clear(); textureBindings.clear();
} }
void UICanvas::addElement(std::shared_ptr<UIElement> element) { void UICanvas::addElement(const std::shared_ptr<UIElement> element) {
elements.push_back(element); elements.push_back(element);
} }

View File

@ -68,6 +68,6 @@ namespace Dawn {
* *
* @param component The component to add. * @param component The component to add.
*/ */
void addElement(std::shared_ptr<UIElement> component); void addElement(const std::shared_ptr<UIElement> component);
}; };
} }

View File

@ -9,7 +9,7 @@
#include "component/display/Camera.hpp" #include "component/display/Camera.hpp"
namespace Dawn { namespace Dawn {
struct RenderPassContext { struct RenderPassContext {
std::shared_ptr<Game> game; std::shared_ptr<Game> game;
std::shared_ptr<Scene> scene; std::shared_ptr<Scene> scene;
std::shared_ptr<Camera> camera; std::shared_ptr<Camera> camera;

View File

@ -40,6 +40,9 @@ namespace Dawn {
return newShader; return newShader;
} }
/**
* Disposes of all shaders.
*/
~ShaderManager() { ~ShaderManager() {
shaders.clear(); shaders.clear();
} }

View File

@ -37,7 +37,7 @@ namespace Dawn {
std::string getString( std::string getString(
const std::string &key, const std::string &key,
const std::unordered_map<std::string, std::string> replacements = const std::unordered_map<std::string, std::string> replacements =
std::unordered_map<std::string, std::string>() std::unordered_map<std::string, std::string>()
); );
/** /**

View File

@ -8,7 +8,7 @@
using namespace Dawn; using namespace Dawn;
void SaveManager::init(std::shared_ptr<Game> game) { void SaveManager::init(const std::shared_ptr<Game> game) {
assertNotNull(game, "Game instance cannot be null!"); assertNotNull(game, "Game instance cannot be null!");
this->game = game; this->game = game;
} }

View File

@ -31,7 +31,7 @@ namespace Dawn {
* *
* @param game The game to initialize the save manager for. * @param game The game to initialize the save manager for.
*/ */
void init(std::shared_ptr<Game> game); void init(const std::shared_ptr<Game> game);
/** /**
* Immediately save the game to the given file. This will invoke the * Immediately save the game to the given file. This will invoke the

View File

@ -12,11 +12,6 @@
#include "util/Flag.hpp" #include "util/Flag.hpp"
namespace Dawn { namespace Dawn {
// struct IntervalData {
// float_t frequency;
// float_t nextInvoke;
// };
enum class SceneState : flag_t { enum class SceneState : flag_t {
INITIAL = FLAG(0), INITIAL = FLAG(0),
INITIALIZED = FLAG(1), INITIALIZED = FLAG(1),