2011-09-07 23:06:51 +02:00
|
|
|
#ifndef _OBJECT_H_
|
|
|
|
#define _OBJECT_H_
|
|
|
|
|
2012-08-17 01:50:40 +02:00
|
|
|
#include "lc_math.h"
|
2014-05-01 16:55:12 +02:00
|
|
|
#include "lc_array.h"
|
2012-08-17 01:50:40 +02:00
|
|
|
|
2014-07-06 08:04:09 +02:00
|
|
|
typedef lcuint32 lcStep;
|
|
|
|
#define LC_STEP_MAX 0xffffffff
|
|
|
|
|
2014-05-01 16:55:12 +02:00
|
|
|
enum lcObjectType
|
2011-09-07 23:06:51 +02:00
|
|
|
{
|
2012-08-17 01:50:40 +02:00
|
|
|
LC_OBJECT_PIECE,
|
|
|
|
LC_OBJECT_CAMERA,
|
2014-05-01 16:55:12 +02:00
|
|
|
LC_OBJECT_LIGHT
|
2012-08-17 01:50:40 +02:00
|
|
|
};
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-08-31 02:53:12 +02:00
|
|
|
template<typename T>
|
|
|
|
struct lcObjectKey
|
2011-09-07 23:06:51 +02:00
|
|
|
{
|
2014-07-06 08:04:09 +02:00
|
|
|
lcStep Step;
|
2014-08-31 02:53:12 +02:00
|
|
|
T Value;
|
2012-08-17 01:50:40 +02:00
|
|
|
};
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-05-01 16:55:12 +02:00
|
|
|
struct lcObjectSection
|
|
|
|
{
|
2014-05-01 20:42:11 +02:00
|
|
|
lcObject* Object;
|
2014-05-18 01:03:05 +02:00
|
|
|
lcuint32 Section;
|
2014-05-01 16:55:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct lcObjectRayTest
|
2011-09-07 23:06:51 +02:00
|
|
|
{
|
2014-05-03 18:59:57 +02:00
|
|
|
lcCamera* ViewCamera;
|
|
|
|
bool PiecesOnly;
|
2012-08-17 01:50:40 +02:00
|
|
|
lcVector3 Start;
|
|
|
|
lcVector3 End;
|
2014-05-01 16:55:12 +02:00
|
|
|
float Distance;
|
|
|
|
lcObjectSection ObjectSection;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct lcObjectBoxTest
|
|
|
|
{
|
2014-05-03 18:59:57 +02:00
|
|
|
lcCamera* ViewCamera;
|
2014-05-01 16:55:12 +02:00
|
|
|
lcVector4 Planes[6];
|
2014-11-29 03:55:58 +01:00
|
|
|
lcArray<lcObject*> Objects;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum lcObjectPropertyType
|
|
|
|
{
|
|
|
|
LC_PIECE_PROPERTY_POSITION,
|
|
|
|
LC_PIECE_PROPERTY_ROTATION,
|
|
|
|
LC_PIECE_PROPERTY_SHOW,
|
|
|
|
LC_PIECE_PROPERTY_HIDE,
|
|
|
|
LC_PIECE_PROPERTY_COLOR,
|
|
|
|
LC_PIECE_PROPERTY_ID,
|
|
|
|
LC_CAMERA_PROPERTY_POSITION,
|
|
|
|
LC_CAMERA_PROPERTY_TARGET,
|
|
|
|
LC_CAMERA_PROPERTY_UPVECTOR,
|
|
|
|
LC_CAMERA_PROPERTY_ORTHO,
|
|
|
|
LC_CAMERA_PROPERTY_FOV,
|
|
|
|
LC_CAMERA_PROPERTY_NEAR,
|
|
|
|
LC_CAMERA_PROPERTY_FAR,
|
|
|
|
LC_CAMERA_PROPERTY_NAME
|
2012-08-17 01:50:40 +02:00
|
|
|
};
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-05-01 20:42:11 +02:00
|
|
|
class lcObject
|
2011-09-07 23:06:51 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-05-01 20:42:11 +02:00
|
|
|
lcObject(lcObjectType ObjectType);
|
|
|
|
virtual ~lcObject();
|
2011-09-07 23:06:51 +02:00
|
|
|
|
|
|
|
public:
|
2014-01-31 00:26:55 +01:00
|
|
|
bool IsPiece() const
|
|
|
|
{
|
2014-05-01 16:55:12 +02:00
|
|
|
return mObjectType == LC_OBJECT_PIECE;
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-01-31 00:26:55 +01:00
|
|
|
bool IsCamera() const
|
|
|
|
{
|
2014-05-01 16:55:12 +02:00
|
|
|
return mObjectType == LC_OBJECT_CAMERA;
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-01-31 00:26:55 +01:00
|
|
|
bool IsLight() const
|
|
|
|
{
|
2014-05-01 16:55:12 +02:00
|
|
|
return mObjectType == LC_OBJECT_LIGHT;
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-05-01 16:55:12 +02:00
|
|
|
lcObjectType GetType() const
|
2014-01-31 00:26:55 +01:00
|
|
|
{
|
2014-05-01 16:55:12 +02:00
|
|
|
return mObjectType;
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-05-01 16:55:12 +02:00
|
|
|
virtual bool IsSelected() const = 0;
|
2014-05-18 01:03:05 +02:00
|
|
|
virtual bool IsSelected(lcuint32 Section) const = 0;
|
2014-05-01 16:55:12 +02:00
|
|
|
virtual void SetSelected(bool Selected) = 0;
|
2014-05-18 01:03:05 +02:00
|
|
|
virtual void SetSelected(lcuint32 Section, bool Selected) = 0;
|
2014-05-01 16:55:12 +02:00
|
|
|
virtual bool IsFocused() const = 0;
|
2014-05-18 01:03:05 +02:00
|
|
|
virtual bool IsFocused(lcuint32 Section) const = 0;
|
|
|
|
virtual void SetFocused(lcuint32 Section, bool Focused) = 0;
|
|
|
|
virtual lcuint32 GetFocusSection() const = 0;
|
2014-05-01 16:55:12 +02:00
|
|
|
|
2014-05-18 01:03:05 +02:00
|
|
|
virtual lcVector3 GetSectionPosition(lcuint32 Section) const = 0;
|
2014-07-06 08:04:09 +02:00
|
|
|
virtual void Move(lcStep Step, bool AddKey, const lcVector3& Distance) = 0;
|
2014-05-01 16:55:12 +02:00
|
|
|
virtual void RayTest(lcObjectRayTest& ObjectRayTest) const = 0;
|
|
|
|
virtual void BoxTest(lcObjectBoxTest& ObjectBoxTest) const = 0;
|
2014-11-24 00:48:56 +01:00
|
|
|
virtual void DrawInterface(lcContext* Context, const lcMatrix44& ViewMatrix) const = 0;
|
2014-01-31 00:26:55 +01:00
|
|
|
virtual const char* GetName() const = 0;
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-01-31 00:26:55 +01:00
|
|
|
protected:
|
2014-09-05 02:24:28 +02:00
|
|
|
template<typename T>
|
|
|
|
void SaveKeysLDraw(QTextStream& Stream, const lcArray<lcObjectKey<T>>& Keys, const char* KeyName) const
|
|
|
|
{
|
|
|
|
const int Count = sizeof(T) / sizeof(float);
|
|
|
|
for (int KeyIdx = 0; KeyIdx < Keys.GetSize(); KeyIdx++)
|
|
|
|
{
|
|
|
|
lcObjectKey<T>& Key = Keys[KeyIdx];
|
|
|
|
Stream << QLatin1String("0 !LEOCAD ") << KeyName << Key.Step << ' ';
|
|
|
|
for (int ValueIdx = 0; ValueIdx < Count; ValueIdx++)
|
|
|
|
Stream << Key.Value[ValueIdx] << ' ';
|
2014-09-08 21:42:20 +02:00
|
|
|
Stream << QLatin1String("\r\n");
|
2014-09-05 02:24:28 +02:00
|
|
|
}
|
|
|
|
}
|
2014-09-02 05:44:51 +02:00
|
|
|
|
|
|
|
template<typename T>
|
2014-09-05 02:24:28 +02:00
|
|
|
void LoadKeysLDraw(QTextStream& Stream, lcArray<lcObjectKey<T>>& Keys)
|
2014-09-02 05:44:51 +02:00
|
|
|
{
|
2014-09-03 16:34:53 +02:00
|
|
|
QString Token;
|
|
|
|
Stream >> Token;
|
2014-09-02 05:44:51 +02:00
|
|
|
|
|
|
|
int Step = Token.toInt();
|
|
|
|
T Value;
|
|
|
|
|
|
|
|
const int Count = sizeof(T) / sizeof(float);
|
|
|
|
for (int ValueIdx = 0; ValueIdx < Count; ValueIdx++)
|
|
|
|
Stream >> Value[ValueIdx];
|
|
|
|
|
|
|
|
lcObjectKey<T>& Key = Keys.Add();
|
|
|
|
Key.Step = Step;
|
|
|
|
Key.Value = Value;
|
|
|
|
}
|
|
|
|
|
2014-08-31 02:53:12 +02:00
|
|
|
template<typename T>
|
|
|
|
const T& CalculateKey(const lcArray<lcObjectKey<T>>& Keys, lcStep Step)
|
2014-01-31 00:26:55 +01:00
|
|
|
{
|
2014-08-31 02:53:12 +02:00
|
|
|
lcObjectKey<T>* PreviousKey = &Keys[0];
|
|
|
|
|
|
|
|
for (int KeyIdx = 0; KeyIdx < Keys.GetSize(); KeyIdx++)
|
|
|
|
{
|
|
|
|
if (Keys[KeyIdx].Step > Step)
|
|
|
|
break;
|
|
|
|
|
|
|
|
PreviousKey = &Keys[KeyIdx];
|
|
|
|
}
|
|
|
|
|
|
|
|
return PreviousKey->Value;
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
|
|
|
|
2014-08-31 02:53:12 +02:00
|
|
|
template<typename T>
|
|
|
|
void ChangeKey(lcArray<lcObjectKey<T>>& Keys, const T& Value, lcStep Step, bool AddKey)
|
2014-01-31 00:26:55 +01:00
|
|
|
{
|
2014-08-31 02:53:12 +02:00
|
|
|
lcObjectKey<T>* Key;
|
|
|
|
|
|
|
|
for (int KeyIdx = 0; KeyIdx < Keys.GetSize(); KeyIdx++)
|
|
|
|
{
|
|
|
|
Key = &Keys[KeyIdx];
|
|
|
|
|
|
|
|
if (Key->Step == Step)
|
|
|
|
{
|
|
|
|
Key->Value = Value;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Key->Step > Step)
|
|
|
|
{
|
|
|
|
if (AddKey)
|
|
|
|
{
|
|
|
|
Key = &Keys.InsertAt(KeyIdx);
|
|
|
|
Key->Step = Step;
|
|
|
|
}
|
|
|
|
else if (KeyIdx)
|
|
|
|
Key = &Keys[KeyIdx - 1];
|
|
|
|
|
|
|
|
Key->Value = Value;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (AddKey || Keys.GetSize() == 0)
|
|
|
|
{
|
|
|
|
Key = &Keys.Add();
|
|
|
|
|
|
|
|
Key->Step = Step;
|
|
|
|
Key->Value = Value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Key = &Keys[Keys.GetSize() - 1];
|
|
|
|
Key->Value = Value;
|
|
|
|
}
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
|
|
|
|
2014-08-31 02:53:12 +02:00
|
|
|
template<typename T>
|
|
|
|
void InsertTime(lcArray<lcObjectKey<T>>& Keys, lcStep Start, lcStep Time)
|
2014-01-31 00:26:55 +01:00
|
|
|
{
|
2014-08-31 02:53:12 +02:00
|
|
|
bool EndKey = false;
|
|
|
|
|
|
|
|
for (int KeyIdx = 0; KeyIdx < Keys.GetSize(); KeyIdx++)
|
|
|
|
{
|
|
|
|
lcObjectKey<T>& Key = Keys[KeyIdx];
|
|
|
|
|
|
|
|
if ((Key.Step < Start) || (Key.Step == 1))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (EndKey)
|
|
|
|
{
|
|
|
|
Keys.RemoveIndex(KeyIdx);
|
|
|
|
KeyIdx--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Key.Step >= LC_STEP_MAX - Time)
|
|
|
|
{
|
|
|
|
Key.Step = LC_STEP_MAX;
|
|
|
|
EndKey = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Key.Step += Time;
|
|
|
|
}
|
2014-01-31 00:26:55 +01:00
|
|
|
}
|
|
|
|
|
2014-08-31 02:53:12 +02:00
|
|
|
template<typename T>
|
|
|
|
void RemoveTime(lcArray<lcObjectKey<T>>& Keys, lcStep Start, lcStep Time)
|
|
|
|
{
|
|
|
|
for (int KeyIdx = 0; KeyIdx < Keys.GetSize(); KeyIdx++)
|
|
|
|
{
|
|
|
|
lcObjectKey<T>& Key = Keys[KeyIdx];
|
|
|
|
|
|
|
|
if ((Key.Step < Start) || (Key.Step == 1))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (Key.Step < Start + Time)
|
|
|
|
{
|
|
|
|
Keys.RemoveIndex(KeyIdx);
|
|
|
|
KeyIdx--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
Key.Step -= Time;
|
|
|
|
}
|
|
|
|
}
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2012-08-17 01:50:40 +02:00
|
|
|
private:
|
2014-05-01 16:55:12 +02:00
|
|
|
lcObjectType mObjectType;
|
2011-09-07 23:06:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|