summaryrefslogtreecommitdiffstats
path: root/src/graphics/core
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-10-05 23:27:26 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-10-05 23:27:26 +0200
commitfbe19c49c5965577856f7c4b40581a796275817e (patch)
tree4ce09bfba8c7a83839d6fe3583a88d0bb1a4fc76 /src/graphics/core
parentb68c903747ebe54955e8141fc1d56091839c8fee (diff)
parent0c6b6fccd9a58be3301ddaaface5b48078a4d9fb (diff)
downloadcolobot-fbe19c49c5965577856f7c4b40581a796275817e.tar.gz
colobot-fbe19c49c5965577856f7c4b40581a796275817e.tar.bz2
colobot-fbe19c49c5965577856f7c4b40581a796275817e.zip
Merge branch 'dev-graphics' into dev
Diffstat (limited to 'src/graphics/core')
-rw-r--r--src/graphics/core/color.h8
-rw-r--r--src/graphics/core/light.h4
2 files changed, 10 insertions, 2 deletions
diff --git a/src/graphics/core/color.h b/src/graphics/core/color.h
index 0bec7e9..7cbd175 100644
--- a/src/graphics/core/color.h
+++ b/src/graphics/core/color.h
@@ -107,6 +107,14 @@ inline IntColor ColorToIntColor(Color color)
static_cast<unsigned char>(color.a * 255.0f));
}
+inline Color IntensityToColor(float intensity)
+{
+ if (intensity <= 0.0f) return Color(0.0f, 0.0f, 0.0f, 0.0f);
+ if (intensity >= 1.0f) return Color(1.0f, 1.0f, 1.0f, 1.0f);
+
+ return Color(intensity, intensity, intensity, intensity);
+}
+
/**
* \struct ColorHSV
* \brief HSV color
diff --git a/src/graphics/core/light.h b/src/graphics/core/light.h
index 35f37e6..28733c1 100644
--- a/src/graphics/core/light.h
+++ b/src/graphics/core/light.h
@@ -68,7 +68,7 @@ struct Light
float attenuation1;
//! Quadratic attenuation factor
float attenuation2;
- //! Angle of spotlight cone (0-90 degrees)
+ //! Angle of spotlight cone (0-PI/2 radians)
float spotAngle;
//! Intensity of spotlight (0 = uniform; 128 = most intense)
@@ -91,7 +91,7 @@ struct Light
direction = Math::Vector(0.0f, 0.0f, 1.0f);
attenuation0 = 1.0f;
attenuation1 = attenuation2 = 0.0f;
- spotAngle = 90.0f;
+ spotAngle = Math::PI/2.0f;
spotIntensity = 0.0f;
}
};