playing with pushbutton game engine

February 16th, 2010

I have been playing with pushbutton game engine for some time ,its really good to be able to create games without using flash IDE.there are few tutorial on pushbutton game engine ( there are really less tutorial on any game engines)this one is really a great resource for pushbuttongameengine http://pushbuttonengine.com/devgallery/pushbutton-tutorial-series  .I am also learning Tile Studio for creating Tiles and maps. http://tilestudio.sourceforge.net/pushbutton engine contains really cool things like tracking object, box2d wrapper, easy way to make animation and many more.I have used  sprites from the tutorial.here is link to what i have created till now , please wait for a while as i have not kept loading (loaders)http://codewithme.com/bugs/ I hope to create a full blown platform game with some orginal story line

posted a game in facebook , got inspiring feed back

December 28th, 2009

I posted my carrom board game as a facebook app http://apps.facebook.com/carromboard and got good number of monthly active users in 2 days,  really inspired by numbers if i get time i will post all of my games in facebook  I have been trying to teach myself some isometric drawings and isometric enginesif i get time i will try built something as farmville !!!!!!

amazing function returning function in javascript

November 24th, 2009

i just got some actionscript/javascript code where function returns the function. Confusing at first but really provided with amazing function call syntax:<script>outer=function(a,b){alert(a+b);inner=function(a,b){ alert(a+b); return inner}return inner;}outer(12,12)(12,3)(1,1)(1,1)(12,23);</script>

new Carousels in flash

November 13th, 2009

here is my new carousels in flash  with some 3d and z sorting

Carrom Board game completed

September 6th, 2009

I just completed a flash game using AS3 and box2d physics engine . i guess it is the first flash carrom board game with some physics in it click here to have a play with this gamenewlogo.jpg

another test with box2d

August 20th, 2009

Here are my other tests with box2d engine

  1. test 1
  2. main3.swf
  3. main4.swf
  4. main5.swf
  5. main7.swf
  6. main8.swf

Physics for flash with box2d

August 18th, 2009

I have been teaching myself box2d engine for as3 despite few resources and poor documentation i have come up with first test here is how it looks like .flash test with box2d

some linq like implementation for java

August 11th, 2009
  1.  Groovy closures
  2.  Quaere (http://quaere.codehaus.org/)I have been using this great for grouping and filtering
  3.  Lambdaj (http://code.google.com/p/lambdaj/)looks great with wonderful support for static typing
  4.  JRuby closures
  5.  JOSQL   http://josql.sourceforge.net/

webpage diff in google appspot

August 5th, 2009

I have recently worked with a diff tool (daisey) and installed a tool to compare two html files and get the difference.
i could not use built in xslt engine that comes with standred jre because it is not supported by google app engine. i had two choices xalan and saxon i prefered to go with saxon as because saxon is light weight than xalan.

regniraj.appspot.com is where my diff tool lies

very useful delete .svn and files

July 20th, 2009

copy following lines make a batch file and run the batch file

FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G"

i got this one somewhere

http://blog.snakehit.be/2007/08/29/svn-recursively-delete-svn-folders/