1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#pragma once
class CPhysical;
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;
CVector m_impulsePoint;
bool ProcessBuoyancy(CPhysical *phys, float buoyancy, CVector *point, CVector *impulse);
bool ProcessBuoyancyBoat(CVehicle *phys, float buoyancy, CVector *point, CVector *impulse, bool bNoTurnForce);
void PreCalcSetup(CPhysical *phys, float buoyancy);
void SimpleCalcBuoyancy(void);
float SimpleSumBuoyancyData(CVector &waterLevel, tWaterLevel waterPosition);
void FindWaterLevel(const CVector &zpos, CVector *waterLevel, tWaterLevel *waterPosition);
void FindWaterLevelNorm(const CVector &zpos, CVector *waterLevel, tWaterLevel *waterPosition, CVector *normal);
bool CalcBuoyancyForce(CPhysical *phys, CVector *impulse, CVector *point);
};
extern cBuoyancy mod_Buoyancy;
|