SFML community forums
General => General discussions => Topic started by: paupav on July 10, 2014, 11:31:24 pm
-
So, can anyone suggest me some simple SFMl project (as simple as possible, it even doesn't have to be playable.) so that I can see how should I create next game or rewrite my snake game.
-
You need to ask a more specific question if you want good answers.
Learn How To Ask Questions The Smart Way (http://www.catb.org/esr/faqs/smart-questions.html) :)
If all you want is suggestions for simple games to write to practice C++ and SFML skills, then I suggest implementing the following (none of them should take more than an evening, but implementing a simple version of each of them will teach valuable lessons):
- Tic-tac-toe (http://en.wikipedia.org/wiki/Tic-tac-toe)
- Battleship (http://en.wikipedia.org/wiki/Battleship_%28game%29)
- Mastermind (http://en.wikipedia.org/wiki/Mastermind_%28board_game%29)
- Memory (http://en.wikipedia.org/wiki/Concentration_%28game%29)
-
I meant project in SFML that someone has made and published code and files. I've found few projects that re too complicated for me (e.g some guy made engine which is used by few games).
I wanna learn more object oriented programming. And how to move everything outside of the main() function..
http://en.sfml-dev.org/forums/index.php?topic=15765.0
-
Buy a good book. Then read it.
Mastering C++ can't be done just by watching a few video tutorials and reading a few online documents describing some neat detail.
C++ is a complex language, and mastering it takes (literally) years. If you want your learning to progress as fast as possible, then pick up a few good books written by accomplished and reputable experts in the field and read those (and do the exercises etc).
For example: http://www.amazon.com/dp/0321958314/?tag=stackoverfl08-20 , http://www.amazon.com/Primer-Plus-Edition-Developers-Library/dp/0321776402 or most things on the stackoverflow list: http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list
Then once you know C++ well (it'll take a couple of years, but don't give up). Then move on to learning various libraries - Like SFML and read books like this: http://www.packtpub.com/sfml-game-development/book
-
Buy a good book. Then read it.
Mastering C++ can't be done just by watching a few video tutorials and reading a few online documents describing some neat detail.
C++ is a complex language, and mastering it takes (literally) years. If you want your learning to progress as fast as possible, then pick up a few good books written by accomplished and reputable experts in the field and read those (and do the exercises etc).
For example: http://www.amazon.com/dp/0321958314/?tag=stackoverfl08-20 , http://www.amazon.com/Primer-Plus-Edition-Developers-Library/dp/0321776402 or most things on the stackoverflow list: http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list
Then once you know C++ well (it'll take a couple of years, but don't give up). Then move on to learning various libraries - Like SFML and read books like this: http://www.packtpub.com/sfml-game-development/book
I've actually looked for that book in the book store, but as it seems it still isn't translated to the Croatian. I'll see if they have any similar book. You know, it is always easier to learn something on your native language no matter how good you know English. I'll post titles so that I don't learn from the bad source/s again. If that's okay?
-
I don't really know if I agree. For me personally, reading books in english is much better than in my native language (danish) since translations are mostly crap and I read faster in english anyway.
There's also the fact that all the keywords in C++ - and all C++ libraries you are going to encounter - are in english - as well as most books you'll find on the subject. So you might as well accept now rather than later, that english is the language of your profession and you might as well learn it and get used to reading literature in that language... Most of us do.....
-
I don't really know if I agree. For me personally, reading books in english is much better than in my native language (danish) since translations are mostly crap and I read faster in english anyway.
There's also the fact that all the keywords in C++ - and all C++ libraries you are going to encounter - are in english - as well as most books you'll find on the subject. So you might as well accept now rather than later, that english is the language of your profession and you might as well learn it and get used to reading literature in that language... Most of us do.....
I second this.
-
I don't really know if I agree. For me personally, reading books in english is much better than in my native language (danish) since translations are mostly crap and I read faster in english anyway.
There's also the fact that all the keywords in C++ - and all C++ libraries you are going to encounter - are in english - as well as most books you'll find on the subject. So you might as well accept now rather than later, that english is the language of your profession and you might as well learn it and get used to reading literature in that language... Most of us do.....
Okay, thanks, I'll order one from the amazon. Any suggestion what should I do until it arrives? Also do you think I should be able to complete that book before spring breaks re over?
-
The SFML Game Development book is awesome (http://www.packtpub.com/sfml-game-development/book).
I made games before and after having read that book, I really felt the difference the book made on my coding habits, knowledge and development speed.
Some of these games are on my GitHub account, but I dunno if you will be able to understand them without the theory the book brings (it only depends on your level, which I don't know).