Fixed input

This commit is contained in:
2024-09-10 20:17:32 -05:00
parent 0e5b85633c
commit 916396e175
14 changed files with 158 additions and 23 deletions

View File

@ -32,6 +32,7 @@ void Game::update() {
}
timeManager.update();
inputManager.update();
if(currentScene) currentScene->update();
renderHost.update(shared_from_this());
}

View File

@ -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<typename T>
class IInputManager {
protected:
std::unordered_map<inputbind_t, std::vector<T>> binds;
std::unordered_map<inputbind_t, float_t> valuesLeft;
std::unordered_map<inputbind_t, float_t> valuesRight;
std::unordered_map<enum InputBind, std::vector<T>> binds;
std::unordered_map<enum InputBind, float_t> valuesLeft;
std::unordered_map<enum InputBind, float_t> 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;
}

View File

@ -123,6 +123,32 @@ glm::quat SceneItemTransform::getLocalRotation() {
return this->localRotation;
}
void SceneItemTransform::setParent(std::shared_ptr<SceneItem> parent) {
if(this->parent.lock() == parent) return;
auto self = dynamic_cast<SceneItem*>(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<SceneItem> &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();

View File

@ -107,6 +107,13 @@ namespace Dawn {
*/
glm::quat getLocalRotation();
/**
* Sets the parent of this item.
*
* @param parent Parent of this item.
*/
void setParent(std::shared_ptr<SceneItem> parent);
/**
* Sets the transform of this item within local space (relative to parent)
*

View File

@ -44,6 +44,25 @@ void InputManager::init(const std::shared_ptr<Game> 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) {

View File

@ -6,4 +6,5 @@
target_sources(${DAWN_TARGET_NAME}
PRIVATE
Entity.cpp
Player.cpp
)

View File

@ -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() {

View File

@ -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();
}

View File

@ -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<void()> listenerUpdate;
public:
void onInit() override;
void onDispose() override;
};
}

View File

@ -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
};
}

View File

@ -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<Entity>();
player.entity->world = world;
player.player = player.item->addComponent<Player>();
player.mesh = std::make_shared<Mesh>();
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<MeshRenderer>();
player.meshRenderer->mesh = player.mesh;
player.material = player.item->addComponent<SimpleTexturedMaterial>();
player.material->setColor(COLOR_MAGENTA);
return player;
}

View File

@ -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> entity;
std::shared_ptr<Player> player;
std::shared_ptr<Mesh> mesh;
std::shared_ptr<MeshRenderer> meshRenderer;
std::shared_ptr<SimpleTexturedMaterial> material;
};
struct PlayerPrefab createPlayerPrefab(const std::shared_ptr<World> world);

View File

@ -4,6 +4,7 @@
// https://opensource.org/licenses/MIT
#include "WorldPrefab.hpp"
#include "display/mesh/QuadMesh.hpp"
using namespace Dawn;

View File

@ -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<Camera>();
// cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 });
// camera->clipFar = 99999.99f;
auto cameraItem = s.createSceneItem();
auto camera = cameraItem->addComponent<Camera>();
cameraItem->lookAt({ 3, 3, 3 }, { 0, 0, 0 }, { 0, 1, 0 });
camera->clipFar = 99999.99f;
// auto cube = s.createSceneItem();
// auto cubeMesh = std::make_shared<Mesh>();