From 7113035f06216e4b96ea582427d2103768cf0f8a Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Thu, 14 Jul 2011 10:41:10 +0200 Subject: [PATCH] cosmetics --- star.js/js/star.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/star.js/js/star.js b/star.js/js/star.js index 686bbea..bdf5841 100644 --- a/star.js/js/star.js +++ b/star.js/js/star.js @@ -4,6 +4,7 @@ function initialize_a_star( dom_container ) { var direction = { UP: 'u', DOWN: 'd', LEFT: 'l', RIGHT: 'r' }; var assets = { + sprites: load_sprites( "HP48" ), 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 #################", @@ -28,8 +29,7 @@ function initialize_a_star( dom_container ) { "#################x# #x# #x # ## # ##x # #x x ### #x x #### x # ###x ## #@#H x ################# ", " ############## # # #x# #x # ## x # ### # x #x ## #x # xx x ###x # ## x ## #@#H x # ############## ", "################# # ### ##x x ##x### #x x# #### xx x# ## ## #x x # ## ## ## @#H###xx################# ", - "################# # ## x ##x x ## #x x ## ## x ## #x ## #x x# x ## ##x #@ H ################# " ], - sprites: load_sprites( "HP48" ) + "################# # ## x ##x x ## #x x ## ## x ## #x ## #x x# x ## ##x #@ H ################# " ] }; // First of all, setup our little DOM branch @@ -46,26 +46,26 @@ function initialize_a_star( dom_container ) { canvas: { //$() returns a jquery object, [0] to get the canvas itself context: $( dom_container + " #starboard" )[ 0 ].getContext( '2d' ), - offset: $( dom_container + " #starboard" ).offset(), - width: $( dom_container + " #starboard" ).width(), - height: $( dom_container + " #starboard" ).height() + offset: $( dom_container + " #starboard" ).offset(), + width: $( dom_container + " #starboard" ).width(), + height: $( dom_container + " #starboard" ).height() } }; var level_infos = { height: 9, - width:16, + width: 16, cell: { - width: DOM_infos.canvas.width / 16, + width: DOM_infos.canvas.width / 16, height: DOM_infos.canvas.height / 9 } }; var state = { - moving : cell.BALL, - distance_travelled : 0, - level : 0, - board : "" + moving: cell.BALL, + distance_travelled: 0, + level: 0, + board: "" }; ////// FUNCTIONS //////