-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.cpp
141 lines (120 loc) · 2.56 KB
/
Player.cpp
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
//
// Player.cpp for in /home/barnet_m//Tek2/bomberman/bomberman-2015-tolsa_c
//
// Made by mathieu barnetche
// Login <barnet_m@epitech.net>
//
// Started on Tue May 29 11:06:58 2012 mathieu barnetche
// Last update Sun Jun 3 17:06:19 2012 nerevarine
//
#include "./Player.hh"
Player::Player() : Bomberman(0, 0, 0, 0, 255, 1)
{
}
Player::Player(int x, int y, int s) : Bomberman(x, y, 0, 0, 255, s)
{
this->alive = true;
}
Player::~Player()
{
}
void Player::setCommand(gdl::Keys::Key up, gdl::Keys::Key down, gdl::Keys::Key left, gdl::Keys::Key right, gdl::Keys::Key bomb)
{
this->cmd.setUp(up);
this->cmd.setDown(down);
this->cmd.setLeft(left);
this->cmd.setRight(right);
this->cmd.setBomb(bomb);
}
void Player::setCommand(Command const &com)
{
this->cmd = com;
}
Command Player::getCommand() const
{
return (this->cmd);
}
void Player::update()
{
this->timer_.update();
this->model_.update(this->timer_);
this->model_.play("Take 002");
this->model_.set_anim_speed("Take 002", 1.5);
}
void Player::unload()
{
}
void Player::initialize()
{
this->model_ = gdl::Model::load("lib/assets/marvin.fbx");
this->model_.infos();
this->stockbomb = NB_BOMB;
gdl::Model::cut_animation(this->model_,
"Take 001",
35,
54,
"Take 002");
this->model_.set_default_model_color(this->color_);
}
void Player::draw()
{
glPushMatrix();
glTranslatef(position.x, position.y, position.z);
glRotatef(90.f, 2.0f, 0.0f, 0.0f);
glRotatef(90.f, 0.0f, 1.0f, 0.0f);
glRotatef(angle, 0.0f, 1.0f, 0.0f);
glScalef(0.25f,
0.25f,
0.25f);
this->model_.draw();
glPopMatrix();
}
int Player::getStockBomb() const
{
return this->stockbomb;
}
void Player::setStockBomb(int stock)
{
this->stockbomb = stock;
}
void Player::kill()
{
this->alive = false;
}
bool Player::isAlive() const
{
return this->alive;
}
std::istream &operator>>(std::istream& is, Player &p)
{
Vector3f v;
int intTMP;
float floatTMP;
Command c;
is >> v;
p.setPos(v);
is >> intTMP;
p.setAngle(intTMP);
is >> intTMP;
p.setPortee(intTMP);
is >> floatTMP;
p.setSpeed(floatTMP);
is >> intTMP;
p.setId(intTMP);
is >> intTMP;
p.setStockBomb(intTMP);
is >> c;
p.setCommand(c);
return (is);
}
std::ostream &operator<<(std::ostream& os, const Player &p)
{
os << p.getPos();
os << p.getAngle() << std::endl;
os << p.getPortee() << std::endl;
os << p.getSpeed() << std::endl;
os << p.getId() << std::endl;
os << p.getStockBomb() << std::endl;
os << p.getCommand();
return (os);
}