re3/src/render/WaterCannon.h

39 lines
741 B
C
Raw Normal View History

#pragma once
2020-03-28 14:02:44 +00:00
#define WATERCANNON_GRAVITY (0.009f)
#define WATERCANNON_LIFETIME (150)
2019-09-24 11:33:16 +00:00
class CWaterCannon
{
public:
2020-03-28 14:02:44 +00:00
enum
{
NUM_SEGMENTPOINTS = 16,
};
2019-09-24 11:33:16 +00:00
int32 m_nId;
2020-03-28 14:02:44 +00:00
int16 m_nCur;
uint32 m_nTimeCreated;
CVector m_avecPos[NUM_SEGMENTPOINTS];
CVector m_avecVelocity[NUM_SEGMENTPOINTS];
bool m_abUsed[NUM_SEGMENTPOINTS];
void Init(void);
void Update_OncePerFrame(int16 index);
void Update_NewInput(CVector *pos, CVector *dir);
void Render(void);
void PushPeds(void);
2019-10-12 22:35:01 +00:00
};
VALIDATE_SIZE(CWaterCannon, 412);
2019-09-24 11:33:16 +00:00
2019-10-12 22:35:01 +00:00
class CWaterCannons
{
public:
2020-03-28 14:02:44 +00:00
static CWaterCannon aCannons[NUM_WATERCANNONS];
static void Init(void);
static void UpdateOne(uint32 id, CVector *pos, CVector *dir);
2020-03-28 14:02:44 +00:00
static void Update();
static void Render(void);
2020-03-28 14:02:44 +00:00
};