Which is the best available, free, easy-to-learn game programming library for C++?
closed as not constructive by BoltClock♦ Jul 6 '12 at 11:45
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Try Allegro. It's free, cross-platform and covers all the stuff you need to program games. |
|||||||||||
|
|
Ogre is the best Graphic Engine available for free. Ogre doesn't cover all field a game engine should do. Ogre doesn't handle physics, networking, AI, audio... If you want to collect a good set of free libraries I suggest you to use
If you need something powerfull (but expensive) I suggest you C4 Engine (350$) or Torque (150$). |
|||||||||
|
|
SFML is an excellent library to build a game engine over if you're going 2D. A clearly better alternative than SDL. Ogre and other libraries have already been cited but if you're going 3D it certainly is the best free 3D engine around, as it is the most flexible. |
||||
|
|
|
|
|||
|
SDL is also quite popular and there is a ton of information about it floating around the web, a lot of it geared specifically towards making games. This tutorial looks particularly good. |
|||
|
|
|
Like previously said Ogre3d and Irrlicht are probably your best options in regards to "free". If you also want "easy to learn" it boils down to Irrlicht. Very clean interface and great tutorials. Edit: Actually you should be a little bit more specific. Do you want 2d or 3d graphics? Do you need sound, physics and all that or just graphics? Which platforms do you want to target? Also, are you sure it has to be C++? While C++ is pretty much mandatory for professional game engines, for learning purposes C# with XNA or some scripting language is way better. |
|||||||
|
|
Check this out from 2D Boy, the makers of World of Goo: Rapid Prototyping Framework It's only for prototyping, but you can still learn from it. |
|||||
|
|
If you want C++ and your just starting out I'd go with Irrlicht (its free, and its code although not blazing fast like Ogre, its very well structured and a good example of what a C++ should look like). But if you're ready for some hardcore work Ogre would be better (although its source can be much more enigmatic and hard for a new comer). |
|||
|
|
|
Ogre3D is not a game engine. Some replies here imply that it is a game engine. It is a graphics engine. It is important to understand it. |
|||
|
|
|
My favourites are Irrlicht and Ogre. Both are very powerful, but (if you are familiar with C++) are fairly easy to get started with thanks to the documentation and examples. You can find a step by step tutorial that shows you how to get started with Irrlicht here, and with Ogre here. |
|||
|
|
|
Torque -- it isn't free, but it's great value at only $150. |
|||
|
|
You can try HEG or Cocos2d-X.They are both open source 2D game engines for C++ with a lot of examples.HEG is free and easy to learn.Cocos2d-X is the cross-platform version of cocos2d-iphone. |
||||
|
|
|
|||||
|
|
|
@OJ Irrlicht is a full game engine, it does more than rendering. Such as sound ,network, collision, animation, etc... It even has an editor for creating game areas. |
|||
|