• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps 2D ENGINE ( pics and apk )

Rob2012

Lurker
Hi guys,
For about two month I've been working on a 2d engine and now it is very close to being finished. :)

Before releasing the engine itself, I wanted to post a demo here to see that you think about its performance, etc.

In demo you can
- throw bombs by pressing and dragging your aim from the red "X".
- pause by pressing the "search" button.
- open menu with the "menu" button, choose timer or impact bombs.

5lxXv.png


Jk6OK.png


The engine itself extends a SurfaceView, so to start using it, you'll just need to initialize it and setContentView.

Code:
RoboLogicView roboLogicView = new RoboLogicView(this);
setContentView(roboLogicView);
And to add actors, you'll just need to put a PNG drawing, along with an XML file describing its physical parametrs, into the assets folder and add it to the engine with just one line of code.

Code:
Actor tree = roboLogicView.createActor("tree", 13, 19 );
As for speed and performance, a reasonable size "level" give me 35+ FPS on my Nexus S.

Let me know what you think! :)

P.S.
At first I wanted to call it RoboLogic, but now I see that someone already has something under that name in the appstroe. Maybe you could suggest something better?
 

Attachments

I've moved this to the application development forum where folks will know what to do with it and be able to give you better feedback.:)
 
Back
Top Bottom