leocad/common/light.cpp

1320 lines
35 KiB
C++
Raw Normal View History

#include "lc_global.h"
2012-03-29 03:10:55 +02:00
#include "lc_math.h"
#include "lc_colors.h"
2011-09-07 23:06:51 +02:00
#include <string.h>
#include <stdio.h>
#include <math.h>
#include "light.h"
2014-04-14 05:20:16 +02:00
#include "lc_application.h"
#include "lc_context.h"
2011-09-07 23:06:51 +02:00
2014-11-24 01:43:13 +01:00
#define LC_LIGHT_SPHERE_RADIUS 5.0f
#define LC_LIGHT_TARGET_RADIUS 2.5f
2023-08-26 21:41:16 +02:00
#define LC_LIGHT_SPOT_CONE_HEIGHT 10.0f
#define LC_LIGHT_SPOT_CONE_RADIUS 7.5f
#define LC_LIGHT_DIRECTIONAL_RADIUS 5.0f
#define LC_LIGHT_DIRECTIONAL_HEIGHT 7.5f
#define LC_LIGHT_POSITION_EDGE 7.5f
2014-11-24 01:43:13 +01:00
2023-09-02 05:46:29 +02:00
static const std::array<QLatin1String, static_cast<int>(lcLightType::Count)> gLightTypes = { QLatin1String("POINT"), QLatin1String("SPOT"), QLatin1String("DIRECTIONAL"), QLatin1String("AREA") };
static const std::array<QLatin1String, static_cast<int>(lcLightAreaShape::Count)> gLightAreaShapes = { QLatin1String("RECTANGLE"), QLatin1String("SQUARE"), QLatin1String("DISK"), QLatin1String("ELLIPSE") };
2011-09-07 23:06:51 +02:00
lcLight::lcLight(const lcVector3& Position, lcLightType LightType)
2023-08-27 04:43:08 +02:00
: lcObject(lcObjectType::Light), mLightType(LightType)
2011-09-07 23:06:51 +02:00
{
mWorldMatrix = lcMatrix44Translation(Position);
2023-08-27 04:43:08 +02:00
2023-08-07 13:22:59 +02:00
mPOVRayLight = false;
2023-08-07 11:31:33 +02:00
mEnableCutoff = false;
mAttenuation = lcVector3(1.0f, 0.0f, 0.0f);
2023-08-07 13:22:59 +02:00
mLightDiffuse = 1.0f;
2023-08-07 11:31:33 +02:00
mLightSpecular = 1.0f;
2023-08-07 13:22:59 +02:00
mSpotExponent = 10.0f;
mPOVRayExponent = 1.0f;
2023-08-13 15:15:52 +02:00
mSpotCutoff = LightType != lcLightType::Directional ? 40.0f : 0.0f;
2023-08-07 13:22:59 +02:00
mAreaGrid = lcVector2(10.0f, 10.0f);
UpdateLightType();
mPositionKeys.ChangeKey(mWorldMatrix.GetTranslation(), 1, true);
mRotationKeys.ChangeKey(lcMatrix33(mWorldMatrix), 1, true);
2023-08-27 20:17:07 +02:00
mColorKeys.ChangeKey(mColor, 1, true);
2023-09-10 03:25:34 +02:00
mSpotConeAngleKeys.ChangeKey(mSpotConeAngle, 1, true);
mSpotPenumbraAngleKeys.ChangeKey(mSpotPenumbraAngle, 1, true);
mSpotTightnessKeys.ChangeKey(mSpotTightness, 1, true);
2023-08-07 11:31:33 +02:00
mAttenuationKeys.ChangeKey(mAttenuation, 1, true);
2023-08-07 13:22:59 +02:00
mLightDiffuseKeys.ChangeKey(mLightDiffuse, 1, true);
2023-08-07 11:31:33 +02:00
mLightSpecularKeys.ChangeKey(mLightSpecular, 1, true);
mSpotCutoffKeys.ChangeKey(mSpotCutoff, 1, true);
mSpotExponentKeys.ChangeKey(mSpotExponent, 1, true);
2023-08-07 13:22:59 +02:00
mAreaGridKeys.ChangeKey(mAreaGrid, 1, true);
2011-09-07 23:06:51 +02:00
2023-08-13 15:15:52 +02:00
UpdatePosition(1);
2011-09-07 23:06:51 +02:00
}
void lcLight::UpdateLightType()
{
mSizeKeys.RemoveAll();
switch (mLightType)
{
case lcLightType::Point:
mSize = lcVector2(0.0f, 0.0f);
break;
case lcLightType::Spot:
mSize = lcVector2(0.0f, 0.0f);
break;
case lcLightType::Directional:
mSize = lcVector2(0.00918f * LC_DTOR, 0.0f);
break;
case lcLightType::Area:
mSize = lcVector2(200.0f, 200.0f);
break;
case lcLightType::Count:
break;
}
mSizeKeys.ChangeKey(mSize, 1, true);
}
QString lcLight::GetLightTypeString(lcLightType LightType)
2023-09-02 05:46:29 +02:00
{
switch (LightType)
{
case lcLightType::Point:
return QT_TRANSLATE_NOOP("Light Names", "Point Light");
case lcLightType::Spot:
2023-09-10 03:25:34 +02:00
return QT_TRANSLATE_NOOP("Light Names", "Spot Light");
2023-09-02 05:46:29 +02:00
case lcLightType::Directional:
return QT_TRANSLATE_NOOP("Light Names", "Directional Light");
case lcLightType::Area:
return QT_TRANSLATE_NOOP("Light Names", "Area Light");
case lcLightType::Count:
break;
}
return QString();
}
QString lcLight::GetAreaShapeString(lcLightAreaShape LightAreaShape)
{
switch (LightAreaShape)
{
case lcLightAreaShape::Rectangle:
return QT_TRANSLATE_NOOP("Light Shapes", "Rectangle");
case lcLightAreaShape::Square:
return QT_TRANSLATE_NOOP("Light Shapes", "Square");
case lcLightAreaShape::Disk:
return QT_TRANSLATE_NOOP("Light Shapes", "Disk");
case lcLightAreaShape::Ellipse:
return QT_TRANSLATE_NOOP("Light Shapes", "Ellipse");
case lcLightAreaShape::Count:
break;
}
return QString();
}
2014-09-05 02:24:28 +02:00
void lcLight::SaveLDraw(QTextStream& Stream) const
{
2023-08-07 11:31:33 +02:00
const QLatin1String LineEnding("\r\n");
2023-08-07 13:22:59 +02:00
if (mPOVRayLight)
Stream << QLatin1String("0 !LEOCAD LIGHT POV_RAY") << LineEnding;
2023-09-02 19:40:52 +02:00
if (!mCastShadow)
2023-08-07 13:22:59 +02:00
Stream << QLatin1String("0 !LEOCAD LIGHT SHADOWLESS") << LineEnding;
const float* Matrix = mWorldMatrix;
const float Numbers[12] = { Matrix[12], -Matrix[14], Matrix[13], Matrix[0], -Matrix[8], Matrix[4], -Matrix[2], Matrix[10], -Matrix[6], Matrix[1], -Matrix[9], Matrix[5] };
2023-08-07 11:31:33 +02:00
if (mPositionKeys.GetSize() > 1)
mPositionKeys.SaveKeysLDraw(Stream, "LIGHT POSITION_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT POSITION ") << Numbers[0] << ' ' << Numbers[1] << ' ' << Numbers[2] << LineEnding;
2023-08-07 11:31:33 +02:00
if (!IsPointLight())
2023-08-27 04:43:08 +02:00
{
if (mRotationKeys.GetSize() > 1)
mRotationKeys.SaveKeysLDraw(Stream, "LIGHT ROTATION_KEY ");
2023-08-27 04:43:08 +02:00
else
Stream << QLatin1String("0 !LEOCAD LIGHT ROTATION ") << Numbers[3] << ' ' << Numbers[4] << ' ' << Numbers[5] << ' ' << Numbers[6] << ' ' << Numbers[7] << ' ' << Numbers[8] << ' ' << Numbers[9] << ' ' << Numbers[10] << ' ' << Numbers[11] << LineEnding;
2023-08-27 04:43:08 +02:00
}
2023-08-27 20:17:07 +02:00
if (mColorKeys.GetSize() > 1)
mColorKeys.SaveKeysLDraw(Stream, "LIGHT COLOR_KEY ");
2023-08-07 11:31:33 +02:00
else
2023-08-27 20:17:07 +02:00
Stream << QLatin1String("0 !LEOCAD LIGHT COLOR ") << mColor[0] << ' ' << mColor[1] << ' ' << mColor[2] << LineEnding;
2023-08-07 11:31:33 +02:00
if (mSizeKeys.GetSize() > 1)
mSizeKeys.SaveKeysLDraw(Stream, "LIGHT SIZE_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT SIZE ") << mSize[0] << mSize[1] << LineEnding;
2023-08-07 13:22:59 +02:00
if (!mPOVRayLight)
{
if (mLightDiffuseKeys.GetSize() > 1)
mLightDiffuseKeys.SaveKeysLDraw(Stream, "LIGHT DIFFUSE_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT DIFFUSE ") << mLightDiffuse << LineEnding;
if (mLightSpecularKeys.GetSize() > 1)
mLightSpecularKeys.SaveKeysLDraw(Stream, "LIGHT SPECULAR_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT SPECULAR ") << mLightSpecular << LineEnding;
}
2023-08-07 11:31:33 +02:00
2023-08-13 15:15:52 +02:00
if (mSpotExponentKeys.GetSize() > 1)
mSpotExponentKeys.SaveKeysLDraw(Stream, "LIGHT POWER_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT POWER ") << (mPOVRayLight ? mPOVRayExponent : mSpotExponent) << LineEnding;
if (mEnableCutoff && !mPOVRayLight)
2023-08-07 11:31:33 +02:00
{
2023-08-13 15:15:52 +02:00
if (mSpotCutoffKeys.GetSize() > 1)
mSpotCutoffKeys.SaveKeysLDraw(Stream, "LIGHT CUTOFF_DISTANCE_KEY ");
2023-08-07 11:31:33 +02:00
else
2023-08-13 15:15:52 +02:00
Stream << QLatin1String("0 !LEOCAD LIGHT CUTOFF_DISTANCE ") << mSpotCutoff << LineEnding;
}
2023-08-07 11:31:33 +02:00
2023-08-13 15:15:52 +02:00
switch (mLightType)
{
2023-09-02 05:46:29 +02:00
case lcLightType::Count:
2023-08-13 15:15:52 +02:00
case lcLightType::Point:
break;
2023-08-07 11:31:33 +02:00
2023-08-13 15:15:52 +02:00
case lcLightType::Spot:
2023-09-10 03:25:34 +02:00
if (mSpotConeAngleKeys.GetSize() > 1)
mSpotConeAngleKeys.SaveKeysLDraw(Stream, "LIGHT SPOT_CONE_ANGLE_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT SPOT_CONE_ANGLE ") << mSpotConeAngle << LineEnding;
if (mSpotPenumbraAngleKeys.GetSize() > 1)
mSpotPenumbraAngleKeys.SaveKeysLDraw(Stream, "LIGHT SPOT_PENUMBRA_ANGLE_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT SPOT_PENUMBRA_ANGLE ") << mSpotPenumbraAngle << LineEnding;
if (mSpotTightnessKeys.GetSize() > 1)
mSpotTightnessKeys.SaveKeysLDraw(Stream, "SPOT_TIGHTNESS_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT SPOT_TIGHTNESS ") << mSpotTightness << LineEnding;
2023-08-13 15:15:52 +02:00
break;
case lcLightType::Directional:
if (mSpotExponentKeys.GetSize() > 1)
mSpotExponentKeys.SaveKeysLDraw(Stream, "LIGHT STRENGTH_KEY ");
else
Stream << QLatin1String("0 !LEOCAD LIGHT STRENGTH ") << mSpotExponent << LineEnding;
break;
case lcLightType::Area:
if (mPOVRayLight)
{
if (mAreaGridKeys.GetSize() > 1)
mAreaGridKeys.SaveKeysLDraw(Stream, "LIGHT AREA_GRID_KEY ");
else
2023-08-13 15:15:52 +02:00
Stream << QLatin1String("0 !LEOCAD LIGHT AREA_ROWS ") << mAreaGrid[0] << QLatin1String(" AREA_COLUMNS ") << mAreaGrid[1] << LineEnding;
}
2023-09-02 05:46:29 +02:00
Stream << QLatin1String("0 !LEOCAD LIGHT AREA_SHAPE ") << gLightAreaShapes[static_cast<int>(mAreaShape)] << LineEnding;
2023-08-13 15:15:52 +02:00
break;
2023-08-07 11:31:33 +02:00
}
2023-08-13 15:15:52 +02:00
Stream << QLatin1String("0 !LEOCAD LIGHT TYPE ") << gLightTypes[static_cast<int>(mLightType)] << QLatin1String(" NAME ") << mName << LineEnding;
}
2014-08-07 17:22:33 +02:00
void lcLight::CreateName(const lcArray<lcLight*>& Lights)
2011-09-07 23:06:51 +02:00
{
2020-12-14 01:27:21 +01:00
if (!mName.isEmpty())
2014-12-16 00:55:17 +01:00
{
bool Found = false;
2019-03-29 01:59:58 +01:00
2021-11-15 03:34:24 +01:00
for (const lcLight* Light : Lights)
2014-12-16 00:55:17 +01:00
{
2020-12-14 01:27:21 +01:00
if (Light->GetName() == mName)
2014-12-16 00:55:17 +01:00
{
Found = true;
break;
}
}
if (!Found)
return;
}
2020-12-14 01:27:21 +01:00
int MaxLightNumber = 0;
2023-08-07 11:31:33 +02:00
2023-08-13 15:15:52 +02:00
QString Prefix;
switch (mLightType)
{
case lcLightType::Point:
2023-09-02 05:46:29 +02:00
Prefix = QLatin1String("Point Light ");
2023-08-13 15:15:52 +02:00
break;
case lcLightType::Spot:
2023-09-10 03:25:34 +02:00
Prefix = QLatin1String("Spot Light ");
2023-08-13 15:15:52 +02:00
break;
case lcLightType::Directional:
2023-09-02 05:46:29 +02:00
Prefix = QLatin1String("Directional Light ");
2023-08-13 15:15:52 +02:00
break;
case lcLightType::Area:
2023-09-02 05:46:29 +02:00
Prefix = QLatin1String("Area Light ");
break;
case lcLightType::Count:
2023-08-13 15:15:52 +02:00
break;
}
2011-09-07 23:06:51 +02:00
2021-11-15 03:34:24 +01:00
for (const lcLight* Light : Lights)
2011-09-07 23:06:51 +02:00
{
2020-12-14 01:27:21 +01:00
QString LightName = Light->GetName();
if (LightName.startsWith(Prefix))
2011-09-07 23:06:51 +02:00
{
2020-12-14 01:27:21 +01:00
bool Ok = false;
2021-07-06 02:07:24 +02:00
int LightNumber = LightName.mid(Prefix.size()).toInt(&Ok);
2020-12-14 01:27:21 +01:00
if (Ok && LightNumber > MaxLightNumber)
MaxLightNumber = LightNumber;
2011-09-07 23:06:51 +02:00
}
}
2020-12-14 01:27:21 +01:00
mName = Prefix + QString::number(MaxLightNumber + 1);
2011-09-07 23:06:51 +02:00
}
2023-08-07 11:31:33 +02:00
bool lcLight::ParseLDrawLine(QTextStream& Stream)
{
while (!Stream.atEnd())
{
QString Token;
Stream >> Token;
2023-08-27 04:43:08 +02:00
if (Token == QLatin1String("POSITION"))
{
lcVector3 Position;
Stream >> Position[0] >> Position[1] >> Position[2];
Position = lcVector3LDrawToLeoCAD(Position);
mWorldMatrix.SetTranslation(Position);
mPositionKeys.ChangeKey(Position, 1, true);
2023-08-27 04:43:08 +02:00
}
2023-08-27 20:17:07 +02:00
else if (Token == QLatin1String("POSITION_KEY"))
mPositionKeys.LoadKeysLDraw(Stream); // todo: convert from ldraw
else if (Token == QLatin1String("ROTATION"))
2023-08-27 04:43:08 +02:00
{
float Numbers[9];
for (int TokenIdx = 0; TokenIdx < 9; TokenIdx++)
Stream >> Numbers[TokenIdx];
float* Matrix = mWorldMatrix;
Matrix[0] = Numbers[0];
Matrix[8] = -Numbers[1];
Matrix[4] = Numbers[2];
Matrix[2] = -Numbers[3];
Matrix[10] = Numbers[4];
Matrix[6] = -Numbers[5];
Matrix[1] = Numbers[6];
Matrix[9] = -Numbers[7];
Matrix[5] = Numbers[8];
mRotationKeys.ChangeKey(lcMatrix33(mWorldMatrix), 1, true);
2023-08-27 04:43:08 +02:00
}
else if (Token == QLatin1String("ROTATION_KEY"))
mRotationKeys.LoadKeysLDraw(Stream); // todo: convert from ldraw
2023-08-27 20:17:07 +02:00
else if (Token == QLatin1String("COLOR"))
2023-08-07 11:31:33 +02:00
{
2023-08-27 20:17:07 +02:00
Stream >> mColor[0] >> mColor[1] >> mColor[2];
mColorKeys.ChangeKey(mColor, 1, true);
2023-08-07 11:31:33 +02:00
}
2023-08-27 20:17:07 +02:00
else if (Token == QLatin1String("COLOR_KEY"))
mColorKeys.LoadKeysLDraw(Stream);
2023-09-10 03:25:34 +02:00
else if (Token == QLatin1String("SPOT_CONE_ANGLE"))
{
Stream >> mSpotConeAngle;
mSpotConeAngleKeys.ChangeKey(mSpotConeAngle, 1, true);
}
else if (Token == QLatin1String("SPOT_CONE_ANGLE_KEY"))
mSpotConeAngleKeys.LoadKeysLDraw(Stream);
else if (Token == QLatin1String("SPOT_PENUMBRA_ANGLE"))
{
Stream >> mSpotPenumbraAngle;
mSpotPenumbraAngleKeys.ChangeKey(mSpotPenumbraAngle, 1, true);
}
else if (Token == QLatin1String("SPOT_PENUMBRA_ANGLE_KEY"))
mSpotPenumbraAngleKeys.LoadKeysLDraw(Stream);
else if (Token == QLatin1String("SPOT_TIGHTNESS"))
{
mPOVRayLight = true;
Stream >> mSpotTightness;
mSpotTightnessKeys.ChangeKey(mSpotTightness, 1, true);
}
else if (Token == QLatin1String("SPOT_TIGHTNESS_KEY"))
mSpotTightnessKeys.LoadKeysLDraw(Stream);
else if (Token == QLatin1String("AREA_SHAPE"))
{
QString AreaShape;
Stream >> AreaShape;
for (size_t ShapeIndex = 0; ShapeIndex < gLightAreaShapes.size(); ShapeIndex++)
{
if (AreaShape == gLightAreaShapes[ShapeIndex])
{
mAreaShape = static_cast<lcLightAreaShape>(ShapeIndex);
break;
}
}
}
else if (Token == QLatin1String("SIZE"))
{
Stream >> mSize[0] >> mSize[1];
mSizeKeys.ChangeKey(mSize, 1, true);
}
else if (Token == QLatin1String("SIZE_KEY"))
mSizeKeys.LoadKeysLDraw(Stream);
2023-08-07 11:31:33 +02:00
else if (Token == QLatin1String("POWER") || Token == QLatin1String("STRENGTH"))
{
2023-08-07 13:22:59 +02:00
if (mPOVRayLight)
{
Stream >> mPOVRayExponent;
mSpotExponentKeys.ChangeKey(mPOVRayExponent, 1, true);
}
else
{
Stream >> mSpotExponent;
mSpotExponentKeys.ChangeKey(mSpotExponent, 1, true);
}
2023-08-07 11:31:33 +02:00
}
2023-08-07 13:22:59 +02:00
else if (Token == QLatin1String("AREA_ROWS"))
{
mPOVRayLight = true;
Stream >> mAreaGrid[0];
mAreaGridKeys.ChangeKey(mAreaGrid, 1, true);
}
else if (Token == QLatin1String("AREA_COLUMNS"))
{
mPOVRayLight = true;
Stream >> mAreaGrid[1];
mAreaGridKeys.ChangeKey(mAreaGrid, 1, true);
}
else if (Token == QLatin1String("DIFFUSE"))
{
Stream >>mLightDiffuse;
mLightDiffuseKeys.ChangeKey(mLightDiffuse, 1, true);
}
2023-08-07 11:31:33 +02:00
else if (Token == QLatin1String("SPECULAR"))
{
Stream >>mLightSpecular;
mLightSpecularKeys.ChangeKey(mLightSpecular, 1, true);
}
else if ((mSpotCutoffSet = Token == QLatin1String("CUTOFF_DISTANCE")))
{
mEnableCutoff = true;
Stream >> mSpotCutoff;
mSpotCutoffKeys.ChangeKey(mSpotCutoff, 1, true);
}
else if (Token == QLatin1String("TYPE"))
{
QString Type;
Stream >> Type;
2023-08-13 15:15:52 +02:00
for (size_t TypeIndex = 0; TypeIndex < gLightTypes.size(); TypeIndex++)
{
if (Type == gLightTypes[TypeIndex])
{
mLightType = static_cast<lcLightType>(TypeIndex);
break;
}
}
2023-08-07 11:31:33 +02:00
}
2023-08-07 13:22:59 +02:00
else if (Token == QLatin1String("POV_RAY"))
{
mPOVRayLight = true;
}
else if (Token == QLatin1String("SHADOWLESS"))
{
2023-09-02 19:40:52 +02:00
mCastShadow = false;
2023-08-07 13:22:59 +02:00
}
2023-08-07 11:31:33 +02:00
else if ((Token == QLatin1String("POWER_KEY")) || (Token == QLatin1String("STRENGTH_KEY")))
mSpotExponentKeys.LoadKeysLDraw(Stream);
2023-08-07 13:22:59 +02:00
else if (Token == QLatin1String("AREA_GRID_KEY"))
mAreaGridKeys.LoadKeysLDraw(Stream);
else if (Token == QLatin1String("DIFFUSE_KEY"))
mLightDiffuseKeys.LoadKeysLDraw(Stream);
2023-08-07 11:31:33 +02:00
else if (Token == QLatin1String("SPECULAR_KEY"))
mLightSpecularKeys.LoadKeysLDraw(Stream);
else if (Token == QLatin1String("CUTOFF_DISTANCE_KEY"))
mSpotCutoffKeys.LoadKeysLDraw(Stream);
else if (Token == QLatin1String("NAME"))
{
mName = Stream.readAll().trimmed();
mName.replace("\"", "");
// Set default settings per light type
2023-08-13 15:15:52 +02:00
switch (mLightType)
{
2023-08-13 15:15:52 +02:00
case lcLightType::Point:
case lcLightType::Spot:
break;
case lcLightType::Directional:
if (!mSpotCutoffSet)
{
2023-08-13 15:15:52 +02:00
mSpotCutoff = 0.0f;
2023-08-07 11:31:33 +02:00
mSpotCutoffKeys.ChangeKey(mSpotCutoff, 1, true);
}
2023-08-13 15:15:52 +02:00
break;
case lcLightType::Area:
2023-09-02 05:46:29 +02:00
case lcLightType::Count:
break;
2023-08-07 11:31:33 +02:00
}
2023-08-13 15:15:52 +02:00
2023-08-07 11:31:33 +02:00
return true;
}
}
return false;
}
2016-02-19 18:53:54 +01:00
void lcLight::CompareBoundingBox(lcVector3& Min, lcVector3& Max)
2014-11-10 01:06:11 +01:00
{
const lcVector3 Point = mWorldMatrix.GetTranslation();
2014-11-10 01:06:11 +01:00
// TODO: this should check the entire mesh
2014-11-10 01:06:11 +01:00
Min = lcMin(Point, Min);
Max = lcMax(Point, Max);
2014-11-10 01:06:11 +01:00
}
2023-08-07 11:31:33 +02:00
void lcLight::UpdateLight(lcStep Step, lcLightProperties Props, int Property)
{
switch(Property)
{
2023-08-07 13:22:59 +02:00
case LC_LIGHT_DIFFUSE:
mLightDiffuse = Props.mLightDiffuse;
mLightDiffuseKeys.ChangeKey(mLightDiffuse, Step, false);
2023-08-07 11:31:33 +02:00
break;
case LC_LIGHT_SPECULAR:
mLightSpecular = Props.mLightSpecular;
mLightSpecularKeys.ChangeKey(mLightSpecular, Step, false);
break;
case LC_LIGHT_EXPONENT:
2023-08-07 13:22:59 +02:00
if (Props.mPOVRayLight)
{
mPOVRayExponent = Props.mSpotExponent;
mSpotExponentKeys.ChangeKey(mPOVRayExponent, Step, false);
}
else
{
mSpotExponent = Props.mSpotExponent;
mSpotExponentKeys.ChangeKey(mSpotExponent, Step, false);
}
break;
case LC_LIGHT_AREA_GRID:
mAreaGrid = Props.mAreaGrid;
mAreaGridKeys.ChangeKey(mAreaGrid, Step, false);
2023-08-07 11:31:33 +02:00
break;
case LC_LIGHT_CUTOFF:
mSpotCutoff = Props.mSpotCutoff;
mSpotCutoffKeys.ChangeKey(mSpotCutoff, Step, false);
break;
case LC_LIGHT_USE_CUTOFF:
mEnableCutoff = Props.mEnableCutoff;
break;
2023-08-07 13:22:59 +02:00
case LC_LIGHT_POVRAY:
mPOVRayLight = Props.mPOVRayLight;
break;
2023-08-07 11:31:33 +02:00
}
UpdatePosition(Step);
}
2014-05-01 20:42:11 +02:00
void lcLight::RayTest(lcObjectRayTest& ObjectRayTest) const
2011-09-07 23:06:51 +02:00
{
if (IsPointLight())
2012-09-10 01:42:57 +02:00
{
float Distance;
2012-09-10 01:42:57 +02:00
if (lcSphereRayMinIntersectDistance(mWorldMatrix.GetTranslation(), LC_LIGHT_SPHERE_RADIUS, ObjectRayTest.Start, ObjectRayTest.End, &Distance) && (Distance < ObjectRayTest.Distance))
{
2014-08-07 17:22:33 +02:00
ObjectRayTest.ObjectSection.Object = const_cast<lcLight*>(this);
ObjectRayTest.ObjectSection.Section = LC_LIGHT_SECTION_POSITION;
ObjectRayTest.Distance = Distance;
2012-09-10 01:42:57 +02:00
}
return;
2012-09-10 01:42:57 +02:00
}
2023-08-26 21:41:16 +02:00
if (mLightType == lcLightType::Spot)
{
const lcVector3 Direction = -lcVector3(mWorldMatrix[2]);
const lcVector3 Position = mWorldMatrix.GetTranslation() - Direction * LC_LIGHT_SPOT_CONE_HEIGHT;
2023-08-26 21:41:16 +02:00
float Distance;
if (lcConeRayMinIntersectDistance(Position, Direction, LC_LIGHT_SPOT_CONE_RADIUS, LC_LIGHT_SPOT_CONE_HEIGHT, ObjectRayTest.Start, ObjectRayTest.End, &Distance) && (Distance < ObjectRayTest.Distance))
2023-08-26 21:41:16 +02:00
{
ObjectRayTest.ObjectSection.Object = const_cast<lcLight*>(this);
ObjectRayTest.ObjectSection.Section = LC_LIGHT_SECTION_POSITION;
ObjectRayTest.Distance = Distance;
}
}
else if (mLightType == lcLightType::Area)
{
const lcVector3 Direction = -lcVector3(mWorldMatrix[2]);
const lcVector3 Position = mWorldMatrix.GetTranslation();
const lcVector4 Plane(Direction, -lcDot(Direction, Position));
2023-08-26 21:41:16 +02:00
lcVector3 Intersection;
if (lcLineSegmentPlaneIntersection(&Intersection, ObjectRayTest.Start, ObjectRayTest.End, Plane))
{
const lcVector3 XAxis = lcVector3(mWorldMatrix[0]);
const lcVector3 YAxis = lcVector3(mWorldMatrix[1]);
lcVector3 IntersectionDirection = Intersection - Position;
2023-08-26 21:41:16 +02:00
float x = lcDot(IntersectionDirection, XAxis);
float y = lcDot(IntersectionDirection, YAxis);
if (fabsf(x) < mSize.x / 2.0f && fabsf(y) < mSize.y / 2.0f)
2023-08-26 21:41:16 +02:00
{
float Distance = lcLength(Intersection - ObjectRayTest.Start);
if (Distance < ObjectRayTest.Distance)
{
ObjectRayTest.ObjectSection.Object = const_cast<lcLight*>(this);
ObjectRayTest.ObjectSection.Section = LC_LIGHT_SECTION_POSITION;
ObjectRayTest.Distance = Distance;
}
}
}
}
const lcMatrix44 InverseWorldMatrix = lcMatrix44AffineInverse(mWorldMatrix);
lcVector3 Start = lcMul31(ObjectRayTest.Start, InverseWorldMatrix);
lcVector3 End = lcMul31(ObjectRayTest.End, InverseWorldMatrix);
float Distance;
lcVector3 Plane;
2023-08-26 21:41:16 +02:00
if (mLightType == lcLightType::Directional)
2012-09-10 01:42:57 +02:00
{
2023-08-26 21:41:16 +02:00
if (lcCylinderRayMinIntersectDistance(LC_LIGHT_DIRECTIONAL_RADIUS, LC_LIGHT_DIRECTIONAL_HEIGHT, Start, End, &Distance) && (Distance < ObjectRayTest.Distance))
{
ObjectRayTest.ObjectSection.Object = const_cast<lcLight*>(this);
ObjectRayTest.ObjectSection.Section = LC_LIGHT_SECTION_POSITION;
ObjectRayTest.Distance = Distance;
ObjectRayTest.PieceInfoRayTest.Plane = Plane;
}
}
if (IsSelected())
{
if (lcSphereRayMinIntersectDistance(lcMul31(lcVector3(0,0,-mTargetDistance), mWorldMatrix), LC_LIGHT_TARGET_RADIUS, ObjectRayTest.Start, ObjectRayTest.End, &Distance) && (Distance < ObjectRayTest.Distance))
{
ObjectRayTest.ObjectSection.Object = const_cast<lcLight*>(this);
ObjectRayTest.ObjectSection.Section = LC_LIGHT_SECTION_TARGET;
ObjectRayTest.Distance = Distance;
}
}
2011-09-07 23:06:51 +02:00
}
2014-05-01 20:42:11 +02:00
void lcLight::BoxTest(lcObjectBoxTest& ObjectBoxTest) const
2011-09-07 23:06:51 +02:00
{
if (IsPointLight())
2012-09-10 01:42:57 +02:00
{
for (int PlaneIdx = 0; PlaneIdx < 6; PlaneIdx++)
if (lcDot3(mWorldMatrix.GetTranslation(), ObjectBoxTest.Planes[PlaneIdx]) + ObjectBoxTest.Planes[PlaneIdx][3] > LC_LIGHT_SPHERE_RADIUS)
return;
2012-09-10 01:42:57 +02:00
2014-11-29 03:55:58 +01:00
ObjectBoxTest.Objects.Add(const_cast<lcLight*>(this));
return;
2012-09-10 01:42:57 +02:00
}
2023-08-26 21:41:16 +02:00
lcVector3 Min(-LC_LIGHT_POSITION_EDGE, -LC_LIGHT_POSITION_EDGE, -LC_LIGHT_POSITION_EDGE); // todo: fix light box test
lcVector3 Max( LC_LIGHT_POSITION_EDGE, LC_LIGHT_POSITION_EDGE, LC_LIGHT_POSITION_EDGE);
lcVector4 LocalPlanes[6];
for (int PlaneIdx = 0; PlaneIdx < 6; PlaneIdx++)
2012-09-10 01:42:57 +02:00
{
const lcVector3 Normal = lcMul30(ObjectBoxTest.Planes[PlaneIdx], mWorldMatrix);
LocalPlanes[PlaneIdx] = lcVector4(Normal, ObjectBoxTest.Planes[PlaneIdx][3] - lcDot3(mWorldMatrix[3], Normal));
2012-08-17 01:50:40 +02:00
}
if (lcBoundingBoxIntersectsVolume(Min, Max, LocalPlanes))
2012-08-17 01:50:40 +02:00
{
2014-11-29 03:55:58 +01:00
ObjectBoxTest.Objects.Add(const_cast<lcLight*>(this));
return;
2012-08-17 01:50:40 +02:00
}
2011-09-07 23:06:51 +02:00
}
void lcLight::MoveSelected(lcStep Step, bool AddKey, const lcVector3& Distance, bool FirstMove)
2011-09-07 23:06:51 +02:00
{
const quint32 Section = GetFocusSection();
if (Section == LC_LIGHT_SECTION_POSITION || Section == LC_LIGHT_SECTION_INVALID)
2012-06-07 02:08:59 +02:00
{
const lcVector3 Position = mWorldMatrix.GetTranslation() + Distance;
2023-08-27 04:43:08 +02:00
SetPosition(Position, Step, AddKey);
2023-08-27 04:43:08 +02:00
mWorldMatrix.SetTranslation(Position);
2023-08-27 04:43:08 +02:00
}
else
{
if (FirstMove)
mTargetMovePosition = lcMul31(lcVector3(0.0f, 0.0f, -mTargetDistance), mWorldMatrix);
mTargetMovePosition += Distance;
lcVector3 CurrentDirection = -lcNormalize(mTargetMovePosition - mWorldMatrix.GetTranslation());
lcMatrix33 WorldMatrix;
WorldMatrix.r[0] = lcCross(lcVector3(mWorldMatrix.r[1]), CurrentDirection);
WorldMatrix.r[1] = lcCross(CurrentDirection, WorldMatrix.r[0]);
WorldMatrix.r[2] = CurrentDirection;
WorldMatrix.Orthonormalize();
SetRotation(WorldMatrix, Step, AddKey);
mWorldMatrix = lcMatrix44(WorldMatrix, mWorldMatrix.GetTranslation());
}
2011-09-07 23:06:51 +02:00
}
void lcLight::Rotate(lcStep Step, bool AddKey, const lcMatrix33& RotationMatrix, const lcVector3& Center, const lcMatrix33& RotationFrame)
2023-09-04 19:59:16 +02:00
{
if (IsPointLight())
return;
if (GetFocusSection() != LC_LIGHT_SECTION_POSITION)
return;
lcVector3 Distance = mWorldMatrix.GetTranslation() - Center;
const lcMatrix33 LocalToWorldMatrix = lcMatrix33(mWorldMatrix);
2023-09-04 19:59:16 +02:00
const lcMatrix33 LocalToFocusMatrix = lcMul(LocalToWorldMatrix, RotationFrame);
lcMatrix33 NewLocalToWorldMatrix = lcMul(LocalToFocusMatrix, RotationMatrix);
const lcMatrix33 WorldToLocalMatrix = lcMatrix33AffineInverse(LocalToWorldMatrix);
Distance = lcMul(Distance, WorldToLocalMatrix);
Distance = lcMul(Distance, NewLocalToWorldMatrix);
2023-09-04 19:59:16 +02:00
NewLocalToWorldMatrix.Orthonormalize();
2023-09-04 19:59:16 +02:00
SetPosition(Center + Distance, Step, AddKey);
SetRotation(NewLocalToWorldMatrix, Step, AddKey);
2023-09-04 19:59:16 +02:00
}
bool lcLight::SetLightType(lcLightType LightType)
2023-09-02 05:46:29 +02:00
{
if (static_cast<int>(LightType) < 0 || LightType >= lcLightType::Count)
return false;
2023-09-02 05:46:29 +02:00
if (mLightType == LightType)
return false;
mLightType = LightType;
UpdateLightType();
return true;
2023-09-02 05:46:29 +02:00
}
2023-08-27 20:17:07 +02:00
void lcLight::SetColor(const lcVector3& Color, lcStep Step, bool AddKey)
{
mColorKeys.ChangeKey(Color, Step, AddKey);
}
2023-09-10 03:25:34 +02:00
void lcLight::SetSpotConeAngle(float Angle, lcStep Step, bool AddKey)
{
mSpotConeAngleKeys.ChangeKey(Angle, Step, AddKey);
}
void lcLight::SetSpotPenumbraAngle(float Angle, lcStep Step, bool AddKey)
{
mSpotPenumbraAngleKeys.ChangeKey(Angle, Step, AddKey);
}
void lcLight::SetSpotTightness(float Tightness, lcStep Step, bool AddKey)
{
mSpotTightnessKeys.ChangeKey(Tightness, Step, AddKey);
}
bool lcLight::SetAreaShape(lcLightAreaShape AreaShape)
{
if (static_cast<int>(AreaShape) < 0 || AreaShape >= lcLightAreaShape::Count)
return false;
if (mAreaShape != AreaShape)
{
mAreaShape = AreaShape;
return true;
}
return false;
}
void lcLight::SetSize(lcVector2 Size, lcStep Step, bool AddKey)
{
if (mLightType == lcLightType::Area && (mAreaShape == lcLightAreaShape::Square || mAreaShape == lcLightAreaShape::Disk))
Size[1] = Size[0];
mSizeKeys.ChangeKey(Size, Step, AddKey);
}
bool lcLight::SetCastShadow(bool CastShadow)
2023-09-02 19:40:52 +02:00
{
if (mCastShadow != CastShadow)
{
mCastShadow = CastShadow;
return true;
}
return false;
2023-09-02 19:40:52 +02:00
}
2014-08-31 02:53:12 +02:00
void lcLight::InsertTime(lcStep Start, lcStep Time)
{
mPositionKeys.InsertTime(Start, Time);
mRotationKeys.InsertTime(Start, Time);
2023-08-27 20:17:07 +02:00
mColorKeys.InsertTime(Start, Time);
2023-09-10 03:25:34 +02:00
mSpotConeAngleKeys.InsertTime(Start, Time);
mSpotPenumbraAngleKeys.InsertTime(Start, Time);
mSpotTightnessKeys.InsertTime(Start, Time);
mSizeKeys.InsertTime(Start, Time);
2023-09-10 03:25:34 +02:00
mAttenuationKeys.InsertTime(Start, Time);
2023-08-07 13:22:59 +02:00
mLightDiffuseKeys.InsertTime(Start, Time);
2023-08-07 11:31:33 +02:00
mLightSpecularKeys.InsertTime(Start, Time);
mSpotCutoffKeys.InsertTime(Start, Time);
mSpotExponentKeys.InsertTime(Start, Time);
2023-08-07 13:22:59 +02:00
mAreaGridKeys.InsertTime(Start, Time);
2014-08-31 02:53:12 +02:00
}
void lcLight::RemoveTime(lcStep Start, lcStep Time)
{
mPositionKeys.RemoveTime(Start, Time);
mRotationKeys.RemoveTime(Start, Time);
2023-08-27 20:17:07 +02:00
mColorKeys.RemoveTime(Start, Time);
2023-09-10 03:25:34 +02:00
mSpotConeAngleKeys.RemoveTime(Start, Time);
mSpotPenumbraAngleKeys.RemoveTime(Start, Time);
mSpotTightnessKeys.RemoveTime(Start, Time);
mSizeKeys.RemoveTime(Start, Time);
2023-09-10 03:25:34 +02:00
mAttenuationKeys.RemoveTime(Start, Time);
2023-08-07 13:22:59 +02:00
mLightDiffuseKeys.RemoveTime(Start, Time);
2023-08-07 11:31:33 +02:00
mLightSpecularKeys.RemoveTime(Start, Time);
mSpotCutoffKeys.RemoveTime(Start, Time);
mSpotExponentKeys.RemoveTime(Start, Time);
2023-08-07 13:22:59 +02:00
mAreaGridKeys.RemoveTime(Start, Time);
2014-08-31 02:53:12 +02:00
}
2014-07-06 08:04:09 +02:00
void lcLight::UpdatePosition(lcStep Step)
2011-09-07 23:06:51 +02:00
{
const lcVector3 Position = mPositionKeys.CalculateKey(Step);
if (IsPointLight())
{
mWorldMatrix = lcMatrix44Translation(Position);
}
else
{
const lcMatrix33 Rotation = mRotationKeys.CalculateKey(Step);
mWorldMatrix = lcMatrix44(Rotation, Position);
}
2023-08-27 20:17:07 +02:00
mColor = mColorKeys.CalculateKey(Step);
2023-09-10 03:25:34 +02:00
mSpotConeAngle = mSpotConeAngleKeys.CalculateKey(Step);
mSpotPenumbraAngle = mSpotPenumbraAngleKeys.CalculateKey(Step);
mSpotTightness = mSpotTightnessKeys.CalculateKey(Step);
mSize = mSizeKeys.CalculateKey(Step);
2023-09-10 03:25:34 +02:00
mAttenuation = mAttenuationKeys.CalculateKey(Step);
2023-08-07 13:22:59 +02:00
mLightDiffuse = mLightDiffuseKeys.CalculateKey(Step);
2023-08-07 11:31:33 +02:00
mLightSpecular = mLightSpecularKeys.CalculateKey(Step);
mSpotCutoff = mSpotCutoffKeys.CalculateKey(Step);
mSpotExponent = mSpotExponentKeys.CalculateKey(Step);
2023-08-07 13:22:59 +02:00
mAreaGrid = mAreaGridKeys.CalculateKey(Step);
2011-09-07 23:06:51 +02:00
}
void lcLight::DrawInterface(lcContext* Context, const lcScene& Scene) const
2011-09-07 23:06:51 +02:00
{
Q_UNUSED(Scene);
2020-03-22 21:44:20 +01:00
Context->SetMaterial(lcMaterialType::UnlitColor);
2023-08-26 21:41:16 +02:00
switch (mLightType)
{
case lcLightType::Point:
2015-05-17 01:04:35 +02:00
DrawPointLight(Context);
2023-08-26 21:41:16 +02:00
break;
case lcLightType::Spot:
DrawSpotLight(Context);
break;
case lcLightType::Directional:
DrawDirectionalLight(Context);
2023-08-26 21:41:16 +02:00
break;
case lcLightType::Area:
DrawAreaLight(Context);
break;
2023-09-02 05:46:29 +02:00
case lcLightType::Count:
break;
2023-08-26 21:41:16 +02:00
}
2015-04-19 03:10:01 +02:00
}
2023-08-26 21:41:16 +02:00
void lcLight::DrawPointLight(lcContext* Context) const
2023-08-07 11:31:33 +02:00
{
SetupLightMatrix(Context);
2023-08-07 11:31:33 +02:00
DrawSphere(Context, lcVector3(0.0f, 0.0f, 0.0f), LC_LIGHT_SPHERE_RADIUS);
2023-08-26 21:41:16 +02:00
}
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
void lcLight::DrawSpotLight(lcContext* Context) const
{
SetupLightMatrix(Context);
constexpr int ConeEdges = 8;
2023-08-26 21:41:16 +02:00
float Verts[(ConeEdges + 1) * 3];
2023-08-07 11:31:33 +02:00
float* CurVert = Verts;
2023-08-26 21:41:16 +02:00
for (int EdgeIndex = 0; EdgeIndex < ConeEdges; EdgeIndex++)
2023-08-07 11:31:33 +02:00
{
2023-08-26 21:41:16 +02:00
float c = cosf((float)EdgeIndex / ConeEdges * LC_2PI) * LC_LIGHT_SPOT_CONE_RADIUS;
float s = sinf((float)EdgeIndex / ConeEdges * LC_2PI) * LC_LIGHT_SPOT_CONE_RADIUS;
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
*CurVert++ = c;
*CurVert++ = s;
*CurVert++ = 0.0f;
2023-08-07 11:31:33 +02:00
}
2023-08-26 21:41:16 +02:00
*CurVert++ = 0.0f;
*CurVert++ = 0.0f;
*CurVert++ = LC_LIGHT_SPOT_CONE_HEIGHT;
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
Context->SetVertexBufferPointer(Verts);
Context->SetVertexFormatPosition(3);
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
const GLushort Indices[(ConeEdges + 4) * 2] =
2023-08-07 11:31:33 +02:00
{
2023-08-26 21:41:16 +02:00
0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 0,
0, 8, 2, 8, 4, 8, 6, 8,
};
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
Context->SetIndexBufferPointer(Indices);
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
Context->DrawIndexedPrimitives(GL_LINES, (ConeEdges + 4) * 2, GL_UNSIGNED_SHORT, 0);
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
if (IsSelected())
{
DrawCone(Context, mTargetDistance);
DrawTarget(Context);
}
2023-08-26 21:41:16 +02:00
}
2023-08-26 21:41:16 +02:00
void lcLight::DrawDirectionalLight(lcContext* Context) const
{
SetupLightMatrix(Context);
2023-08-26 21:41:16 +02:00
DrawCylinder(Context, LC_LIGHT_DIRECTIONAL_RADIUS, LC_LIGHT_DIRECTIONAL_HEIGHT);
2023-08-07 11:31:33 +02:00
if (IsSelected())
DrawTarget(Context);
2023-08-26 21:41:16 +02:00
}
2023-08-07 11:31:33 +02:00
2023-08-26 21:41:16 +02:00
void lcLight::DrawAreaLight(lcContext* Context) const
{
SetupLightMatrix(Context);
2023-08-07 11:31:33 +02:00
if (mAreaShape == lcLightAreaShape::Square || mAreaShape == lcLightAreaShape::Rectangle)
2023-08-26 21:41:16 +02:00
{
float Verts[4 * 3];
float* CurVert = Verts;
2023-08-07 11:31:33 +02:00
*CurVert++ = -mSize.x / 2.0f;
*CurVert++ = -mSize.y / 2.0f;
2023-08-26 21:41:16 +02:00
*CurVert++ = 0.0f;
2015-04-19 03:10:01 +02:00
*CurVert++ = mSize.x / 2.0f;
*CurVert++ = -mSize.y / 2.0f;
2023-08-26 21:41:16 +02:00
*CurVert++ = 0.0f;
2015-04-19 03:10:01 +02:00
*CurVert++ = mSize.x / 2.0f;
*CurVert++ = mSize.y / 2.0f;
2023-08-26 21:41:16 +02:00
*CurVert++ = 0.0f;
2015-04-19 03:10:01 +02:00
*CurVert++ = -mSize.x / 2.0f;
*CurVert++ = mSize.y / 2.0f;
2023-08-26 21:41:16 +02:00
*CurVert++ = 0.0f;
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
Context->SetVertexBufferPointer(Verts);
Context->SetVertexFormatPosition(3);
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
const GLushort Indices[(4 + 2) * 2] =
{
2023-08-26 21:41:16 +02:00
0, 1, 1, 2, 2, 3, 3, 0,
0, 2, 1, 3,
};
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
Context->SetIndexBufferPointer(Indices);
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
Context->DrawIndexedPrimitives(GL_LINES, (4 + 2) * 2, GL_UNSIGNED_SHORT, 0);
}
else
{
constexpr int CircleEdges = 16;
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
float Verts[CircleEdges * 3];
float* CurVert = Verts;
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
for (int EdgeIndex = 0; EdgeIndex < CircleEdges; EdgeIndex++)
{
float c = cosf((float)EdgeIndex / CircleEdges * LC_2PI) * mSize.x / 2.0f;
float s = sinf((float)EdgeIndex / CircleEdges * LC_2PI) * mSize.y / 2.0f;
2023-08-26 21:41:16 +02:00
*CurVert++ = c;
*CurVert++ = s;
*CurVert++ = 0.0f;
}
2023-08-26 21:41:16 +02:00
Context->SetVertexBufferPointer(Verts);
Context->SetVertexFormatPosition(3);
2023-08-26 21:41:16 +02:00
const GLushort Indices[(CircleEdges + 2) * 2] =
{
0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8,
8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 0,
0, 8, 4, 12
};
Context->SetIndexBufferPointer(Indices);
2023-08-26 21:41:16 +02:00
Context->DrawIndexedPrimitives(GL_LINES, (CircleEdges + 2) * 2, GL_UNSIGNED_SHORT, 0);
}
if (IsSelected())
DrawTarget(Context);
2023-08-26 21:41:16 +02:00
}
2015-04-19 03:10:01 +02:00
void lcLight::SetupLightMatrix(lcContext* Context) const
2023-08-26 21:41:16 +02:00
{
Context->SetWorldMatrix(mWorldMatrix);
2012-09-10 01:42:57 +02:00
2023-08-26 21:41:16 +02:00
const lcPreferences& Preferences = lcGetPreferences();
const float LineWidth = Preferences.mLineWidth;
2012-09-10 01:42:57 +02:00
2023-08-26 21:41:16 +02:00
if (IsSelected(LC_LIGHT_SECTION_POSITION))
{
const lcVector4 SelectedColor = lcVector4FromColor(Preferences.mObjectSelectedColor);
const lcVector4 FocusedColor = lcVector4FromColor(Preferences.mObjectFocusedColor);
2023-08-26 21:41:16 +02:00
Context->SetLineWidth(2.0f * LineWidth);
2023-08-26 21:41:16 +02:00
if (IsFocused(LC_LIGHT_SECTION_POSITION))
Context->SetColor(FocusedColor);
else
Context->SetColor(SelectedColor);
}
else
{
const lcVector4 LightColor = lcVector4FromColor(Preferences.mLightColor);
2012-09-10 01:42:57 +02:00
2023-08-26 21:41:16 +02:00
Context->SetLineWidth(LineWidth);
Context->SetColor(LightColor);
2012-09-10 01:42:57 +02:00
}
}
void lcLight::DrawSphere(lcContext* Context, const lcVector3& Center, float Radius) const
2012-09-10 01:42:57 +02:00
{
2021-11-15 03:34:24 +01:00
constexpr int Slices = 6;
constexpr int NumIndices = 3 * Slices + 6 * Slices * (Slices - 2) + 3 * Slices;
constexpr int NumVertices = (Slices - 1) * Slices + 2;
2012-09-10 01:42:57 +02:00
lcVector3 Vertices[NumVertices];
2017-12-02 21:22:04 +01:00
quint16 Indices[NumIndices];
2012-09-10 01:42:57 +02:00
lcVector3* Vertex = Vertices;
2017-12-02 21:22:04 +01:00
quint16* Index = Indices;
2012-09-10 01:42:57 +02:00
*Vertex++ = Center + lcVector3(0, 0, Radius);
2012-09-10 01:42:57 +02:00
2023-08-26 21:41:16 +02:00
for (int i = 1; i < Slices; i++)
2012-09-10 01:42:57 +02:00
{
2021-11-15 03:34:24 +01:00
const float r0 = Radius * sinf(i * (LC_PI / Slices));
const float z0 = Radius * cosf(i * (LC_PI / Slices));
2012-09-10 01:42:57 +02:00
for (int j = 0; j < Slices; j++)
{
2021-11-15 03:34:24 +01:00
const float x0 = r0 * sinf(j * (LC_2PI / Slices));
const float y0 = r0 * cosf(j * (LC_2PI / Slices));
2012-09-10 01:42:57 +02:00
*Vertex++ = Center + lcVector3(x0, y0, z0);
2012-06-07 02:08:59 +02:00
}
2012-09-10 01:42:57 +02:00
}
*Vertex++ = Center + lcVector3(0, 0, -Radius);
2011-09-07 23:06:51 +02:00
2023-08-26 21:41:16 +02:00
for (quint16 i = 0; i < Slices - 1; i++)
2012-09-10 01:42:57 +02:00
{
*Index++ = 0;
*Index++ = 1 + i;
*Index++ = 1 + i + 1;
2012-06-07 02:08:59 +02:00
}
2012-09-10 01:42:57 +02:00
*Index++ = 0;
*Index++ = 1;
*Index++ = 1 + Slices - 1;
2023-08-26 21:41:16 +02:00
for (quint16 i = 0; i < Slices - 2; i++)
2012-09-10 01:42:57 +02:00
{
2021-07-06 02:00:41 +02:00
quint16 Row1 = 1 + i * Slices;
quint16 Row2 = 1 + (i + 1) * Slices;
2012-09-10 01:42:57 +02:00
2023-08-26 21:41:16 +02:00
for (quint16 j = 0; j < Slices - 1; j++)
2012-09-10 01:42:57 +02:00
{
*Index++ = Row1 + j;
*Index++ = Row2 + j + 1;
*Index++ = Row2 + j;
*Index++ = Row1 + j;
*Index++ = Row1 + j + 1;
*Index++ = Row2 + j + 1;
}
*Index++ = Row1 + Slices - 1;
*Index++ = Row2 + 0;
*Index++ = Row2 + Slices - 1;
*Index++ = Row1 + Slices - 1;
*Index++ = Row2 + 0;
*Index++ = Row1 + 0;
}
2023-08-26 21:41:16 +02:00
for (quint16 i = 0; i < Slices - 1; i++)
2012-09-10 01:42:57 +02:00
{
*Index++ = (Slices - 1) * Slices + 1;
*Index++ = (Slices - 1) * (Slices - 1) + i;
*Index++ = (Slices - 1) * (Slices - 1) + i + 1;
}
*Index++ = (Slices - 1) * Slices + 1;
*Index++ = (Slices - 1) * (Slices - 1) + (Slices - 2) + 1;
*Index++ = (Slices - 1) * (Slices - 1);
2023-08-26 21:41:16 +02:00
Context->SetVertexBufferPointer(Vertices);
Context->SetVertexFormatPosition(3);
Context->SetIndexBufferPointer(Indices);
2015-04-19 03:10:01 +02:00
2023-08-26 21:41:16 +02:00
Context->DrawIndexedPrimitives(GL_TRIANGLES, NumIndices, GL_UNSIGNED_SHORT, 0);
}
2021-11-25 00:20:08 +01:00
2023-08-26 21:41:16 +02:00
void lcLight::DrawCylinder(lcContext* Context, float Radius, float Height) const
{
constexpr int Slices = 8;
float Verts[(Slices * 2) * 3];
float* CurVert = Verts;
for (int EdgeIndex = 0; EdgeIndex < Slices; EdgeIndex++)
2021-11-25 00:20:08 +01:00
{
2023-08-26 21:41:16 +02:00
float c = cosf((float)EdgeIndex / Slices * LC_2PI) * Radius;
float s = sinf((float)EdgeIndex / Slices * LC_2PI) * Radius;
*CurVert++ = c;
*CurVert++ = s;
*CurVert++ = Height;
*CurVert++ = c;
*CurVert++ = s;
*CurVert++ = 0.0f;
2021-11-25 00:20:08 +01:00
}
2023-08-26 21:41:16 +02:00
const GLushort Indices[48] =
{
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 0,
1, 3, 3, 5, 5, 7, 7, 9, 9, 11, 11, 13, 13, 15, 15, 1,
};
Context->SetVertexBufferPointer(Verts);
Context->SetVertexFormatPosition(3);
Context->SetIndexBufferPointer(Indices);
Context->DrawIndexedPrimitives(GL_LINES, 48, GL_UNSIGNED_SHORT, 0);
}
void lcLight::DrawTarget(lcContext* Context) const
2023-08-26 21:41:16 +02:00
{
float Verts[2 * 3];
2023-08-26 21:41:16 +02:00
float* CurVert = Verts;
*CurVert++ = 0.0f; *CurVert++ = 0.0f; *CurVert++ = 0.0f;
*CurVert++ = 0.0f; *CurVert++ = 0.0f; *CurVert++ = -mTargetDistance;
2023-08-26 21:41:16 +02:00
Context->SetVertexBufferPointer(Verts);
Context->SetVertexFormatPosition(3);
const GLushort Indices[2] =
2023-08-26 21:41:16 +02:00
{
0, 1
2023-08-26 21:41:16 +02:00
};
Context->SetIndexBufferPointer(Indices);
Context->DrawIndexedPrimitives(GL_LINES, 2, GL_UNSIGNED_SHORT, 0);
const lcPreferences& Preferences = lcGetPreferences();
const float LineWidth = Preferences.mLineWidth;
if (IsSelected(LC_LIGHT_SECTION_TARGET))
{
const lcVector4 SelectedColor = lcVector4FromColor(Preferences.mObjectSelectedColor);
const lcVector4 FocusedColor = lcVector4FromColor(Preferences.mObjectFocusedColor);
Context->SetLineWidth(2.0f * LineWidth);
if (IsFocused(LC_LIGHT_SECTION_TARGET))
Context->SetColor(FocusedColor);
else
Context->SetColor(SelectedColor);
}
else
{
const lcVector4 LightColor = lcVector4FromColor(Preferences.mLightColor);
Context->SetLineWidth(LineWidth);
Context->SetColor(LightColor);
}
DrawSphere(Context, lcVector3(0.0f, 0.0f, -mTargetDistance), LC_LIGHT_TARGET_RADIUS);
2023-08-26 21:41:16 +02:00
}
void lcLight::DrawCone(lcContext* Context, float TargetDistance) const
{
constexpr int ConeEdges = 16;
2023-09-10 03:25:34 +02:00
const float OuterRadius = tanf(LC_DTOR * mSpotConeAngle / 2.0f) * TargetDistance;
2023-08-26 21:41:16 +02:00
2023-09-10 03:25:34 +02:00
float Verts[(ConeEdges * 2 + 1) * 3];
2023-08-26 21:41:16 +02:00
float* CurVert = Verts;
for (int EdgeIndex = 0; EdgeIndex < ConeEdges; EdgeIndex++)
{
2023-09-10 03:25:34 +02:00
const float c = cosf((float)EdgeIndex / ConeEdges * LC_2PI);
const float s = sinf((float)EdgeIndex / ConeEdges * LC_2PI);
2023-08-26 21:41:16 +02:00
2023-09-10 03:25:34 +02:00
*CurVert++ = c * OuterRadius;
*CurVert++ = s * OuterRadius;
2023-08-26 21:41:16 +02:00
*CurVert++ = -TargetDistance;
}
*CurVert++ = 0.0f;
*CurVert++ = 0.0f;
*CurVert++ = 0.0f;
2023-09-10 03:25:34 +02:00
const bool DrawPenumbra = mSpotPenumbraAngle > 1.0f;
if (DrawPenumbra)
{
const float InnerRadius = tanf(LC_DTOR * (mSpotConeAngle / 2.0f - mSpotPenumbraAngle)) * TargetDistance;
for (int EdgeIndex = 0; EdgeIndex < ConeEdges; EdgeIndex++)
{
const float c = cosf((float)EdgeIndex / ConeEdges * LC_2PI);
const float s = sinf((float)EdgeIndex / ConeEdges * LC_2PI);
*CurVert++ = c * InnerRadius;
*CurVert++ = s * InnerRadius;
*CurVert++ = -TargetDistance;
}
}
2023-08-26 21:41:16 +02:00
Context->SetVertexBufferPointer(Verts);
2017-03-24 17:34:53 +01:00
Context->SetVertexFormatPosition(3);
2023-08-26 21:41:16 +02:00
2023-09-10 03:25:34 +02:00
constexpr GLushort Indices[(ConeEdges * 2 + 4) * 2] =
2023-08-26 21:41:16 +02:00
{
0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8,
8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 0,
2023-09-10 03:25:34 +02:00
16, 0, 16, 4, 16, 8, 16, 12,
17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 24, 25,
25, 26, 26, 27, 27, 28, 28, 29, 29, 30, 30, 31, 31, 32, 32, 17
2023-08-26 21:41:16 +02:00
};
2015-05-17 01:04:35 +02:00
Context->SetIndexBufferPointer(Indices);
2023-08-26 21:41:16 +02:00
2023-09-10 03:25:34 +02:00
Context->DrawIndexedPrimitives(GL_LINES, DrawPenumbra ? (ConeEdges * 2 + 4) * 2 : (ConeEdges + 4) * 2, GL_UNSIGNED_SHORT, 0);
2011-09-07 23:06:51 +02:00
}
void lcLight::RemoveKeyFrames()
{
mPositionKeys.RemoveAll();
mPositionKeys.ChangeKey(mWorldMatrix.GetTranslation(), 1, true);
mRotationKeys.RemoveAll();
mRotationKeys.ChangeKey(lcMatrix33(mWorldMatrix), 1, true);
2023-08-27 04:43:08 +02:00
2023-08-27 20:17:07 +02:00
mColorKeys.RemoveAll();
mColorKeys.ChangeKey(mColor, 1, true);
2023-09-10 03:25:34 +02:00
mSpotConeAngleKeys.RemoveAll();
mSpotConeAngleKeys.ChangeKey(mSpotConeAngle, 1, false);
mSpotPenumbraAngleKeys.RemoveAll();
mSpotPenumbraAngleKeys.ChangeKey(mSpotPenumbraAngle, 1, true);
mSpotTightnessKeys.RemoveAll();
mSpotTightnessKeys.ChangeKey(mSpotTightness, 1, true);
mSizeKeys.RemoveAll();
mSizeKeys.ChangeKey(mSize, 1, true);
mAttenuationKeys.RemoveAll();
mAttenuationKeys.ChangeKey(mAttenuation, 1, true);
2023-08-07 13:22:59 +02:00
mLightDiffuseKeys.RemoveAll();
mLightDiffuseKeys.ChangeKey(mLightDiffuse, 1, true);
2023-08-07 11:31:33 +02:00
mLightSpecularKeys.RemoveAll();
mLightSpecularKeys.ChangeKey(mLightSpecular, 1, true);
mSpotCutoffKeys.RemoveAll();
mSpotCutoffKeys.ChangeKey(mSpotCutoff, 1, true);
mSpotExponentKeys.RemoveAll();
mSpotExponentKeys.ChangeKey(mSpotExponent, 1, true);
2023-08-07 13:22:59 +02:00
mAreaGridKeys.RemoveAll();
mAreaGridKeys.ChangeKey(mAreaGrid, 1, true);
}
2014-05-01 20:42:11 +02:00
bool lcLight::Setup(int LightIndex)
2011-09-07 23:06:51 +02:00
{
2017-04-27 07:24:54 +02:00
Q_UNUSED(LightIndex);
return true;
2011-09-07 23:06:51 +02:00
}