Skip to main content
Email Password   helpLost your password?

Screenshots



(click the thumbnails to expand)

Introduction

For my fourth year computer graphics course I wrote a little 3D engine using C# and the .NET platform.  I decided to go this route as opposed to the C++ route that everyone else took in the course because I wanted to see whether C# lived up to it's hype.  Surprising, after writing about 600kB of code in C# it seems like it is a decent language after all and possibly an effective replacement for the C++ even in demanding field of real-time graphics.  When I compare C# to C++ I find it's best features are garbage collection, less convoluted syntax and true object orientation.

Just a quick disclaimer before I go too far -- please remember that I am only a student (and a cognitive science/neuroscience student at that) and not John Carmack thus don't get your expectations too high.

How the Engine Works

I must immediately give credit for the OpenGL/C# library that Lloyd Dupont created -- it is an amazingly easy library to use.  I have modified the library in the course of creating this project but not significantly.

This 3D engine imports it's level/worlds data from the popular Worldcraft editor .  Strangely, Worldcraft outputs it's world/level data in sets of bounding planes which define the contours of solid objects.  Thus one has to convert the bounding plane sets into their respective sets of polygons.  The resulting set of faces is then quickly optimized to remove hidden/redundancy faces created by adjacent objects.  Then this face set is converted into a binary space partition tree (commonly just called a "BSP tree") representation for both collision detection purposes and efficient visibility calculations.  There is also some auxiliary code that recognizes specifically defined entities in the Worldcraft data such as the animated pond and the various duck sprites -- but that is pretty simple.

This engine allows for polygons to be rendered using reflection mapping, (fake) Phong shading, Gouraud shading or just simple flat shading.  The engine uses reflection mapping to get the somewhat realistic look of the pond's waves.  The (fake) Phong shading is used on the ducks in order to make them look shiny and smoothly rounded -- the primary effect of Phong shading (usually called specular reflection) is the viewer/camera dependent white highlights.

The 600kB of code responsible for this engine is divided into three parts: "ExocortexNative", a C++ support library for OpenGL and TIFF images, "Exocortex", a C# library that I am using across projects, and "ExoEngine", the code that is specific to this application.  The "Exocortex" library actually contains some fairly reusable classes for 3D applications such as OpenGL compatible matrix, vector and quaternion classes as well as more specialized classes for Marching Cubes and multidimensional fast Fourier transforms.

Source Code

Full Source Code with VS.NET RC1 Project Files (2.3MB)

Binaries

Currently distributing C# applications is a lot of trouble since the .NET platform is still in beta.  Hopefully the compatibility between different .NET versions will be better after it's release.

Option A: Full Installer (24.4MB)

Option B: Application Files Only (1.0MB)

Option C: Sorry, no binaries for you.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralExo engine installer Pin
Anthony_Yio
3:44 16 Apr '04  
GeneralRe: Exo engine installer Pin
Ben Houston
6:22 16 Apr '04  
Generalit rocks! Pin
chenhuisheng
23:00 8 Apr '04  
GeneralWhere are the marching cubes? Pin
Peter Schatz
8:20 27 Feb '04  
GeneralRe: Where are the marching cubes? Pin
Ben Houston
6:22 16 Apr '04  
GeneralC# game programming feasability Pin
Filip Strugar
12:05 17 Oct '03  
GeneralRe: C# game programming feasability Pin
Roman Godhill
0:49 27 Dec '06  
GeneralPerformance (or not) Pin
Brian Azzopardi
0:25 29 Jul '02  
GeneralRe: Performance (or not) Pin
Ben Houston
8:15 29 Jul '02  
GeneralWorking on ver 1.0 ? Pin
Trond Nilsen
11:49 23 Jan '02  
GeneralRe: Working on ver 1.0 ? Pin
Ben Houston
10:25 24 Mar '02  
GeneralExoEngine Pin
Paul Selormey
18:08 10 Jan '02  
GeneralRe: ExoEngine Pin
Ben Houston
19:02 10 Jan '02  
GeneralImpressive!!!! Pin
Nish [BusterBoy]
17:55 10 Jan '02  
General[Msg Deleted] Pin
Fazlul Kabir
17:42 10 Jan '02  
GeneralRe: C# and Real Time Graphics Pin
Ben Houston
19:06 10 Jan '02  
GeneralRe: C# and Real Time Graphics Pin
Nish [BusterBoy]
20:45 10 Jan '02  
GeneralRe: C# and Real Time Graphics Pin
CLaW
21:55 10 Jan '02  
GeneralRe: C# and Real Time Graphics Pin
Nish [BusterBoy]
22:08 10 Jan '02  
GeneralRe: C# and Real Time Graphics Pin
Brit
10:38 9 May '02  
GeneralRe: C# and Real Time Graphics Pin
Mr Morden
18:23 10 Jul '02  
GeneralRe: C# and Real Time Graphics Pin
Brit
19:12 10 Jul '02  
GeneralRe: C# and Real Time Graphics Pin
eltwo
6:46 27 Jul '02  
GeneralRe: C# and Real Time Graphics Pin
Anonymous
11:50 27 Jan '03  
GeneralRe: C# and Real Time Graphics Pin
AArnott
2:17 19 Apr '04  


Last Updated 27 Jul 2002 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009