Possible Duplicate:
What's a good book for learning OpenGL?
C++ OpenGL Books

I've been programming with Objective C for about 3 years now and I have been learning OpenGL for the past six months or so. I feel fairly confident with both but I really don't know how to create a 3D game with Objective C. I've found many tutorials written in C++ but I have a tough time trying to port all of the code from the lessons to Objective C to actually understand what is going on. I was hoping that there would be someone here to recommend a good book to learn from.

link|improve this question
@GregHewgill Or this one, which has no deprecated Red Book/Nehe-answers: C++ OpenGL Books. Don't be too fast with close-voting or duplicating when questions and their answers get too old in a field evolving that fast. – Christian Rau Oct 9 '11 at 23:32
@GregHewgill Right but I want to know how to do it with Objective C not C++ – Randy Simms Oct 9 '11 at 23:35
@ChristianRau: If the answers to What's a good book for learning OpenGL? are out of date and you know of better options, please improve the answers on that question. – Greg Hewgill Oct 9 '11 at 23:52
@RandySimms As an Objective-C OpenGL developer that does not work on iDevices you stand a bit alone. If you don't want to use OpenGL ES (which you shouldn't when developing for desktop), I would rather suggest to take a C-based book (though the Red Book is a bit outdated), which shouldn't be that difficult to translate into Objective-C, considering that the OpenGL interface is pure C anyway, no matter in what language you use it. But I don't think you will find an OpenGL book using Objective-C that is not targeted at OpenGL ES. – Christian Rau Oct 9 '11 at 23:57
feedback

closed as exact duplicate by Greg Hewgill, Christian Rau, Nicol Bolas, genpfault, Graviton Oct 10 '11 at 4:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

The O'Reilly books have really helped me out. Go look at http://www.amazon.com/iPhone-Game-Development-Developing-Objective-C/dp/0596159854

link|improve this answer
Im hoping not to learn on the iOS platform. I'll stick to the Mac platform for now. – Randy Simms Oct 9 '11 at 23:24
feedback

If you know Objective-C, and you know OpenGL, then what's left for you is to learn some techniques for developing a 3D engine.

A book that is great for this is iPhone 3D Programming, by Philip Rideout. This is an advanced book that covers the creation of iPhone/iPad apps with OpenGL ES 1 and 2. Many times the author provides GLES 1 and 2 versions of the same app, so that you can compare.

But there is a gotcha. The code examples in this book are written majorly in C++ (though all the examples compile and run on iPhone/iPad and the Simulator). I recommend that you give the book a chance any way. I'm applying the concepts from this book on some Python apps that I build on Windows, to give you an idea of how general the concepts on this book are. As long as you know how to read basic C++ code you will learn a lot, and you'll be able to take the acquired knowledge and implement your game in Objective-C if you like it better than C++.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.