2019-07-23 16:55:23 -04:00
|
|
|
#pragma once
|
|
|
|
|
2019-07-24 17:06:48 -04:00
|
|
|
class CPhysical;
|
2019-07-23 16:55:23 -04:00
|
|
|
|
|
|
|
enum tWaterLevel
|
|
|
|
{
|
|
|
|
FLOATER_ABOVE_WATER,
|
|
|
|
FLOATER_IN_WATER,
|
|
|
|
FLOATER_UNDER_WATER,
|
|
|
|
};
|
|
|
|
|
|
|
|
class cBuoyancy
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CVector m_position;
|
|
|
|
CMatrix m_matrix;
|
|
|
|
int m_field_54;
|
|
|
|
CVector m_positionZ;
|
|
|
|
float m_waterlevel;
|
|
|
|
float m_waterLevelInc;
|
|
|
|
float m_buoyancy;
|
|
|
|
CVector m_dimMax;
|
|
|
|
CVector m_dimMin;
|
|
|
|
float m_numPartialVolumes;
|
|
|
|
int m_field_8C;
|
|
|
|
int m_field_90;
|
|
|
|
int m_field_94;
|
|
|
|
bool m_haveVolume;
|
|
|
|
CVector m_step;
|
|
|
|
CVector m_stepRatio;
|
|
|
|
float m_numSteps;
|
|
|
|
bool m_flipAverage;
|
|
|
|
char m_field_B9;
|
|
|
|
bool m_isBoat;
|
|
|
|
float m_volumeUnderWater;
|
2019-07-24 17:06:48 -04:00
|
|
|
CVector m_impulsePoint;
|
2019-07-23 16:55:23 -04:00
|
|
|
|
2019-10-13 00:05:08 -04:00
|
|
|
bool ProcessBuoyancy(CPhysical *phys, float buoyancy, CVector *point, CVector *impulse);
|
2019-07-23 16:55:23 -04:00
|
|
|
void PreCalcSetup(CPhysical *phys, float buoyancy);
|
|
|
|
void SimpleCalcBuoyancy(void);
|
|
|
|
float SimpleSumBuoyancyData(CVector &waterLevel, tWaterLevel waterPosition);
|
|
|
|
void FindWaterLevel(const CVector &zpos, CVector *waterLevel, tWaterLevel *waterPosition);
|
|
|
|
bool CalcBuoyancyForce(CPhysical *phys, CVector *impulse, CVector *point);
|
|
|
|
};
|
2020-04-16 08:30:47 -04:00
|
|
|
extern cBuoyancy mod_Buoyancy;
|