Bit of const cleanup
This commit is contained in:
@ -5,7 +5,6 @@
|
||||
|
||||
target_sources(${DAWN_TARGET_NAME}
|
||||
PRIVATE
|
||||
SimpleComponent.cpp
|
||||
SceneComponentRegistry.cpp
|
||||
)
|
||||
|
||||
|
@ -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;
|
||||
}
|
@ -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
|
||||
);
|
||||
}
|
@ -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();
|
||||
this->renderTarget = renderTarget;
|
||||
this->onResizeListener = this->getRenderTarget()->onResize.listen([&](
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "display/RenderTarget.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
enum CameraType {
|
||||
enum class CameraType {
|
||||
PERSPECTIVE,
|
||||
ORTHOGONAL
|
||||
};
|
||||
@ -77,6 +77,6 @@ namespace Dawn {
|
||||
*
|
||||
* @param renderTarget The render target to set.
|
||||
*/
|
||||
void setRenderTarget(std::shared_ptr<RenderTarget> renderTarget);
|
||||
void setRenderTarget(const std::shared_ptr<RenderTarget> renderTarget);
|
||||
};
|
||||
}
|
@ -30,7 +30,9 @@ std::shared_ptr<Texture> SimpleTexturedMaterial::getTexture() {
|
||||
return this->texture;
|
||||
}
|
||||
|
||||
void SimpleTexturedMaterial::setTexture(std::shared_ptr<Texture> texture) {
|
||||
void SimpleTexturedMaterial::setTexture(
|
||||
const std::shared_ptr<Texture> texture
|
||||
) {
|
||||
this->texture = texture;
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ namespace Dawn {
|
||||
*
|
||||
* @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.
|
||||
|
@ -139,6 +139,6 @@ void UICanvas::flushPass() {
|
||||
textureBindings.clear();
|
||||
}
|
||||
|
||||
void UICanvas::addElement(std::shared_ptr<UIElement> element) {
|
||||
void UICanvas::addElement(const std::shared_ptr<UIElement> element) {
|
||||
elements.push_back(element);
|
||||
}
|
@ -68,6 +68,6 @@ namespace Dawn {
|
||||
*
|
||||
* @param component The component to add.
|
||||
*/
|
||||
void addElement(std::shared_ptr<UIElement> component);
|
||||
void addElement(const std::shared_ptr<UIElement> component);
|
||||
};
|
||||
}
|
@ -9,7 +9,7 @@
|
||||
#include "component/display/Camera.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
struct RenderPassContext {
|
||||
struct RenderPassContext {
|
||||
std::shared_ptr<Game> game;
|
||||
std::shared_ptr<Scene> scene;
|
||||
std::shared_ptr<Camera> camera;
|
||||
|
@ -40,6 +40,9 @@ namespace Dawn {
|
||||
return newShader;
|
||||
}
|
||||
|
||||
/**
|
||||
* Disposes of all shaders.
|
||||
*/
|
||||
~ShaderManager() {
|
||||
shaders.clear();
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ namespace Dawn {
|
||||
std::string getString(
|
||||
const std::string &key,
|
||||
const std::unordered_map<std::string, std::string> replacements =
|
||||
std::unordered_map<std::string, std::string>()
|
||||
std::unordered_map<std::string, std::string>()
|
||||
);
|
||||
|
||||
/**
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
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!");
|
||||
this->game = game;
|
||||
}
|
@ -31,7 +31,7 @@ namespace Dawn {
|
||||
*
|
||||
* @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
|
||||
|
@ -12,11 +12,6 @@
|
||||
#include "util/Flag.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
// struct IntervalData {
|
||||
// float_t frequency;
|
||||
// float_t nextInvoke;
|
||||
// };
|
||||
|
||||
enum class SceneState : flag_t {
|
||||
INITIAL = FLAG(0),
|
||||
INITIALIZED = FLAG(1),
|
||||
|
Reference in New Issue
Block a user