#ifndef ENGINE_PLATFORM_PLATFORM_H #define ENGINE_PLATFORM_PLATFORM_H #include #include #include #include "base/thread_pool.h" #include "base/timer.h" #include "engine/audio/audio_forward.h" #if defined(__ANDROID__) #include "../../base/vecmath.h" struct android_app; struct AInputEvent; #elif defined(__linux__) #include #include #endif namespace eng { class Renderer; class Engine; class Platform { public: Platform(); ~Platform(); #if defined(__ANDROID__) void Initialize(android_app* app); #elif defined(__linux__) void Initialize(); #endif void Shutdown(); void Update(); void Exit(); void Vibrate(int duration); void ShowInterstitialAd(); void ShareFile(const std::string& file_name); void SetKeepScreenOn(bool keep_screen_on); void RunMainLoop(); int GetDeviceDpi() const { return device_dpi_; } const std::string& GetRootPath() const { return root_path_; } const std::string& GetDataPath() const { return data_path_; } const std::string& GetSharedDataPath() const { return shared_data_path_; } bool mobile_device() const { return mobile_device_; } static class InternalError : public std::exception { } internal_error; protected: base::Timer timer_; bool mobile_device_ = false; int device_dpi_ = 100; std::string root_path_; std::string data_path_; std::string shared_data_path_; bool has_focus_ = false; bool should_exit_ = false; std::unique_ptr