I had a brief tenure helping out on World of Tanks when Certain Affinity helped out with the Halloween 2017 Stop Leviathan event. World of Tanks’ game logic is written primarily in Python, and as a long-time Python enthusiast, I helped the team ramp up on the code-base as many of the developers had little experience with it.
After we wrapped up most of our work on Doom, a lot of the team at Certain Affinity started work on remastering the classic Call of Duty: Modern Warfare. It was really exciting revisiting such an iconic title, and getting a master class in single player game design just seeing how it all worked.
As we were the first studio to start work on the title, I played a major role in writing tools that ported the content from the original game.
I’m so hyped about my first professional game development credit being for Doom (2016)! The original is such a classic, and I got really into it back in the day. I still remember playing for long stretches of time; getting so into it that I started leaning over to the side when I strafed to dodge a fireball. š
Certain Affinity worked on the PVP multiplayer for this title. Though the mode wasn’t as universally beloved as the stellar single player campaign, over time reviews started to come around to recognize the work we did to deliver a kick ass experience.
Mary Battle Mecha Battle Ninja Battle Raptilius Battle Will Battle Credits Cutscene: Pulling the Sword NPC Message Quest Log Cutscene: Got the Sandwich Tutorial Battle Intro Scavenger Quest is a game that I designed and programmed in my spare time over a four month period. It was developed for Android using AndEngine. The application is a location-aware scavanger hunt. When locations are visited in order, based on hints, certain events are trigged: cutscenes, item collection via QR code scanning, messages from NPCs, and battles.
From 2009 - 2010, I was one of a team of 3 developers working on WiiSX, among other projects. I’m really proud of the work we did porting PCSX to the Gamecube & Wii platforms - which are really resource strapped.
You can dig through the archives of EmulateMii to read more about the project. Or find the source code on GitHub. The project is still being maintained by some of the original developers!
From 2009 - 2010, I ported the open source re-implementation of Jazz Jackrabbit, OpenJazz to the Wii.
You can find the archive of the project on Google Code.
From 2007 - 2011, I was one of a team of 3 developers working on Wii64, among other projects. I’m really proud of the work we did porting Mupen64 to the Gamecube & Wii platforms - which are really resource strapped.
You can dig through the archives of EmulateMii to read more about the project. Or find the source code on GitHub. The project still lives on through the Not64 fork!
I had a lot of fun in my Computer Graphics class at UT. Always went for the extra credit on this one, and had plenty of fun working through the challenges of getting things right.
For our first project, we were just doing simple rendering in OpenGL. I managed to cobble together this model of a penguin in a snow globe, complete with translucent glass and snow particles.
I had a really hard time generating a “good” tree.
I’m currently working on developing a working implementation of Python (and/or Pyrex) on the GC/Wii providing functionality via wrapping libogc.
Example:
""" Demo of using libogc in Pyrex """ # get stuff we need from C header files cdef extern from "Python.h": # embedding funcs void Py_Initialize() void Py_Finalize() void PySys_SetArgv(int argc, char **argv) # declare any other Python/C API functions we might need void Py_INCREF(object o) void Py_DECREF(object o) object PyString_FromStringAndSize(char *, int) object PyBuffer_FromReadWriteMemory(void*, int) cdef extern short wavefile[] # IMPORTANT - we need to explicitly prototype the function # 'init<mymodulename>()', where 'mymodulename' is the # filename this code resides in.