IrrlichtDevice.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. // Copyright (C) 2002-2012 Nikolaus Gebhardt
  2. // This file is part of the "Irrlicht Engine".
  3. // For conditions of distribution and use, see copyright notice in irrlicht.h
  4. #pragma once
  5. #include "IReferenceCounted.h"
  6. #include "dimension2d.h"
  7. #include "IVideoDriver.h"
  8. #include "EDriverTypes.h"
  9. #include "EDeviceTypes.h"
  10. #include "IEventReceiver.h"
  11. #include "ICursorControl.h"
  12. #include "ITimer.h"
  13. #include "IOSOperator.h"
  14. #include "IrrCompileConfig.h"
  15. namespace irr
  16. {
  17. class ILogger;
  18. class IEventReceiver;
  19. namespace io
  20. {
  21. class IFileSystem;
  22. } // end namespace io
  23. namespace gui
  24. {
  25. class IGUIEnvironment;
  26. } // end namespace gui
  27. namespace scene
  28. {
  29. class ISceneManager;
  30. } // end namespace scene
  31. namespace video
  32. {
  33. class IContextManager;
  34. extern "C" IRRLICHT_API bool IRRCALLCONV isDriverSupported(E_DRIVER_TYPE driver);
  35. } // end namespace video
  36. //! The Irrlicht device. You can create it with createDevice() or createDeviceEx().
  37. /** This is the most important class of the Irrlicht Engine. You can
  38. access everything in the engine if you have a pointer to an instance of
  39. this class. There should be only one instance of this class at any
  40. time.
  41. */
  42. class IrrlichtDevice : public virtual IReferenceCounted
  43. {
  44. public:
  45. //! Runs the device.
  46. /** Also increments the virtual timer by calling
  47. ITimer::tick();. You can prevent this
  48. by calling ITimer::stop(); before and ITimer::start() after
  49. calling IrrlichtDevice::run(). Returns false if device wants
  50. to be deleted. Use it in this way:
  51. \code
  52. while(device->run())
  53. {
  54. // draw everything here
  55. }
  56. \endcode
  57. If you want the device to do nothing if the window is inactive
  58. (recommended), use the slightly enhanced code shown at isWindowActive().
  59. Note if you are running Irrlicht inside an external, custom
  60. created window: Calling Device->run() will cause Irrlicht to
  61. dispatch windows messages internally.
  62. If you are running Irrlicht in your own custom window, you can
  63. also simply use your own message loop using GetMessage,
  64. DispatchMessage and whatever and simply don't use this method.
  65. But note that Irrlicht will not be able to fetch user input
  66. then. See irr::SIrrlichtCreationParameters::WindowId for more
  67. information and example code.
  68. */
  69. virtual bool run() = 0;
  70. //! Cause the device to temporarily pause execution and let other processes run.
  71. /** This should bring down processor usage without major performance loss for Irrlicht.
  72. But this is system dependent, so there's a chance your thread won't get control back quickly.
  73. */
  74. virtual void yield() = 0;
  75. //! Pause execution and let other processes to run for a specified amount of time.
  76. /** It may not wait the full given time, as sleep may be interrupted and also may wait longer on some OS.
  77. \param timeMs: Time to sleep for in milliseconds. Note that the OS can round up this number.
  78. On Windows you usually get at least 15ms sleep time minium for any value > 0.
  79. So if you call this in your main loop you can't get more than 65 FPS anymore in your game.
  80. On most Linux systems it's relatively exact, but also no guarantee.
  81. \param pauseTimer: If true, pauses the device timer while sleeping
  82. */
  83. virtual void sleep(u32 timeMs, bool pauseTimer = false) = 0;
  84. //! Provides access to the video driver for drawing 3d and 2d geometry.
  85. /** \return Pointer the video driver. */
  86. virtual video::IVideoDriver *getVideoDriver() = 0;
  87. //! Provides access to the virtual file system.
  88. /** \return Pointer to the file system. */
  89. virtual io::IFileSystem *getFileSystem() = 0;
  90. //! Provides access to the 2d user interface environment.
  91. /** \return Pointer to the gui environment. */
  92. virtual gui::IGUIEnvironment *getGUIEnvironment() = 0;
  93. //! Provides access to the scene manager.
  94. /** \return Pointer to the scene manager. */
  95. virtual scene::ISceneManager *getSceneManager() = 0;
  96. //! Provides access to the cursor control.
  97. /** \return Pointer to the mouse cursor control interface. */
  98. virtual gui::ICursorControl *getCursorControl() = 0;
  99. //! Provides access to the message logger.
  100. /** \return Pointer to the logger. */
  101. virtual ILogger *getLogger() = 0;
  102. //! Get context manager
  103. virtual video::IContextManager *getContextManager() = 0;
  104. //! Provides access to the operation system operator object.
  105. /** The OS operator provides methods for
  106. getting system specific information and doing system
  107. specific operations, such as exchanging data with the clipboard
  108. or reading the operation system version.
  109. \return Pointer to the OS operator. */
  110. virtual IOSOperator *getOSOperator() = 0;
  111. //! Provides access to the engine's timer.
  112. /** The system time can be retrieved by it as
  113. well as the virtual time, which also can be manipulated.
  114. \return Pointer to the ITimer object. */
  115. virtual ITimer *getTimer() = 0;
  116. //! Sets the caption of the window.
  117. /** \param text: New text of the window caption. */
  118. virtual void setWindowCaption(const wchar_t *text) = 0;
  119. //! Sets the window icon.
  120. /** \param img The icon texture.
  121. \return False if no icon was set. */
  122. virtual bool setWindowIcon(const video::IImage *img) = 0;
  123. //! Returns if the window is active.
  124. /** If the window is inactive,
  125. nothing needs to be drawn. So if you don't want to draw anything
  126. when the window is inactive, create your drawing loop this way:
  127. \code
  128. while(device->run())
  129. {
  130. if (device->isWindowActive())
  131. {
  132. // draw everything here
  133. }
  134. else
  135. device->yield();
  136. }
  137. \endcode
  138. \return True if window is active. */
  139. virtual bool isWindowActive() const = 0;
  140. //! Checks if the Irrlicht window has the input focus
  141. /** \return True if window has focus. */
  142. virtual bool isWindowFocused() const = 0;
  143. //! Checks if the Irrlicht window is minimized
  144. /** \return True if window is minimized. */
  145. virtual bool isWindowMinimized() const = 0;
  146. //! Checks if the Irrlicht window is maximized
  147. //! Only fully works on SDL. Returns false, or the last value set via
  148. //! maximizeWindow() and restoreWindow(), on other backends.
  149. /** \return True if window is maximized. */
  150. virtual bool isWindowMaximized() const = 0;
  151. //! Checks if the Irrlicht window is running in fullscreen mode
  152. /** \return True if window is fullscreen. */
  153. virtual bool isFullscreen() const = 0;
  154. //! Checks if the window could possibly be visible.
  155. /** If this returns false, you should not do any rendering. */
  156. virtual bool isWindowVisible() const { return true; };
  157. //! Get the current color format of the window
  158. /** \return Color format of the window. */
  159. virtual video::ECOLOR_FORMAT getColorFormat() const = 0;
  160. //! Notifies the device that it should close itself.
  161. /** IrrlichtDevice::run() will always return false after closeDevice() was called. */
  162. virtual void closeDevice() = 0;
  163. //! Sets a new user event receiver which will receive events from the engine.
  164. /** Return true in IEventReceiver::OnEvent to prevent the event from continuing along
  165. the chain of event receivers. The path that an event takes through the system depends
  166. on its type. See irr::EEVENT_TYPE for details.
  167. \param receiver New receiver to be used. */
  168. virtual void setEventReceiver(IEventReceiver *receiver) = 0;
  169. //! Provides access to the current event receiver.
  170. /** \return Pointer to the current event receiver. Returns 0 if there is none. */
  171. virtual IEventReceiver *getEventReceiver() = 0;
  172. //! Sends a user created event to the engine.
  173. /** Is is usually not necessary to use this. However, if you
  174. are using an own input library for example for doing joystick
  175. input, you can use this to post key or mouse input events to
  176. the engine. Internally, this method only delegates the events
  177. further to the scene manager and the GUI environment. */
  178. virtual bool postEventFromUser(const SEvent &event) = 0;
  179. //! Sets the input receiving scene manager.
  180. /** If set to null, the main scene manager (returned by
  181. GetSceneManager()) will receive the input
  182. \param sceneManager New scene manager to be used. */
  183. virtual void setInputReceivingSceneManager(scene::ISceneManager *sceneManager) = 0;
  184. //! Sets if the window should be resizable in windowed mode.
  185. /** The default is false. This method only works in windowed
  186. mode.
  187. \param resize Flag whether the window should be resizable. */
  188. virtual void setResizable(bool resize = false) = 0;
  189. //! Resize the render window.
  190. /** This will only work in windowed mode and is not yet supported on all systems.
  191. It does set the drawing/clientDC size of the window, the window decorations are added to that.
  192. You get the current window size with IVideoDriver::getScreenSize() (might be unified in future)
  193. */
  194. virtual void setWindowSize(const irr::core::dimension2d<u32> &size) = 0;
  195. //! Minimizes the window if possible.
  196. virtual void minimizeWindow() = 0;
  197. //! Maximizes the window if possible.
  198. virtual void maximizeWindow() = 0;
  199. //! Restore the window to normal size if possible.
  200. virtual void restoreWindow() = 0;
  201. //! Get the position of the frame on-screen
  202. virtual core::position2di getWindowPosition() = 0;
  203. //! Activate any joysticks, and generate events for them.
  204. /** Irrlicht contains support for joysticks, but does not generate joystick events by default,
  205. as this would consume joystick info that 3rd party libraries might rely on. Call this method to
  206. activate joystick support in Irrlicht and to receive irr::SJoystickEvent events.
  207. \param joystickInfo On return, this will contain an array of each joystick that was found and activated.
  208. \return true if joysticks are supported on this device, false if joysticks are not
  209. supported or support is compiled out.
  210. */
  211. virtual bool activateJoysticks(core::array<SJoystickInfo> &joystickInfo) = 0;
  212. //! Activate accelerometer.
  213. virtual bool activateAccelerometer(float updateInterval = 0.016666f) = 0;
  214. //! Deactivate accelerometer.
  215. virtual bool deactivateAccelerometer() = 0;
  216. //! Is accelerometer active.
  217. virtual bool isAccelerometerActive() = 0;
  218. //! Is accelerometer available.
  219. virtual bool isAccelerometerAvailable() = 0;
  220. //! Activate gyroscope.
  221. virtual bool activateGyroscope(float updateInterval = 0.016666f) = 0;
  222. //! Deactivate gyroscope.
  223. virtual bool deactivateGyroscope() = 0;
  224. //! Is gyroscope active.
  225. virtual bool isGyroscopeActive() = 0;
  226. //! Is gyroscope available.
  227. virtual bool isGyroscopeAvailable() = 0;
  228. //! Activate device motion.
  229. virtual bool activateDeviceMotion(float updateInterval = 0.016666f) = 0;
  230. //! Deactivate device motion.
  231. virtual bool deactivateDeviceMotion() = 0;
  232. //! Is device motion active.
  233. virtual bool isDeviceMotionActive() = 0;
  234. //! Is device motion available.
  235. virtual bool isDeviceMotionAvailable() = 0;
  236. //! Set the maximal elapsed time between 2 clicks to generate doubleclicks for the mouse. It also affects tripleclick behavior.
  237. /** When set to 0 no double- and tripleclicks will be generated.
  238. \param timeMs maximal time in milliseconds for two consecutive clicks to be recognized as double click
  239. */
  240. virtual void setDoubleClickTime(u32 timeMs) = 0;
  241. //! Get the maximal elapsed time between 2 clicks to generate double- and tripleclicks for the mouse.
  242. /** When return value is 0 no double- and tripleclicks will be generated.
  243. \return maximal time in milliseconds for two consecutive clicks to be recognized as double click
  244. */
  245. virtual u32 getDoubleClickTime() const = 0;
  246. //! Remove messages pending in the system message loop
  247. /** This function is usually used after messages have been buffered for a longer time, for example
  248. when loading a large scene. Clearing the message loop prevents that mouse- or buttonclicks which users
  249. have pressed in the meantime will now trigger unexpected actions in the gui. <br>
  250. So far the following messages are cleared:<br>
  251. Win32: All keyboard and mouse messages<br>
  252. Linux: All keyboard and mouse messages<br>
  253. All other devices are not yet supported here.<br>
  254. The function is still somewhat experimental, as the kind of messages we clear is based on just a few use-cases.
  255. If you think further messages should be cleared, or some messages should not be cleared here, then please tell us. */
  256. virtual void clearSystemMessages() = 0;
  257. //! Get the type of the device.
  258. /** This allows the user to check which windowing system is currently being
  259. used. */
  260. virtual E_DEVICE_TYPE getType() const = 0;
  261. //! Get the display density in dots per inch.
  262. //! Returns 0.0f on failure.
  263. virtual float getDisplayDensity() const = 0;
  264. //! Check if a driver type is supported by the engine.
  265. /** Even if true is returned the driver may not be available
  266. for a configuration requested when creating the device. */
  267. static bool isDriverSupported(video::E_DRIVER_TYPE driver)
  268. {
  269. return video::isDriverSupported(driver);
  270. }
  271. };
  272. } // end namespace irr