diff --git a/src/dawnrose/CMakeLists.txt b/src/dawnrose/CMakeLists.txt index 8de667f3..e8839bc6 100644 --- a/src/dawnrose/CMakeLists.txt +++ b/src/dawnrose/CMakeLists.txt @@ -14,4 +14,5 @@ target_include_directories(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(game) -add_subdirectory(save) \ No newline at end of file +add_subdirectory(save) +add_subdirectory(scene) \ No newline at end of file diff --git a/src/dawnrose/scene/CMakeLists.txt b/src/dawnrose/scene/CMakeLists.txt new file mode 100644 index 00000000..dbb094c0 --- /dev/null +++ b/src/dawnrose/scene/CMakeLists.txt @@ -0,0 +1,7 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(components) \ No newline at end of file diff --git a/src/dawnrose/scene/components/CMakeLists.txt b/src/dawnrose/scene/components/CMakeLists.txt new file mode 100644 index 00000000..e88c2c98 --- /dev/null +++ b/src/dawnrose/scene/components/CMakeLists.txt @@ -0,0 +1,11 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + GameCamera.cpp + PlayerController.cpp +) \ No newline at end of file diff --git a/src/dawnrose/scene/components/GameCamera.cpp b/src/dawnrose/scene/components/GameCamera.cpp new file mode 100644 index 00000000..7c82e9ac --- /dev/null +++ b/src/dawnrose/scene/components/GameCamera.cpp @@ -0,0 +1,29 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "GameCamera.hpp" + +using namespace Dawn; + +GameCamera::GameCamera(SceneItem *i) : SceneItemComponent(i) {} + +std::vector GameCamera::getDependencies() { + return { + (this->camera = item->getComponent()) + }; +} + +void GameCamera::onStart() { + assertNotNull(this->camera); + assertNotNull(this->player); + + useEvent([&](float_t delta) { + glm::vec3 cameraTarget = player->transform->getLocalPosition(); + camera->transform->lookAt( + cameraTarget + glm::vec3(0, 10.0f, 1.5f), + cameraTarget + ); + }, getScene()->eventSceneUpdate); +} \ No newline at end of file diff --git a/src/dawnrose/scene/components/GameCamera.hpp b/src/dawnrose/scene/components/GameCamera.hpp new file mode 100644 index 00000000..d756fb73 --- /dev/null +++ b/src/dawnrose/scene/components/GameCamera.hpp @@ -0,0 +1,22 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/components/display/Camera.hpp" +#include "scene/components/PlayerController.hpp" + +namespace Dawn { + class GameCamera : public SceneItemComponent { + protected: + Camera *camera = nullptr; + + public: + PlayerController *player = nullptr; + + GameCamera(SceneItem *item); + std::vector getDependencies() override; + void onStart() override; + }; +} \ No newline at end of file diff --git a/src/dawnrose/scene/components/PlayerController.cpp b/src/dawnrose/scene/components/PlayerController.cpp new file mode 100644 index 00000000..7708af3b --- /dev/null +++ b/src/dawnrose/scene/components/PlayerController.cpp @@ -0,0 +1,38 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "PlayerController.hpp" +#include "game/DawnGame.hpp" + +using namespace Dawn; + +PlayerController::PlayerController(SceneItem *item) : SceneItemComponent(item) { + +} + +void PlayerController::onStart() { + useEvent([&](float_t delta){ + auto camera = getScene()->findComponent(); + assertNotNull(camera); + + // Friction + velocity -= velocity * friction * delta; + + // Movement + auto inputMove = getGame()->inputManager.getAxis2D( + INPUT_BIND_NEGATIVE_X, INPUT_BIND_POSITIVE_X, + INPUT_BIND_NEGATIVE_Y, INPUT_BIND_POSITIVE_Y + ) * delta * moveSpeed; + + if(inputMove.x != 0 || inputMove.y != 0) { + float_t angle = atan2(inputMove.y, inputMove.x); + glm::vec3 movement = glm::vec3(cos(angle), 0, sin(angle)); + velocity += movement * delta * moveSpeed; + } + + // Move / Update + transform->setLocalPosition(transform->getLocalPosition() + (velocity * delta)); + }, getScene()->eventSceneUpdate); +} \ No newline at end of file diff --git a/src/dawnrose/scene/components/PlayerController.hpp b/src/dawnrose/scene/components/PlayerController.hpp new file mode 100644 index 00000000..faeb882c --- /dev/null +++ b/src/dawnrose/scene/components/PlayerController.hpp @@ -0,0 +1,20 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/SceneItemComponent.hpp" + +namespace Dawn { + class PlayerController : public SceneItemComponent { + public: + glm::vec3 velocity; + float_t moveSpeed = 40.0f; + float_t friction = 12.0f; + + PlayerController(SceneItem *item); + + void onStart() override; + }; +} \ No newline at end of file diff --git a/src/dawnrose/scenes/HelloWorldScene.hpp b/src/dawnrose/scenes/HelloWorldScene.hpp index 5409cd0d..6273bbc6 100644 --- a/src/dawnrose/scenes/HelloWorldScene.hpp +++ b/src/dawnrose/scenes/HelloWorldScene.hpp @@ -5,57 +5,36 @@ #pragma once #include "scene/Scene.hpp" -#include "prefabs/SimpleSpinningCubePrefab.hpp" -#include "scene/components/ui/UILabel.hpp" -#include "scene/components/ui/UIImage.hpp" -#include "display/font/BitmapFont.hpp" +#include "scene/components/PlayerController.hpp" +#include "scene/components/GameCamera.hpp" +#include "scene/components/physics/3d/CubeCollider.hpp" +#include "scene/components/GameCamera.hpp" namespace Dawn { class HelloWorldScene : public Scene { protected: Camera *camera; - SimpleSpinningCubePrefab *cube; - UICanvas *canvas; - UILabel *label; - UIImage *image; - BitmapFont font; void stage() override { camera = Camera::create(this); camera->transform->lookAt(glm::vec3(0, 0, 8), glm::vec3(0, 0, 0)); + auto gameCamera = camera->item->addComponent(); - cube = SimpleSpinningCubePrefab::create(this); + auto playerItem = this->createSceneItem(); + auto player = playerItem->addComponent(); + auto hitbox = playerItem->addComponent(); - canvas = UICanvas::create(this); + auto wall = this->createSceneItem(); + auto wallHitbox = wall->addComponent(); + wall->transform.setLocalPosition(glm::vec3(-10, 0, 0)); + wallHitbox->min = -(wallHitbox->max = glm::vec3(1, 1, 5)); - auto imageItem = this->createSceneItem(); - image = imageItem->addComponent(); - image->color = COLOR_BLACK; - imageItem->transform.setParent(canvas->transform); - - auto labelItem = this->createSceneItem(); - label = labelItem->addComponent(); - labelItem->transform.setParent(canvas->transform); - - auto assMan = &this->game->assetManager; - auto texture = assMan->get("testbitmap_texture"); - auto tileset = assMan->get("testbitmap_tileset"); - this->font.texture = &texture->texture; - this->font.tileset = &tileset->tileset; - - label->text = "Hello World, how are you today? I hope you are doing well. I really like the fact I can ramble in my text for once."; - label->font = &font; - label->maxWidth = 220; - - image->alignment = glm::vec4(0, 0, label->getContentWidth(), label->getContentHeight()); + gameCamera->player = player; } std::vector getRequiredAssets() override { auto assMan = &this->game->assetManager; std::vector assets; - vectorAppend(&assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); - assets.push_back(assMan->get("testbitmap_texture")); - assets.push_back(assMan->get("testbitmap_tileset")); return assets; }