15 #include <type_traits> 18 #include <SFML/Graphics/Color.hpp> 19 #include <SFML/Graphics/RenderTexture.hpp> 20 #include <SFML/System/Clock.hpp> 21 #include <SFML/System/Vector2.hpp> 22 #include <SFML/Window/Event.hpp> 24 #include <NasNas/core/data/Config.hpp> 25 #include <NasNas/core/data/Rect.hpp> 26 #include <NasNas/core/data/ShaderHolder.hpp> 28 #include <NasNas/core/AppState.hpp> 29 #include <NasNas/core/Camera.hpp> 30 #include <NasNas/core/Debug.hpp> 31 #include <NasNas/core/Scene.hpp> 32 #include <NasNas/core/Window.hpp> 36 class StateMachineApp;
56 App(std::string title, sf::Vector2u resolution,
58 int fps=Settings::user_config.frame_rate,
59 int ups=Settings::user_config.update_rate
72 auto getTitle()
const ->
const std::string&;
81 auto getMousePosition()
const -> sf::Vector2f;
83 auto getMousePosition(
Camera& cam)
const -> sf::Vector2f;
85 auto getTouchPosition(
int finger)
const -> sf::Vector2f;
87 auto getTouchPosition(
int finger,
Camera& cam)
const -> sf::Vector2f;
125 auto getDt()
const -> float;
155 const std::string& name,
int order,
156 const ns::IntRect& view={{0, 0}, sf::Vector2i(Settings::user_config.resolution)},
226 void onEvent(
const sf::Event& event)
override;
238 sf::RenderTexture m_renderer;
243 sf::Clock m_fps_clock;
245 bool m_sleeping =
false;
247 std::list<Camera> m_cameras;
248 std::list<Scene> m_scenes;
249 std::vector<std::unique_ptr<DebugTextInterface>> m_debug_texts;
250 std::vector<sf::Vertex> m_debug_bounds;
252 std::function<void(const sf::Event&)> m_cb_onevent=[](
const sf::Event&){};
253 std::function<void()> m_cb_update=[]{};
254 std::function<void()> m_cb_prerender=[]{};
263 static void storeInputs(
const sf::Event& event);
270 void renderDebugBounds();
272 const sf::FloatRect& render_bounds, sf::Vector2f& offset,
273 const sf::FloatRect& global_vport,
const sf::FloatRect& local_vport);
277 void App::addDebugText(
const std::string& label, T* var_address,
const sf::Vector2f& position,
const sf::Color& color) {
278 auto* dbg_txt =
new DebugText<T>(label, var_address, position);
279 dbg_txt->setFillColor(color);
280 m_debug_texts.emplace_back(dbg_txt);
284 void App::addDebugText(
const std::string& label, std::function<T()> fn,
const sf::Vector2f& position,
const sf::Color& color) {
286 dbg_txt->setFillColor(color);
287 m_debug_texts.emplace_back(dbg_txt);
291 std::unique_ptr<AppState> m_state =
nullptr;
296 template <
typename T,
typename... Targs,
typename = std::enable_if<std::is_base_of_v<AppState, T>>>
297 void setState(Targs... args) {
299 m_state = std::make_unique<T>(std::forward<Targs>(args)...);
301 m_cb_onevent = [&](
const auto& event) { m_state->onEvent(event); };
302 m_cb_update = [&] { m_state->update(); };
303 m_cb_prerender = [&] { m_state->preRender(); };
308 std::stack<std::unique_ptr<AppState>> m_state_stack;
313 template <
typename T,
typename... Targs,
typename = std::enable_if<std::is_base_of_v<AppState, T>>>
314 void pushState(Targs... args) {
315 m_state_stack.emplace(std::make_unique<T>(std::forward<Targs>(args)...));
316 m_state_stack.top()->setup();
317 m_cb_onevent = [&](
const sf::Event& event) { m_state_stack.top()->onEvent(event); };
318 m_cb_update = [&] { m_state_stack.top()->update(); };
319 m_cb_prerender = [&] { m_state_stack.top()->preRender(); };
322 inline void popState() {
323 if (m_state_stack.empty())
328 if (m_state_stack.empty()) {
329 m_cb_onevent = [&](
const sf::Event& event) {};
330 m_cb_update = [&] {};
331 m_cb_prerender = [&] {};
333 m_state_stack.top()->setup();
334 m_cb_onevent = [&](
const sf::Event& event) { m_state_stack.top()->onEvent(event); };
335 m_cb_update = [&] { m_state_stack.top()->update(); };
336 m_cb_prerender = [&] { m_state_stack.top()->preRender(); };
auto getWindow() -> AppWindow &
Get the AppWindow.
void sleep()
The App enters sleep mode, the App will not update. Used for Android when application runs in backgro...
DebugText evaluates a variable or a method and display the value on the AppWindow.
auto createCamera(const std::string &name, int order, const ns::IntRect &view={{0, 0}, sf::Vector2i(Settings::user_config.resolution)}, const ns::FloatRect &viewport={0, 0, 1.f, 1.f}) -> Camera &
Creates a Camera object and returns a reference to it.
auto getScene(const std::string &name) -> Scene &
Get a Scene by name.
static sf::Color color
set DebugText color
virtual void update()
App update method.
void onEvent(const sf::Event &event) override
Handles SFML events.
auto getTitle() const -> const std::string &
Returns the title of the App.
void toggleFullscreen()
Toggle fullscreen display.
auto createScene(const std::string &name) -> Scene &
Creates a Scene object and returns a reference to it.
App()
Contructs an App from ns::Config configuration.
auto allCameras() -> std::list< Camera > &
Get all the Camera objects created within the App.
void addDebugText(const std::string &label, const sf::Vector2f &position, const sf::Color &color=ns::DebugTextInterface::color)
Creates a label only DebugText object and render it on the AppWindow directly.
auto getCamera(const std::string &name) -> Camera &
Get a Camera by name.
virtual ~App()
Delete all Scene, Camera and DebugText objects and free loaded resources.
void update() override
App update method.
virtual void update()
App update method.
void run()
Starts the game loop.
void awake()
The App awakes from sleep mode. Used for Android when application run as main process.
auto allScenes() -> std::list< Scene > &
Get all the Scene objects created within the App.