This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercicio2(medio).c
233 lines (222 loc) · 4.36 KB
/
Exercicio2(medio).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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int quadrante (int xv, int yv) { // Descobrir para qual quadrante o vetor direcao aponta
int q;
if (yv>0) {
if (xv>0)
q = 1;
else if (xv<0)
q = 4;
else
q = 14;
}
else if (yv<0) {
if (xv>0)
q = 2;
else if (xv<0)
q = 3;
else
q = 23;
}
else {
if (xv>0)
q = 12;
else if (xv<0)
q = 34;
else
q = 0;
}
return q;
}
int equacao (int xv, int yv, int x, int y) { // Encontrar o C da equacao a*x + b*y + c = 0
int xc, yc;
xc = x + xv;
yc = y + yv;
return x * yc - y * xc;
}
int determinaTemplo (int xl, int yl, int x1, int x2, int y1, int y2, int xv, int yv, int q, int cl) { /* Verificar e se necessario trocar as coordenadas dos
pontos. Verificar tambem se o templo se
adequa ao quadrante e comparar o C da equacao
da espada ao C da equacao dos pontos do templo,
determinando se Link dever ir ou nao ao local*/
int aux, c1, c2;
if (q == 0){
printf("Erro, vetor direcao (0,0)!\n");
return 0;
}
else {
if(q == 1) {
if((y1<yl && y2<yl) || (x1<xl && x2<xl))
return 0;
if(x1<x2) {
if(y1<y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
else {
if(y1>y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
}
else if (q == 2) {
if((y1>yl && y2>yl) || (x1<xl && x2<xl))
return 0;
if(x1<x2) {
if(y1>y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
else {
if(y1<y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
}
else if (q == 3) {
if((y1>yl && y2>yl) || (x1>xl && x2>xl))
return 0;
if(x1<x2) {
if(y1<y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
else {
if(y1>y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
}
else if (q == 4) {
if((y1<yl && y2<yl) || (x1>xl && x2>xl))
return 0;
if(x1<x2) {
if(y1>y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
else {
if(y1<y2) {
aux = y2;
y2 = y1;
y1 = aux;
}
}
}
else if (q == 12)
if((y1>yl && y2>yl) || (y1<yl && y2<yl) || (x1<xl && x2<xl))
return 0;
else
return 1;
else if (q == 23)
if((x1>xl && x2>xl) || (x1<xl && x2<xl) || (y1>yl && y2>yl))
return 0;
else
return 1;
else if (q == 14)
if((x1>xl && x2>xl) || (x1<xl && x2<xl) || (y1>yl && y2>yl))
return 0;
else
return 1;
else
if((y1>yl && y2>yl) || (y1<yl && y2<yl) || (x1>xl && x2>xl))
return 0;
else
return 1;
}
c1 = equacao(xv, yv, x1, y1);
c2 = equacao(xv, yv, x2, y2);
if (c1 > c2) {
aux = c2;
c2 = c1;
c1 = aux;
}
if(cl <= c2 && cl >= c1)
return 1;
else
return 0;
}
void imprime(char *templos[],int cada[],int todos){
int i=0,j=0;
while(todos>0){
printf("%s",templos[i]);
cada[j]--;
i++;
if(cada[j]==0){
printf("\n");
j++;
}
else
printf(" ");
todos--;
}
return;
}
void libera(char *templos[],int total){
while(total>=0){
free(templos[total]);
total--;
}
return;
}
int main (void) {
int n,xl,yl,xv,yv,x1,x2,y1,y2,q,cl,r,i=0,aux=0,total=0;
char templo[21], *templos[100];
int t[100];
printf("Digite o numero de templos existentes: ");
scanf(" %d",&n);
while(n!=0){
printf("Digite a coordenada X do Link: ");
scanf(" %d",&xl);
printf("Digite a coordenada Y do Link: ");
scanf(" %d",&yl);
printf("Digite o vetor direcao da espada de Link: ");
scanf(" %d",&xv);
printf("Agora o Y do vetor: ");
scanf(" %d",&yv);
cl = equacao(xv,yv,xl,yl);
q = quadrante(xv,yv);
while(n>0) {
printf("Digite o nome do templo: ");
scanf(" %s",templo);
printf("Digite a coordenada x do primeiro ponto do templo: ");
scanf(" %d",&x1);
printf("Digite a coordenada y do primeiro ponto do templo: ");
scanf(" %d",&y1);
printf("Digite a coordenada x do segundo ponto do templo: ");
scanf(" %d",&x2);
printf("Digite a coordenada y do segundo ponto do templo: ");
scanf(" %d",&y2);
r = determinaTemplo(xl, yl, x1, x2, y1, y2, xv, yv, q, cl);
if(r==1){
templos[i] = (char *)malloc(21*sizeof(char)+1);
strcpy(templos[i],templo);
i++;
total+=1;
}
n--;
}
t[aux] = i;
aux++;
printf("Digite o numero de templos existentes: ");
scanf(" %d",&n);
}
imprime(templos,t,&total);
libera(templos,&total);
return 0;
}