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
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include <cassert>
#include "SunLighting.h"
#include "Map/MapInfo.h"
#include "System/EventHandler.h"
#include "System/StringHash.h"
/**
* @brief sunLightingInst
*
* Global instance of CSunLighting
*/
CSunLighting sunLightingInst;
CSunLighting::CSunLighting() {
colors[0] = &groundAmbientColor;
colors[1] = &groundDiffuseColor;
colors[2] = &groundSpecularColor;
colors[3] = &modelAmbientColor;
colors[4] = &modelDiffuseColor;
colors[5] = &modelSpecularColor;
specularExponent = 0.0f;
groundShadowDensity = 0.0f;
modelShadowDensity = 0.0f;
}
// need an explicit copy-ctor because of colors[]
CSunLighting::CSunLighting(const CSunLighting& sl) {
colors[0] = &groundAmbientColor;
colors[1] = &groundDiffuseColor;
colors[2] = &groundSpecularColor;
colors[3] = &modelAmbientColor;
colors[4] = &modelDiffuseColor;
colors[5] = &modelSpecularColor;
Copy(sl);
}
CSunLighting& CSunLighting::operator = (const CSunLighting& sl) {
Copy(sl);
return (*this);
}
void CSunLighting::Init() {
assert(mapInfo != nullptr);
assert(IsGlobalInstance());
const CMapInfo::light_t& light = mapInfo->light;
groundAmbientColor = light.groundAmbientColor;
groundDiffuseColor = light.groundDiffuseColor;
groundSpecularColor = light.groundSpecularColor;
modelAmbientColor = light.modelAmbientColor;
modelDiffuseColor = light.modelDiffuseColor;
modelSpecularColor = light.modelSpecularColor;
specularExponent = light.specularExponent;
groundShadowDensity = light.groundShadowDensity;
modelShadowDensity = light.modelShadowDensity;
}
void CSunLighting::Copy(const CSunLighting& sl) {
assert( colors[0] == & groundAmbientColor);
assert(sl.colors[0] == &sl.groundAmbientColor);
if (sl == (*this))
return;
for (size_t n = 0; n < sizeof(colors) / sizeof(colors[0]); n++)
*colors[n] = *sl.colors[n];
specularExponent = sl.specularExponent;
groundShadowDensity = sl.groundShadowDensity;
modelShadowDensity = sl.modelShadowDensity;
if (!IsGlobalInstance())
return;
// send event only if at least one value was changed for the global instance
eventHandler.SunChanged();
}
bool CSunLighting::SetValue(const char* key, const float4 value) {
switch (hashString(key)) {
case hashString("specularExponent"): {
specularExponent = value.x; return true;
} break;
case hashString("groundShadowDensity"): {
groundShadowDensity = value.x; return true;
} break;
case hashString("modelShadowDensity"): {
modelShadowDensity = value.x; return true;
} break;
case hashString("groundAmbientColor"): {
*(colors[0]) = value; return true;
} break;
case hashString("groundDiffuseColor"): {
*(colors[1]) = value; return true;
} break;
case hashString("groundSpecularColor"): {
*(colors[2]) = value; return true;
} break;
case hashString( "unitAmbientColor"):
case hashString("modelAmbientColor"): {
*(colors[3]) = value; return true;
} break;
case hashString( "unitDiffuseColor"):
case hashString("modelDiffuseColor"): {
*(colors[4]) = value; return true;
} break;
case hashString( "unitSpecularColor"):
case hashString("modelSpecularColor"): {
*(colors[5]) = value; return true;
} break;
default: {
} break;
}
return false;
}
bool CSunLighting::operator == (const CSunLighting& sl) const {
for (unsigned int n = 0; n < sizeof(colors) / sizeof(colors[0]); n++) {
if (colors[n] != sl.colors[n])
return false;
}
if (groundShadowDensity != sl.groundShadowDensity)
return false;
if (modelShadowDensity != sl.modelShadowDensity)
return false;
return (specularExponent == sl.specularExponent);
}
bool CSunLighting::IsGlobalInstance() const {
return (this == &sunLightingInst);
}
|