Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

2d Framework c++

I'm looking for a 2d framework with such things as layers/particles/screen manager/sprite batch/parallax/etc coded in c++ out there? I'm looking for somethings that doesn't necessarily have graphics, because I want to add it on to airplay sdk. Or something I can easily rewire to do the graphics through airplay.

EDIT: I found what I needed: cocos2d was potted to c++ and airplay sdk (cocos2d-x). Thanks for the answers anyways!

like image 446
Caleb Jares Avatar asked Oct 14 '10 23:10

Caleb Jares


2 Answers

It may be a bit to hands on, you seem to be looking for more an engine, but you could definetly use http://www.libsdl.org/ for what you've requested (2D screen manager), also is quite an easy stepup to using sprites.

It may just be a bit more work than a simple plug and play or 'rewire'.

like image 164
deceleratedcaviar Avatar answered Sep 28 '22 01:09

deceleratedcaviar


Check out Cairo Graphics, it is 2D engine with multi layer support, and it can output to both screen and PDF.

like image 35
Andrew Avatar answered Sep 28 '22 01:09

Andrew