7 #include <unordered_map> 9 #include <SFML/Window/Keyboard.hpp> 11 #include <NasNas/core/data/Singleton.hpp> 18 static auto getKeysDown() ->
const std::vector<sf::Keyboard::Key>&;
20 static auto isKeyDown(
const sf::Keyboard::Key& key) -> bool;
22 static auto isKeyPressed(
const sf::Keyboard::Key& key) -> bool;
23 static auto isKeyReleased(
const sf::Keyboard::Key& key) -> bool;
25 static void setButton(
const std::string& btn,
const sf::Keyboard::Key& key);
26 static auto getButton(
const std::string& btn) -> sf::Keyboard::Key;
33 std::vector<sf::Keyboard::Key> m_keys_down;
34 std::unordered_map<sf::Keyboard::Key, bool> m_keys_states;
35 std::unordered_map<sf::Keyboard::Key, bool> m_keys_pressed;
36 std::unordered_map<sf::Keyboard::Key, bool> m_keys_released;
37 std::unordered_map<std::string, sf::Keyboard::Key> m_buttons_map;