EtaMOO: A new implementation of the LambdaMOO server

[ bsd3, network, program ] [ Propose Tags ]

LambdaMOO is a network-accessible, multi-user, programmable, interactive system well-suited to the construction of text-based adventure games, conferencing systems, and other collaborative software.

EtaMOO is an experimental multithreaded implementation of LambdaMOO in Haskell with anticipated ready support for 64-bit MOO integers and Unicode MOO strings. The implementation follows the specifications of the LambdaMOO Programmer's Manual, and should be compatible with most LambdaMOO databases as of about version 1.8.3 of the LambdaMOO server code.

N.B. This is (currently) incomplete software. It is not yet fully usable, although with further development it is hoped that it soon will be.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
llvm

Use GHC's LLVM backend to compile the code

Disabled
64bit

Enable 64-bit MOO integers

Disabled
outbound-network

Enable open_network_connection() by default

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.2.0.0, 0.3.0.0
Dependencies array, base (>=4 && <5), bytestring, case-insensitive, containers (>=0.4), hashable, haskeline, mtl, network, old-locale, parsec, pipes, pipes-bytestring, pipes-concurrency, pipes-network, pureMD5, random, stm, stm-chans, text (>=1.2), time, transformers, unix, unordered-containers, vector [details]
License BSD-3-Clause
Copyright © 2014–2015 Robert Leslie
Author Rob Leslie <rob@mars.org>
Maintainer Rob Leslie <rob@mars.org>
Category Network
Home page http://verement.github.io/etamoo
Bug tracker https://github.com/verement/etamoo/issues
Source repo head: git clone https://github.com/verement/etamoo.git
Uploaded by RobLeslie at 2015-01-23T11:07:35Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables etamoo
Downloads 2727 total (7 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
Last success reported on 2015-01-23 [all 7 reports]

Readme for EtaMOO-0.2.0.0

[back to package description]

Important!

This is experimental and (currently) incomplete software. It is not yet fully usable, although with further development it is hoped that it soon will be.

At present, the code will load a database and listen for network connections. You can connect using any telnet client and interact with the MOO environment, however no changes to the database will be saved, and a few other features have also yet to be implemented.

About

EtaMOO is a new implementation of the LambdaMOO server written in Haskell.

LambdaMOO is a network-accessible, multi-user, programmable, interactive system well-suited to the construction of text-based adventure games, conferencing systems, and other collaborative software.

EtaMOO differs from LambdaMOO in a few significant ways:

  • EtaMOO is multi-threaded. MOO tasks run concurrently, producing network output and changes to the database in isolated transactions that are committed only when not in conflict with any other transaction. (In cases of conflict, transactions are automatically retried.) Separate threads are also used for network connection management, so for example name lookups do not block the entire server.

  • EtaMOO supports 64-bit MOO integers via compile-time build option.

  • EtaMOO is Unicode-aware, and will eventually include support for Unicode MOO strings via compile-time build option.

  • EtaMOO supports IPv6.

The implementation of EtaMOO closely follows the specifications of the LambdaMOO Programmer's Manual, and should therefore be compatible with most LambdaMOO databases as of about version 1.8.3 of the LambdaMOO server code.

Installing

EtaMOO is built with Cabal, the Haskell package manager. In the simplest case, simply running:

cabal install EtaMOO

should automatically download, build, and install the etamoo executable after doing the same for all of its Haskell dependencies.

Cabal itself is part of the Haskell Platform which is available for many distributions and platforms.

EtaMOO has non-Haskell dependencies on two external libraries: libpcre (with UTF-8 support enabled) for regular expression matching, and, possibly, libcrypt (often part of the standard libraries) for the MOO crypt() built-in function. You may need to ensure you have these available before installing EtaMOO.

Hacking

Documentation is available for the various types, data structures, and functions used internally by EtaMOO.