Search found 27 matches

by Boogy
Thu Apr 28, 2011 4:04 pm
Forum: Programming Discussion
Topic: OBJ Loader
Replies: 11
Views: 1529

Re: OBJ Loader

Boogy wrote:
gamenovice wrote:I would also likea tutorial on obj :D
I'll get started then :P
I have finished writing a small obj loader in c++ together with OpenGL. :)
Now I only need to explain how it works :roll:
by Boogy
Thu Apr 28, 2011 2:39 pm
Forum: Programming Discussion
Topic: Is it even necessary?
Replies: 11
Views: 1171

Re: Is it even necessary?

Header files are a way to hide the implementation aka abstraction. It also allows standards to be followed between cpp files.
by Boogy
Thu Apr 28, 2011 2:36 pm
Forum: Programming Discussion
Topic: OBJ Loader
Replies: 11
Views: 1529

Re: OBJ Loader

gamenovice wrote:I would also likea tutorial on obj :D
I'll get started then :P
by Boogy
Tue Apr 26, 2011 12:28 pm
Forum: Game Development
Topic: [School Project] 3D Engine + Shaders
Replies: 12
Views: 2645

Re: [School Project] 3D Engine + Shaders

I smell OpenGL fans :lol:
by Boogy
Tue Apr 26, 2011 5:09 am
Forum: Game Development
Topic: [School Project] 3D Engine + Shaders
Replies: 12
Views: 2645

Re: [School Project] 3D Engine + Shaders

N64vSNES wrote:This sounds cool! :)

So uh, decided whether you're using OpenGL or DirectX yet?
*pulls out gun*
I think I'm going with DirectX :)
by Boogy
Tue Apr 26, 2011 5:08 am
Forum: Programming Discussion
Topic: C++ O.O.P HELP NEEDED!
Replies: 9
Views: 871

Re: C++ O.O.P HELP NEEDED!

dandymcgee wrote:That's fine, just keep in mind that #pragma is not supported by every compiler.
True, but if you still use a compiler that doesn't have support for #pragma you really need to upgrade :P
by Boogy
Mon Apr 25, 2011 3:32 pm
Forum: Game Development
Topic: [School Project] 3D Engine + Shaders
Replies: 12
Views: 2645

Re: [School Project] 3D Engine + Shaders

BTW my teacher puts his lectures on his website: myapp.nl. Some great tutorials on 3D programming :)
by Boogy
Mon Apr 25, 2011 3:27 pm
Forum: Game Development
Topic: [School Project] 3D Engine + Shaders
Replies: 12
Views: 2645

[School Project] 3D Engine + Shaders

I just received the new assignment for this block :) We have to create a working rendering engine using one of the popular API’s, either DirectX or OpenGL together with the programmable shader pipeline. The requirements are: For a minimum grade of 6 Must demonstrate proper lighting effects for point...
by Boogy
Mon Apr 25, 2011 3:20 pm
Forum: Programming Discussion
Topic: OBJ Loader
Replies: 11
Views: 1529

Re: OBJ Loader

Yes, I have. As I mentioned in the original post, I attempted to create my own by parsing the file but it failed. I think it failed somewhere near the actual putting together of the polygons(triangles). Yes it would help to have a tutorial. If I have some spare time tomorrow I might put together a ...
by Boogy
Mon Apr 25, 2011 3:05 pm
Forum: Programming Discussion
Topic: C++ O.O.P HELP NEEDED!
Replies: 9
Views: 871

Re: C++ O.O.P HELP NEEDED!

Your header guards aren't right... They should be like: #ifndef CLASS_NAME #define CLASS_NAME //class.... #endif The define shouldn't come after the class. This is actually nothing more than a matter of preference. You could put the #define smack in the middle of the class, as long as it's between ...
by Boogy
Mon Apr 25, 2011 2:59 pm
Forum: Programming Discussion
Topic: OBJ Loader
Replies: 11
Views: 1529

Re: OBJ Loader

Have you checked Wikipedia?
The OBJ format isn't that hard to understand.

If you want I can make a small tutorial on how to easily load an .obj file.
by Boogy
Mon Apr 11, 2011 2:19 pm
Forum: Game Development
Topic: [School Project] Rendering Engine
Replies: 22
Views: 4739

Re: [School Project] Rendering Engine

bnpph wrote:It says I need d3dx9_43.dll - could you provide it?

Also, no source? :(
I think you need to install the latest DirectX version.

And I will not publish the source, yet....
I am working on my portfolio website and maybe I will put some source code up there.
by Boogy
Mon Apr 11, 2011 3:07 am
Forum: Game Development
Topic: [School Project] Rendering Engine
Replies: 22
Views: 4739

Re: [School Project] Rendering Engine

Today the assignment is due.
I have all the basic requirements and a couple of extra's :)

You can download it here.

There is no animation blending :( as I didn't had enough time to do some proper research on it
by Boogy
Wed Apr 06, 2011 5:42 am
Forum: Game Development
Topic: [School Project] Rendering Engine
Replies: 22
Views: 4739

Re: [School Project] Rendering Engine

Some new screenshots :)

Image

Image

Image
by Boogy
Mon Apr 04, 2011 3:33 pm
Forum: Game Development
Topic: [School Project] Rendering Engine
Replies: 22
Views: 4739

Re: [School Project] Rendering Engine

That was quick :) I was just asking 'couse the terrain looked blocky, but now that I think about it the triangle placement shouldn't matter that much, however I think it would look smoother if the height of each vertex were calculated as bilinear (which I'm guessing it's not and that the height map...