logoalt Hacker News

agentultralast Thursday at 1:23 AM3 repliesview on HN

Funnily enough I took up trying to develop a new MUD engine from scratch in Haskell, with an embedded Lua interpreter for scripting as well.

https://github.com/agentultra/bakamud

And I often stream working on it at https://twitch.tv/agentultra

MUDs are great! Achea is another great one.

Happy gaming folks.


Replies

_jackdk_last Thursday at 8:56 AM

Some years ago I wrote Haskell bindings to libtelnet ( https://hackage.haskell.org/package/libtelnet ) and a reflex wrapper around them ( https://hackage.haskell.org/package/reflex-libtelnet ).

Perhaps they are useful to you. If you need dependency bounds relaxed or revised to work on modern GHCs, let me know and I'll take a look.

bcrosby95last Thursday at 5:07 AM

For the longest time MUDs were my standard "learn a new language" project. There's enough meat to expose strengths of the language but overall they're pretty simple.

nateb2022last Thursday at 1:43 AM

I love how concise that Haskell code is! I've also started building a new MUD engine, but in Rust (previously I've written a partially complete one in Go), and this time around I'm working on implementing a MUD using an ECS (entity component system).

show 2 replies