views:

2491

answers:

6

I want to know how to program a 2D RPG game in C++ with SDL.

I searched, but I haven't found anything good. Many of the articles were too basic and didn't delve into anything practicical. Can anyone help give me some articles, free books or other resources so I can learn how to program a RPG using C++ and SDL?

EDIT:

I don't need documentation of SDL. I'm programming a RPG Game with SDL, and i need some examples that help me in this task.

+3  A: 

Have you tried gamedev.net? They have articles and tutorials for all ability levels, as well as active forums filled with helpful people.

Kyle Walsh
+4  A: 

Do you have examples of articles that are too simple?

Are these too simple: devshed or gpwiki ?

You might consider studying the topics separately. For example Bruce Eckels has, IMO, the best C++ books, "Thinking in C++ I & II" that will take you from novice to expert (including SQA techniques like unit testing) and they are available for free.

I've found that C++ is a harsh mistress and if you aren't prepared for the language, no tutorial specific to 'SDL and Games' will help much - this is true for any other advanced libraries, toolkits, etc.

bias
+2  A: 

Programming an RPG game isn't any different than programming any other game.

If you understand RPG's and you have a fully formed idea of what you want to do, then you use the same techniques that you would use working on any game.

Google is your friend here, use it to do the research to gain the skills you need.

Kevin Laity
Nice response, pretty much what I was thinking when I commented on the question...just less wordy!
Kyle Walsh
Ah, thank you! I think your comment was good too. I just hadn't seen it when I posted.
Kevin Laity
+1  A: 

You can find a tutorial that shows you how to create an adventure game using ActionScript here. While it is not SDL/C++ related, the general concepts should be easy to port across, or at the very least give you some idea on where to start.

alt text

Phyxx
A: 

Please dont give up. c++ was the first language i learned and i was frusturated at first but now i am quite satisfied with it.

b_boy_212