-
Notifications
You must be signed in to change notification settings - Fork 0
/
CBenefit.h
62 lines (47 loc) · 1.68 KB
/
CBenefit.h
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
58
59
60
61
62
#ifndef SEMESTRAL_WORK_CBENEFIT_H
#define SEMESTRAL_WORK_CBENEFIT_H
#include "CUnit.h"
#include <ncurses.h>
//----------------------------------------------------------------------------------------------------------------------
class CBenefit : public CUnit{
public:
CBenefit() = default;
~CBenefit() = default;
virtual bool PickedUp() = 0;
bool Move(int & x_Shift, int & y_Shift) const override;
};
//----------------------------------------------------------------------------------------------------------------------
class CLife : public CBenefit{
public:
CLife() = delete;
explicit CLife(int num);
~CLife() = default;
bool PickedUp() override;
void Print(int y_Pos, int x_Pos) const override;
private:
int LifeNum;
};
//----------------------------------------------------------------------------------------------------------------------
class CAmmo : public CBenefit{
public:
CAmmo() = delete;
explicit CAmmo(int num);
~CAmmo() = default;
bool PickedUp() override;
void Print(int y_Pos, int x_Pos) const override;
private:
int AmmoNum;
};
//----------------------------------------------------------------------------------------------------------------------
class CPowerUp : public CBenefit{
public:
CPowerUp() = delete;
explicit CPowerUp(PowerUpType type);
~CPowerUp() = default;
bool PickedUp() override;
void Print(int y_Pos, int x_Pos) const override;
private:
PowerUpType PUType;
};
//----------------------------------------------------------------------------------------------------------------------
#endif //SEMESTRAL_WORK_CBENEFIT_H