| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsD3D9Prerequisites.h"
- #include "BsRenderWindow.h"
- #include "BsD3D9Device.h"
- namespace BansheeEngine
- {
- /** @addtogroup D3D9
- * @{
- */
- class D3D9RenderWindow;
- /** Contains various properties that describe a render window. */
- class BS_D3D9_EXPORT D3D9RenderWindowProperties : public RenderWindowProperties
- {
- public:
- D3D9RenderWindowProperties(const RENDER_WINDOW_DESC& desc);
- virtual ~D3D9RenderWindowProperties() { }
- private:
- friend class D3D9RenderWindowCore;
- friend class D3D9RenderWindow;
- };
- /**
- * Render window implementation for Windows.
- *
- * @note Core thread only.
- */
- class BS_D3D9_EXPORT D3D9RenderWindowCore : public RenderWindowCore
- {
- public:
- D3D9RenderWindowCore(const RENDER_WINDOW_DESC& desc, UINT32 windowId, HINSTANCE instance);
- ~D3D9RenderWindowCore();
-
- /** @copydoc RenderWindowCore::setFullscreen(UINT32, UINT32, float, UINT32) */
- void setFullscreen(UINT32 width, UINT32 height, float refreshRate = 60.0f, UINT32 monitorIdx = 0) override;
- /** @copydoc RenderWindowCore::setFullscreen(const VideoMode&) */
- void setFullscreen(const VideoMode& videoMode) override;
- /** @copydoc RenderWindowCore::setWindowed */
- void setWindowed(UINT32 width, UINT32 height) override;
- /** @copydoc RenderWindowCore::setActive */
- virtual void setActive(bool state) override;
- /** @copydoc RenderWindowCore::setHidden */
- void setHidden(bool hidden) override;
- /** @copydoc RenderWindowCore::minimize */
- void minimize() override;
- /** @copydoc RenderWindowCore::maximize */
- void maximize() override;
- /** @copydoc RenderWindowCore::restore */
- void restore() override;
- /** @copydoc RenderWindowCore::move */
- void move(INT32 left, INT32 top) override;
- /** @copydoc RenderWindowCore::resize */
- void resize(UINT32 width, UINT32 height) override;
- /** @copydoc RenderWindowCore::getCustomAttribute */
- void getCustomAttribute(const String& name, void* pData) const override;
- /**
- * Copies the contents of a frame buffer into the pre-allocated buffer.
- *
- * @param[out] dst Previously allocated buffer to read the contents into. Must be of valid size.
- * @param[in] buffer Frame buffer to read the contents from.
- */
- void copyToMemory(PixelData& dst, FrameBuffer buffer);
- /** @copydoc RenderWindowCore::swapBuffers */
- void swapBuffers() override;
- /** @copydoc RenderWindowCore::_windowMovedOrResized */
- void _windowMovedOrResized() override;
- /** Gets internal Win32 window handle. */
- HWND _getWindowHandle() const;
- /** Gets the DirectX 9 device object that manages this window. */
- IDirect3DDevice9* _getD3D9Device() const;
- /** Gets the device that manages this window. */
- D3D9Device* _getDevice() const;
- /** Sets the device that manages this window. */
- void _setDevice(D3D9Device* device);
- /** Build the presentation parameters used with this window. */
- void _buildPresentParameters(D3DPRESENT_PARAMETERS* presentParams) const;
- /** Accessor for render surface. */
- IDirect3DSurface9* _getRenderSurface() const;
-
- /** Returns true if this window use depth buffer. */
- bool _isDepthBuffered() const;
- /** Validate the device for this window. */
- bool _validateDevice();
-
- protected:
- friend class D3D9RenderWindow;
- /** @copydoc CoreObjectCore::initialize */
- virtual void initialize() override;
- /** @copydoc RenderWindowCore::getProperties */
- const RenderTargetProperties& getPropertiesInternal() const override { return mProperties; }
- /** @copydoc RenderWindowCore::getSyncedProperties */
- RenderWindowProperties& getSyncedProperties() override { return mSyncedProperties; }
- /** @copydoc RenderWindowCore::syncProperties */
- void syncProperties() override;
- protected:
- Win32Window* mWindow;
- HINSTANCE mInstance;
- D3D9Device* mDevice;
- bool mDeviceValid;
- D3DMULTISAMPLE_TYPE mMultisampleType;
- DWORD mMultisampleQuality;
- UINT mDisplayFrequency;
- unsigned int mVSyncInterval;
- bool mIsDepthBuffered;
- bool mIsChild;
- bool mShowOnSwap;
-
- D3D9RenderWindowProperties mProperties;
- D3D9RenderWindowProperties mSyncedProperties;
- };
- /**
- * Render window implementation for Windows.
- *
- * @note Sim thread only.
- */
- class BS_D3D9_EXPORT D3D9RenderWindow : public RenderWindow
- {
- public:
- ~D3D9RenderWindow() { }
- /** @copydoc RenderWindow::screenToWindowPos */
- void getCustomAttribute(const String& name, void* pData) const override;
- /** @copydoc RenderWindow::screenToWindowPos */
- Vector2I screenToWindowPos(const Vector2I& screenPos) const override;
- /** @copydoc RenderWindow::windowToScreenPos */
- Vector2I windowToScreenPos(const Vector2I& windowPos) const override;
- /** @copydoc RenderWindow::getCore */
- SPtr<D3D9RenderWindowCore> getCore() const;
- protected:
- friend class D3D9RenderWindowManager;
- friend class D3D9RenderWindowCore;
- D3D9RenderWindow(const RENDER_WINDOW_DESC& desc, UINT32 windowId, HINSTANCE instance);
- /** @copydoc RenderWindowCore::getProperties */
- const RenderTargetProperties& getPropertiesInternal() const override { return mProperties; }
- /** @copydoc RenderWindow::syncProperties */
- void syncProperties() override;
- /** Retrieves internal window handle. */
- HWND getHWnd() const;
- private:
- HINSTANCE mInstance;
- D3D9RenderWindowProperties mProperties;
- };
- /** @} */
- }
|