Home
Games
Technical Writing
Game Dev Blog
Publications
Code
Thesis Video

Writing Samples
Graphic Art

Contact
Resume (pdf)
Curriculum Vitae (pdf)

Computer Science - Programming Samples

Code snippets -

HUD - Heads up Display System from the DarkWynter project - this is a self contained DLL that users can add to their own XNA games with minimul coding before having a fully functioning HUD. Written in C#.


Sameple in-game HUD using this code.

HUD Demo Files - Demo project of the Heads up Display System from the DarkWynter project - requires XNA 3.0 or 2.0, DirectX SDK, and Microsoft Visual C# Express Edition 2008 or 2005 to run.


Sameple dialogue run on the HUD using this code.

Stylographics - A prototype for Pen Turners (people who custom make pens) - allows Pen Turners to quickly visualize the pen styles and materials in 3D, without having to make the pen first. Written in C#. Click on the image for a larger view (opens in a new window).

DSGraph - Part of a graphing program - this is the graph implementation along with an implementation of the Bellman Ford algorithm. Written in C#.

Sorting - This is a program using four sorts (QuickSort, Insertion Sort, Merge Sort, and Heap Sort) on a randomly seeded array. Written in C#.

3D Solar System - This is part of a program that I wrote for graphics. Using OpenGL and C++, this is a 3D Solar System complete with lighting and moving planets.

Binary Tree - This is part of my binary tree program that I wrote, and then modified later, for graphics.

Neverish Dictionary - This is part of my dictionary program, where I wrote a custom linked list class and did a radix sort on the data. Written in Java.

Divider Test - This program is designed to convert numbers from a file to binary, divide the numbersby repeated addition of two's compliment, and convert back to decimal. Written in Java.