-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonagem.cpp
97 lines (78 loc) · 2.37 KB
/
Personagem.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
#include <allegro5/allegro.h>
#include <allegro5/allegro_font.h>
#include <allegro5/allegro_image.h>
#include <allegro5/keyboard.h>
#include "Personagem.h"
#include <stdio.h>
#include <iostream>
using namespace std;
int Personagem::colidiu_direita_tijolo(Labirinto lab){
int indiceX, indiceY1, indiceY2;
indiceX = ((pos_x + LARGURA_PACMAN)/LARGURA_PACMAN);
indiceY1 = (pos_y/ALTURA_PACMAN);
indiceY2 = ((pos_y + ALTURA_PACMAN - FATOR_PIXEL)/ALTURA_PACMAN);
if(lab.matriz_colisao[indiceY1][indiceX] == TIJOLO || lab.matriz_colisao[indiceY2][indiceX] == TIJOLO){
return PARADO;
}
return DIREITA;
}
int Personagem::colidiu_esquerda_tijolo(Labirinto lab){
int indiceX, indiceY1, indiceY2;
indiceX = (pos_x - FATOR_PIXEL)/(LARGURA_PACMAN);
indiceY1 = (pos_y + ALTURA_PACMAN - FATOR_PIXEL)/ALTURA_PACMAN;
indiceY2 = (pos_y)/ALTURA_PACMAN;
if(lab.matriz_colisao[indiceY1][indiceX] == TIJOLO || lab.matriz_colisao[indiceY2][indiceX] == TIJOLO){
return PARADO;
}
return ESQUERDA;
}
int Personagem::colidiu_baixo_tijolo(Labirinto lab){
int indiceX1, indiceX2, indiceY;
indiceX1 = ((pos_x)/LARGURA_PACMAN);
indiceX2 = ((pos_x + LARGURA_PACMAN - FATOR_PIXEL)/LARGURA_PACMAN);
indiceY = ((pos_y + ALTURA_PACMAN)/ALTURA_PACMAN);
if(lab.matriz_colisao[indiceY][indiceX1] == TIJOLO || lab.matriz_colisao[indiceY][indiceX2] == TIJOLO ){
return PARADO;
}
return BAIXO;
}
int Personagem::colidiu_cima_tijolo(Labirinto lab){
int indiceX1, indiceX2, indiceY;
indiceX1 = ((pos_x)/LARGURA_PACMAN);
indiceX2 = ((pos_x + LARGURA_PACMAN - FATOR_PIXEL)/LARGURA_PACMAN);
indiceY = ((pos_y - FATOR_PIXEL)/ALTURA_PACMAN);
if(lab.matriz_colisao[indiceY][indiceX1] == TIJOLO || lab.matriz_colisao[indiceY][indiceX2] == TIJOLO ){
return PARADO;
}
return CIMA;
}
int Personagem::getPos_x(){
return pos_x;
}
int Personagem::getPos_y(){
return pos_y;
}
int Personagem::getDirecao(){
return direcao;
}
int Personagem::getCurrentFrame(){
return current_frame_y;
}
int Personagem::getIntencao(){
return intencao;
}
void Personagem::setPos_x(int x){
pos_x = x;
}
void Personagem::setPos_y(int y){
pos_y = y;
}
void Personagem::setDirecao(int dir){
direcao = dir;
}
void Personagem::setCurrentFrame(int cf){
current_frame_y = cf;
}
void Personagem::setIntencao(int inten){
intencao = inten;
}