All Projects → Seifert69 → DikuMUD2

Seifert69 / DikuMUD2

Licence: LGPL-2.1 license
DikuMUD II from 1997

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
Yacc
648 projects
Rich Text Format
576 projects
objective c
16641 projects - #2 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to DikuMUD2

dumserver
A modern MU* engine re-imagined, actively developed and properly tracked.
Stars: ✭ 54 (+125%)
Mutual labels:  mud, mud-server, mud-game-server, mud-engine
mud-server
A MUD server written in Java w/basic OLC and a channel-based chat system.
Stars: ✭ 36 (+50%)
Mutual labels:  mud, mud-server, mud-engine
dreamland code
DreamLand MUD: server code
Stars: ✭ 36 (+50%)
Mutual labels:  mud, mud-server, mud-engine
shadowgate
Mirror of ShadowGate code
Stars: ✭ 12 (-50%)
Mutual labels:  mud, mud-server
guildmud
A SocketMUD-based Multi-User Dungeon built and managed by the members of The MUD Coders Guild.
Stars: ✭ 26 (+8.33%)
Mutual labels:  mud, mud-server
MoD
MUD on Discord, a MUD framework Bot for Discord
Stars: ✭ 20 (-16.67%)
Mutual labels:  mud, mud-server
room.js
A node.js MOO server
Stars: ✭ 75 (+212.5%)
Mutual labels:  mud, mud-server
cwmud
An extendable, modular MUD server.
Stars: ✭ 15 (-37.5%)
Mutual labels:  mud, mud-server
toaststunt
A fork of the LambdaMOO-Stunt server with features found useful during the development of Miriani and ChatMUD.
Stars: ✭ 31 (+29.17%)
Mutual labels:  mud, mud-server
simplemud
SimpleMUD from MUD Game Programming book ported to NodeJS
Stars: ✭ 36 (+50%)
Mutual labels:  mud, mud-server
dreamland world
DreamLand MUD: all configuration files, and some areas for local dev
Stars: ✭ 16 (-33.33%)
Mutual labels:  mud, mud-server
mud
炎黄文字MUD游戏,请使用 fluffos v2019 驱动
Stars: ✭ 91 (+279.17%)
Mutual labels:  mud
path-to-power
A simple MUD inspired, browser-based multiplayer game.
Stars: ✭ 14 (-41.67%)
Mutual labels:  mud
AkkaMUD
Building a MUD in F# and Akka.NET
Stars: ✭ 15 (-37.5%)
Mutual labels:  mud
sdxxz
傻屌修仙传
Stars: ✭ 18 (-25%)
Mutual labels:  mud
kalevala
A world builder's toolkit in Elixir
Stars: ✭ 124 (+416.67%)
Mutual labels:  mud
SkotOS
Open Source version of the SkotOS narrative prose library, using the DGD driver.
Stars: ✭ 21 (-12.5%)
Mutual labels:  mud
svof
Svof is an AI system for Achaea, an online MUD. It has advanced and adaptable curing capabilities, defence raising, and addons.
Stars: ✭ 52 (+116.67%)
Mutual labels:  mud
dwarlixir
A dwarf-fortress clone / MUD / side project in Elixir
Stars: ✭ 46 (+91.67%)
Mutual labels:  mud
Lua-MUD
A MUD framework written in lua
Stars: ✭ 25 (+4.17%)
Mutual labels:  mud

DikuMUD2

DikuMUD II (1997)

This is the source of the never before released DikuMUD II. The source code is released under LGPL (only) and originates from a running version from December 1997.

Check out history and notes on www.dikumud.com

March 3, 2020:

  • It works. But not completely done. Waiting for Makefile from Ken Perry regarding PP. You can run the ppmake script though.

  • I've run into a number of bugs that were there for 5-7 years and never before caused issues. That's quite normal in my experience with radically new enviroments. So dont be suprised if there's a crash bug here or there. I'll try to help if I can.

  • Back when this version was retired it was quite stable.

  • It may be that the Perry brothers release Diku III (Valhalla MUD) under LGPL too. We're working together on it right now and looking into adding HTML5 / Websockets support.

  • @nerratt reported that it compiles on OpenSuse if you remove the declaration of gettimeofday in main.c.


February 2020, Michael Seifert

I've compiled this old venerable project for Ubuntu 19. Making the old wheels turn on a 64 bit architecture :)

A few notes on getting it running.

  1. Clone the repo

    cd dm-dist-ii/

1.5) Be sure you have flex and bison installed. Look e.g. here for help: https://stackoverflow.com/questions/3871425/how-to-install-lex-and-yacc-in-ubuntu

  1. Compile touch .depends ; make depend make all cd PP/ ./ppmake cd ..

  2. Make symbolic links (in dm-dist-ii/) ln -s PP/pp ln -s DIL/dil

  3. when in the main dir (dm-dist-ii/) compile all zones: DMC/dmc zon/*.zon


To run DikuMUD II:

  1. Get the Mplex/mplex up and running. Mplex/mplex & This program accepts (telnet) connections and in turn communicates with the dmserver. Default port is 4242. There's a way to have one with color support and one without. The multiplexers communicate with the dmserver on port 4999

  2. Run Diku II:

    ./dmserver (or gdb dmserver)

  3. Login with the admin telnet localhost 4242 username: admin password (CIA grade): ABC123

    Change the password, or advance a new character to level 255, then quit and delete the admin character from the ply/a/ directory


Wish list

If I had real time to spend on this project my priority number one would be to use SmartPtr with all unit_data and affects. Get rid of all the complicated and not 100% reliable destructor code and replace it then by freeing objects with a reference count of zero.

My second priority would be to make more use of C classes for strings, name lists and more to handle more memory in the class rather than juggling mallocs and frees.

Also, given we're in 2020. Why isn't there a pure html5/js client anywhere? :o) Looks like html5/websockets would be the way to go and that would be quite easy to implement in the Diku II code because it's separated out into the Mplex. So you could run one Mplex for telnet, one for telnet with color and one for web-sockets. And then add just a few lines of code to your webpage and you have a basic MUD client. Which of course could be wonderfully expanded with a little meta-data from the server.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].