2011-08-28 15:17:58 +02:00
|
|
|
/*
|
2014-04-01 07:36:42 +02:00
|
|
|
* Copyright (c) 2010-2014 OTClient <https://github.com/edubart/otclient>
|
2011-08-28 15:17:58 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2010-11-18 23:13:35 +01:00
|
|
|
#ifndef GRAPHICS_H
|
|
|
|
#define GRAPHICS_H
|
|
|
|
|
2011-08-15 16:06:15 +02:00
|
|
|
#include "declarations.h"
|
2011-12-07 01:31:55 +01:00
|
|
|
#include "painter.h"
|
2010-11-23 22:56:28 +01:00
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
// @bindsingleton g_graphics
|
2010-11-18 23:13:35 +01:00
|
|
|
class Graphics
|
|
|
|
{
|
|
|
|
public:
|
2012-04-19 01:03:43 +02:00
|
|
|
Graphics();
|
|
|
|
|
|
|
|
enum PainterEngine {
|
2012-06-02 23:41:20 +02:00
|
|
|
Painter_Any = 0,
|
2012-04-19 01:03:43 +02:00
|
|
|
Painter_OpenGL1,
|
2013-02-20 23:12:52 +01:00
|
|
|
Painter_OpenGL2,
|
|
|
|
Painter_DirectX9
|
2012-04-19 01:03:43 +02:00
|
|
|
};
|
|
|
|
|
2012-06-22 05:14:13 +02:00
|
|
|
// @dontbind
|
2010-11-18 23:13:35 +01:00
|
|
|
void init();
|
2012-06-22 05:14:13 +02:00
|
|
|
// @dontbind
|
2010-11-18 23:13:35 +01:00
|
|
|
void terminate();
|
2012-06-22 05:14:13 +02:00
|
|
|
|
2012-03-22 17:07:23 +01:00
|
|
|
bool parseOption(const std::string& option);
|
2010-11-18 23:13:35 +01:00
|
|
|
|
2012-06-02 23:41:20 +02:00
|
|
|
bool isPainterEngineAvailable(PainterEngine painterEngine);
|
2012-04-19 01:03:43 +02:00
|
|
|
bool selectPainterEngine(PainterEngine painterEngine);
|
2012-06-02 23:41:20 +02:00
|
|
|
PainterEngine getPainterEngine() { return m_selectedPainterEngine; }
|
|
|
|
|
2011-04-08 07:10:00 +02:00
|
|
|
void resize(const Size& size);
|
2011-08-14 19:45:25 +02:00
|
|
|
|
2012-04-19 01:03:43 +02:00
|
|
|
int getMaxTextureSize() { return m_maxTextureSize; }
|
2011-12-25 00:14:12 +01:00
|
|
|
const Size& getViewportSize() { return m_viewportSize; }
|
2011-04-16 18:08:55 +02:00
|
|
|
|
2012-06-07 03:01:49 +02:00
|
|
|
std::string getVendor() { return (const char*)glGetString(GL_VENDOR); }
|
|
|
|
std::string getRenderer() { return (const char*)glGetString(GL_RENDERER); }
|
|
|
|
std::string getVersion() { return (const char*)glGetString(GL_VERSION); }
|
|
|
|
std::string getExtensions() { return (const char*)glGetString(GL_EXTENSIONS); }
|
|
|
|
|
2013-01-08 22:31:41 +01:00
|
|
|
void setShouldUseShaders(bool enable) { m_shouldUseShaders = enable; }
|
|
|
|
|
2012-06-18 10:13:52 +02:00
|
|
|
bool ok() { return m_ok; }
|
2012-04-19 01:03:43 +02:00
|
|
|
bool canUseDrawArrays();
|
|
|
|
bool canUseShaders();
|
|
|
|
bool canUseFBO();
|
|
|
|
bool canUseBilinearFiltering();
|
|
|
|
bool canUseHardwareBuffers();
|
|
|
|
bool canUseNonPowerOfTwoTextures();
|
|
|
|
bool canUseMipmaps();
|
|
|
|
bool canUseHardwareMipmaps();
|
2012-04-20 12:16:03 +02:00
|
|
|
bool canUseClampToEdge();
|
2012-06-02 01:21:45 +02:00
|
|
|
bool canUseBlendFuncSeparate();
|
2013-02-06 22:49:40 +01:00
|
|
|
bool canUseBlendEquation();
|
2012-06-08 18:58:08 +02:00
|
|
|
bool canCacheBackbuffer();
|
2013-01-08 22:31:41 +01:00
|
|
|
bool shouldUseShaders() { return m_shouldUseShaders; }
|
2012-12-08 19:14:10 +01:00
|
|
|
bool hasScissorBug();
|
2012-04-19 01:03:43 +02:00
|
|
|
|
2011-08-14 19:45:25 +02:00
|
|
|
private:
|
2011-12-07 01:31:55 +01:00
|
|
|
Size m_viewportSize;
|
2012-03-21 13:41:43 +01:00
|
|
|
|
2012-04-19 01:03:43 +02:00
|
|
|
int m_maxTextureSize;
|
2012-06-11 01:48:53 +02:00
|
|
|
int m_alphaBits;
|
2012-07-31 02:47:21 +02:00
|
|
|
stdext::boolean<false> m_ok;
|
|
|
|
stdext::boolean<true> m_useDrawArrays;
|
|
|
|
stdext::boolean<true> m_useFBO;
|
|
|
|
stdext::boolean<false> m_useHardwareBuffers;
|
|
|
|
stdext::boolean<true> m_useBilinearFiltering;
|
|
|
|
stdext::boolean<true> m_useNonPowerOfTwoTextures;
|
|
|
|
stdext::boolean<true> m_useMipmaps;
|
|
|
|
stdext::boolean<true> m_useHardwareMipmaps;
|
|
|
|
stdext::boolean<true> m_useClampToEdge;
|
2013-01-08 22:31:41 +01:00
|
|
|
stdext::boolean<true> m_shouldUseShaders;
|
2012-07-31 02:47:21 +02:00
|
|
|
stdext::boolean<true> m_cacheBackbuffer;
|
2012-04-19 01:03:43 +02:00
|
|
|
PainterEngine m_prefferedPainterEngine;
|
2012-04-20 12:16:03 +02:00
|
|
|
PainterEngine m_selectedPainterEngine;
|
2010-11-18 23:13:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Graphics g_graphics;
|
|
|
|
|
2013-02-20 23:12:52 +01:00
|
|
|
#endif
|