Android :: Create A Simple Game Engine
Aug 17, 2010
I'm on my way with my first game, all design and that stuff are done, just coding left.I have successfully watched tutorials around the world wide web with information about Graphics and how to create a successfully thread-synchronization within it. Like now I have a SurfaceView-class and a Thread-class. The thread-class have this constructor to receive the Game Engine from my SurfaceView-class.
Simple code from Thread-class constructor: Code...
View 1 Replies
Mar 30, 2010
I'm a newbie to android and I want to develop my first 2d game..:) I read about engines ..but what do you advice me to go with<--for 2d game and what is the best tools I need to create the sprites or characters in addition to the map or the background?
View 11 Replies
View Related
Aug 16, 2010
I'm just starting into Android game development, and I'm looking into using an open-source game engine as the foundation of some of my ideas. Does anyone have any favorites? So far, AndEngine looks the most promising...I've also looked at Rokon. Any other notable engines I should be looking at.
View 2 Replies
View Related
Apr 29, 2010
I've just released version 0.2 of Gamine, an open source 3D game engine for Android devices: This release adds lots of major features, including particle effects, OBJ file import, picking, text rendering, transparent rendering, and more. Although it's still a very early version, I believe it is now complete enough to be used for real games. So give it a try, and I'd really appreciate any feedback about it.
View 3 Replies
View Related
Apr 25, 2008
Mages is multiplayer client/server game engine for Android and other mobile devices (currently Android and J2ME devices are supported, development for Windows Mobile in the progress). It allows developers to create internet multiplayer games by implementing only core game logic and GUI by using powerful engine API.
View 11 Replies
View Related
Jul 6, 2010
I´m new on Android 3D game development. I would like to know if there any engine/ API/ platform about 3D development that I could use. Or any tip which you could give me, like where I could start looking for.
View 6 Replies
View Related
Apr 15, 2010
In college, my senior project was to create a simple 2D game engine complete with a scripting language which compiled to bytecode, which was interpreted. For fun, I'd like to port the engine to android. I'm new to android development, so I'm not sure which way to go as far as deploying the engine on the phone. The easiest way I suppose would be to require the engine/interpreter to be bundled with every game that uses it. This solves any versioning issues. There are two problems with this. One: this makes each game app larger and two: I originally released the engine under the LGPL license (unfortunately), but this deployment strategy makes it difficult to conform to the rules of that license, particularly with respect to allowing users to replace the lib easily with another version. So, my other option is to somehow have the engine stand alone as an Activity or service that somehow responds to intents raised by game apps, and somehow give the engine app permissions to read the scripts and other assets to "run" the game. The user could then be able to replace the engine app with a different version (possibly one they made themselves). Is this even possible? What would you recommend? How could I handle it in a secure way?
View 1 Replies
View Related
Mar 29, 2010
I am setting up an open source 3D game engine for android. What license should we use? Thought we'd go with something like BSD or maybe GPL/LGPL, but getting confused about it. Want a license that helps developers - doesn't hinder them - and an engine that's as open as possible.
View 2 Replies
View Related
Oct 20, 2009
I am new to development with android. I am a beginner. I have to develop games using android and opengles. Please send me a simple game with step by step approach. please help me in this.
View 2 Replies
View Related
Jun 13, 2009
I am new to android i have develop a some e book for android mobile but i never develop a game in android and i would like to develop a first simple just like tic toc . so plz help me where can i start with.
View 2 Replies
View Related
Jun 27, 2010
I'm making a simple 2d game for the android platform, which works perfectly from version 2.0 and above, but when testing it on a 1.6 device, it crashes immediately. On running the debugger, it seems that I'm getting a null pointer exception in the thread class. I was just wondering if anybody has any ideas as to where the problem might be.
Maybe there's some compatibility issues with this code that I'm not aware of--I'm very much a beginner when it comes to using threads.
View 3 Replies
View Related
May 21, 2009
I want to make simple game on Android. But i don't know the approach to start. So any 1 can help me from where i should start and which particular API (package).
I don't know nothing. So start with first step.
View 5 Replies
View Related
Mar 31, 2009
I want to show off how good opengl es can display on my G1. Does anyone know a game with good 3D graphics that I should install for this?
View 13 Replies
View Related
Nov 19, 2010
There is a library called cocos-2d for iphone. There are number of games developed with that nowadays. Also, there is cocos-2d library available for Android too. I just wanted to know if that is also as stable as iphone one or its still not stable to be used in development.
Also, is there any other game engine available for Android? The ones that I know is AndEngine. Which one is better for development? If not both then will it better to develop using core Android API rather than using any game engine.
View 2 Replies
View Related
Sep 18, 2010
There are the following layout options to create interfaces for android.
AbsoluteLayout
FrameLayout
LinearLayout
TableLayout
RelativeLayout (and some more)
Which of the following is most suitable for designing simple games? Guessing that the absoluteLayout is easiest, but will it be problems with different screen sizes? What do you recommend?
View 2 Replies
View Related
Dec 3, 2009
This to all those who are into game development. i want to start on the game development in android, and just as a starter, can anyone suggest me an ebook or a simple procedure oriented blog or some link that'll help me to get things started.
View 4 Replies
View Related
Oct 13, 2010
Basically im trying to create a simple gui or a layout for android, and I'm really new to Android developing. I already found a way to create a list of stuff using ListActivity, and using the command Code...
View 2 Replies
View Related
Aug 4, 2010
I am looking for a developer to create a simple app for me. Its an insurance calculator. Please PM me if you can help. Its just a money multiplyer equation.
View 3 Replies
View Related
Sep 13, 2010
Is there a free simple chess game to install on the htc desire please?
View 3 Replies
View Related
Dec 14, 2013
I have website which Responsive, I Only need mobile apps for my site,so user can download .apk and iphone app from store and browse through app,
I have tried AppsGeyser but problem is its showing powered by AppsGeyser and also 50% ads commission, I don't want to use ads there, I just simple need to open website inside apps,
AppsGeyser is doing great ,only issue with powred by link, Is there any way/easy tutorial to create new app for my website ?
My website: qatarcommunity com Its compatible with every Mobile and tablet already
View 1 Replies
View Related
Dec 28, 2013
how to create an android app that would display a simple .txt document?
View 1 Replies
View Related
Aug 21, 2010
I'm new to Android and Java programming and I've manage to create a simple paint program, but how do I add a zoom feature? Right now I'm just extending the View class and using the "on Draw()" method. Do I have to use a Drawable to be able to add zooming functionality? I'm not really understanding the differences between the two. If I am way off base then please point me to a good tutorial on paint/zooming.
View 1 Replies
View Related
Jan 13, 2010
I'm thinking of creating an answering machine in android that automatically alerts the caller that he/she has reached the answering machine after an alloted time and then records the message. Is it possible in android?
View 4 Replies
View Related
Dec 29, 2009
what is best way to create app in which I only need to draw simple lines through onTouchEvent? When i use invalidate everytime i draw any line, that erase lines i draw before. But if I use some List structure to store drawed lines it lose performance. Is there any simple way to do it?
View 6 Replies
View Related
Jan 20, 2009
I am trying to create small simple application on emulator. I want to create button and display with some click event. I am not able to use findViewById method with R.id.abc. It always gives error as R.id cannot be resolved.
View 2 Replies
View Related
Oct 26, 2010
Now I am trying to create an android game. Game is in the book"Apress - pro Android games" But the program is force closed when I try to touch in the screen. Anyone have the full source code of that game "Space Baster".
View 4 Replies
View Related
Jun 3, 2010
I am trying to make a sniper style game where the user looks through a scope to see a large image that he can navigate. The user can only see part of the image at a time. The image is supposed to be much larger than the screen size that way he has to actually navigate and look for the enemy. How do I use an image that is larger than the screen that the user can navigate?It is kind of like when you are zoomed in to an image and you can pan the image and move it around to see different parts.
View 1 Replies
View Related
Jul 6, 2012
Me and my sister would like to create a platform game like Super Mario for android.
Where should we start? We don't won't a game engine because we want to create the game ourselves.
Any Programs to write the game in. We would like to create an Android app not a flash game or an HTML game.
View 5 Replies
View Related
Sep 28, 2010
I need to create game which is Bubble popper in Android . i do not have any idea that how to start the Application please give some suggestions so that i can start to work as soon as possible.
View 2 Replies
View Related
Mar 25, 2010
I found that game aiMinesweeper support skins. I have a images but i don't know how they have to be packed. Try to find any documentation about this, but nothing.
View 1 Replies
View Related