Click here to Skip to main content
Licence CPOL
First Posted 9 Jan 2002
Views 233,940
Downloads 6,414
Bookmarked 86 times

ExoEngine - a C# 3D engine

By | 27 Jul 2002 | Article
A basic 3D engine built using C# and the .NET platform

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)

  • Will compile and run successfully on .NET v1.0.3328
  • Will compile and crash on .NET v1.0.2914

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)

  • choose this option if you haven't installed any .NET beta software.
  • includes the application (one exe and 2 dll's) and the .NET platform (build: v1.0.3328)
  • no source code included

Option B: Application Files Only (1.0MB)

  • choose this option if you currently have v1.0.3328 of the .NET platform installed
  • includes just the application files (one exe and 2 dll's)
  • no source code included

Option C: Sorry, no binaries for you.

  • if you have another version of .NET beside v1.0.3328 you can not download binaries from me that will work on you machine.
  • if may be possible to download and then compile the source code?
     

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Ben Houston

Web Developer

Canada Canada

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalconcept Pinmemberzhima19882:31 14 May '10  
GeneralExo engine installer PinmemberAnthony_Yio2:44 16 Apr '04  
GeneralRe: Exo engine installer PinmemberBen Houston5:22 16 Apr '04  
Generalit rocks! Pinmemberchenhuisheng22:00 8 Apr '04  
QuestionWhere are the marching cubes? PinmemberPeter Schatz7:20 27 Feb '04  
AnswerRe: Where are the marching cubes? PinmemberBen Houston5:22 16 Apr '04  
GeneralC# game programming feasability PinmemberFilip Strugar11:05 17 Oct '03  
GeneralRe: C# game programming feasability PinmemberRoman Godhill23:49 26 Dec '06  
GeneralPerformance (or not) PinmemberBrian Azzopardi23:25 28 Jul '02  
GeneralRe: Performance (or not) PinmemberBen Houston7:15 29 Jul '02  
QuestionWorking on ver 1.0 ? PinmemberTrond Nilsen10:49 23 Jan '02  
AnswerRe: Working on ver 1.0 ? PinmemberBen Houston9:25 24 Mar '02  
GeneralExoEngine PinmemberPaul Selormey17:08 10 Jan '02  
GeneralRe: ExoEngine PinmemberBen Houston18:02 10 Jan '02  
GeneralImpressive!!!! PinmemberNish [BusterBoy]16:55 10 Jan '02  
General[Msg Deleted] PinmemberFazlul Kabir16:42 10 Jan '02  
GeneralRe: C# and Real Time Graphics PinmemberBen Houston18:06 10 Jan '02  
GeneralRe: C# and Real Time Graphics PinmemberNish [BusterBoy]19:45 10 Jan '02  
GeneralRe: C# and Real Time Graphics PinmemberCLaW20:55 10 Jan '02  
GeneralRe: C# and Real Time Graphics PinmemberNish [BusterBoy]21:08 10 Jan '02  
GeneralRe: C# and Real Time Graphics PinmemberBrit9:38 9 May '02  
GeneralRe: C# and Real Time Graphics PinmemberMr Morden17:23 10 Jul '02  
GeneralRe: C# and Real Time Graphics PinmemberBrit18:12 10 Jul '02  
GeneralRe: C# and Real Time Graphics Pinmembereltwo5:46 27 Jul '02  
GeneralRe: C# and Real Time Graphics PinsussAnonymous10:50 27 Jan '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 28 Jul 2002
Article Copyright 2002 by Ben Houston
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid