// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #include "scene/SceneList.hpp" #include "component/SimpleComponent.hpp" #include "component/display/Camera.hpp" #include "component/display/material/SimpleTexturedMaterial.hpp" #include "component/display/MeshRenderer.hpp" #include "display/mesh/CubeMesh.hpp" #include "display/mesh/SphereMesh.hpp" #include "component/physics/CubeCollider.hpp" #include "component/physics/SphereCollider.hpp" using namespace Dawn; void Dawn::helloWorldScene(Scene &s) { auto cameraItem = s.createSceneItem(); auto camera = cameraItem->addComponent(); cameraItem->lookAt({ 20, 20, 20 }, { 0, 0, 0 }, { 0, 1, 0 }); camera->clipFar = 99999.99f; // Ground { // Create the scene item. auto groundItem = s.createSceneItem(); groundItem->setLocalPosition(glm::vec3(0, 0, 0)); // Create a simple cube mesh. auto groundMesh = std::make_shared(); groundMesh->createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); CubeMesh::buffer(groundMesh, glm::vec3(-15, -1, -15), glm::vec3(30, 2, 30), 0, 0); // Add a renderer to the scene item. auto groundMeshRenderer = groundItem->addComponent(); groundMeshRenderer->mesh = groundMesh; // Add a material to the scene item. auto groundMaterial = groundItem->addComponent(); groundMaterial->setColor(COLOR_LIGHT_GREY); // Add collider auto groundCollider = groundItem->addComponent(); groundCollider->setColliderType(ColliderType::STATIC); groundCollider->setShape(glm::vec3(15, 1, 15)); } // Box { // Create the scene item. auto cubeItem = s.createSceneItem(); cubeItem->setLocalPosition(glm::vec3(0, 10, 0)); // Create a simple cube mesh. auto cubeMesh = std::make_shared(); cubeMesh->createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); CubeMesh::buffer(cubeMesh, glm::vec3(-1, -1, -1), glm::vec3(2, 2, 2), 0, 0); // Add a renderer to the scene item. auto cubeMeshRenderer = cubeItem->addComponent(); cubeMeshRenderer->mesh = cubeMesh; // Add a material to the scene item. auto cubeMaterial = cubeItem->addComponent(); cubeMaterial->setColor(COLOR_MAGENTA); // Add collider auto cubeCollider = cubeItem->addComponent(); } // Other Box { // Create the scene item. auto cubeItem = s.createSceneItem(); cubeItem->setLocalPosition(glm::vec3(0.75f, 15, 0.1f)); // Create a simple cube mesh. auto cubeMesh = std::make_shared(); cubeMesh->createBuffers(CUBE_VERTICE_COUNT, CUBE_INDICE_COUNT); CubeMesh::buffer(cubeMesh, glm::vec3(-1, -1, -1), glm::vec3(2, 2, 2), 0, 0); // Add a renderer to the scene item. auto cubeMeshRenderer = cubeItem->addComponent(); cubeMeshRenderer->mesh = cubeMesh; // Add a material to the scene item. auto cubeMaterial = cubeItem->addComponent(); cubeMaterial->setColor(COLOR_MAGENTA); // Add collider auto cubeCollider = cubeItem->addComponent(); } // Ball { // Create the scene item. auto sphereItem = s.createSceneItem(); sphereItem->setLocalPosition(glm::vec3(-1.0f, 13, -0.6f)); // Create a simple cube mesh. auto sphereMesh = std::make_shared(); SphereMesh::create(sphereMesh, 1.0f); // Add a renderer to the scene item. auto sphereMeshRenderer = sphereItem->addComponent(); sphereMeshRenderer->mesh = sphereMesh; // Add a material to the scene item. auto sphereMaterial = sphereItem->addComponent(); sphereMaterial->setColor(COLOR_CYAN); // Add collider auto sphereCollider = sphereItem->addComponent(); } }