1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Collecting ideas for a MUD server... (fwd) -->
<!--X-From-R13: X Q Znjerapr <pynjNpc.arg> -->
<!--X-Date: Tue, 21 Dec 1999 16:47:23 &#45;0800 -->
<!--X-Message-Id: E120Zw0&#45;0005GS&#45;00@under.eng.cp.net -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Collecting ideas for a MUD server... (fwd)</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:claw@cp.net">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00717.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00720.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00723.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00717.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00718">Author</A>
&nbsp;|&nbsp;<A HREF="#00718">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00718">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Collecting ideas for a MUD server... (fwd)</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Subject</em>: [MUD-Dev] Re: Collecting ideas for a MUD server... (fwd)</LI>
<LI><em>From</em>: J C Lawrence &lt;<A HREF="mailto:claw#cp,net">claw#cp,net</A>&gt;</LI>
<LI><em>Date</em>: Tue, 21 Dec 1999 16:47:20 -0800</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: <A HREF="mailto:mud-dev-admin#kanga,nu">mud-dev-admin#kanga,nu</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>

------- Forwarded Message
Newsgroups: rec.games.mud.admin
From: "Daniel A. Koepke" &lt;dkoepke#SPAMGUARD,california.com&gt;
Subject: Re: Collecting ideas for a MUD server...
Date: Tue, 21 Dec 1999 11:44:57 -0800

On Tue, 21 Dec 1999, Wesley W. Terpstra wrote:

&gt; Our plans (at present) are to make a compiler/interpreter for a custom
&gt; OO language and build the actual MUD completely in this language. As I
&gt; understand it, MOO already takes this approach. What I would like to
&gt; gather is a list of features that people consider essential to a MUD
&gt; programming language.

As do LPMUDs, Pike-based MUDs, ColdMud, CoolMud, and a handful of others.  
There's no shortage of Mud drivers, really.  Although new entries are
always welcome.

As to what people consider essential to a MUD programming language, that's
heavily dependent upon what you're intending to express in that language.  
Regardless, the language should:

    * be high level and provide good string and list management;

    * not have pointers;

    * have a consistent, clean syntax;

    * eliminate superfluous syntax constructions, especially those that
      give the coder "artistic freedom" with the code;

    * for OO languages, multiple inheritence is nice;

There are a number of other features the language should have.  My reasons
for the above core requirements:

    * strings and lists are integral to any Mud; simplified handling of
      them over C is important.  A character type is less important, and
      could safely be eliminated given an expansive-enough string and
      list implementation.

    * pointers are not always bad things, but here they are.  Too much
      trouble for what they're worth, and with built-in string and list
      management, there should be no reason for them.

    * try to eliminate keywords/operators that shift in meaning by context
      as this leads to confusing code.  Keep the purpose and priority of
      each operator very clear; avoid reusing operators for different
      purposes.  I.e., using '+' for arithmetic and for concatenation is
      sometimes confusing, and usually bad form.

    * e.g., in a C-based language, eliminate the semi-colon and force
      statements to appear on separate lines.  Be much less flexible than
      C (to demonstrate how flexible C is, try:

          char abc[4] = "abc";
          printf("%c\r\n", 1[abc]);

      and see what you get).  My rationale here is that Muds are much
      more controlled environments underwhich to program; while artistic
      and obfuscated code is a great diversion, there's no reason to
      permit such abominations in a Mud.  Enforce good style (to a point)
      in the language; leave other matters to a Mud's style guide for its
      coders.

    * to make a Dwarf Fighter mobile, I should inherit instances of a
      Dwarf object, a Fighter object, and a mobile object.  These are
      abstract interfaces (i.e., these objects do not appear as instances
      within the game world by-themselves) and can be used to construct
      the attributes of new entities of several types with a minimum of
      code repition.  One of the major benefits being that if I have a
      Shovel which inherits the classes Steel_Spade and Wood_Shaft, and
      I decide to make Pitchfork (which derives from Steel_Fork and
      Wood_Shaft) stop working if its in a fire (i.e., we destroy the
      Wood_Shaft), I implement this new feature in Wood_Shaft and then
      Shovel and Pitchfork share this feature, without both having to
      reproduce the Wood_Shaft code and having completely different
      player actions (provided by the utility of the Spade or Fork).

