IrrlichtDevice.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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. #ifndef __I_IRRLICHT_DEVICE_H_INCLUDED__
  5. #define __I_IRRLICHT_DEVICE_H_INCLUDED__
  6. #include "IReferenceCounted.h"
  7. #include "dimension2d.h"
  8. #include "IVideoDriver.h"
  9. #include "EDriverTypes.h"
  10. #include "EDeviceTypes.h"
  11. #include "IEventReceiver.h"
  12. #include "ICursorControl.h"
  13. #include "IVideoModeList.h"
  14. #include "ITimer.h"
  15. #include "IOSOperator.h"
  16. namespace irr
  17. {
  18. class ILogger;
  19. class IEventReceiver;
  20. class IRandomizer;
  21. namespace io {
  22. class IFileSystem;
  23. } // end namespace io
  24. namespace gui {
  25. class IGUIEnvironment;
  26. } // end namespace gui
  27. namespace scene {
  28. class ISceneManager;
  29. } // end namespace scene
  30. namespace video {
  31. class IContextManager;
  32. } // end namespace video
  33. //! The Irrlicht device. You can create it with createDevice() or createDeviceEx().
  34. /** This is the most important class of the Irrlicht Engine. You can
  35. access everything in the engine if you have a pointer to an instance of
  36. this class. There should be only one instance of this class at any
  37. time.
  38. */
  39. class IrrlichtDevice : public virtual IReferenceCounted
  40. {
  41. public:
  42. //! Runs the device.
  43. /** Also increments the virtual timer by calling
  44. ITimer::tick();. You can prevent this
  45. by calling ITimer::stop(); before and ITimer::start() after
  46. calling IrrlichtDevice::run(). Returns false if device wants
  47. to be deleted. Use it in this way:
  48. \code
  49. while(device->run())
  50. {
  51. // draw everything here
  52. }
  53. \endcode
  54. If you want the device to do nothing if the window is inactive
  55. (recommended), use the slightly enhanced code shown at isWindowActive().
  56. Note if you are running Irrlicht inside an external, custom
  57. created window: Calling Device->run() will cause Irrlicht to
  58. dispatch windows messages internally.
  59. If you are running Irrlicht in your own custom window, you can
  60. also simply use your own message loop using GetMessage,
  61. DispatchMessage and whatever and simply don't use this method.
  62. But note that Irrlicht will not be able to fetch user input
  63. then. See irr::SIrrlichtCreationParameters::WindowId for more
  64. information and example code.
  65. */
  66. virtual bool run() = 0;
  67. //! Cause the device to temporarily pause execution and let other processes run.
  68. /** This should bring down processor usage without major
  69. performance loss for Irrlicht */
  70. virtual void yield() = 0;
  71. //! Pause execution and let other processes to run for a specified amount of time.
  72. /** It may not wait the full given time, as sleep may be interrupted
  73. \param timeMs: Time to sleep for in milliseconds.
  74. \param pauseTimer: If true, pauses the device timer while sleeping
  75. */
  76. virtual void sleep(u32 timeMs, bool pauseTimer=false) = 0;
  77. //! Provides access to the video driver for drawing 3d and 2d geometry.
  78. /** \return Pointer the video driver. */
  79. virtual video::IVideoDriver* getVideoDriver() = 0;
  80. //! Provides access to the virtual file system.
  81. /** \return Pointer to the file system. */
  82. virtual io::IFileSystem* getFileSystem() = 0;
  83. //! Provides access to the 2d user interface environment.
  84. /** \return Pointer to the gui environment. */
  85. virtual gui::IGUIEnvironment* getGUIEnvironment() = 0;
  86. //! Provides access to the scene manager.
  87. /** \return Pointer to the scene manager. */
  88. virtual scene::ISceneManager* getSceneManager() = 0;
  89. //! Provides access to the cursor control.
  90. /** \return Pointer to the mouse cursor control interface. */
  91. virtual gui::ICursorControl* getCursorControl() = 0;
  92. //! Provides access to the message logger.
  93. /** \return Pointer to the logger. */
  94. virtual ILogger* getLogger() = 0;
  95. //! Gets a list with all video modes available.
  96. /** You only need a null driver (ED_NULL) to access
  97. those video modes. So you can get the available modes
  98. before starting any other video driver.
  99. \return Pointer to a list with all video modes supported
  100. by the gfx adapter. */
  101. virtual video::IVideoModeList* getVideoModeList() = 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. //! Provides access to the engine's currently set randomizer.
  117. /** \return Pointer to the IRandomizer object. */
  118. virtual IRandomizer* getRandomizer() const =0;
  119. //! Sets a new randomizer.
  120. /** \param r Pointer to the new IRandomizer object. This object is
  121. grab()'ed by the engine and will be released upon the next setRandomizer
  122. call or upon device destruction. */
  123. virtual void setRandomizer(IRandomizer* r) =0;
  124. //! Creates a new default randomizer.
  125. /** The default randomizer provides the random sequence known from previous
  126. Irrlicht versions and is the initial randomizer set on device creation.
  127. \return Pointer to the default IRandomizer object. */
  128. virtual IRandomizer* createDefaultRandomizer() const =0;
  129. //! Sets the caption of the window.
  130. /** \param text: New text of the window caption. */
  131. virtual void setWindowCaption(const wchar_t* text) = 0;
  132. //! Returns if the window is active.
  133. /** If the window is inactive,
  134. nothing needs to be drawn. So if you don't want to draw anything
  135. when the window is inactive, create your drawing loop this way:
  136. \code
  137. while(device->run())
  138. {
  139. if (device->isWindowActive())
  140. {
  141. // draw everything here
  142. }
  143. else
  144. device->yield();
  145. }
  146. \endcode
  147. \return True if window is active. */
  148. virtual bool isWindowActive() const = 0;
  149. //! Checks if the Irrlicht window has the input focus
  150. /** \return True if window has focus. */
  151. virtual bool isWindowFocused() const = 0;
  152. //! Checks if the Irrlicht window is minimized
  153. /** \return True if window is minimized. */
  154. virtual bool isWindowMinimized() const = 0;
  155. //! Checks if the Irrlicht window is running in fullscreen mode
  156. /** \return True if window is fullscreen. */
  157. virtual bool isFullscreen() const = 0;
  158. //! Get the current color format of the window
  159. /** \return Color format of the window. */
  160. virtual video::ECOLOR_FORMAT getColorFormat() const = 0;
  161. //! Notifies the device that it should close itself.
  162. /** IrrlichtDevice::run() will always return false after closeDevice() was called. */
  163. virtual void closeDevice() = 0;
  164. //! Get the version of the engine.
  165. /** The returned string
  166. will look like this: "1.2.3" or this: "1.2".
  167. \return String which contains the version. */
  168. virtual const c8* getVersion() const = 0;
  169. //! Sets a new user event receiver which will receive events from the engine.
  170. /** Return true in IEventReceiver::OnEvent to prevent the event from continuing along
  171. the chain of event receivers. The path that an event takes through the system depends
  172. on its type. See irr::EEVENT_TYPE for details.
  173. \param receiver New receiver to be used. */
  174. virtual void setEventReceiver(IEventReceiver* receiver) = 0;
  175. //! Provides access to the current event receiver.
  176. /** \return Pointer to the current event receiver. Returns 0 if there is none. */
  177. virtual IEventReceiver* getEventReceiver() = 0;
  178. //! Sends a user created event to the engine.
  179. /** Is is usually not necessary to use this. However, if you
  180. are using an own input library for example for doing joystick
  181. input, you can use this to post key or mouse input events to
  182. the engine. Internally, this method only delegates the events
  183. further to the scene manager and the GUI environment. */
  184. virtual bool postEventFromUser(const SEvent& event) = 0;
  185. //! Sets the input receiving scene manager.
  186. /** If set to null, the main scene manager (returned by
  187. GetSceneManager()) will receive the input
  188. \param sceneManager New scene manager to be used. */
  189. virtual void setInputReceivingSceneManager(scene::ISceneManager* sceneManager) = 0;
  190. //! Sets if the window should be resizable in windowed mode.
  191. /** The default is false. This method only works in windowed
  192. mode.
  193. \param resize Flag whether the window should be resizable. */
  194. virtual void setResizable(bool resize=false) = 0;
  195. //! Resize the render window.
  196. /** This will only work in windowed mode and is not yet supported on all systems.
  197. It does set the drawing/clientDC size of the window, the window decorations are added to that.
  198. You get the current window size with IVideoDriver::getScreenSize() (might be unified in future)
  199. */
  200. virtual void setWindowSize(const irr::core::dimension2d<u32>& size) = 0;
  201. //! Minimizes the window if possible.
  202. virtual void minimizeWindow() =0;
  203. //! Maximizes the window if possible.
  204. virtual void maximizeWindow() =0;
  205. //! Restore the window to normal size if possible.
  206. virtual void restoreWindow() =0;
  207. //! Get the position of the frame on-screen
  208. virtual core::position2di getWindowPosition() = 0;
  209. //! Activate any joysticks, and generate events for them.
  210. /** Irrlicht contains support for joysticks, but does not generate joystick events by default,
  211. as this would consume joystick info that 3rd party libraries might rely on. Call this method to
  212. activate joystick support in Irrlicht and to receive irr::SJoystickEvent events.
  213. \param joystickInfo On return, this will contain an array of each joystick that was found and activated.
  214. \return true if joysticks are supported on this device and _IRR_COMPILE_WITH_JOYSTICK_EVENTS_
  215. is defined, false if joysticks are not supported or support is compiled out.
  216. */
  217. virtual bool activateJoysticks(core::array<SJoystickInfo>& joystickInfo) =0;
  218. //! Set the current Gamma Value for the Display
  219. virtual bool setGammaRamp(f32 red, f32 green, f32 blue,
  220. f32 relativebrightness, f32 relativecontrast) =0;
  221. //! Get the current Gamma Value for the Display
  222. virtual bool getGammaRamp(f32 &red, f32 &green, f32 &blue,
  223. f32 &brightness, f32 &contrast) =0;
  224. //! Set the maximal elapsed time between 2 clicks to generate doubleclicks for the mouse. It also affects tripleclick behavior.
  225. /** When set to 0 no double- and tripleclicks will be generated.
  226. \param timeMs maximal time in milliseconds for two consecutive clicks to be recognized as double click
  227. */
  228. virtual void setDoubleClickTime(u32 timeMs) =0;
  229. //! Get the maximal elapsed time between 2 clicks to generate double- and tripleclicks for the mouse.
  230. /** When return value is 0 no double- and tripleclicks will be generated.
  231. \return maximal time in milliseconds for two consecutive clicks to be recognized as double click
  232. */
  233. virtual u32 getDoubleClickTime() const =0;
  234. //! Remove messages pending in the system message loop
  235. /** This function is usually used after messages have been buffered for a longer time, for example
  236. when loading a large scene. Clearing the message loop prevents that mouse- or buttonclicks which users
  237. have pressed in the meantime will now trigger unexpected actions in the gui. <br>
  238. So far the following messages are cleared:<br>
  239. Win32: All keyboard and mouse messages<br>
  240. Linux: All keyboard and mouse messages<br>
  241. All other devices are not yet supported here.<br>
  242. The function is still somewhat experimental, as the kind of messages we clear is based on just a few use-cases.
  243. If you think further messages should be cleared, or some messages should not be cleared here, then please tell us. */
  244. virtual void clearSystemMessages() = 0;
  245. //! Get the type of the device.
  246. /** This allows the user to check which windowing system is currently being
  247. used. */
  248. virtual E_DEVICE_TYPE getType() const = 0;
  249. //! Check if a driver type is supported by the engine.
  250. /** Even if true is returned the driver may not be available
  251. for a configuration requested when creating the device. */
  252. static bool isDriverSupported(video::E_DRIVER_TYPE driver)
  253. {
  254. switch (driver)
  255. {
  256. case video::EDT_NULL:
  257. return true;
  258. case video::EDT_SOFTWARE:
  259. #ifdef _IRR_COMPILE_WITH_SOFTWARE_
  260. return true;
  261. #else
  262. return false;
  263. #endif
  264. case video::EDT_BURNINGSVIDEO:
  265. #ifdef _IRR_COMPILE_WITH_BURNINGSVIDEO_
  266. return true;
  267. #else
  268. return false;
  269. #endif
  270. case video::EDT_DIRECT3D9:
  271. #ifdef _IRR_COMPILE_WITH_DIRECT3D_9_
  272. return true;
  273. #else
  274. return false;
  275. #endif
  276. case video::EDT_OPENGL:
  277. #ifdef _IRR_COMPILE_WITH_OPENGL_
  278. return true;
  279. #else
  280. return false;
  281. #endif
  282. default:
  283. return false;
  284. }
  285. }
  286. };
  287. } // end namespace irr
  288. #endif