aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-07 12:33:37 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-07 12:33:37 +0100
commit96ef24654d2ee26184ebcb5b9092649e67afe5d9 (patch)
tree3149f522a7390a2f7ff98c2b7cc494cf2a69a0a0 /src/crepe
parentcd0940f72e1e0d4abb0bc1ef5fb481b389a1f77a (diff)
Made game_object_id const
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/Component.cpp2
-rw-r--r--src/crepe/Component.h2
-rw-r--r--src/crepe/api/Script.hpp2
-rw-r--r--src/crepe/system/PhysicsSystem.cpp4
-rw-r--r--src/crepe/system/RenderSystem.cpp2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/crepe/Component.cpp b/src/crepe/Component.cpp
index 230bb70..cdbda67 100644
--- a/src/crepe/Component.cpp
+++ b/src/crepe/Component.cpp
@@ -2,4 +2,4 @@
using namespace crepe;
-Component::Component(uint32_t id) : game_object_id(id) {}
+Component::Component(uint32_t id) : GAME_OBJECT_ID(id) {}
diff --git a/src/crepe/Component.h b/src/crepe/Component.h
index 02a4e7e..41badc3 100644
--- a/src/crepe/Component.h
+++ b/src/crepe/Component.h
@@ -36,7 +36,7 @@ public:
public:
//! The id of the GameObject this component belongs to
- uint32_t game_object_id;
+ const uint32_t GAME_OBJECT_ID;
//! Whether the component is active
bool active = true;
};
diff --git a/src/crepe/api/Script.hpp b/src/crepe/api/Script.hpp
index d96c0e8..6d111af 100644
--- a/src/crepe/api/Script.hpp
+++ b/src/crepe/api/Script.hpp
@@ -19,7 +19,7 @@ T & Script::get_component() {
template <typename T>
std::vector<std::reference_wrapper<T>> Script::get_components() {
ComponentManager & mgr = ComponentManager::get_instance();
- return mgr.get_components_by_id<T>(this->parent->game_object_id);
+ return mgr.get_components_by_id<T>(this->parent->GAME_OBJECT_ID);
}
} // namespace crepe
diff --git a/src/crepe/system/PhysicsSystem.cpp b/src/crepe/system/PhysicsSystem.cpp
index cea8062..dd80312 100644
--- a/src/crepe/system/PhysicsSystem.cpp
+++ b/src/crepe/system/PhysicsSystem.cpp
@@ -23,12 +23,12 @@ void PhysicsSystem::update() {
switch (rigidbody.body_type) {
case BodyType::DYNAMIC:
for (Transform & transform : transforms) {
- if (transform.game_object_id == rigidbody.game_object_id) {
+ if (transform.GAME_OBJECT_ID == rigidbody.GAME_OBJECT_ID) {
rigidbody.velocity_x = 0;
rigidbody.velocity_y = 0;
std::vector<std::reference_wrapper<Force>> forces
= mgr.get_components_by_id<Force>(
- rigidbody.game_object_id);
+ rigidbody.GAME_OBJECT_ID);
rigidbody.velocity_y
+= rigidbody.gravity_scale * 1 * rigidbody.mass;
diff --git a/src/crepe/system/RenderSystem.cpp b/src/crepe/system/RenderSystem.cpp
index 5a07cc2..2003eaf 100644
--- a/src/crepe/system/RenderSystem.cpp
+++ b/src/crepe/system/RenderSystem.cpp
@@ -32,7 +32,7 @@ void RenderSystem::update() {
for (const Sprite & sprite : sprites) {
std::vector<std::reference_wrapper<Transform>> transforms
- = mgr.get_components_by_id<Transform>(sprite.game_object_id);
+ = mgr.get_components_by_id<Transform>(sprite.GAME_OBJECT_ID);
for (const Transform & transform : transforms) {
render.draw(sprite, transform);
}