1998Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: mud client development systems -->
<!--X-From-R13: Ehaal Uhyngv <fhaaljvmNenqvxf.arg> -->
<!--X-Date: Sun, 6 Dec 1998 21:50:08 &#45;0800 -->
<!--X-Message-Id: 366B6C76.C5B9A740#radiks,net -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199812070457.VAA14851@ami&#45;cg.GraySage.Edmonton.AB.CA -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: mud client development systems</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:sunnywiz#radiks,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="msg00916.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00918.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00916.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00918.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00917">Author</A>
&nbsp;|&nbsp;<A HREF="#00917">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00917">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: mud client development systems</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: mud client development systems</LI>
<LI><em>From</em>: Sunny Gulati &lt;<A HREF="mailto:sunnywiz#radiks,net">sunnywiz#radiks,net</A>&gt;</LI>
<LI><em>Date</em>: Sun, 06 Dec 1998 23:49:42 -0600</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#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>
Chris Gray wrote:
&gt; 
&gt; Sounds like DevMUD could fit that bill.
&gt;

I'm still at a loss as to what DevMud is, exactly.   Has anybody had a
chance to merge all the discussion into a semi-proposal-spec yet?   I'm
not subscribed to the DevMUD mailing list.  Just a 1 paragraph
description would be really helpful.  All I've seen so far is some
client connection code that does telnet emulation. 
 
&gt;  &gt;** Everything still depends on "telnetting" into a mud just as we do
&gt;  &gt;nowadays.  I want to layer the client/server connections on top of
&gt;  &gt;telnet.
&gt; 
&gt; I'm quite curious as to why you want to put stuff on top of telnet. Since
&gt; you are requiring a custom client anyway, why not use a custom binary
&gt; protocol of some kind? That cuts down on your communication, and avoids
&gt; altogether the problems of accidental interpretation.

Simple - I want to do this in small little steps.  Running it on top of
telnet means, I could write nifty client-objects and test them in my
current mud.   In fact, right now I'm implementing all this in an object
I carry around in my inventory.  

I would like it if people can take the work I do on this, and just drop
it into their existing mud.  If nothing else, just for background music
or whatever.  Widespread adoption.   And if you're not running the funky
client, you just won't get the funky stuff.  

Well, actually, you'll see a message go by:  ~BOOT
but that would be about all. 

Remember, my initial implementation is only geared at nifty message
windows and background music. :) 

&gt;  &gt;** SERVER-&gt;CLIENT: "hey I want a connection to your object xyz,
&gt;  &gt;   instance foom, and my socket id is 8192".  (different socket number
&gt;  &gt;   for every connection)
&gt; 
&gt; Beware of running out of sockets in the server process!

I'm going to have to refine my vocabulary.  By Socket, i did not mean an
actual system socket; I meant the IDEA of a socket as applies to having
multiple conversations happening between server and client over the same
link.  in this case, my link is the telnet session.     
 
&gt;  &gt;7. Looking like this would involve a bunch of short packets.  I'm not sure
&gt;  &gt;   what the effect is of various packet sizes regarding congestion and stuff.
&gt;  &gt;   Maybe some sort of buffering is in order; bundling several individual
&gt;  &gt;   messages into one ~...&lt;CR&gt; and MCSL...&lt;CR&gt; pair?   How much of a difference
&gt;  &gt;   would this make?  Maybe the layers can be designed so that actual
&gt;  &gt;   interpretation of a ~message&lt;CR&gt; allows for decoding of an array of messages
&gt;  &gt;   (though initial implementation, only one message is returned).
&gt; 
&gt; I can't think of any reason *not* to buffer things up. What I did was
&gt; to keep buffering until either my buffer was full or the output got
&gt; directed to a different client. A better approach would have buffers for
&gt; all clients. Then, you only force-flush them at the end of the top-level
&gt; event which caused all the activity. That would be something like a
&gt; command entered by a user, or a complete action step by an NPC.

I think I'm going to collect the various messages, queue them up in some
sort of structure, and then release them to the user in one write()
statement (LPC) - that would stick them into one ethernet packet.  
(Actually, I think MudOS already buffers the writes anyway; however, it
would be a good thing for me to do it, just to have the hooks there in
the code, for the day when this doesn't run over telnet.)


</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="00916" HREF="msg00916.html">[MUD-Dev] Re: mud client development systems</A></STRONG>
<UL><LI><EM>From:</EM> Chris Gray &lt;cg#ami-cg,GraySage.Edmonton.AB.CA&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00916.html">[MUD-Dev] Re: mud client development systems</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00918.html">[MUD-Dev] Re: mud client development systems</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00916.html">[MUD-Dev] Re: mud client development systems</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00918.html">[MUD-Dev] Re: mud client development systems</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00917"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00917"><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>[MUD-Dev] Re: Netscape's "Gecko" Browsing Engine (fwd)</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<LI><strong><A NAME="00937" HREF="msg00937.html">[MUD-Dev] Re: Netscape's "Gecko" Browsing Engine (fwd)</A></strong>, 
greear <a href="mailto:greear#cyberhighway,net">greear#cyberhighway,net</a>, Tue 08 Dec 1998, 02:04 GMT
</LI>
</ul>
</ul>
</LI>
<LI><strong><A NAME="00922" HREF="msg00922.html">[MUD-Dev] Re: Stack-Based NPC AI</A></strong>, 
Felix A. Croes <a href="mailto:felix#dworkin,nl">felix#dworkin,nl</a>, Mon 07 Dec 1998, 19:00 GMT
<LI><strong><A NAME="00920" HREF="msg00920.html">[MUD-Dev] Thought Treasure</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Mon 07 Dec 1998, 18:27 GMT
<LI><strong><A NAME="00916" HREF="msg00916.html">[MUD-Dev] Re: mud client development systems</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Mon 07 Dec 1998, 04:52 GMT
<UL>
<LI><strong><A NAME="00917" HREF="msg00917.html">[MUD-Dev] Re: mud client development systems</A></strong>, 
Sunny Gulati <a href="mailto:sunnywiz#radiks,net">sunnywiz#radiks,net</a>, Mon 07 Dec 1998, 05:50 GMT
</LI>
<LI><strong><A NAME="00918" HREF="msg00918.html">[MUD-Dev] Re: mud client development systems</A></strong>, 
greear <a href="mailto:greear#cyberhighway,net">greear#cyberhighway,net</a>, Mon 07 Dec 1998, 06:04 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00919" HREF="msg00919.html">[MUD-Dev] Re: mud client development systems</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Mon 07 Dec 1998, 06:05 GMT
<UL>
<LI><strong><A NAME="00924" HREF="msg00924.html">[MUD-Dev] Re: mud client development systems</A></strong>, 
Jon Leonard <a href="mailto:jleonard#divcom,slimy.com">jleonard#divcom,slimy.com</a>, Mon 07 Dec 1998, 19:01 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00921" HREF="msg00921.html">[MUD-Dev] Re: mud client development systems</A></strong>, 
Bruce Mitchener, Jr. <a href="mailto:bruce#cybersight,com">bruce#cybersight,com</a>, Mon 07 Dec 1998, 18:50 GMT
</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>