//Anything above this #include will be ignored by the compiler #include "../qcommon/exe_headers.h" #include "tr_local.h" #include "tr_worldeffects.h" // Patches up the loaded map to handle the parameters passed from the UI // Remap sky to contents of the cvar ar_sky // Grab sunlight properties from the indirected sky void R_RMGInit(void) { char newSky[MAX_QPATH]; char newFog[MAX_QPATH]; shader_t *sky; shader_t *fog; fog_t *gfog; mgrid_t *grid; char temp[MAX_QPATH]; int i; unsigned short *pos; Cvar_VariableStringBuffer("RMG_sky", newSky, MAX_QPATH); // Get sunlight - this should set up all the sunlight data sky = R_FindShader( newSky, lightmapsNone, stylesDefault, qfalse ); // Remap sky R_RemapShader("textures/tools/_sky", newSky, NULL); // Fill in the lightgrid with sunlight if(tr.world->lightGridData) { #ifdef _XBOX byte *memory = (byte *)tr.world->lightGridData; byte *array; array = memory; memory += 3; array[0] = (byte)Com_Clamp(0, 255, tr.sunAmbient[0] * 255.0f); array[1] = (byte)Com_Clamp(0, 255, tr.sunAmbient[1] * 255.0f); array[2] = (byte)Com_Clamp(0, 255, tr.sunAmbient[2] * 255.0f); array[3] = (byte)Com_Clamp(0, 255, tr.sunLight[0]); array[4] = (byte)Com_Clamp(0, 255, tr.sunLight[1]); array[5] = (byte)Com_Clamp(0, 255, tr.sunLight[2]); NormalToLatLong(tr.sunDirection, grid->latLong); #else // _XBOX grid = tr.world->lightGridData; grid->ambientLight[0][0] = (byte)Com_Clampi(0, 255, tr.sunAmbient[0] * 255.0f); grid->ambientLight[0][1] = (byte)Com_Clampi(0, 255, tr.sunAmbient[1] * 255.0f); grid->ambientLight[0][2] = (byte)Com_Clampi(0, 255, tr.sunAmbient[2] * 255.0f); R_ColorShiftLightingBytes(grid->ambientLight[0], grid->ambientLight[0]); grid->directLight[0][0] = (byte)Com_Clampi(0, 255, tr.sunLight[0]); grid->directLight[0][1] = (byte)Com_Clampi(0, 255, tr.sunLight[1]); grid->directLight[0][2] = (byte)Com_Clampi(0, 255, tr.sunLight[2]); R_ColorShiftLightingBytes(grid->directLight[0], grid->directLight[0]); NormalToLatLong(tr.sunDirection, grid->latLong); #endif // _XBOX pos = tr.world->lightGridArray; for(i=0;i