#include #include #include #include #include "ComponentManager.h" #include "GameObjectMax.h" #include "Components.h" int main() { auto startAdding = std::chrono::high_resolution_clock::now(); GameObject* gameObject[100000]; for(int i = 0; i < 100000; ++i) { gameObject[i] = new GameObject(i, "Name", "Tag", 0); gameObject[i]->AddComponent("C:/Test"); gameObject[i]->AddComponent(0, 0, i); gameObject[i]->AddComponent(i); } auto stopAdding = std::chrono::high_resolution_clock::now(); //This is what systems would do: std::vector> sprites = ComponentManager::GetInstance().GetComponentsByType(); for(Sprite& sprite : sprites) { //std::cout << sprite.get().mPath << std::endl; } //std::cout << std::endl; std::vector> rigidBodies = ComponentManager::GetInstance().GetComponentsByType(); for(Rigidbody& rigidbody : rigidBodies) { //std::cout << rigidbody.get().mMass << " " << rigidbody.get().mGravityScale << " " << rigidbody.get().mBodyType << std::endl; } //std::cout << std::endl; std::vector> coliders = ComponentManager::GetInstance().GetComponentsByType(); for(Colider& colider : coliders) { //std::cout << colider.get().mSize << std::endl; } auto stopLooping = std::chrono::high_resolution_clock::now(); for (int i = 0; i < 100000; ++i) { delete gameObject[i]; } auto Addtime = std::chrono::duration_cast(stopAdding - startAdding); auto LoopTime = std::chrono::duration_cast(stopLooping - stopAdding); std::cout << "AddTime: " << Addtime.count() << " us" << std::endl; std::cout << "LoopTime: " << LoopTime.count() << " us" << std::endl; }