From 916396e175e79257a86a8e035ec31e1c8f528696 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 10 Sep 2024 20:17:32 -0500 Subject: [PATCH] Fixed input --- src/dawn/game/Game.cpp | 1 + src/dawn/input/IInputManager.hpp | 34 ++++++++++----------- src/dawn/scene/item/SceneItemTransform.cpp | 26 ++++++++++++++++ src/dawn/scene/item/SceneItemTransform.hpp | 7 +++++ src/dawnglfw/input/InputManager.cpp | 19 ++++++++++++ src/dawnrpg/component/entity/CMakeLists.txt | 1 + src/dawnrpg/component/entity/Entity.cpp | 2 +- src/dawnrpg/component/entity/Player.cpp | 23 ++++++++++++++ src/dawnrpg/component/entity/Player.hpp | 18 +++++++++++ src/dawnrpg/input/InputBinds.hpp | 13 ++++++++ src/dawnrpg/prefab/PlayerPrefab.cpp | 19 ++++++++++++ src/dawnrpg/prefab/PlayerPrefab.hpp | 7 +++++ src/dawnrpg/prefab/WorldPrefab.cpp | 1 + src/dawnrpg/scenes/WorldScene.cpp | 10 +++--- 14 files changed, 158 insertions(+), 23 deletions(-) create mode 100644 src/dawnrpg/component/entity/Player.cpp create mode 100644 src/dawnrpg/component/entity/Player.hpp create mode 100644 src/dawnrpg/input/InputBinds.hpp diff --git a/src/dawn/game/Game.cpp b/src/dawn/game/Game.cpp index 4b07d926..7e0ab780 100644 --- a/src/dawn/game/Game.cpp +++ b/src/dawn/game/Game.cpp @@ -32,6 +32,7 @@ void Game::update() { } timeManager.update(); + inputManager.update(); if(currentScene) currentScene->update(); renderHost.update(shared_from_this()); } diff --git a/src/dawn/input/IInputManager.hpp b/src/dawn/input/IInputManager.hpp index 03dae7d0..d482c823 100644 --- a/src/dawn/input/IInputManager.hpp +++ b/src/dawn/input/IInputManager.hpp @@ -5,17 +5,17 @@ #pragma once #include "util/Math.hpp" +#include "input/InputBinds.hpp" namespace Dawn { class DawnGame; - typedef int_fast16_t inputbind_t; template class IInputManager { protected: - std::unordered_map> binds; - std::unordered_map valuesLeft; - std::unordered_map valuesRight; + std::unordered_map> binds; + std::unordered_map valuesLeft; + std::unordered_map valuesRight; bool_t currentIsLeft = true; /** @@ -34,7 +34,7 @@ namespace Dawn { * @param bind Bind to bind the axis to. * @param axis Axis to use for this bind. */ - void bind(const inputbind_t bind, const T axis) { + void bind(const enum InputBind bind, const T axis) { this->binds[bind].push_back(axis); } @@ -43,7 +43,7 @@ namespace Dawn { * * @param bind Bind to remove all binds from. */ - void unbind(const inputbind_t bind) { + void unbind(const enum InputBind bind) { this->binds[bind].clear(); } @@ -61,7 +61,7 @@ namespace Dawn { * @param bind Bind to get the value of. * @return The current input state (between 0 and 1). */ - float_t getValue(const inputbind_t bind) { + float_t getValue(const enum InputBind bind) { if(this->currentIsLeft) { auto exist = this->valuesLeft.find(bind); return exist == this->valuesLeft.end() ? 0.0f : exist->second; @@ -77,7 +77,7 @@ namespace Dawn { * @param bind Bind to get the value of. * @return The value of the bind, last frame. */ - float_t getValueLastUpdate(const inputbind_t bind) { + float_t getValueLastUpdate(const enum InputBind bind) { if(this->currentIsLeft) { auto exist = this->valuesRight.find(bind); return exist == this->valuesRight.end() ? 0.0f : exist->second; @@ -99,15 +99,15 @@ namespace Dawn { * @param positive Bind to use for the positive axis. * @return A value between -1 and 1. */ - float_t getAxis(const inputbind_t negative, const inputbind_t positive) { + float_t getAxis(const enum InputBind negative, const enum InputBind positive) { return -getValue(negative) + getValue(positive); } glm::vec2 getAxis2D( - const inputbind_t negativeX, - const inputbind_t positiveX, - const inputbind_t negativeY, - const inputbind_t positiveY + const enum InputBind negativeX, + const enum InputBind positiveX, + const enum InputBind negativeY, + const enum InputBind positiveY ) { return glm::vec2( getAxis(negativeX, positiveX), @@ -122,7 +122,7 @@ namespace Dawn { * @param y Y Axis bind. * @return 2D vector of the two given input binds. */ - glm::vec2 getAxis2D(const inputbind_t x, const inputbind_t y) { + glm::vec2 getAxis2D(const enum InputBind x, const enum InputBind y) { return glm::vec2(getValue(x), getValue(y)); } @@ -133,7 +133,7 @@ namespace Dawn { * @param bind Bind to check if pressed. * @return True if value is non-zero, or false for zero. */ - bool_t isDown(const inputbind_t bind) { + bool_t isDown(const enum InputBind bind) { return this->getValue(bind) != 0.0f; } @@ -144,7 +144,7 @@ namespace Dawn { * @param bind Bind to check if pressed. * @return True if down this frame and not down last frame. */ - bool_t isPressed(const inputbind_t bind) { + bool_t isPressed(const enum InputBind bind) { return this->getValue(bind) != 0 && this->getValueLastUpdate(bind) == 0; } @@ -155,7 +155,7 @@ namespace Dawn { * @param bind Bind to check if released. * @return True if up this frame, and down last frame. */ - bool_t wasReleased(const inputbind_t bind) { + bool_t wasReleased(const enum InputBind bind) { return this->getValue(bind) == 0 && this->getValueLastUpdate(bind) != 0; } diff --git a/src/dawn/scene/item/SceneItemTransform.cpp b/src/dawn/scene/item/SceneItemTransform.cpp index f234a65f..eb1d7851 100644 --- a/src/dawn/scene/item/SceneItemTransform.cpp +++ b/src/dawn/scene/item/SceneItemTransform.cpp @@ -123,6 +123,32 @@ glm::quat SceneItemTransform::getLocalRotation() { return this->localRotation; } +void SceneItemTransform::setParent(std::shared_ptr parent) { + if(this->parent.lock() == parent) return; + + auto self = dynamic_cast(this); + assertNotNull(self, "Cannot set parent of null item?"); + + if(auto oldParent = this->parent.lock()) { + auto &children = oldParent->children; + children.erase( + std::remove_if( + children.begin(), + children.end(), + [self](std::weak_ptr &item) { + return item.lock() == self->shared_from_this(); + } + ), + children.end() + ); + } + this->parent = parent; + if(auto newParent = this->parent.lock()) { + newParent->children.push_back(self->shared_from_this()); + } + this->updateWorldTransformFromParent(); +} + void SceneItemTransform::setLocalTransform(const glm::mat4 transform) { this->transformLocal = transform; this->updateLocalValuesFromLocalTransform(); diff --git a/src/dawn/scene/item/SceneItemTransform.hpp b/src/dawn/scene/item/SceneItemTransform.hpp index c360b5bb..d53ada5e 100644 --- a/src/dawn/scene/item/SceneItemTransform.hpp +++ b/src/dawn/scene/item/SceneItemTransform.hpp @@ -106,6 +106,13 @@ namespace Dawn { * @return Local rotation of this item. */ glm::quat getLocalRotation(); + + /** + * Sets the parent of this item. + * + * @param parent Parent of this item. + */ + void setParent(std::shared_ptr parent); /** * Sets the transform of this item within local space (relative to parent) diff --git a/src/dawnglfw/input/InputManager.cpp b/src/dawnglfw/input/InputManager.cpp index 08698a1c..5df75335 100644 --- a/src/dawnglfw/input/InputManager.cpp +++ b/src/dawnglfw/input/InputManager.cpp @@ -44,6 +44,25 @@ void InputManager::init(const std::shared_ptr game) { action == GLFW_PRESS ? 1.0f : 0.0f ); }); + + glfwSetKeyCallback(window, []( + GLFWwindow* window, + int32_t key, + int32_t scancode, + int32_t action, + int32_t mods + ) { + auto game = (Game*)glfwGetWindowUserPointer(window); + game->inputManager.rawInputValues[key] = ( + action == GLFW_PRESS ? 1.0f : 0.0f + ); + }); + + // Set default values + this->bind(InputBind::Up, GLFW_KEY_W); + this->bind(InputBind::Up, GLFW_KEY_UP); + this->bind(InputBind::Down, GLFW_KEY_S); + this->bind(InputBind::Down, GLFW_KEY_DOWN); } float_t InputManager::getInputValue(int32_t axis) { diff --git a/src/dawnrpg/component/entity/CMakeLists.txt b/src/dawnrpg/component/entity/CMakeLists.txt index 181a82f9..e9c1e011 100644 --- a/src/dawnrpg/component/entity/CMakeLists.txt +++ b/src/dawnrpg/component/entity/CMakeLists.txt @@ -6,4 +6,5 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE Entity.cpp + Player.cpp ) \ No newline at end of file diff --git a/src/dawnrpg/component/entity/Entity.cpp b/src/dawnrpg/component/entity/Entity.cpp index e43e6c89..a32b5d54 100644 --- a/src/dawnrpg/component/entity/Entity.cpp +++ b/src/dawnrpg/component/entity/Entity.cpp @@ -10,7 +10,7 @@ using namespace Dawn; void Entity::onInit() { auto world = this->world.lock(); - assertNotNull(world, "World is no longer active."); + assertNotNull(world, "World is no longer active? "); } void Entity::onDispose() { diff --git a/src/dawnrpg/component/entity/Player.cpp b/src/dawnrpg/component/entity/Player.cpp new file mode 100644 index 00000000..0c3920a4 --- /dev/null +++ b/src/dawnrpg/component/entity/Player.cpp @@ -0,0 +1,23 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Player.hpp" +#include "scene/Scene.hpp" +#include "input/InputBinds.hpp" + +using namespace Dawn; + +void Player::onInit() { + listenerUpdate = getScene()->onUnpausedUpdate.listen([this](float delta) { + InputManager &im = getGame()->inputManager; + if(im.isDown(InputBind::Up)) { + + } + }); +} + +void Player::onDispose() { + listenerUpdate(); +} \ No newline at end of file diff --git a/src/dawnrpg/component/entity/Player.hpp b/src/dawnrpg/component/entity/Player.hpp new file mode 100644 index 00000000..10b96c3b --- /dev/null +++ b/src/dawnrpg/component/entity/Player.hpp @@ -0,0 +1,18 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/SceneComponent.hpp" + +namespace Dawn { + class Player : public SceneComponent { + protected: + std::function listenerUpdate; + + public: + void onInit() override; + void onDispose() override; + }; +} \ No newline at end of file diff --git a/src/dawnrpg/input/InputBinds.hpp b/src/dawnrpg/input/InputBinds.hpp new file mode 100644 index 00000000..029f4ed8 --- /dev/null +++ b/src/dawnrpg/input/InputBinds.hpp @@ -0,0 +1,13 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once + +namespace Dawn { + enum class InputBind : uint8_t { + Up, + Down + }; +} \ No newline at end of file diff --git a/src/dawnrpg/prefab/PlayerPrefab.cpp b/src/dawnrpg/prefab/PlayerPrefab.cpp index 3a21aebf..0cc0a324 100644 --- a/src/dawnrpg/prefab/PlayerPrefab.cpp +++ b/src/dawnrpg/prefab/PlayerPrefab.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "PlayerPrefab.hpp" +#include "display/mesh/QuadMesh.hpp" using namespace Dawn; @@ -12,9 +13,27 @@ struct PlayerPrefab Dawn::createPlayerPrefab( ) { struct PlayerPrefab player; player.item = world->getScene()->createSceneItem(); + player.item->setParent(world->getItem()); player.entity = player.item->addComponent(); player.entity->world = world; + player.player = player.item->addComponent(); + + player.mesh = std::make_shared(); + player.mesh->createBuffers(QUAD_VERTICE_COUNT, QUAD_INDICE_COUNT); + QuadMesh::buffer( + player.mesh, + glm::vec4(0, 0, 1, 1), + glm::vec4(0, 0, 1, 1), + 0, 0 + ); + + player.meshRenderer = player.item->addComponent(); + player.meshRenderer->mesh = player.mesh; + + player.material = player.item->addComponent(); + player.material->setColor(COLOR_MAGENTA); + return player; } \ No newline at end of file diff --git a/src/dawnrpg/prefab/PlayerPrefab.hpp b/src/dawnrpg/prefab/PlayerPrefab.hpp index 09c92203..c0b810f6 100644 --- a/src/dawnrpg/prefab/PlayerPrefab.hpp +++ b/src/dawnrpg/prefab/PlayerPrefab.hpp @@ -6,11 +6,18 @@ #pragma once #include "prefab/Prefab.hpp" #include "component/world/World.hpp" +#include "component/display/MeshRenderer.hpp" +#include "component/display/material/SimpleTexturedMaterial.hpp" +#include "component/entity/Player.hpp" namespace Dawn { struct PlayerPrefab : public Prefab { public: std::shared_ptr entity; + std::shared_ptr player; + std::shared_ptr mesh; + std::shared_ptr meshRenderer; + std::shared_ptr material; }; struct PlayerPrefab createPlayerPrefab(const std::shared_ptr world); diff --git a/src/dawnrpg/prefab/WorldPrefab.cpp b/src/dawnrpg/prefab/WorldPrefab.cpp index 94bd7fcd..715aff88 100644 --- a/src/dawnrpg/prefab/WorldPrefab.cpp +++ b/src/dawnrpg/prefab/WorldPrefab.cpp @@ -4,6 +4,7 @@ // https://opensource.org/licenses/MIT #include "WorldPrefab.hpp" +#include "display/mesh/QuadMesh.hpp" using namespace Dawn; diff --git a/src/dawnrpg/scenes/WorldScene.cpp b/src/dawnrpg/scenes/WorldScene.cpp index a085fda9..5f860d26 100644 --- a/src/dawnrpg/scenes/WorldScene.cpp +++ b/src/dawnrpg/scenes/WorldScene.cpp @@ -7,7 +7,7 @@ #include "scenes/SceneList.hpp" #include "prefab/PlayerPrefab.hpp" #include "prefab/WorldPrefab.hpp" -// #include "component/display/Camera.hpp" +#include "component/display/Camera.hpp" // #include "prefab/SimpleSpinningCube.hpp" // #include "component/display/material/SimpleTexturedMaterial.hpp" // #include "display/mesh/CubeMesh.hpp" @@ -24,10 +24,10 @@ using namespace Dawn; void Dawn::worldScene(Scene &s) { - // auto cameraItem = s.createSceneItem(); - // auto camera = cameraItem->addComponent(); - // cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 }); - // camera->clipFar = 99999.99f; + auto cameraItem = s.createSceneItem(); + auto camera = cameraItem->addComponent(); + cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 }); + camera->clipFar = 99999.99f; // auto cube = s.createSceneItem(); // auto cubeMesh = std::make_shared();