I want to learn AndEngine.
How should I start? I don't see any good examples. I even tried finding the downloadable source code for AndEngine and MagneTank but no luck.
I suggest http://www.matim-dev.com/tutorials.html which includes many tutorials. These are often supported by code examples. I especially suggest the "Full game tutorial articles series". With this you will develop a game from scratch and learn very much about the AndEngine.
Try to checkout their project from here and download some sample source from internet e.g. here and run the examples keeping both source in a common project.
If you are looking for learning basic AndEngine game programming, I suggest looking at this book: AndEngine for Android Game Development Cookbook.
This is a very good way to start. I have learned it in just 1 week, and am now creating my own game.
Drop Block is an exampmle from google play store.
http://jimmaru.wordpress.com/2011/09/28/andengine-simple-android-game-tutorial/
and the famous example towers......> http://www.raywenderlich.com/12065/how-to-create-a-simple-android-game
Since AndEngine is composed of several sublibraries I created a repo manifest to use in order to have all the needed to try the examples.
You can find it here: https://github.com/gipi/AndEngine-repo
Many People have already answered here and I think they all are right:
But I want to include my answer as well , because I started as a rookie in AndEngine and now I am still a rookie but with a little more knowledge than earlier.
1) Install the AndEngine APK from Google Play, test all the functionality this engine shows in that, see if the game you are thinking to make is possible with all those tools in the APK.
2) As soon as you are ready go to github page of AndEngine and install it.
3) Tweak the Example (MOST IMPORTANT), you will not learn what AndEngine is and what it can or cant do unless you tweak the examples in the AndEngine library.
4) Now you have a basic understanding, so its time to start a game.
5) Go to matim-dev blog on how to make a complete game tutorial , it is the best tutorial on andengine so far in Internet.
6) If any problem ask your question in the andengine forum , well they never answer quickly but all the problems you will face are already discussed there so no problem just go for it and start AndEngine.
Pros and cons of AndEngine so far for me :
Pros :
i) not well documented, but still you can tweak the code easily and understand very fast.
ii) Use of Box2D is great with this, Animation Sprite everything works fine.
cons
i) Very slow compared to other frameworks, deleting and detaching bodies and sprites is very clumsy, after 3 months of development of AndEngine today also I am facing problems with deleting sprites and detaching bodies in AndEngine.
ii) Attaching google ads is a nightmare in AndEngine.
Try some basic app development on Android to get Fimilar with environemt.
But to get basic concepts you should read first chapter of
AndEngine for Android Game Development Cookbook by Jayme Schroeder
and Brian Broyles
from here
Create a account on Github(and fetch the code)/or download the AndEngine(Zip) locally. and experiment with examples.
further more, Download andEngine Android app to see examples in Motion!!
This is also useful link: Java Code Geeks
Related
I already found some answers to this question here but they were all two years old or more.
Can anyone suggest me a cross platform (iOS+Android) mobile 2D game engine (Java or C++)?
I'd go with AndEngine but it supports Android only.
Thank you.
I recommend libGDX. As you may have read from a few of the other threads in StackOverflow, it is one of the popular ones and there is sufficient material provided to assist you to get familiar with.
Here is their Github page, which has loads of information to get you started (see external tutorials in the wiki). I would also like to recommend dermetfan's libGDX channel for a basic introduction that I have found useful with certain components (search dermetfan libGDX in youtube, would provide link but I'm restricted to two links).
Personally, I have used libGDX as a mobile 2D game engine for a work project, and I've found it really nice. Hope this helps!
I've recently started working with AndEngine. I went through online tutorials, video lectures, bought a book by Rick Rogers but the basic problem with AndEngine is that all its study material is out-dated and the new version has most of the packages changed.
I tried to execute AndEngine examples but since they are built using previous version of AndEngine they don't work with new libraries. I'm very confused how should start learning new AndEngine since I can't find any tutorials or examples!
It would be really helpful if you could provide me with a link to a previous version of AndEngine so that I could atleast implement older examples. Any better alternative to AndEngine would also be appreciated!
I recently started working on latest AndEngine, and I am developing a 2d game. Here is very nice tutorial and it's using latest AndEngine code to get you started :).
In my point of view AndEngine is best for Android 2dGame development. Other good option is Cocos2d-java but it lacks proper documentation etc. And if you are good in developing c++ or Lua then you should have a look at cocos2d-x for cross platform development. Here is the link for different 2d-game Engines including there game samples and other details.
I am trying to learn to create 2D games on android, and I have heard that andengine is one of the best tools for that. I tried using it, but unfortunately there I have encountered numerous issues with andengine having little documentation, and no stable place where I can learn things. So my question is that what would you recommend to a completely newbie developer? Should I try learning andengine, or learn things the hard way? And can you please provide some good links to learn? So far a lot of links I found were quite old and would not work properly all the time.
Thanks to anyone for their help.
Also just to clarify, I am middle skilled in 2D game development (especially in java and C++), so I know the basic structure, my main issue is making things run on an android since I am completely new to android itself.
With andengine, your best bet is to download, compile and run the sample games and examples. From reading through and understanding the source code for those, you'll learn how to use it. The examples in particular are effectively documentation, they're very good!
I have looked around and cannot find any documentation or tutorials on how to run the Mages game engine in android:
http://code.google.com/p/mages/downloads/list
From the list above could someone please explain what I need to download. I need to make a simple game between 2 emulators. I noticed that the installation files in the link above has a clien.apk and a GASP file which is for Tomcat. I already have tomcat installed so this would be ideal.
Please help I am really stuck on how and which one to use.
Edit: Would it be easier just to use engine for this, is it possible to create a game between 2 players using andengine?
Thanks
Well I found a link which shows how to setup AndEngine so I'll just try and use that for now.
Thanks for all the answers they really helped.
http://www.youtube.com/watch?v=q-genimutmQ&feature=player_embedded
I am trying to make a simple pong game using opengl-es. I have checked out some of the tutorials/samples, but most of them are pre-dated to 2009.
I am familiar with game programming, and consider pong to be the hello-world!
Right now, I intend to make it using their supplied SDK (2.3), but eventually I want to make it in NDK, so I can port my other work to android.
Would anyone have a good reference for a starting point ?
Thanks
The Android dev guide. There are a few samples included in the documentation that cover the basics. Probably enough for pong.
https://gamedev.stackexchange.com/ might be a better site for game specific questions.