mirror of
https://github.com/gwenhael-le-moine/c-urs_-toil-s.git
synced 2024-12-26 09:58:48 +01:00
path is an array
This commit is contained in:
parent
cc34d45d15
commit
104918e0b8
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ function initialize_a_star( dom_container, level_index ) {
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
|
|
||||||
var path = { } + item_coord;
|
var path = [ ] + item_coord;
|
||||||
/* Calculating arrival coordinates */
|
/* Calculating arrival coordinates */
|
||||||
while ( /* Hairy conditions ahead */
|
while ( /* Hairy conditions ahead */
|
||||||
/* target cell is within level's boundaries */
|
/* target cell is within level's boundaries */
|
||||||
|
@ -201,6 +201,7 @@ function initialize_a_star( dom_container, level_index ) {
|
||||||
}
|
}
|
||||||
update_infos( );
|
update_infos( );
|
||||||
|
|
||||||
|
alert(path);
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -221,7 +222,6 @@ function initialize_a_star( dom_container, level_index ) {
|
||||||
|
|
||||||
// We're inside the board
|
// We're inside the board
|
||||||
if ( click.x == notmovingpos[0] && click.y == notmovingpos[1] ) {
|
if ( click.x == notmovingpos[0] && click.y == notmovingpos[1] ) {
|
||||||
// state.moving = ( state.moving != cell.BALL ) ? cell.BALL : cell.CUBE;
|
|
||||||
switch_actor( );
|
switch_actor( );
|
||||||
} else if ( click.x == movingpos[0] ) {
|
} else if ( click.x == movingpos[0] ) {
|
||||||
if ( click.y > movingpos[1] ) {
|
if ( click.y > movingpos[1] ) {
|
||||||
|
|
Loading…
Reference in a new issue