move things around (it's getting late, time to stop fiddling with this pointlessly)

This commit is contained in:
Gwenhael Le Moine 2011-07-13 23:00:02 +02:00
parent 032996dd52
commit 0670cb375e

View file

@ -16,6 +16,15 @@ function initialize_a_star( dom_container ) {
RIGHT : 'r'
};
var state = {
moving : cell.BALL,
distance_travelled : 0,
level : 0,
board : "",
board_infos : { },
dom_container : dom_container
};
var levels = [ "#################@## x#H## x #### ##x ## ## x #### x x x ## x x## x ## ##x x#################",
" # # # # # ### x @# #x #x x # # x x # # # x # # #H# x # # # # #xx## # # # # ",
"################# x#@## ## ##H## #x x ## x x## x## #x x x# x### ##x #x x x####x ##x #################",
@ -326,15 +335,6 @@ function initialize_a_star( dom_container ) {
return sprites;
}
var state = {
moving : cell.BALL,
distance_travelled : 0,
level : 0,
board : "",
board_infos : { },
dom_container : dom_container
};
var starhtml = '<div class="gstar">';
starhtml += '<aside id="help">' + format_help( state ) + '</aside>';
starhtml += '<canvas id="starboard" width="320" height="180"></canvas>';