-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.h
114 lines (100 loc) · 2.64 KB
/
Player.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#pragma once
#include <SFML/Graphics.hpp>
#include <SFML/Audio.hpp>
#include "Animation.h"
#include "Wall.h"
#include "CircleBar.h"
const float SQRT_2 = std::sqrt(2.f);
class Player
{
public:
unsigned short id;
char name[20];
sf::RectangleShape collisionRect;
CircleBar healthBar;
CircleBar manaBar;
sf::Sprite sprite;
bool dead;
bool doAttack;
bool doMove;
bool doBeenHit;
bool doDie;
Animation animation;
Player(float, float);
void const draw(sf::RenderWindow &) const;
bool move(float, std::vector<Wall> &);
void attack(float);
void beenHit(float);
void die(float);
sf::Uint8 getDirection(void);
float getHealth(void);
float getMana(void);
sf::Sprite getSprite(void);
bool getRunning(void);
void decreaseHealthBy(float);
void decreaseManaBy(float);
void increaseHealthBy(float);
void increaseManaBy(float);
void setAttackSpeed(float);
void setDirection(sf::Uint8);
void setHealth(float);
void setMaxHealth(float);
void setMana(float);
void setMaxMana(float);
void setHealthBarPosition(float, float);
void setManaBarPosition(float, float);
void setPosition(float, float);
void setRunning(bool);
void setSpeed(float);
void setStoppedTexture(sf::Texture &);
void setWalkingTexture(sf::Texture &);
void setCombat_Attack(sf::Texture &);
void setCombat_Been_Hit(sf::Texture &);
void setCombat_Die(sf::Texture &);
void setCombat_Running(sf::Texture &);
void setCombat_Stopped(sf::Texture &);
void setCombat_Walking(sf::Texture &);
void setHealthBarTexture(sf::Texture &);
void setManaBarTexture(sf::Texture &);
void setEmptyTexture(sf::Texture &);
void setWalking_Sound(sf::SoundBuffer &);
void setRunning_Sound(sf::SoundBuffer &);
void setSwing_Sound(sf::SoundBuffer &);
private:
sf::Texture *texture_stopped;
sf::Texture *texture_walking;
sf::Texture *texture_Combat_Attack;
sf::Texture *texture_Combat_Been_Hit;
sf::Texture *texture_Combat_Die;
sf::Texture *texture_Combat_Running;
sf::Texture *texture_Combat_Stopped;
sf::Texture *texture_Combat_Walking;
sf::Texture *texture_Empty;
sf::SoundBuffer *sound_walking;
sf::SoundBuffer *sound_running;
sf::SoundBuffer *sound_swing;
sf::Sound sound_Move;
sf::Sound sound_Hit;
//DIRECTIONS:
// 0 - RIGHT
// 1 - UP
// 2 - UP RIGHT
// 3 - UP LEFT
// 4 - DOWN
// 5 - DOWN RIGHT
// 6 - DOWN LEFT
// 7 - LEFT
sf::Uint8 direction;
unsigned short textureWidth;
unsigned short textureHeight;
char hitPicture;
char beenHitPicture;
char diePicture;
float health;
float maxHealth;
float mana;
float maxMana;
bool running;
float speed;
float attackSpeed;
};