Dwarrowdelf is a work-in-progress game project. Dwarrowdelf is a Nethack/Dwarf Fortress style game (and game engine) implemented in C#. Some of the most notable features include:
The game is not playable yet, but it can be started and one can do things like move around in the world, change the environment, give jobs to "dwarfs", and run IronPython scripts on the server side.
Dwarrowdelf contains two semi-interesting sub-projects, which may be of interest to someone.
Aa very quick and simple serializer optimized for network transfers. Find more from NetSerializer .
I also wanted a high performance logging, and with high performance I mean that the logging entity must not be affected by the logging. For this I implemented a circular buffer located in a memory mapped file, and writing there should be pretty efficient.
I've also implemented simple LogViewer that can be used to read the logs. The LogViewer is not particularly efficient, mainly due to the UI control used to show the log messages. So there's room for improvement =).
Dwarrowdelf is currently licensed under GPLv2 and the sources can be found from https://github.com/tomba/dwarrowdelf.