mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
66 lines
2 KiB
C++
66 lines
2 KiB
C++
#ifndef _LC_SYNTH_H_
|
|
#define _LC_SYNTH_H_
|
|
|
|
#include "lc_math.h"
|
|
#include "piece.h"
|
|
|
|
enum class lcSynthType
|
|
{
|
|
RIBBED_HOSE,
|
|
FLEXIBLE_AXLE,
|
|
STRING_BRAIDED,
|
|
SHOCK_ABSORBER,
|
|
ACTUATOR
|
|
};
|
|
|
|
struct lcSynthComponent
|
|
{
|
|
lcMatrix44 Transform;
|
|
float Length;
|
|
};
|
|
|
|
class lcLibraryMeshData;
|
|
|
|
class lcSynthInfo
|
|
{
|
|
public:
|
|
lcSynthInfo(lcSynthType Type, float Length, int NumSections, PieceInfo* Info);
|
|
|
|
bool CanAddControlPoints() const
|
|
{
|
|
return mCurve;
|
|
}
|
|
|
|
bool IsCurve() const
|
|
{
|
|
return mCurve;
|
|
}
|
|
|
|
void GetDefaultControlPoints(lcArray<lcPieceControlPoint>& ControlPoints) const;
|
|
int InsertControlPoint(lcArray<lcPieceControlPoint>& ControlPoints, const lcVector3& Start, const lcVector3& End) const;
|
|
lcMesh* CreateMesh(const lcArray<lcPieceControlPoint>& ControlPoints) const;
|
|
|
|
protected:
|
|
float GetSectionTwist(const lcMatrix44& StartTransform, const lcMatrix44& EndTransform) const;
|
|
void CalculateCurveSections(const lcArray<lcPieceControlPoint>& ControlPoints, lcArray<lcMatrix44>& Sections, void(*SectionCallback)(const lcVector3& CurvePoint, int SegmentIndex, float t, void* Param), void* CallbackParam) const;
|
|
void CalculateLineSections(const lcArray<lcPieceControlPoint>& ControlPoints, lcArray<lcMatrix44>& Sections, void(*SectionCallback)(const lcVector3& CurvePoint, int SegmentIndex, float t, void* Param), void* CallbackParam) const;
|
|
void AddRibbedHoseParts(lcMemFile& File, const lcArray<lcMatrix44>& Sections) const;
|
|
void AddFlexibleAxleParts(lcMemFile& File, lcLibraryMeshData& MeshData, const lcArray<lcMatrix44>& Sections) const;
|
|
void AddStringBraidedParts(lcMemFile& File, lcLibraryMeshData& MeshData, lcArray<lcMatrix44>& Sections) const;
|
|
void AddShockAbsorberParts(lcMemFile& File, lcArray<lcMatrix44>& Sections) const;
|
|
void AddActuatorParts(lcMemFile& File, lcArray<lcMatrix44>& Sections) const;
|
|
|
|
PieceInfo* mPieceInfo;
|
|
lcSynthType mType;
|
|
lcSynthComponent mStart;
|
|
lcSynthComponent mMiddle;
|
|
lcSynthComponent mEnd;
|
|
bool mCurve;
|
|
float mLength;
|
|
int mNumSections;
|
|
bool mRigidEdges;
|
|
};
|
|
|
|
void lcSynthInit();
|
|
|
|
#endif // _LC_SYNTH_H_
|