-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cpp
230 lines (190 loc) · 6.97 KB
/
Main.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#include <stdio.h>
#include <iostream>
#include <allegro5/allegro.h>
#include <allegro5/allegro_font.h>
#include <allegro5/allegro_image.h>
#include <allegro5/keyboard.h>
#include <allegro5/allegro_ttf.h>
#include "Pacman.h"
#include "Labirinto.h"
#include "Fantasma.h"
#include <chrono>
#include <thread>
#include <fstream>
using namespace std;
bool colisao_com_fantasma(Pacman pac, Fantasma ghost1, Fantasma ghost2,Fantasma ghost3,Fantasma ghost4){
int indiceX[5];
int indiceY[5];
indiceX[0] = (pac.getPos_x()+(TAM_LADO/2))/TAM_LADO;
indiceY[0] = (pac.getPos_y()+(TAM_LADO/2))/TAM_LADO;
indiceX[1] = (ghost1.getPos_x()+(TAM_LADO/2))/TAM_LADO;
indiceY[1] = (ghost1.getPos_y()+(TAM_LADO/2))/TAM_LADO;
indiceX[2] = (ghost2.getPos_x()+(TAM_LADO/2))/TAM_LADO;
indiceY[2] = (ghost2.getPos_y()+(TAM_LADO/2))/TAM_LADO;
indiceX[3] = (ghost3.getPos_x()+(TAM_LADO/2))/TAM_LADO;
indiceY[3] = (ghost3.getPos_y()+(TAM_LADO/2))/TAM_LADO;
indiceX[4] = (ghost4.getPos_x()+(TAM_LADO/2))/TAM_LADO;
indiceY[4] = (ghost4.getPos_y()+(TAM_LADO/2))/TAM_LADO;
for(int i = 1 ; i < 5 ; i++){
for(int j = 1 ; j < 5 ; j++){
if(indiceX[0] == indiceX[i] && indiceY[0] == indiceY[i]){
return true;
}
}
}
return false;
// cout << indiceX[0] << endl << indiceY[0] << endl;
}
void imprime_matriz_colisao(Labirinto lab){
for(int i = 0 ; i<ORDEM ; i++){
for(int j = 0 ; j <ORDEM; j++){
printf("%d ", lab.matriz_colisao[i][j]);
}
printf("\n");
}
printf("\n");
}
// Função para obter o tempo atual em segundos
double getTempoAtual() {
auto agora = std::chrono::steady_clock::now();
std::chrono::duration<double> duracao = agora.time_since_epoch();
return duracao.count();
}
int main(){
ListaCoordenadas lc;
Pacman pac;
Labirinto lab = Labirinto();
int placar = 0;
int pilulas_totais = 0;
Fantasma ghost1(1);
Fantasma ghost2(2), ghost3(3), ghost4(4);
char texto[50], texto2[50], texto3[50];
char linha_arquivo[30];
bool tecla_pressionada = false;
double fim;
char nome[50];
cout << "Digite seu primeiro nome: ";
cin >> nome;
double inicio = getTempoAtual();
double duracao = 0;
double tempo_salvo;
FILE* arquivo = fopen("livro_recordes.txt", "r");
fscanf(arquivo,"%lf-%s", &tempo_salvo, linha_arquivo);
// fscanf(arquivo, "%s", &linha_arquivo);
fclose(arquivo);
//Inicializacao dos serviços basicos
al_init();
al_init_image_addon();
al_install_keyboard();
ALLEGRO_DISPLAY *display;
// Inicialize o addon Allegro para trabalhar com fontes TrueType (TTF)
al_init_font_addon();
al_init_ttf_addon();
// Carregando fonte especifica
ALLEGRO_FONT *font = al_load_font("./imagenstrab/fonte_jogo.ttf", 40, 0);
ALLEGRO_FONT *font2 = al_load_font("./imagenstrab/fonte_jogo.ttf", 30, 0);
// Defina a cor do texto
ALLEGRO_COLOR textColor = al_map_rgb (255, 140, 0);
ALLEGRO_COLOR textColor2 = al_map_rgb (255, 248, 220);
ALLEGRO_COLOR textColor3 = al_map_rgb (0,255,0);
// carrega_display(display);
display = al_create_display(LARGURA_TABULEIRO,ALTURA_TABULEIRO); //Inicializacao do display
al_set_window_title(display, "PACMAN");
al_set_window_position(display,200,200); //seta onde abre a tela
ALLEGRO_TIMER* timer = al_create_timer(1.0/20.0); // fps
ALLEGRO_EVENT_QUEUE * event_queue = al_create_event_queue();
al_register_event_source(event_queue, al_get_display_event_source(display));
al_register_event_source(event_queue, al_get_timer_event_source(timer));
al_register_event_source(event_queue, al_get_keyboard_event_source());
al_start_timer(timer);
pac.setDirecao(PARADO);
//lab.setNome_arquivo("./imagenstrab/coordenadas.txt");
lab.carregarPosicaoDosTijolos();
lab.carregarPosicaoDasPilulas();
pilulas_totais += lab.conta_pilulas();
//printf("%d\n", pilulas_totais);
while(true){ //Loop principal
ALLEGRO_EVENT event;
al_wait_for_event(event_queue, &event); //esperar o evento
switch (event.type) {
case ALLEGRO_EVENT_DISPLAY_CLOSE:
// fechar janela clicando no x
break;
case ALLEGRO_EVENT_KEY_DOWN:
switch (event.keyboard.keycode) {
case ALLEGRO_KEY_RIGHT:
pac.setIntencao(DIREITA);
break;
case ALLEGRO_KEY_LEFT:
pac.setIntencao(ESQUERDA);
break;
case ALLEGRO_KEY_DOWN:
pac.setIntencao(BAIXO);
break;
case ALLEGRO_KEY_UP:
pac.setIntencao(CIMA);
break;
}
break;
}
//int indiceX = (pac.getPos_x()/ALTURA_PACMAN);
//int indiceY = (pac.getPos_y()/ALTURA_PACMAN);
placar += pac.coleta_pilula(&lab);
lab.exibir_pilulas();
pac.exibe_pacman();
pac.move_pacman(lab);
ghost1.exibe_fantasma();
ghost1.vision_pursuit(lab,pac);
ghost2.exibe_fantasma();
ghost2.vision_pursuit(lab,pac);
ghost3.exibe_fantasma();
ghost3.vision_pursuit(lab,pac);
ghost4.exibe_fantasma();
ghost4.vision_pursuit(lab,pac);
sprintf(texto, "PLACAR %d", placar);
sprintf(texto2,"TOTAL %d", pilulas_totais);
sprintf(texto3,"RECORDE: %lf - %s", tempo_salvo, linha_arquivo);
// Desenhe o texto no display
al_draw_text(font, textColor, 240, 0, ALLEGRO_ALIGN_CENTER, texto);
al_draw_text(font, textColor2, 480, 0, ALLEGRO_ALIGN_CENTER, texto2);
al_draw_text(font2, textColor3, 361, 347, ALLEGRO_ALIGN_CENTER, texto3);
imprime_matriz_colisao(lab);
al_flip_display();
lab.exibir_labirinto();
if(placar == pilulas_totais){
fim = getTempoAtual();
duracao = fim - inicio;
cout << "PARABENS, VOCE VENCEU !!!!" << endl;
cout << "Duracao: " << duracao << "!!" << endl;
break;
}else if(colisao_com_fantasma(pac,ghost1,ghost2,ghost3,ghost4)){
fim = getTempoAtual();
duracao = fim - inicio;
cout << "VOCE PERDEU !!!!" << endl;
cout << "Duracao: " << duracao << "!!" << endl;
break;
}
}
if(duracao < tempo_salvo && placar == pilulas_totais){
cout << "NOVO RECORDE!! ABRA O JOGO NOVAMENTE PARA CONFERIR" << endl;
arquivo = fopen("livro_recordes.txt", "w");
if(arquivo != nullptr){
sprintf(texto3, "%lf", duracao);
fprintf(arquivo, "%s", texto3);
fprintf(arquivo, "-");
fprintf(arquivo, "%s", nome);
fclose(arquivo);
cout << "Arquivo salvo com sucesso." << endl;
}else {
cout << "Não foi possível abrir o arquivo." << endl;
}
}
al_rest(1.0); //atrasar a movimentacao
al_destroy_font(font);
al_destroy_display(display); //Destroi a tela
al_destroy_event_queue(event_queue);//destroi fila de eventos
al_destroy_bitmap(pac.sprite_personagem); //destoi imagem do pacman
al_destroy_bitmap(lab.mapa_desenho); //destroi fundo
al_uninstall_keyboard(); //desinstalar o teclado
return 0;
}