Compare commits

...

3 Commits

4 changed files with 35 additions and 1 deletions

4
.gitignore vendored
View File

@ -15,3 +15,7 @@ cmake-build-debug/
output.txt
buildall.bat
typer.py
# Sandbox Assets
assets/
art/

View File

@ -1,8 +1,18 @@
#include "sprite_component.h"
#include <raylib.h>
#include "Logger.h"
#include "transform_component.h"
void SpriteComponent::Render(float x, float y) const {
if (texture) {
DrawTexture(*reinterpret_cast<Texture2D*>(texture), x, y, WHITE);
}
}
void SpriteComponent::Render(TransformComponent transform) const {
if (texture) {
DrawTexture(*reinterpret_cast<Texture2D*>(texture), transform.x, transform.y, WHITE);
}
}

View File

@ -1,9 +1,13 @@
#pragma once
#include "transform_component.h"
struct SpriteComponent {
public:
void* texture; // void* to abstract Texture2D
void Render(float x, float y) const;
void Render(TransformComponent transform) const;
};
// Usage:

View File

@ -26,13 +26,29 @@ public:
void UpdateActiveScene() {
if (activeScene != entt::null) {
// Iterate over entities in the active scene that have an InputComponent
auto view = registry.view<InputComponent>();
for (auto entity : view) {
auto& inputComponent = view.get<InputComponent>(entity);
inputComponent.Update(); // This will call the input logic
}
}
}
void RenderActiveScene() {
if (activeScene != entt::null) {
// Iterate over entities in the active scene that have both SpriteComponent and TransformComponent
auto view = registry.view<SpriteComponent, TransformComponent>();
for (auto entity : view) {
auto& sprite = view.get<SpriteComponent>(entity);
auto& transform = view.get<TransformComponent>(entity);
// Render the sprite at the position defined by the TransformComponent
sprite.Render(transform);
}
}
}
private:
entt::registry& registry;