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
|
/* 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"
/**
* @brief Globally accessible unsynced, rendering related data
*
* Contains globally accessible rendering related data
* that does not remain synced.
*/
class CGlobalRendering {
CR_DECLARE(CGlobalRendering);
CGlobalRendering();
public:
void PostInit();
void SetDualScreenParams();
void UpdateWindowGeometry();
void UpdateViewPortGeometry();
void UpdatePixelGeometry();
/**
* @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
*/
float lastFrameTime;
/// the starting time in tick for last draw frame
spring_time lastFrameStart;
/// 0.001f * GAME_SPEED * gs->speedFactor, used for rendering
float weightedSpeedFactor;
/// the draw frame number (never 0)
unsigned int drawFrame;
/// Frames Per Second
float FPS;
/// the window state (0=normal,1=maximized,2=minimized)
int winState;
/// 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;
/**
* @brief FSAA
*
* Level of full-screen anti-aliasing
*/
int FSAA;
/**
* @brief Depthbuffer bits
*
* depthbuffer precision
*/
int depthBufferBits;
/**
* @brief maxTextureSize
*
* maximum 2D texture size
*/
int maxTextureSize;
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;
/**
* Does the user want team colored nanospray if the mod allows it?
*/
bool teamNanospray;
/**
* @brief active video
*
* Whether the graphics need to be drawn
*/
bool active;
/**
* @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 they don't (or just very limited).
*/
bool supportNPOTs;
/**
* @brief support24bitDepthBuffers
*
* if GL_DEPTH_COMPONENT24 is supported (many ATIs don't do so)
*/
bool support24bitDepthBuffers;
/**
* Shader capabilities
*/
bool haveARB;
bool haveGLSL;
/**
* @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;
/**
* @brief max view range in elmos
*/
static const float MAX_VIEW_RANGE;
/**
* @brief near z-plane distance in elmos
*/
static const float NEAR_PLANE;
};
extern CGlobalRendering* globalRendering;
#endif /* _GLOBAL_RENDERING_H */
|