Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

Anyone have any experience with this? This hasn't been refereed as mush as it 'looks/sound' like.

http://www.marek-knows.com/index.php5

Among many other products, the site provides game engine development video, which is around 45hours long. Starting from context creation, model loading, scene graph, animation. But it looks like a little old. Is it still useful?

share|improve this question
That video series is as long as some game development competitions. – Keeblebrox Jul 4 '11 at 20:01
1  
Ye, But it covers all the basics you need to know about while developing an engine. That's the intriguing part. – iamcreasy Jul 4 '11 at 20:04
6  
More accurately it claims to cover all the basics you need to know. I'm highly suspect of the content being worth the money. – Josh Petrie Jul 4 '11 at 20:21
3  
From a glance it's using msvc 2008, and you say it's old? Most of the stuff that's still relevant today is older than any of us =) – Jari Komppa Sep 8 '11 at 8:39
1  
@iamcreasy Yes, there is. First, most of the stuff you need to learn are not really dependent on how you do rendering, and second, if you want to support low-end chips (such as intel's), shaders are still not there. All this said, I don't know if Marek's tutorials are good, I'm just answering your question of whether it's still relevant, and yes, it is. – Jari Komppa Dec 7 '11 at 8:52
show 3 more comments

2 Answers

Depends on the section. I can tell you for certain that any tutorials on C++, basic game development maths, and very basic network programming won't be particularly dated if they were complete and correct when these were written. The fields just haven't changed much.

On the other hand, OpenGL has undergone a lot of changes recently. Personally speaking, I wouldn't pay for a series of tutorials that covered OpenGL <2.0, since the fixed-function pipeline has been eliminated altogether in modern versions of both major graphics APIs. So in that sense, yes, any OpenGL tutorial written without extensive use of shaders is going to be extremely dated.

share|improve this answer

I have personally bought these tutorials, both the game engine tutorial and the alterative tutorial using the game engine to build a game (recently i have also got the networking tutorial as well)

In my personal opinion if you are wanting a set of tutorials to show you how to create a fantastically rendered terrain with prepass etc etc these tutorials are not for you.

However if you are looking for a solid introduction to game development with c++ look no further. The tutorials take you through the very basics of not only coding a game engine but understanding what you are doing and why you are doing it.

Yes they may be a bit out of date but then again everything is out of date the second its published.

I would certainly recommend then, i think the detail they go into is fantastic and definitely good value for money.

share|improve this answer
Is the engine is based on fixed function rendering? does it touch shader based? – iamcreasy May 19 '12 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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