aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-05 13:57:49 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-05 13:57:49 +0100
commit5b8ec02b6b4f2356e2d688502298274e372b9fad (patch)
tree329277969f154177c89f5ed3ce1a8ee5b2c72875 /src/crepe
parent154e974a0d553ea8209c3be9b1bd5820fef5e0a3 (diff)
Make format
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/Component.cpp4
-rw-r--r--src/crepe/Metadata.cpp7
-rw-r--r--src/crepe/System.h4
-rw-r--r--src/crepe/api/GameObject.cpp12
-rw-r--r--src/crepe/api/GameObject.h3
-rw-r--r--src/crepe/api/Transform.cpp7
6 files changed, 18 insertions, 19 deletions
diff --git a/src/crepe/Component.cpp b/src/crepe/Component.cpp
index 25c6947..78b47fa 100644
--- a/src/crepe/Component.cpp
+++ b/src/crepe/Component.cpp
@@ -4,6 +4,4 @@ using namespace crepe;
Component::Component(uint32_t id) : game_object_id(id), active(true) {}
-int Component::get_instances_max() const {
- return -1;
-}
+int Component::get_instances_max() const { return -1; }
diff --git a/src/crepe/Metadata.cpp b/src/crepe/Metadata.cpp
index 3d1d910..d362e0a 100644
--- a/src/crepe/Metadata.cpp
+++ b/src/crepe/Metadata.cpp
@@ -3,8 +3,7 @@
using namespace crepe;
using namespace std;
-Metadata::Metadata(uint32_t gameObjectId, string name, string tag) : Component(gameObjectId), name(name), tag(tag) {}
+Metadata::Metadata(uint32_t gameObjectId, string name, string tag)
+ : Component(gameObjectId), name(name), tag(tag) {}
-int Metadata::get_instances_max() const {
- return 1;
-}
+int Metadata::get_instances_max() const { return 1; }
diff --git a/src/crepe/System.h b/src/crepe/System.h
index ecbb7f5..8744920 100644
--- a/src/crepe/System.h
+++ b/src/crepe/System.h
@@ -8,8 +8,8 @@ public:
virtual void update() = 0;
protected:
- System() {};
- virtual ~System() {};
+ System(){};
+ virtual ~System(){};
private:
// singleton
diff --git a/src/crepe/api/GameObject.cpp b/src/crepe/api/GameObject.cpp
index 388f1c4..5393e39 100644
--- a/src/crepe/api/GameObject.cpp
+++ b/src/crepe/api/GameObject.cpp
@@ -1,12 +1,14 @@
#include "api/Transform.h"
-#include "Metadata.h"
#include "GameObject.h"
+#include "Metadata.h"
using namespace crepe::api;
using namespace std;
-GameObject::GameObject(uint32_t id, std::string name, std::string tag, Point position, double rotation, double scale) : id(id) {
+GameObject::GameObject(uint32_t id, std::string name, std::string tag,
+ Point position, double rotation, double scale)
+ : id(id) {
ComponentManager & mgr = ComponentManager::get_instance();
mgr.add_component<Transform>(this->id, position, rotation, scale);
mgr.add_component<Metadata>(this->id, name, tag);
@@ -14,8 +16,10 @@ GameObject::GameObject(uint32_t id, std::string name, std::string tag, Point pos
void GameObject::set_parent(GameObject & parent) {
auto & mgr = ComponentManager::get_instance();
- vector<reference_wrapper<Metadata>> thisMetadata = mgr.get_components_by_id<Metadata>(this->id);
- vector<reference_wrapper<Metadata>> parentMetadata = mgr.get_components_by_id<Metadata>(parent.id);
+ vector<reference_wrapper<Metadata>> thisMetadata
+ = mgr.get_components_by_id<Metadata>(this->id);
+ vector<reference_wrapper<Metadata>> parentMetadata
+ = mgr.get_components_by_id<Metadata>(parent.id);
thisMetadata.at(0).get().parent = parent.id;
parentMetadata.at(0).get().children.push_back(this->id);
}
diff --git a/src/crepe/api/GameObject.h b/src/crepe/api/GameObject.h
index fd513ec..862fee8 100644
--- a/src/crepe/api/GameObject.h
+++ b/src/crepe/api/GameObject.h
@@ -9,7 +9,8 @@ namespace crepe::api {
class GameObject {
public:
- GameObject(uint32_t id, std::string name, std::string tag, Point position, double rotation, double scale);
+ GameObject(uint32_t id, std::string name, std::string tag, Point position,
+ double rotation, double scale);
void set_parent(GameObject & parent);
template <typename T, typename... Args>
diff --git a/src/crepe/api/Transform.cpp b/src/crepe/api/Transform.cpp
index 64ad81c..4b4da8f 100644
--- a/src/crepe/api/Transform.cpp
+++ b/src/crepe/api/Transform.cpp
@@ -8,14 +8,11 @@
using namespace crepe::api;
-Transform::Transform(uint32_t game_id, Point point, double rot,
- double scale)
+Transform::Transform(uint32_t game_id, Point point, double rot, double scale)
: Component(game_id), position(point), rotation(rot), scale(scale) {
dbg_trace();
}
Transform::~Transform() { dbg_trace(); }
-int Transform::get_instances_max() const {
- return 1;
-}
+int Transform::get_instances_max() const { return 1; }