-
Notifications
You must be signed in to change notification settings - Fork 1
/
ws_3bis.htm
272 lines (213 loc) · 5.01 KB
/
ws_3bis.htm
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
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
var canvas;
var ctx;
var time = 0;
var elapsed_time = 0.01;
// pelotita
var vel = {x:-30,y:90};
var pos = {x:300,y:100};
var radio = 20;
// obstaculos linea
var lineas = new Array();
lineas[0] = { x0:50, y0:250 , x1:300 , y1:500};
lineas[1] = { x0:50, y0:50 , x1:300 , y1:300};
lineas[2] = { x0:140, y0:60 , x1:150 ,y1:310};
lineas[3] = { x0:440, y0:260 , x1:150 ,y1:510};
var cant_lineas = 4;
var OX = 200;
var OY = 100;
var DX = 400;
var DY = 500;
// imagen
var img = new Image();
// Algebra de vectores
// -------------------------------------------------------------
// Suma de Vectores
// w = u + v
function add(u , v)
{
return {x: u.x + v.x , y:u.y + v.y};
}
// Resta de Vectores
// w = u - v
function substract(u , v)
{
return {x: u.x - v.x , y:u.y - v.y};
}
// Multiplicacion de Vectores
// w = u * k
function mul(u , k)
{
return {x: u.x*k , y:u.y*k};
}
// producto interno
function dot(u , v)
{
return u.x*v.x+u.y*v.y;
}
// norma o modulo
function length(u)
{
return Math.sqrt(u.x*u.x + u.y*u.y);
}
// normalizar
function normalize(u)
{
var len = length(u);
u.x /= len;
u.y /= len;
}
// devuelve el vector normal
function normal(u)
{
return {x: -u.y , y:u.x};
}
// computar el vector de reflexion
function reflect(i,n)
{
// v = i - 2 * dot(i, n) * n
return add(i , mul(n,-2*dot(i, n)));
}
function matriz_det(M)
{
return M.a11*M.a22 - M.a12*M.a21;
}
function matriz_X(M,B)
{
return M.a22*B.x-M.a12*B.y;
}
function matriz_Y(M,B)
{
return M.a11*B.y-M.a21*B.x;
}
function ray_segment(p0,dir_0,p1,dir_1)
{
var rta = -1;
var M = { a11: dir_0.x , a12:-dir_1.x ,
a21: dir_0.y , a22:-dir_1.y
}
var det = matriz_det(M);
if(Math.abs(det)>0.0001)
{
var B = {x:p1.x-p0.x , y:p1.y-p0.y};
var t = matriz_X(M,B) / det;
var k = matriz_Y(M,B) / det;
if(k>=0 && k<=1 && t>=0 && t<=1)
rta = t;
}
return rta;
}
//---------------------------------------------------------------------------------------------
function draw_obj()
{
// dibuja los objetos
for(i=0; i<cant_lineas; ++i)
{
ctx.beginPath();
ctx.moveTo(OX + lineas[i].x0, OY + lineas[i].y0);
ctx.lineTo(OX + lineas[i].x1, OY + lineas[i].y1);
ctx.closePath();
ctx.stroke();
}
}
function draw()
{
if (canvas.getContext)
{
ctx.fillStyle = 'rgba(255,255,255,255)';
ctx.fillRect(0,0,1000,700);
ctx.fillStyle = 'rgba(192,255,192,255)';
ctx.fillRect(OX ,OY ,DX,DY);
time+=elapsed_time;
// 1- integro la velocidad
var pos_ant = pos;
var D = mul(vel,elapsed_time);
pos = add(pos , D);
// 2- verifico los limites
if(pos.x<radio)
{
// rebote izquierdo
pos.x = 2*radio - pos.x;
vel.x *= -1;
}
else
if(pos.x>DX-radio)
{
// rebote derecho
pos.x = (DX-radio)*2 - pos.x;
vel.x *= -1;
}
if(pos.y<radio)
{
// rebote abajo
pos.y = 2*radio-pos.y;
vel.y *= -1;
}
else
if(pos.y>DY-radio)
{
// rebote arriba
pos.y = (DY-radio)*2-pos.y;
vel.y *= -1;
}
//3- Verifico si choca contra alguna linea
for(i=0;i<cant_lineas;++i)
{
var p1 = {x:lineas[i].x0 , y:lineas[i].y0};
var dir_1 = {x:lineas[i].x1-p1.x , y:lineas[i].y1-p1.y};
// dezplazo la recta para tener en cuenta el radio de la bolita
var dir_N = normal(dir_1);
normalize(dir_N);
// puedo desplazar en sentido positivo o negativo, pero solo interesa el sentido
// que se acerca a la pelotita, para ello uso el hecho que angulo entre la normal y la direccion
// de la pelotita tiene que ser >180 grados si estan en la conf. correcta
var desf;
if(dot(dir_N,D)<0)
desf = mul(dir_N,radio);
else
desf = mul(dir_N,-radio);
p1 = add(p1 , desf);
var t = ray_segment(pos_ant,D,p1,dir_1);
if(t>0 && t<1)
{
D = mul(D,t);
// Calculo el punto de interseccion
var Ip= add(pos_ant , D);
// calculo la normal en el pto de interseccion
var N = normal(dir_1);
normalize(N);
// Calculo la direccion de rebote
D = reflect(D,N);
// Actualizo la nueva posicion, utilizando el tiempo en restante, para aplicarlo
// a la direccion de rebote
var rtime = elapsed_time*(1-t); // tiempo restante
pos = add(Ip , mul(D,rtime));
// actualizo la velocidad
normalize(D);
vel = mul(D,length(vel));
// no soporta mas colisiones en el mismo frame
i = cant_lineas;
}
}
//3- dibujo los objetos de la escena
draw_obj();
// 4- dibujo la bolita
ctx.drawImage(img,OX + pos.x - radio, OY + pos.y - radio, 2*radio,2*radio);
}
}
function animate()
{
canvas = document.getElementById('mycanvas');
ctx = canvas.getContext('2d');
img.src = 'ball.png';
setInterval(draw, 1);
}
</script>
</head>
<body onload="animate();">
<canvas id="mycanvas" width="1000" height="700"></canvas>
</body>
</html>