-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sist_Plan.pde
299 lines (224 loc) · 6.68 KB
/
Sist_Plan.pde
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
//import gifAnimation.*;
//GifMaker ficherogif;
Planeta sol;
Planeta mercurio;
Planeta venus;
Planeta tierra;
Planeta luna;
Planeta marte;
Planeta jupiter;
Planeta ganimedes;
float R;
Punto pos_absoluta;
float rotacionX = 0;
float rotacionY = 0;
float angulo_panoramica;
float velocidad = 0;
boolean subir = false;
boolean bajar = false;
boolean girar_izquierda = false;
boolean girar_derecha = false;
boolean acelera = false;
boolean frena = false;
boolean subir_panoramica = false;
boolean bajar_panoramica = false;
boolean pausa = false;
boolean modo_pantalla = true;
int cuenta_frames = 0;
void setup() {
fullScreen(P3D);
strokeWeight(0);
noFill();
//ficherogif = new GifMaker( this, "sistema_solar.gif");
//ficherogif.setRepeat(0);
R = (height/2) * tan(PI/3);
pos_absoluta = new Punto(width/2, height/2, R);
sol = new Planeta("Sol", "sol.png", 0, PI/1024, 0, 100, PI/1024);
mercurio = new Planeta("Mercurio", "mercurio.jpg", random(0, TWO_PI), PI/512, 150, 10, PI/128);
venus = new Planeta("Venus", "venus.jpg", random(0, TWO_PI), PI/1024, 200, 15, PI/128);
tierra = new Planeta("Tierra", "tierra.jpg", random(0, TWO_PI), PI/1340, 300, 25, PI/128);
luna = new Planeta("Luna", "luna.jpg", random(0, TWO_PI), PI/128, 45, 8, PI/128);
marte = new Planeta("Marte", "marte.jpg", random(0, TWO_PI), PI/1580, 400, 25, PI/128);
jupiter = new Planeta("Júpiter", "jupiter.jpg", random(0, TWO_PI), PI/2024, 700, 40, PI/256);
ganimedes = new Planeta("Ganímedes", "ganimedes.jpg", random(0, TWO_PI), PI/128, 60, 5, PI/128);
noStroke();
}
void actualizar_perspectiva(){
if(subir){
rotacionX -= PI/512;
}
if(bajar){
rotacionX += PI/512;
}
if(modo_pantalla && subir_panoramica && angulo_panoramica > -PI/2){
angulo_panoramica -= PI/1024;
}
if(modo_pantalla && bajar_panoramica && angulo_panoramica < PI/2){
angulo_panoramica += PI/1024;
}
if(girar_derecha){
rotacionY -= PI/256;
}
if(girar_izquierda){
rotacionY += PI/256;
}
if(acelera && velocidad < 1){
velocidad += 0.1;
}
if(frena && velocidad > 0){
velocidad -= 0.1;
}
pos_absoluta.setX(pos_absoluta.getX() - velocidad * sin(rotacionY));
pos_absoluta.setY(pos_absoluta.getY() + velocidad * abs(cos(rotacionY)) * sin(rotacionX));
pos_absoluta.setZ(pos_absoluta.getZ() - velocidad * cos(rotacionY) * cos(rotacionX));
}
void imprime_leyenda(){
pushMatrix();
rotateX(-angulo_panoramica);
textFont(createFont("Arial", 22));
textAlign(LEFT, TOP);
text("Para cambiar primera persona / vista panorámica pulse (c)", 0, 0);
text("Para controlar la nave usar teclas de dirección", 0, 28);
text("Para acelerar la nave pulse (a), para frenarla (f)", 0, 56);
text("Para subir panorámica (u), bajar panorámica (d)", 0, 84);
text("Para pausar o reiniciar pulse tecla (espacio). Para salir (esc)", 0, 112);
textFont(createFont("Arial", 18));
textAlign(CENTER, CENTER);
popMatrix();
}
void dibujaSistemaSolar(){
pushMatrix();
if(modo_pantalla){
imprime_leyenda();
}
translate(width/2, height/2, 0);
actualizar_perspectiva();
sol.dibuja_planeta(angulo_panoramica, null, pos_absoluta, modo_pantalla);
mercurio.dibuja_planeta(angulo_panoramica, null, pos_absoluta, modo_pantalla);
venus.dibuja_planeta(angulo_panoramica, null, pos_absoluta, modo_pantalla);
tierra.dibuja_planeta(angulo_panoramica, null, pos_absoluta, modo_pantalla);
Punto pos_rel = tierra.getPosicionRelativa();
luna.dibuja_planeta(angulo_panoramica, pos_rel, pos_absoluta, modo_pantalla);
marte.dibuja_planeta(angulo_panoramica, null, pos_absoluta, modo_pantalla);
jupiter.dibuja_planeta(angulo_panoramica, null, pos_absoluta, modo_pantalla);
pos_rel = jupiter.getPosicionRelativa();
ganimedes.dibuja_planeta(angulo_panoramica, pos_rel, pos_absoluta, modo_pantalla);
popMatrix();
}
void dibujaNave(){
strokeWeight(1);
stroke(0, 0, 255);
fill(128, 128, 255);
pushMatrix();
translate(pos_absoluta.getX(), pos_absoluta.getY(), pos_absoluta.getZ());
rotateY(rotacionY);
rotateX(rotacionX);
sphere(5);
pushMatrix();
translate(0, 0, -10);
stroke(255, 100, 16);
sphere(1.5);
stroke(0, 0, 255);
popMatrix();
pushMatrix();
rotateX(PI/2);
circle(0, 0, 20);
popMatrix();
popMatrix();
fill(255);
noFill();
stroke(255);
strokeWeight(0);
}
void draw() {
background(0);
if(!modo_pantalla){
camera(pos_absoluta.getX(), pos_absoluta.getY(), pos_absoluta.getZ(),
pos_absoluta.getX() - R * sin(rotacionY),
pos_absoluta.getY() + R * abs(cos(rotacionY)) * sin(rotacionX),
-R * cos(rotacionY) * cos(rotacionX),
0, 1, 0);
}else{
camera(width/2, height/2, R+100, width/2, height/2, 0, 0, 1, 0);
rotateX(angulo_panoramica);
}
dibujaSistemaSolar();
dibujaNave();
actualizar_perspectiva();
//if(cuenta_frames == 3){
// ficherogif.addFrame();
// cuenta_frames = 0;
//}
cuenta_frames++;
}
void keyPressed(){
if (key == CODED && keyCode == UP) {
subir = true;
}
if (key == CODED && keyCode == DOWN) {
bajar = true;
}
if (key == CODED && keyCode == LEFT) {
girar_izquierda = true;
}
if (key == CODED && keyCode == RIGHT) {
girar_derecha = true;
}
if(key == ' '){
if(pausa){
pausa = false;
loop();
}else{
pausa = true;
noLoop();
}
}
if(key == 'a' || key == 'A'){
acelera = true;
}
if(key == 'f' || key == 'F'){
frena = true;
}
if(key == 'c' || key == 'C'){
if(modo_pantalla){
modo_pantalla = false;
}else{
modo_pantalla = true;
}
}
if(key == 'u' || key == 'U'){
subir_panoramica = true;
}
if(key == 'd' || key == 'D'){
bajar_panoramica = true;
}
//if(key == 'r'){
// ficherogif.finish();
//}
}
void keyReleased(){
if (key == CODED && keyCode == UP) {
subir = false;
}
if (key == CODED && keyCode == DOWN) {
bajar = false;
}
if (key == CODED && keyCode == LEFT) {
girar_izquierda = false;
}
if (key == CODED && keyCode == RIGHT) {
girar_derecha = false;
}
if(key == 'a' || key == 'A'){
acelera = false;
}
if(key == 'f' || key == 'F'){
frena = false;
}
if(key == 'u' || key == 'U'){
subir_panoramica = false;
}
if(key == 'd' || key == 'D'){
bajar_panoramica = false;
}
}