-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapas.c
299 lines (281 loc) · 9.19 KB
/
mapas.c
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#include"gps.h"
#define LARGURA_JANELA 800
#define ALTURA_JANELA 600
#define TCOL 0 /*Cor do texto 0 a 15*/
#define BGCOL makecol(240,240,240) /*cor do fundo do mapa*/
#define CORDIST random(16)
void DesenhaRota(DIST *distrito, CTD *contorno);
void VerMapa(DIST *distrito, CTD *contorno,float zoom,LOCAL *localref);
/*-------------------------------------------------------
* MenuMapas
* inicia o menu de gestao de mapas
*
*-------------------------------------------------------
*/
void MenuMapas(DIST *distrito, CTD *contorno)
{
char esc, nomelocal[SSIZE];
float zoom = 1;
LOCAL *locref = NULL;
while(1){
system("clear");
printf("0 – Regressar ao menu anterior\n");
printf("1 – Seleccao da localidade de referência\n");
printf("2 – Seleccao da escala\n");
printf("3 – Visualizar as localidades em redor da referencia\n");
printf("4 – Apresentar uma rota\n");
printf(" Opção: ");
esc = getchar(); /*le o primeiro caracter inserido*/
if(getchar() != '\n'){
while(getchar() != '\n'); /*descarta todos os outros*/
esc = 'x';
}
switch(esc)
{
case '0':
return;
case '1':
printf("Insira a localidade:");
fgets(nomelocal,SSIZE,stdin);
nomelocal[strlen(nomelocal)-1] = '\0';
locref = RetLocal(distrito,nomelocal);
break;
case '2':
printf("Insira a escala (pixeis/km):");
scanf("%f",&zoom);
getchar();
if(zoom < 0){
zoom = 1;
allegro_init();
allegro_message("O zoom deve ser um valor superior a zero.");
allegro_exit();
}
break;
case '3':
if(locref == NULL){ /*verifica se esta definida uma localidade de referencia*/
allegro_init();
allegro_message("Deve defenir primeiro uma localidade de referencia.");
allegro_exit();
}
else
VerMapa(distrito,contorno,zoom,locref);
break;
case '4':
DesenhaRota(distrito,contorno);
break;
}
}
}
float transf_lat(float lat,float zoom,float reflat,int altecra)
{
return -(zoom*RMT*tan(GradToRad(lat-reflat)))+(altecra/2);
}
float transf_lon(float lat,float lon,float zoom,float reflon,int largecra)
{
return (zoom*RMT*cos(GradToRad(lat))*sin(GradToRad(lon-reflon)))+(largecra/2);
}
/*-------------------------------------------------------
* DesenhaLocal
* desenha o nome da localidade e um ponto no sitio da localidade
*
*-------------------------------------------------------
*/
void DesenhaLocal(char *local,float lat,float lon,float latref,float lonref,float zoom)
{
circle(screen,transf_lon(lat,lon,zoom,lonref, SCREEN_W) , transf_lat(lat,zoom,latref, SCREEN_H),1,TCOL);
floodfill(screen,transf_lon(lat,lon,zoom,lonref, SCREEN_W) , transf_lat(lat,zoom,latref, SCREEN_H), TCOL);
textprintf_ex(screen, font, (transf_lon(lat,lon,zoom,lonref, SCREEN_W))+3 , (transf_lat(lat,zoom,latref, SCREEN_H))-9,TCOL, -1,"%s",local);
}
/*-------------------------------------------------------
* DesenhaTodasLocal
* desenha todas as localidades no mapa
*
*-------------------------------------------------------
*/
void DesenhaTodasLocal(DIST *distrito,float latref, float lonref,float zoom)
{
LOCAL *aux;
int dist;
for(dist = 0;dist < NDIST;dist++)
{
aux = distrito[dist].local;
while(aux != NULL)
{
DesenhaLocal(aux->localidade,aux->latitude,aux->longitude,latref,lonref,zoom);
aux = aux->prox;
}
}
}
/*-------------------------------------------------------
* VerMapa
* inicia o modo grafico com a ajuda da biblioteca allegro desenhando o mapa com a localidade de referencia e o zoom inserido
*
*-------------------------------------------------------
*/
void VerMapa(DIST *distrito, CTD *contorno,float zoom,LOCAL *localref)
{
int ret,cod;
COORD *aux, *coordenadas;
double oldlatitude, oldlongitude;
double latitude, longitude;
allegro_init();
ret = set_gfx_mode(GFX_AUTODETECT_WINDOWED, LARGURA_JANELA, ALTURA_JANELA, 0, 0);
if (ret != 0)
{
allegro_message("Graphic error- Exiting");
return;
}
floodfill(screen,1,1,BGCOL); /*Pinta a tela (cor do fundo) com a cor defenida em BGCOL*/
textprintf_ex(screen, font,3,3,TCOL, -1,"Centrado em: \"%s\" Zoom = %.2f px/km",localref->localidade,zoom);
for(cod = 0 ; cod < NFRON; cod++) /*Corre todas as listas de contornos*/
{
coordenadas = contorno[cod].coord;
aux = coordenadas;
while(aux->prox != NULL) /*Le a lista do contorno ate ao fim*/
{
oldlatitude = transf_lat(aux->latitude,zoom,localref->latitude,SCREEN_H);
oldlongitude = transf_lon(aux->latitude,aux->longitude,zoom,localref->longitude,SCREEN_W);
aux = aux->prox;
latitude = transf_lat(aux->latitude,zoom,localref->latitude,SCREEN_H);
longitude = transf_lon(aux->latitude,aux->longitude,zoom,localref->longitude, SCREEN_W);
line(screen,oldlongitude,oldlatitude,longitude,latitude,contorno[cod].cor);
}
}
DesenhaTodasLocal(distrito,localref->latitude,localref->longitude,zoom);
install_keyboard();
readkey(); /*Espera que uma tecla seja clicada*/
allegro_exit();
}
/*-------------------------------------------------------
* RetLocal
* retorna o endereço de UMA localide encontrada em todos os distritos com o nome contido na string nomelocal
*
*-------------------------------------------------------
*/
LOCAL *RetLocal(DIST *distrito, char *nomelocal)
{
LOCAL *aux = NULL;
int dist;
for(dist = 0;dist < NDIST;dist++)
{
aux = distrito[dist].local;
while(aux != NULL)
{
if(strcmp(aux->localidade,nomelocal) == 0)
{
return aux;
}
aux = aux->prox;
}
}
allegro_init();
allegro_message("Não foram encontradas localidades com o nome \"%s\".",nomelocal);
allegro_exit();
return NULL;
}
/*-------------------------------------------------------
* CalcZoom
* calcula o zoom do mapa quando é mostrada uma rota tedo em conota a distancia entre a localidade de partida e chegada
*
*-------------------------------------------------------
*/
float CalcZoom(LOCAL *rota)
{
LOCAL *aux;
float dist, startlat, startlon, endlat, endlon;
aux = rota;
startlat = rota->latitude;
startlon = rota->longitude;
while(aux->prox != NULL)
aux = aux->prox;
endlat = aux->latitude;
endlon = aux->longitude;
dist = Pitagoras(transf_lon(startlat,startlon,1,endlon,0),transf_lat(startlat,1,endlat,0)); /*Distancia entre a localidade de partida e a de chegada*/
dist += 0.1*dist; /*Adiciona uma margem*/
return ALTURA_JANELA/dist; /*Para esta distacia caber no ecra no maximo na vertical*/
}
/*-------------------------------------------------------
* DesenhaRota
* inicia o modo grafico com a ajuda da biblioteca allegro desenhando o mapa com a rota no ficheiro "rota.rt"
*
*-------------------------------------------------------
*/
void DesenhaRota(DIST *distrito, CTD *contorno)
{
char nomelocal[SSIZE];
LOCAL *local = NULL, *rota = NULL, *auxloc = NULL;
FILE *frota;
int ret,cod;
COORD *aux, *coordenadas;
double oldlatitude, oldlongitude;
double latitude, longitude;
float zoom, latref, lonref;
/*Guarda o conteudo do ficheiro numa lista do tipo LOCAL chamada rota*/
frota = fopen(FROTA,"r");
if(frota == NULL){
allegro_init();
allegro_message("Ficheiro com a rota não encontrado.");
allegro_exit();
return;
}
fgets(nomelocal,SSIZE,frota);
do
{
nomelocal[strlen(nomelocal)-1] = '\0';
local = RetLocal(distrito,nomelocal);
rota = InsereLocalidade(rota,local->localidade,local->latitude,local->longitude);
}while(fgets(nomelocal,SSIZE,frota) != NULL);
fclose(frota);
zoom = CalcZoom(rota); /*Define o zoom*/
/*Define Centro do ecra */
auxloc = rota;
while(auxloc->prox != NULL)
auxloc = auxloc->prox;
latref = (rota->latitude + auxloc->latitude)/2; /*calcula o ponto médio entre a localidade de partida e a de chegada*/
lonref = (rota->longitude + auxloc->longitude)/2; /*que sera o centro do ecra*/
/*Desenha os contornos dos distritos*/
allegro_init();
ret = set_gfx_mode(GFX_AUTODETECT_WINDOWED, LARGURA_JANELA, ALTURA_JANELA, 0, 0);
if (ret != 0)
{
allegro_message("Graphic error- Exiting");
return;
}
floodfill(screen,1,1,BGCOL);
textprintf_ex(screen, font,3,3,TCOL, -1,"Zoom = %.2f",zoom);
for(cod = 0 ; cod < NFRON; cod++)
{
coordenadas = contorno[cod].coord;
aux = coordenadas;
while(aux->prox != NULL)
{
oldlatitude = transf_lat(aux->latitude,zoom,latref,SCREEN_H);
oldlongitude = transf_lon(aux->latitude,aux->longitude,zoom,lonref,SCREEN_W);
aux = aux->prox;
latitude = transf_lat(aux->latitude,zoom,latref,SCREEN_H);
longitude = transf_lon(aux->latitude,aux->longitude,zoom,lonref, SCREEN_W);
line(screen,oldlongitude,oldlatitude,longitude,latitude,contorno[cod].cor);
}
}
/*Desenha o nome das localidades*/
auxloc = rota;
while(auxloc != NULL)
{
DesenhaLocal(auxloc->localidade,auxloc->latitude,auxloc->longitude,latref,lonref,zoom);
auxloc = auxloc->prox;
}
/*Desenha caminho*/
auxloc = rota;
while(auxloc->prox != NULL)
{
oldlatitude = transf_lat(auxloc->latitude,zoom,latref,SCREEN_H);
oldlongitude = transf_lon(auxloc->latitude,auxloc->longitude,zoom,lonref,SCREEN_W);
auxloc = auxloc->prox;
latitude = transf_lat(auxloc->latitude,zoom,latref,SCREEN_H);
longitude = transf_lon(auxloc->latitude,auxloc->longitude,zoom,lonref, SCREEN_W);
line(screen,oldlongitude,oldlatitude,longitude,latitude,1);
}
install_keyboard();
readkey();
allegro_exit();
}