NasNas
An intuitive and beginner friendly 2D game framework for C++
Inputs.hpp
1 // Created by Modar Nasser on 04/08/2021.
2 
3 #pragma once
4 
5 #include <string>
6 #include <vector>
7 #include <unordered_map>
8 
9 #include <SFML/Window/Keyboard.hpp>
10 
11 #include <NasNas/core/data/Singleton.hpp>
12 
13 namespace ns {
14  class Inputs : public detail::Singleton<Inputs> {
16  friend class App;
17  public:
18  static auto getKeysDown() -> const std::vector<sf::Keyboard::Key>&;
19 
20  static auto isKeyDown(const sf::Keyboard::Key& key) -> bool;
21 
22  static auto isKeyPressed(const sf::Keyboard::Key& key) -> bool;
23  static auto isKeyReleased(const sf::Keyboard::Key& key) -> bool;
24 
25  static void setButton(const std::string& btn, const sf::Keyboard::Key& key);
26  static auto getButton(const std::string& btn) -> sf::Keyboard::Key;
27 
28  private:
29  Inputs() = default;
31  static void init();
32 
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;
38  };
39 }
Definition: App.hpp:39