LODOS, named after the Turkish word for a specific southwesterly wind that can sometimes become dangerous, is a fork of FluffOS.

The intention of LODOS is to be a modern re-imagining of a classic LPmud driver but without concern for backwards compatibility. It is intended to be used to write new, modern mudlibs from scratch.

Major extensions and modifications made in LODOS include:

  • Acknowledging that LPC is not C: LPC files must always end in .lpc (including #include files), and never .c or .h file extensions.

  • There’s no such thing as a pointer in LPC. Rather, we call a spade a spade: objects are objects, arrays are arrays, mappings are mappings, and so on. These are not pointers.

  • Structured data in LODOS is always known as a struct and never a “class”. Identical structs are now allowed to be included from anywhere and treated as equal.

  • JSON parsing baked into the driver from rejected FluffOS PR1156.

  • Terminal handling split out into its own thread per user. This improves terminal performance and allows for responsive modern terminal ‘character at a time’ control as well as honouring existing ’line at a time’ legacy behaviour.

  • As part of the above, removal of the built-in ’ed’ editor, since launching a fully interactive modern editor (such as vim) directly is now trivial.

  • Rich text formatting (color, style, terminal attributes) baked into the driver as per this article.

  • Various bug fixes across the codebase that have been ignored by FluffOS for years.

  • Writing missing ‘TBW’ documentation.

The intention is to remain in lockstep with FluffOS for the forseeable future.

WARNING#

This driver is almost certainly not for you. It is unmaintained, unsupported hackerware. You almost certainly want to use FluffOS instead. Only use this if you’re comfortable writing a completely new mudlib from scratch on your own. Use at your own risk.

FluffOS pull requests and issues are monitored and occasionally integrated into LODOS (whether FluffOS integrates them or not).

Latest Release#