Skip to content

Commit

Permalink
cleaning comments & adding anim
Browse files Browse the repository at this point in the history
  • Loading branch information
danielferro69 committed Oct 27, 2023
1 parent 0bfb030 commit 8878d2c
Showing 1 changed file with 5 additions and 27 deletions.
32 changes: 5 additions & 27 deletions src/escenas/PaleteandoConParametros.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,13 @@

class PaleteandoConParametros extends EscenaActividad {
cuadricula;
// pelotas;
cantidadFilas;
cantidadColumnas;

iniciar() {
//this.pelotas = [];
this.cantidadFilas = 5;
this.cantidadColumnas = 5;

/*
let matriz = [
['T','T','T','T','T','T','T'],
['T','F','F','F','F','F','T'],
['T','F','F','F','F','F','T'],
['T','F','F','F','F','F','T'],
['T','F','F','F','F','F','T'],
['T','F','F','F','F','F','T'],
['T','T','T','T','T','T','T']
];
*/
let matriz = [
['T','T','T','T','T'],
['T','F','F','F','T'],
Expand All @@ -35,11 +22,10 @@ class PaleteandoConParametros extends EscenaActividad {
];


this.cuadricula = new CuadriculaEsparsa(0,0,
this.cuadricula = new CuadriculaEsparsa(0, 0,
{ separacionEntreCasillas: 5, ancho: 360, alto: 360},
{grilla: 'casilla.chuy.png'}, matriz)

//this.ladoCasilla = 30;
this.fondo = new Fondo('fondo.chuy.png', 0, 0);

this.agregarPelotasDePingPong();
Expand All @@ -55,16 +41,16 @@ class PaleteandoConParametros extends EscenaActividad {
for (var i=1; i<this.cantidadColumnas-1; i++){
if (Math.random() < .5) {
this.agregarPelotaDePingPong(0, i);
//filaSuperior
//filaSuperior
}

if (Math.random() < .5) {
this.agregarPelotaDePingPong(this.cantidadFilas-1, i);
}
//filaInferior
}

for (var j=1; j<this.cantidadFilas-1; j++){

if (Math.random() < .5) {
this.agregarPelotaDePingPong(j, 0);
}
Expand All @@ -78,20 +64,12 @@ class PaleteandoConParametros extends EscenaActividad {
private agregarPelotaDePingPong(fila, columna) {
let pelota = new PingPong();
this.cuadricula.agregarActor(pelota, fila, columna);
pelota.aprender(Flotar, { Desvio: 2 });
pelota.escala *= 0.3;
// this.pelotas.push(pelota);
}

estaResueltoElProblema() {
/*
return this.pelotas.every((pelota) => {
return (pelota.nombreAnimacionActual() === 'prendida');
});
*/
const escena = pilas.escena_actual()

return escena.noHay("PingPong");

return pilas.escena_actual().noHay("PingPong");
}

}

0 comments on commit 8878d2c

Please sign in to comment.