summaryrefslogtreecommitdiffstats
path: root/src/autopara.h
blob: 691c5088a1d957be95798f058d016e9c2b7d28d7 (plain)
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
48
49
50
51
52
53
54
55
56
57
// autopara.h

#ifndef _AUTOPARA_H_
#define	_AUTOPARA_H_


class CInstanceManager;
class CD3DEngine;
class CParticule;
class CTerrain;
class CCamera;
class CObject;



enum AutoParaPhase
{
	APAP_WAIT		= 1,
	APAP_BLITZ		= 2,
	APAP_CHARGE		= 3,
};



class CAutoPara : public CAuto
{
public:
	CAutoPara(CInstanceManager* iMan, CObject* object);
	~CAutoPara();

	void		DeleteObject(BOOL bAll=FALSE);

	void		Init();
	BOOL		EventProcess(const Event &event);
	Error		RetError();
	void		StartBlitz();

	BOOL		CreateInterface(BOOL bSelect);

	BOOL		Write(char *line);
	BOOL		Read(char *line);

protected:
	void		ChargeObject(float rTime);

protected:
	AutoParaPhase	m_phase;
	float			m_progress;
	float			m_speed;
	float			m_timeVirus;
	float			m_lastParticule;
	D3DVECTOR		m_pos;
	int				m_channelSound;
};


#endif //_AUTOPARA_H_