C++ for games - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T12:23:02Zhttp://stackoverflow.com/feeds/question/1020054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1020054/c-for-games6C++ for gamesBi2009-06-19T21:17:13Z2009-12-11T09:20:31Z
<p>Hi</p>
<p>I am a relatively newbie in C++ and worked in the game industry for a few months. I am looking to get back to the industry and understand that one needs to be a very good C++ programmer (mainly bcos of how competitive it is to get into making games). I was wondering if there are really good websites online that would help with that. Basically I am looking for something that would help me MASTER C++ concepts as well as help me be a good coder through programming examples that I can code. </p>
<p>Thanks
Bi</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020062#10200627Answer by Skilldrick for C++ for gamesSkilldrick2009-06-19T21:19:38Z2009-06-19T21:19:38Z<p><a href="http://www.gamedev.net/" rel="nofollow">GameDev.net</a>.</p>
<p>In Resources, there is a "For Beginners" section. Read through all of this!</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020065#10200652Answer by Andrew Garrison for C++ for gamesAndrew Garrison2009-06-19T21:20:32Z2009-06-19T21:20:32Z<p>www.gamdev.net is an excellent resource for game programming.</p>
<p>I would also recommend the <a href="http://rads.stackoverflow.com/amzn/click/1584500492" rel="nofollow">Game Programming Gems Series</a>.</p>
<p>As far as mastering C++ concepts, who better to learn from than the guy who created C++?
He wrote this: <a href="http://rads.stackoverflow.com/amzn/click/0201889544" rel="nofollow">C++ Programming Language</a></p>
http://stackoverflow.com/questions/1020054/c-for-games/1020066#102006613Answer by Dima for C++ for gamesDima2009-06-19T21:20:56Z2009-06-19T21:20:56Z<p>Scott Meyers' books: "Effective C++", "More Effective C++", and "Effective STL" are absolutely essential for you.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020067#10200674Answer by Veehmot for C++ for gamesVeehmot2009-06-19T21:20:58Z2009-06-25T13:01:43Z<p>I totally recommend Brucke Eckel's: Thinking in C++</p>
<p>You can download for FREE at his webpage.</p>
<p><a href="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html" rel="nofollow">http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html</a></p>
<p>That should help you master C++, from there, you can start reading code from engines, like Ogre3D, that would be a better learning.</p>
<p>Later, you should check out books from GameDev.net, they are really cool. But in my opinion, the articles found in GameDev are outdated.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020080#10200801Answer by kevin42 for C++ for gameskevin422009-06-19T21:24:15Z2009-06-19T21:24:15Z<p>You should check out wildmagic at <a href="http://www.geometrictools.com/" rel="nofollow">http://www.geometrictools.com/</a>. This is a nice game engine with lots of sample code and related books. I'd highly recommend it as a deep examination of game engines on c++.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020084#10200841Answer by Keand64 for C++ for gamesKeand642009-06-19T21:24:53Z2009-06-19T21:24:53Z<p>I learned C++ (having no previous coding experience) with the following books:</p>
<p>"C++ Without Fear" by Brian Overland</p>
<p>"Sams Teach Yourself C++ in 24 Hours" Fourth Edition</p>
<p>And</p>
<p>"Beginning Game Programming through C++" Second Edition by Jonathan S. Harbour</p>
<p>The first one is very good and ver detailed, if a bit slow to read. The second I use mostly as a reference, the last one is very useful and quick to read, but it uses the phrase "beyond the scope of this book" fairly often.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020086#10200862Answer by m_oLogin for C++ for gamesm_oLogin2009-06-19T21:25:00Z2009-06-19T21:25:00Z<p>One way to get back in and have fun at the same time is to go through <a href="http://nehe.gamedev.net/" rel="nofollow">Nehe's OpenGL</a> tutorials, or by using higher-level gaming frameworks such as <a href="http://irrlicht.sourceforge.net/" rel="nofollow">Irrlicht</a> or <a href="http://www.ogre3d.org/" rel="nofollow">Ogre3D</a></p>
http://stackoverflow.com/questions/1020054/c-for-games/1020186#10201865Answer by markh44 for C++ for gamesmarkh442009-06-19T21:51:23Z2009-06-19T21:51:23Z<p><a href="http://www.parashift.com/c%2B%2B-faq-lite/" rel="nofollow">C++ FAQ Lite</a> is good. You can learn a lot from that website and there is also a related book which is also good.</p>
<p>The books by Scott Meyers contain very good specific advice too.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020211#10202117Answer by rmeador for C++ for gamesrmeador2009-06-19T21:56:29Z2009-06-19T21:56:29Z<p>Someone once said that it takes 10 years to learn C++. Having 14 years of C++ experience and still regularly learning new things, I'd say it's true. I would hesitate to call myself a C++ expert even after my considerable experience. Don't expect to master it overnight... you will go through many phases where you <em>think</em> you get it, then you'll discover a whole new world (for lack of a better term; I believe Richard Dawkins refers to this process as "conciousness raising"). I've come to accept that another one of these epiphanies is always ahead of me, hence why I'm not calling myself an expert.</p>
<p>That said, you must practice practice practice. I'll 2nd (or 3rd, or 4th, whatever we're at now) Gamedev.net. I spent a lot of time there back in the day...</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020403#10204030Answer by iwanttoprogram for C++ for gamesiwanttoprogram2009-06-19T22:59:46Z2009-06-19T22:59:46Z<p>The above are good suggestions for learning C++ and games...</p>
<p>I will give you a recommendation for software if you just want to make games without a lot of programming background...</p>
<p>You could quickly make simple games and then learn the C++ and other languages it really takes to make serious games...</p>
<p>Software:</p>
<p>Gamemaker</p>
<p><a href="http://www.yoyogames.com/make" rel="nofollow">http://www.yoyogames.com/make</a></p>
<p>The Games Factory 2</p>
<p><a href="http://www.clickteam.com/eng/tgf2.php" rel="nofollow">http://www.clickteam.com/eng/tgf2.php</a></p>
<p>Books</p>
<p>Picture Yourself Creating Video Games, 1st Edition</p>
<p>Awesome Game Creation: No Programming Required, 3rd Edition</p>
<p>Make Amazing Games in Minutes, 1st Edition</p>
<p>Good luck to you...</p>
http://stackoverflow.com/questions/1020054/c-for-games/1020646#10206463Answer by Zan Lynx for C++ for gamesZan Lynx2009-06-20T00:49:04Z2009-06-20T00:49:04Z<p>C++ is a great language and I love it. It builds ridiculously fast code. With good use of profilers, profile driven optimizers, intermodule optimizers, const and restrict keywords, MMX/SSE/vector intrinsics and other stuff it can build ludicrously fast code.</p>
<p>You probably have your eye on job listings from the bigger game companies and there <em>is</em> a lot of C++ demand.</p>
<p>That said, it isn't the only way to develop games. I just want to present some alternatives.</p>
<p>Microsoft's .NET stuff works pretty well. Check out their <a href="http://msdn.microsoft.com/en-us/xna/default.aspx" rel="nofollow">XNA platform</a>.</p>
<p>You can also write awesome games even in Java. There is a <a href="http://bytonic.de/html/jake2.html" rel="nofollow">Java version of Quake2</a> that can get 1,000 FPS in some areas on my Core I7 system at home. Most of the heavy work is in the OpenGL and graphics drivers of course.</p>
<p>Tons of people are writing fun games in Flash, which has language performance much worse than Java or .NET.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1022475#10224750Answer by nairdaen for C++ for gamesnairdaen2009-06-20T20:28:23Z2009-06-20T20:28:23Z<p>I'd recommend starting with the basics:</p>
<p>The C programming language, by Kernigan and Ritchie.
With this book you'll be closer to C's internals than with others. Then you can go with C++ books.</p>
http://stackoverflow.com/questions/1020054/c-for-games/1044054#10440540Answer by Kieveli for C++ for gamesKieveli2009-06-25T13:49:29Z2009-06-25T13:49:29Z<p><a href="http://www.research.att.com/~bs/3rd.html" rel="nofollow">The C++ Programming Language</a>
by Bjarne Stroustrup.</p>
<p>I use this to this day. It contains succinct descriptions of all the features of the C++ language. When I search on the web for this information, it's flourished beyond clear understanding. Bjarne did a really good job of clearly defining all the principles of the language, and it's a must-have. I haven't read the whole book, but I've read sub-sections.</p>
<p>(Also gave a vote up for Effective C++, Effective STL, and <a href="http://www.gotw.ca/publications/xc%2B%2B.htm" rel="nofollow">Exceptional C++</a> (Sutter))</p>
http://stackoverflow.com/questions/1020054/c-for-games/1886814#18868140Answer by Mikhail for C++ for gamesMikhail2009-12-11T09:20:31Z2009-12-11T09:20:31Z<p>It seems that nobody has yet reccomended <a href="http://yosefk.com/c++fqa/" rel="nofollow">C++ FQA Lite</a>. FQA stands for "frequently questioned answers". This FQA is called "lite" because it questions the answers found in C++ FAQ Lite.</p>
<p>For me <a href="http://yosefk.com/c++fqa/" rel="nofollow">C++ FQA Lite</a> is really an eye-opener on C++.</p>