Of course, better than implementing an entirely new language, etc., etc.,
you might go the course of using an existing extension language.  Scheme
is a nice language (if you've got a Lisp fetish, anyway).  There are many
others.

&gt; I also wanted to know of what MUDs currently implement any of the
&gt; following: multithreading,

Hrm.  I can't think of any off the top of my head.  I'm pretty sure a few
do, of course.

&gt; guis,

That's a client-side issue.  At least, if you mean to say a graphical
interface to playing the game.  There are several things out there that
fit this bill, possibly too numerous and varied to list.  There's a list
of graphical Muds at The Mud Connector.

&gt; exploiting client processors,

Again, that's a client-side issue.  It's relatively trivial to offload
some of the work of the main Mud to the client.  Also, however, it's
relatively pointless with the vast majority of Muds.  I've seen very few
Muds running over 5% of the CPU with good reason.  Which isn't to say
yours won't be one of those few; just insure that you have a purpose in
the exploitation, and aren't just introducing network lag on cheap
computations.

&gt; pgp certificates about players so their characters can move from one
&gt; server to another w/o the two servers ever talking directly.

None (that I know of).  There are Muds that allow passing of players to
other servers.  Uber/Unter, Cool/Cold might be valid research.

A better thing to do than listen to me, here, is to check the Mud-Dev
archives, located at <A  HREF="http://www.kanga.nu/">http://www.kanga.nu/</A>.  Follow the appropriate, and
logical links, to the Mailing list archives.

- -dak : Remove my SPAMGUARD to e-mail me.  Yeah, it's silly...

------- End of Forwarded Message



_______________________________________________
MUD-Dev maillist  -  MUD-Dev#kanga,nu
<A  HREF="http://www.kanga.nu/lists/listinfo/mud-dev">http://www.kanga.nu/lists/listinfo/mud-dev</A>

</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00717.html">[MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00720.html">Re: [MUD-Dev] Originality/Points of Reference (was Classes and Racesand more (a BIG list) (fwd))</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00723.html">[MUD-Dev] re: Originality/Points of Reference</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00717.html">[MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00718"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00718"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><strong><A NAME="00747" HREF="msg00747.html">[MUD-Dev] Job Openings - Mud Engineering</A></strong>, 
Christopher Allen <a href="mailto:ChristopherA@Skotos.net">ChristopherA@Skotos.net</a>, Thu 23 Dec 1999, 01:53 GMT
<LI><strong><A NAME="00723" HREF="msg00723.html">[MUD-Dev] re: Originality/Points of Reference</A></strong>, 
Ian Klimon, Esq. <a href="mailto:ian@aephirsden.com">ian@aephirsden.com</a>, Wed 22 Dec 1999, 18:57 GMT
<LI><strong><A NAME="00718" HREF="msg00718.html">[MUD-Dev] Re: Collecting ideas for a MUD server... (fwd)</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Wed 22 Dec 1999, 00:47 GMT
<LI><strong><A NAME="00717" HREF="msg00717.html">[MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Wed 22 Dec 1999, 00:46 GMT
<UL>
<LI><strong><A NAME="00719" HREF="msg00719.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></strong>, 
Justin Rogers <a href="mailto:justin@mlstoday.com">justin@mlstoday.com</a>, Wed 22 Dec 1999, 01:29 GMT
<UL>
<LI><strong><A NAME="00727" HREF="msg00727.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></strong>, 
Rahul Sinha <a href="mailto:rsinha@glue.umd.edu">rsinha@glue.umd.edu</a>, Wed 22 Dec 1999, 20:56 GMT
<UL>
<LI><strong><A NAME="00730" HREF="msg00730.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></strong>, 
Greg Miller <a href="mailto:gmiller@classic-games.com">gmiller@classic-games.com</a>, Wed 22 Dec 1999, 21:32 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>