Only buffer mesh each frame.

This commit is contained in:
2024-12-07 13:25:53 -06:00
parent 7628f33c25
commit d1d7d46826
12 changed files with 115 additions and 6 deletions

View File

@ -25,4 +25,9 @@ void CubeMeshComponent::meshLoad(std::shared_ptr<SceneLoadContext> ctx) {
} else {
this->size = glm::vec3(1.0f, 1.0f, 1.0f);
}
}
void CubeMeshComponent::setSize(const glm::vec3 &size) {
this->size = size;
this->invalidate();
}

View File

@ -13,5 +13,13 @@ namespace Dawn {
void meshLoad(std::shared_ptr<SceneLoadContext> ctx) 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);
};
}

View File

@ -4,6 +4,7 @@
// https://opensource.org/licenses/MIT
#include "MeshComponent.hpp"
#include "scene/Scene.hpp"
#include "component/display/MeshRenderer.hpp"
using namespace Dawn;
@ -11,11 +12,21 @@ using namespace Dawn;
void MeshComponent::buffer() {
if(!mesh) mesh = std::make_shared<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() {
this->buffer();
auto renderer = getItem()->getComponent<MeshRenderer>();
if(renderer) renderer->mesh = mesh;
}

View File

@ -9,6 +9,14 @@
namespace Dawn {
class MeshComponent : public SceneComponent {
private:
bool_t valid = true;
/**
* Buffers the mesh.
*/
void buffer();
protected:
/**
* Called when the mesh should be loaded.
@ -25,9 +33,9 @@ namespace Dawn {
virtual void meshBuffer(std::shared_ptr<Mesh> mesh) = 0;
/**
* Buffers the mesh.
* Invalidates the mesh.
*/
void buffer();
void invalidate();
public:
std::shared_ptr<Mesh> mesh;

View File

@ -65,4 +65,29 @@ void PlaneMeshComponent::meshBuffer(std::shared_ptr<Mesh> mesh) {
columns, rows,
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();
}

View File

@ -18,6 +18,9 @@ namespace Dawn {
void meshBuffer(std::shared_ptr<Mesh> mesh) override;
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);
};
}

View File

@ -35,10 +35,10 @@ void QuadMeshComponent::meshLoad(std::shared_ptr<SceneLoadContext> ctx) {
void QuadMeshComponent::setPositions(const glm::vec4 &positions) {
this->positions = positions;
this->buffer();
this->invalidate();
}
void QuadMeshComponent::setUVs(const glm::vec4 &uvs) {
this->uvs = uvs;
this->buffer();
this->invalidate();
}

View File

@ -32,6 +32,13 @@ namespace Dawn {
}
}
/**
* Clears all listeners from the event.
*/
void clear() {
listeners.clear();
}
/**
* Listens to the event.
* @param listener The listener to add.

View File

@ -54,6 +54,9 @@ void Scene::update() {
sceneItemsToRemove.clear();
// Tick scene items.
onNextFrame.emit();
onNextFrame.clear();
float_t delta = getGame()->timeManager.delta;
if(paused) {
onPausedUpdate.emit(delta);

View File

@ -29,6 +29,7 @@ namespace Dawn {
public:
Event<float_t> onUnpausedUpdate;
Event<float_t> onPausedUpdate;
Event<> onNextFrame;
TimeoutEvent onTimeout;
IntervalEvent onInterval;

View 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);
}

View 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;
};
}