2000Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Codebase Ideas -->
<!--X-From-R13: Pelpr Vneevatgba <oelprNarcghar.arg> -->
<!--X-Date: Thu, 17 Feb 2000 21:38:09 &#45;0800 -->
<!--X-Message-Id: Pine.LNX.4.10.10002172115220.24723&#45;100000#pulsar,neptune.net -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 000217204454CE.19573#webd4,iname.net -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Codebase Ideas</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:bryce#neptune,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="msg00408.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00410.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00401.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00423.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00409">Author</A>
&nbsp;|&nbsp;<A HREF="#00409">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00409">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Codebase Ideas</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>: Re: [MUD-Dev] Codebase Ideas</LI>
<LI><em>From</em>: Bryce Harrington &lt;<A HREF="mailto:bryce#neptune,net">bryce#neptune,net</A>&gt;</LI>
<LI><em>Date</em>: Thu, 17 Feb 2000 21:33:59 -0800 (PST)</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>
On Thu, 17 Feb 2000 punitac#prodigy,net wrote:

&gt; Hey List,
&gt; 
&gt; I've been planing on, and started working on (no code 
&gt; yet, just ideas) making a codebase from scratch.  

Me too.  (Well, I have some code, but I'm trying to take kind of a fresh
approach.)

&gt; One idea I had, actully, something 
&gt; someone brought up on another mailing list, was linking 
&gt; muds together.  What I was thinking is there'd be some 
&gt; sortof central server, that would link all the muds 
&gt; together.  

This is how the larger commercial online rpg's work.  They have multiple
"shards" or "worlds" that are linked together.  There's several
different ways this can be done.  I think I'd leave this feature until
other capabilities were in place, as just getting a code up and running
on a single server could be quite a challenge.

&gt; Now, about pfiles, I don't want all the muds to be 
&gt; pretty much the same, except for areas, otherwise I just 
&gt; have pretty much one big stock mud, I'd like Admins of 
&gt; individual muds be able to change things in thier code, 
&gt; for example, one mud could use channeling from the Wheel 
&gt; of Time for magic, while another had magic powers come 
&gt; from rocks, and I'd like to allow this.  To do this, 
&gt; I've decided to give each character two pfiles, one 
&gt; would be for the individual mud, and the second would be 
&gt; a tye of pfile accepted on all the muds connected t the 
&gt; central server.  What would happen is, when player Joe 
&gt; wants to log into to Mud B from Mud A, his second pfile, 
&gt; would be sent to mud B, and at mud B, it would be 
&gt; converted into a pfile that would fit into the mud.

Interesting concept...  This pfile translation seems to be the key, and
I'd love to hear you elaborate on it.  I think once you've got a good
approach for doing the translation, then the rest of it should fall into
place fairly readily.

&gt; hmm, I actully have questions though, so no more making 
&gt; my not really long by talking about things I had in 
&gt; mind.

Check out my wishlist post from last night; I'd be interested in getting
your feedback regarding what you'd like to see in such a server.

&gt; First off, does anyone have advice on how I should do 
&gt; the central server?  What I wanted it to do was have it 
&gt; so every mud when up would be logged into the central 
&gt; server, and always be connected to it.  Any advice on 
&gt; how you guys and girls think I should do this would be 
&gt; great.

Maintaining a peer-server connection is pretty easy to do, actually.
What I would wonder about is what happens if the central machine goes
down, or if the network gets slow.  If all of the servers are intimately
dependent on the central server, and it goes down, then you'll have a
lot of SOL players.  Perhaps it could be done in more of a transactional
approach - where interserver communication only happens when new
information needs to be shared between them?  You could even perhaps
imagine eliminating the central server and instead setting up the
sibling servers to communicate directly with themselves.  

&gt; Also, can you take someone's connection, and transfer it 
&gt; to another mud?  without doing something like making a 
&gt; telnet client just for our mud?  

Hmm, well with plain telnet I don't think this is possible.  You could
have an "agent" interface, that the player logs into and that then
connects to the appropriate server, handling the server-server
transferral.  

I'd actually recommend going ahead and making a full client/server app,
discarding telnet entirely.  This opens up a number of handy potentials,
such as better password protection, client-side caching of information,
and (lo!) adding graphics and sound into the mix.  ;-)

&gt; mud, and while we do have plans for making a client just 
&gt; for our mud, that won't be for a long time. 

Why not let other people make the client?  ;-)

&gt; PS&gt;I'm also sortof wondering how someof you that run graphical muds started out, just cuirious.

Getting the media is actually the hardest part.  Writing the code to
manage the media, while not trivial, isn't as hard.

-- 
Bryce Harrington
bryce @ neptune.net




_______________________________________________
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-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00401" HREF="msg00401.html">[MUD-Dev] Codebase Ideas</A></STRONG>
<UL><LI><EM>From:</EM> punitac#prodigy,net</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00408.html">[MUD-Dev] OT: Money as motivator (was Re: code base inquiry )</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00410.html">Re: [MUD-Dev] code base inquiry</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00401.html">[MUD-Dev] Codebase Ideas</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00423.html">Re: [MUD-Dev] Codebase Ideas</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00409"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00409"><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>RE: [MUD-Dev] Re: MUD-Dev digest, Vol 1 #286 - 13 msgs</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00445" HREF="msg00445.html">RE: [MUD-Dev] Re: MUD-Dev digest, Vol 1 #286 - 13 msgs</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Mon 21 Feb 2000, 17:57 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00419" HREF="msg00419.html">[MUD-Dev] Guide Applicant : Player Ratio</A></strong>, 
Geoffrey A. MacDougall <a href="mailto:geoffrey#poptronik,com">geoffrey#poptronik,com</a>, Fri 18 Feb 2000, 17:43 GMT
<UL>
<LI><strong><A NAME="00425" HREF="msg00425.html">Re: [MUD-Dev] Guide Applicant : Player Ratio</A></strong>, 
Matthew Mihaly <a href="mailto:diablo#best,com">diablo#best,com</a>, Fri 18 Feb 2000, 20:15 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00401" HREF="msg00401.html">[MUD-Dev] Codebase Ideas</A></strong>, 
punitac <a href="mailto:punitac#prodigy,net">punitac#prodigy,net</a>, Fri 18 Feb 2000, 03:25 GMT
<UL>
<LI><strong><A NAME="00409" HREF="msg00409.html">Re: [MUD-Dev] Codebase Ideas</A></strong>, 
Bryce Harrington <a href="mailto:bryce#neptune,net">bryce#neptune,net</a>, Fri 18 Feb 2000, 05:38 GMT
</LI>
<LI><strong><A NAME="00423" HREF="msg00423.html">Re: [MUD-Dev] Codebase Ideas</A></strong>, 
Aaron Mitchell <a href="mailto:aaron#fate,net">aaron#fate,net</a>, Fri 18 Feb 2000, 18:05 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00370" HREF="msg00370.html">[MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Michael Hohensee <a href="mailto:michael#sparta,mainstream.net">michael#sparta,mainstream.net</a>, Wed 16 Feb 2000, 18:04 GMT
<UL>
<LI><strong><A NAME="00373" HREF="msg00373.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Ted Milker <a href="mailto:tmilker#radiks,net">tmilker#radiks,net</a>, Wed 16 Feb 2000, 20:13 GMT
<UL>
<LI><strong><A NAME="00374" HREF="msg00374.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
David Bennett <a href="mailto:ddt#discworld,imaginary.com">ddt#discworld,imaginary.com</a>, Wed 16 Feb 2000, 22:01 GMT
</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>