1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#ifndef _GLOBAL_RENDERING_H
#define _GLOBAL_RENDERING_H
#include "System/creg/creg_cond.h"
#include "System/Misc/SpringTime.h"
#include "System/type2.h"
struct SDL_version;
struct SDL_Window;
typedef void* SDL_GLContext;
/**
* @brief Globally accessible unsynced, rendering related data
*
* Contains globally accessible rendering related data
* that does not remain synced.
*/
class CGlobalRendering {
CR_DECLARE_STRUCT(CGlobalRendering)
public:
CGlobalRendering();
~CGlobalRendering();
/**
* @return whether setting the video mode was successful
*
* Sets SDL video mode options/settings
*/
bool CreateWindowAndContext(const char* title, bool hidden);
bool CreateSDLWindow(const int2& winRes, const int2& minRes, const char* title);
bool CreateGLContext(const int2& minCtx);
void DestroyWindowAndContext();
void PostInit();
void SwapBuffers(bool allowSwapBuffers, bool clearErrors);
void CheckGLExtensions() const;
void SetGLSupportFlags();
void QueryVersionInfo(char (&sdlVersionStr)[64], char (&glVidMemStr)[64]);
void QueryGLMaxVals();
void LogVersionInfo(const char* sdlVersionStr, const char* glVidMemStr) const;
void LogDisplayMode() const;
void SetFullScreen(bool cliWindowed, bool cliFullScreen);
// Notify on Fullscreen/WindowBorderless change
void ConfigNotify(const std::string& key, const std::string& value);
void SetDualScreenParams();
void UpdateViewPortGeometry();
void UpdatePixelGeometry();
void ReadWindowPosAndSize();
void SaveWindowPosAndSize();
void UpdateGLConfigs();
void UpdateGLGeometry();
int2 GetScreenCenter() const { return {viewPosX + (viewSizeX >> 1), viewPosY + (viewSizeY >> 1)}; }
int2 GetMaxWinRes() const;
int2 GetCfgWinRes(bool fullScrn) const;
bool CheckGLMultiSampling() const;
bool CheckGLContextVersion(const int2& minCtx) const;
bool ToggleGLDebugOutput(unsigned int msgSrceIdx, unsigned int msgTypeIdx, unsigned int msgSevrIdx);
void InitGLState();
public:
/**
* @brief time offset
*
* Time in number of frames since last update
* (for interpolation)
*/
float timeOffset;
/**
* @brief last frame time
*
* How long the last draw cycle took in real time (MILLIseconds)
*/
float lastFrameTime;
/// the starting time in tick for last draw frame
spring_time lastFrameStart;
/// 0.001f * gu->simFPS, used for rendering
float weightedSpeedFactor;
/// the draw frame number (never 0)
unsigned int drawFrame;
/// Frames Per Second
float FPS;
/// the screen size in pixels
int screenSizeX;
int screenSizeY;
/// the window position relative to the screen's bottom-left corner
int winPosX;
int winPosY;
/// the window size in pixels
int winSizeX;
int winSizeY;
/// the viewport position relative to the window's bottom-left corner
int viewPosX;
int viewPosY;
/// the viewport size in pixels
int viewSizeX;
int viewSizeY;
/// size of one pixel in viewport coordinates, i.e. 1/viewSizeX and 1/viewSizeY
float pixelX;
float pixelY;
/**
* @brief aspect ratio
*
* (float)viewSizeX / (float)viewSizeY
*/
float aspectRatio;
/**
* @brief view range
*
* Player's view range
*/
float zNear;
float viewRange;
int forceDisableShaders;
int forceCoreContext;
int forceSwapBuffers;
/**
* @brief MSAA
*
* Level of multisample anti-aliasing
*/
int msaaLevel;
/**
* @brief maxTextureSize
*
* maximum 2D texture size
*/
int maxTextureSize;
int gpuMemorySize;
float maxTexAnisoLvl;
bool drawSky;
bool drawWater;
bool drawGround;
bool drawMapMarks;
/**
* @brief draw fog
*
* Whether fog (of war) is drawn or not
*/
bool drawFog;
/**
* @brief draw debug
*
* Whether debugging info is drawn
*/
bool drawdebug;
bool drawdebugtraceray;
bool glDebug;
bool glDebugErrors;
/**
* Does the user want team colored nanospray?
*/
bool teamNanospray;
/**
* @brief active video
*
* Whether the graphics need to be drawn
*/
bool active;
/// whether we're capturing video - relevant for frame timing
bool isVideoCapturing;
/**
* @brief compressTextures
*
* If set, many (not all) textures will compressed on run-time.
*/
bool compressTextures;
/**
* @brief GPU driver's vendor
*
* These can be used to enable workarounds for bugs in their drivers.
* Note, you should always give the user the possiblity to override such workarounds via config-tags.
*/
bool haveATI;
bool haveMesa;
bool haveIntel;
bool haveNvidia;
/**
* @brief collection of some ATI bugfixes
*
* enables some ATI bugfixes
*/
bool atiHacks;
/**
* @brief if the GPU (drivers) support NonPowerOfTwoTextures
*
* Especially some ATI cards report that they support NPOTs, but don't (or just very limited).
*/
bool supportNonPowerOfTwoTex;
bool supportTextureQueryLOD;
/**
* @brief support24bitDepthBuffer
*
* if GL_DEPTH_COMPONENT24 is supported (many ATIs don't)
*/
bool support24bitDepthBuffer;
bool supportRestartPrimitive;
bool supportClipSpaceControl;
bool supportFragDepthLayout;
/**
* Shader capabilities
*/
bool haveARB;
bool haveGLSL;
/**
* Shader capabilities
*/
int glslMaxVaryings;
int glslMaxAttributes;
int glslMaxDrawBuffers;
int glslMaxRecommendedIndices;
int glslMaxRecommendedVertices;
int glslMaxUniformBufferBindings;
int glslMaxUniformBufferSize; ///< in bytes
/**
* @brief dual screen mode
* In dual screen mode, the screen is split up between a game screen and a minimap screen.
* In this case viewSizeX is half of the actual GL viewport width,
*/
bool dualScreenMode;
/**
* @brief dual screen minimap on left
* In dual screen mode, allow the minimap to either be shown on the left or the right display.
* Minimap on the right is the default.
*/
bool dualScreenMiniMapOnLeft;
/**
* @brief full-screen or windowed rendering
*/
bool fullScreen;
bool borderless;
public:
SDL_Window* window;
SDL_GLContext glContext;
public:
/**
* @brief max view range in elmos
*/
static const float MAX_VIEW_RANGE;
/**
* @brief near z-plane distance in elmos
*/
static const float NEAR_PLANE;
/// magic constant to reduce overblending on SMF maps
/// (scales the MapInfo::light_t::ground*Color values)
static const float SMF_INTENSITY_MULT;
static const int minWinSizeX;
static const int minWinSizeY;
};
extern CGlobalRendering* globalRendering;
#endif /* _GLOBAL_RENDERING_H */
|