summaryrefslogblamecommitdiffstats
path: root/src/renderer/WaterCannon.h
blob: a37bdd1268a38b97d9c7e53ebdba20fd215f1b2b (plain) (tree)
1
2
3
4
5
6
7
8

            


                                    
                  

       




                                       
                    
                     









                                                         

  
                                 
 


                   


                                                       
                                                                     
                             
                                 
 
#pragma once

#define WATERCANNON_GRAVITY (0.009f)
#define WATERCANNON_LIFETIME (150)

class CWaterCannon
{
public:
	enum
	{
		NUM_SEGMENTPOINTS = 16,
	};
	
	int32 m_nId;
	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);
};

VALIDATE_SIZE(CWaterCannon, 412);

class CWaterCannons
{
public:
	static CWaterCannon aCannons[NUM_WATERCANNONS];
	
	static void Init(void);
	static void UpdateOne(uint32 id, CVector *pos, CVector *dir);
	static void Update();
	static void Render(void);
};