|
Editorial What I Did on My Holiday Vacation
What I Did on My Holiday Vacation
By: Derek Ferguson
Feb. 13, 2004 12:00 AM
For the second year in a row, I had a lot of vacation left at the end of the year. Combined with two major holidays, this allowed me to take off the second half of December. Not wanting to let my brain get flabby, though, I engaged in a number of mental pursuits to keep my cerebellum in shape! Hamurabi.NET I had such fond memories of playing this game - and another, slightly enhanced, later version of it called Dukedom - that I went looking for it on the Internet. I found the original BASIC source code in a few locations, but couldn't find a free BASIC interpreter capable of running it (not that I spent too much time looking). I also found a few JavaScript implementations, though, and that is when the idea struck - I would convert Hamurabi to .NET! If you visit www.GotDotNet.com/workspaces/hamurabi, you can download both the source and executables for my fully functional .NET port of Hamurabi, which I have affectionately dubbed Hamurabi.NET. The Workspaces at GotDotNet are very interesting; they provide a Web-based collaboration tool, complete with source control, for anyone who would like to do some .NET development on a team. The best part is the fact that your Workspaces don't even need to be public - you might even be able to use them for projects at your place of business if more conventional tools aren't needed. Version 0.1 is a fully functional port of the original Hamurabi game. I began by transliterating the code, then got a little more object oriented by refactoring the original functionality among separate People, Land, and Grain classes (the three main objects in the game). I also refactored the user interface to take advantage of modern GUI capabilities by working in a slightly more event-driven manner, rather than the simple state machine that drove the original game. In version 0.2, look for mobile device support and off-loading of the main game logic to back-end Web services. More coders are always welcome! System.Diagnostics.GreatCustomerService Converting Java to .NET |
|||