Only buffer mesh each frame.
This commit is contained in:
@ -25,4 +25,9 @@ void CubeMeshComponent::meshLoad(std::shared_ptr<SceneLoadContext> ctx) {
|
|||||||
} else {
|
} else {
|
||||||
this->size = glm::vec3(1.0f, 1.0f, 1.0f);
|
this->size = glm::vec3(1.0f, 1.0f, 1.0f);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void CubeMeshComponent::setSize(const glm::vec3 &size) {
|
||||||
|
this->size = size;
|
||||||
|
this->invalidate();
|
||||||
}
|
}
|
@ -13,5 +13,13 @@ namespace Dawn {
|
|||||||
|
|
||||||
void meshLoad(std::shared_ptr<SceneLoadContext> ctx) override;
|
void meshLoad(std::shared_ptr<SceneLoadContext> ctx) override;
|
||||||
void meshBuffer(std::shared_ptr<Mesh> mesh) override;
|
void meshBuffer(std::shared_ptr<Mesh> mesh) override;
|
||||||
|
|
||||||
|
public:
|
||||||
|
/**
|
||||||
|
* Sets the size of the cube.
|
||||||
|
*
|
||||||
|
* @param size Size of the cube.
|
||||||
|
*/
|
||||||
|
void setSize(const glm::vec3 &size);
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -4,6 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#include "MeshComponent.hpp"
|
#include "MeshComponent.hpp"
|
||||||
|
#include "scene/Scene.hpp"
|
||||||
#include "component/display/MeshRenderer.hpp"
|
#include "component/display/MeshRenderer.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
@ -11,11 +12,21 @@ using namespace Dawn;
|
|||||||
void MeshComponent::buffer() {
|
void MeshComponent::buffer() {
|
||||||
if(!mesh) mesh = std::make_shared<Mesh>();
|
if(!mesh) mesh = std::make_shared<Mesh>();
|
||||||
this->meshBuffer(mesh);
|
this->meshBuffer(mesh);
|
||||||
|
this->valid = true;
|
||||||
|
events.clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MeshComponent::invalidate() {
|
||||||
|
if(valid) return;
|
||||||
|
valid = false;
|
||||||
|
events.push_back(getScene()->onNextFrame.listen([this]() {
|
||||||
|
this->buffer();
|
||||||
|
valid = true;
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MeshComponent::onInit() {
|
void MeshComponent::onInit() {
|
||||||
this->buffer();
|
this->buffer();
|
||||||
|
|
||||||
auto renderer = getItem()->getComponent<MeshRenderer>();
|
auto renderer = getItem()->getComponent<MeshRenderer>();
|
||||||
if(renderer) renderer->mesh = mesh;
|
if(renderer) renderer->mesh = mesh;
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,14 @@
|
|||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class MeshComponent : public SceneComponent {
|
class MeshComponent : public SceneComponent {
|
||||||
|
private:
|
||||||
|
bool_t valid = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Buffers the mesh.
|
||||||
|
*/
|
||||||
|
void buffer();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/**
|
/**
|
||||||
* Called when the mesh should be loaded.
|
* Called when the mesh should be loaded.
|
||||||
@ -25,9 +33,9 @@ namespace Dawn {
|
|||||||
virtual void meshBuffer(std::shared_ptr<Mesh> mesh) = 0;
|
virtual void meshBuffer(std::shared_ptr<Mesh> mesh) = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Buffers the mesh.
|
* Invalidates the mesh.
|
||||||
*/
|
*/
|
||||||
void buffer();
|
void invalidate();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
std::shared_ptr<Mesh> mesh;
|
std::shared_ptr<Mesh> mesh;
|
||||||
|
@ -65,4 +65,29 @@ void PlaneMeshComponent::meshBuffer(std::shared_ptr<Mesh> mesh) {
|
|||||||
columns, rows,
|
columns, rows,
|
||||||
uv
|
uv
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaneMeshComponent::setColumns(const int32_t columns) {
|
||||||
|
assertTrue(columns > 0, "Columns must be greater than 0.");
|
||||||
|
this->columns = columns;
|
||||||
|
this->invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void PlaneMeshComponent::setRows(const int32_t rows) {
|
||||||
|
assertTrue(rows > 0, "Rows must be greater than 0.");
|
||||||
|
this->rows = rows;
|
||||||
|
this->invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaneMeshComponent::setPlaneSize(const glm::vec2 &planeSize) {
|
||||||
|
assertTrue(planeSize.x > 0.0f, "Plane size x must be greater than 0.");
|
||||||
|
assertTrue(planeSize.y > 0.0f, "Plane size y must be greater than 0.");
|
||||||
|
this->planeSize = planeSize;
|
||||||
|
this->invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
void PlaneMeshComponent::setUV(const glm::vec4 &uv) {
|
||||||
|
this->uv = uv;
|
||||||
|
this->invalidate();
|
||||||
}
|
}
|
@ -18,6 +18,9 @@ namespace Dawn {
|
|||||||
void meshBuffer(std::shared_ptr<Mesh> mesh) override;
|
void meshBuffer(std::shared_ptr<Mesh> mesh) override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
void setColumns(const int32_t columns);
|
||||||
|
void setRows(const int32_t rows);
|
||||||
|
void setPlaneSize(const glm::vec2 &planeSize);
|
||||||
|
void setUV(const glm::vec4 &uv);
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -35,10 +35,10 @@ void QuadMeshComponent::meshLoad(std::shared_ptr<SceneLoadContext> ctx) {
|
|||||||
|
|
||||||
void QuadMeshComponent::setPositions(const glm::vec4 &positions) {
|
void QuadMeshComponent::setPositions(const glm::vec4 &positions) {
|
||||||
this->positions = positions;
|
this->positions = positions;
|
||||||
this->buffer();
|
this->invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
void QuadMeshComponent::setUVs(const glm::vec4 &uvs) {
|
void QuadMeshComponent::setUVs(const glm::vec4 &uvs) {
|
||||||
this->uvs = uvs;
|
this->uvs = uvs;
|
||||||
this->buffer();
|
this->invalidate();
|
||||||
}
|
}
|
@ -32,6 +32,13 @@ namespace Dawn {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clears all listeners from the event.
|
||||||
|
*/
|
||||||
|
void clear() {
|
||||||
|
listeners.clear();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Listens to the event.
|
* Listens to the event.
|
||||||
* @param listener The listener to add.
|
* @param listener The listener to add.
|
||||||
|
@ -54,6 +54,9 @@ void Scene::update() {
|
|||||||
sceneItemsToRemove.clear();
|
sceneItemsToRemove.clear();
|
||||||
|
|
||||||
// Tick scene items.
|
// Tick scene items.
|
||||||
|
onNextFrame.emit();
|
||||||
|
onNextFrame.clear();
|
||||||
|
|
||||||
float_t delta = getGame()->timeManager.delta;
|
float_t delta = getGame()->timeManager.delta;
|
||||||
if(paused) {
|
if(paused) {
|
||||||
onPausedUpdate.emit(delta);
|
onPausedUpdate.emit(delta);
|
||||||
|
@ -29,6 +29,7 @@ namespace Dawn {
|
|||||||
public:
|
public:
|
||||||
Event<float_t> onUnpausedUpdate;
|
Event<float_t> onUnpausedUpdate;
|
||||||
Event<float_t> onPausedUpdate;
|
Event<float_t> onPausedUpdate;
|
||||||
|
Event<> onNextFrame;
|
||||||
TimeoutEvent onTimeout;
|
TimeoutEvent onTimeout;
|
||||||
IntervalEvent onInterval;
|
IntervalEvent onInterval;
|
||||||
|
|
||||||
|
20
src/dawnrpg/component/RPGMap.cpp
Normal file
20
src/dawnrpg/component/RPGMap.cpp
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "RPGMap.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
void RPGMap::onInit() {
|
||||||
|
auto mesh = getItem()->getComponent<PlaneMeshComponent>();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void RPGMap::onDispose() {
|
||||||
|
}
|
||||||
|
|
||||||
|
void RPGMap::load(std::shared_ptr<SceneLoadContext> ctx) {
|
||||||
|
SceneComponent::load(ctx);
|
||||||
|
}
|
18
src/dawnrpg/component/RPGMap.hpp
Normal file
18
src/dawnrpg/component/RPGMap.hpp
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// Copyright (c) 2024 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "component/display/mesh/PlaneMeshComponent.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
class RPGMap final : public SceneComponent {
|
||||||
|
private:
|
||||||
|
|
||||||
|
public:
|
||||||
|
void onInit() override;
|
||||||
|
void onDispose() override;
|
||||||
|
void load(std::shared_ptr<SceneLoadContext> ctx) override;
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user