1998Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: clients anyone?... -->
<!--X-From-R13: Oaqerj Ivyfba <naqerjNnnnnnnnn.qrzba.pb.hx> -->
<!--X-Date: Tue, 11 Aug 1998 14:56:44 &#45;0700 -->
<!--X-Message-Id: 199808112157.WAA03796#aaaaaaaa,demon.co.uk -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 19980811150534.F26005#flagstaff,Princeton.EDU -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: clients anyone?...</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:andrew#aaaaaaaa,demon.co.uk">
</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="msg00664.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00666.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00663.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00689.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00665">Author</A>
&nbsp;|&nbsp;<A HREF="#00665">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00665">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: clients anyone?...</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: clients anyone?...</LI>
<LI><em>From</em>: Andrew Wilson &lt;<A HREF="mailto:andrew#aaaaaaaa,demon.co.uk">andrew#aaaaaaaa,demon.co.uk</A>&gt;</LI>
<LI><em>Date</em>: Tue, 11 Aug 1998 22:57:51 +0100 (BST)</LI>
<LI><em>Cc</em>: <A HREF="mailto:andrew#aaaaaaaa,demon.co.uk">andrew#aaaaaaaa,demon.co.uk</A> (Andrew Wilson)</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>
Adam J. Thornton:
&gt; On Tue, Aug 11, 1998 at 07:06:44PM +0100, Andrew Wilson wrote:
&gt; &gt; Tile based projects like UO and Furcadia and emerging RPG+Quake
&gt; &gt; stuff represent one facet of client technology, funky pictures and
&gt; &gt; a gaming feel with the graphics being the prime purpose of the
&gt; &gt; exercise.
&gt; 
&gt; Ah, but it should, at least in theory, be possible to separate the client
&gt; data stream protocol model from how the client wants to represent that
&gt; data, so the same protocol could support a line-based MUD client or a
&gt; UO-style tiled interface.  3D would be a lot harder but not necessarily
&gt; impossible.  Impossible with finite bandwidth, maybe.

Mmm.  The data needed to support tile-based graphics, most likely
event updates with x,y,z,type records, is going to be pretty
different to the text content people might read in conversations.

In MCP terminlology you'd be looking at a pair of packages, one
for text messages, another for coordinate world updates.  The client
could render text in the output window, or overlayed on the 3d
scene, or in speechbubbles a-la palace.  Coordinate updates might
be handled by a different package, one which new about where you
were in relation to the disclosed event and how to render it on
the scene.  Plain text clients can chose to not support the
coordinates package.

[basic client outline, snipped]

&gt; Cool.  This is stuff that I will be addressing once I get my server design
&gt; sort of working.  One thing I'm working towards is a communications
&gt; protocol that lets the client negotiate the options it supports, so that
&gt; low-bandwidth clients can say "don't choke me with lots of expensive tile
&gt; data, since this is an 8-bit display" or "I can't handle music so don't
&gt; bother sending it."
&gt; 
&gt; Weirdly, the protocol I've been slowly creating looks a lot like NNTP.
&gt; 
&gt; In an ideal world, I'd support everything from a text-based Pilot interface
&gt; to 32-bit high-resolution tons-of-tiles lots-of-sounds-and-music interface,
&gt; based on what the client could support.  Dunno how flexible I will end up
&gt; being.

Sounds familiar...

&gt; &gt; Secondly the client can be extended with plugins which add new
&gt; &gt; capabilities, navigation windows, desktop metaphores and other
&gt; &gt; visible extensions.  Plugins can also be used to integrate with
&gt; &gt; underlying OS services, like email, webbrowsers or other network
&gt; &gt; demons.
&gt; 
&gt; Is this a matter of knowing which extensions a client and server may
&gt; support and having a framework by which new extensions can be added without
&gt; breaking anything?  If either end wants some protocol extension that the
&gt; other end can't handle, they just quietly agree not to use it, but as you
&gt; add new extensions, you register them somewhere and if the server is
&gt; similarly enabled, it just magically works?

MCP specifies a negotiation phase which begins immediately after
the initial connection.  Both client and server send a list of
their capabilities as package,version records and work out the
overlapping capabilities according to a simple algorithm.  Thereafter
both parties know precisely what they can and can't talk about.
If the server says it can handle a package that the client can't
support then after the negotiation phase has ended it'll know the
client's limitations and so need not bother using that package.

The basic MCP spec details fundamental packages, and the messages
they support.  Stuff like the initial connection's "we speak MCP
here, how about you?" and the subsequent negoiation phase "cool,
here's a list of other packages I know about".

It's not magic.  It does work flawlessly however, which is almost
as good.

[talking crabs, NPCs powered by client-side code]

&gt; Nice!  This sounds like a good way to implement relatively simple
&gt; scriptable NPCs, actually: if they just have their own client, can parse
&gt; the incoming data, and respond appropriately then I don't have to build it
&gt; explicitly into my server or my database model; I can just create an NPC
&gt; object and let its client script handle its responses.  

There are a couple of concepts scuttling around here.  Bots, that
is externally scripted NPC logic.  Distributed processing, or at
least RPC, which allows a client to offer a useful service to the
server and to other people using that server.  You don't *really*
need a chat client to do do either of these things of course.

&gt; (Phil Goetz had a
&gt; great model for low-budget interaction on rec.arts.int-fiction several
&gt; months ago: Artificial Stupidity.  Basically, it's Eliza except that there
&gt; are a few things each character knows about, and it operates under the
&gt; assumptions that a) it is the center of the universe, and you have to be
&gt; talking about *it* and b) everyone else is in cahoots against it, and c)
&gt; everything has to do with one of the things it knows about.  You end up
&gt; with something that behaves as if it were from New Jersey.)

Chatterbots recently emerged as a new tool for augmenting websites.
Providing a warmer and more natural interface to tricky stuff like
FAQ presentations and simple user support queries.  These techniques
are probably worthy of more attention by those who wish to make
their web/chat sites more attractive and engrossing.

Simon Laven has a good rundown on the state of the art.  Shallow
Red of 'Neurostudio Chatterbots' is a nice demo:

    <A  HREF="http://www.toptown.com/hp/sjlaven/">http://www.toptown.com/hp/sjlaven/</A>

I don't profess to any greater knowledge than this however.  I just
thought ELIZA was cute and wondered how to make use of it.
Technically it's kindergarten technology, but more than a match for me.

&gt; &gt;     The same structure can display useful navigational hints.  For
&gt; &gt;     any room on the map you can display a set of buttons corresponding
&gt; &gt;     to the exits out of the room.  The result resembles the cardinal
&gt; &gt;     points dotted around the edge of a compass.  Clicking on a
&gt; &gt;     button moves you the direction of that button and into an
&gt; &gt;     adjoining room.  At the same time the set of buttons can be
&gt; &gt;     updated to represent the exits leading from the new location.
&gt; 
&gt; Until you _do_ want complexly-connected maps.  At which point things get
&gt; ugly.  Doing the compass rose problem has been addressed several times on
&gt; rec.arts.int-fiction, and there are some neat Inform and Hugo libraries
&gt; that address navigation and automapping on ftp.gmd.de under /if-archive.

That's interesting, I'll have to hunt for the Inform/Hugo stuff.
There's certainly a limit on what topologies you can represent with
a simplified interface.  For office floor layouts, or room based
representations of real spaces it's bearable though.  If you want
to display the linkage from the magic-mirror to the land of the
little elves then you probably want to use some other tool.

&gt; Adam
&gt; -- 
&gt; adam#princeton,edu 
&gt; "There's a border to somewhere waiting, and a tank full of time." - J. Steinman

Cheers,
Ay.

Andrew.Wilson#cm,cf.ac.uk <A  HREF="http://www.cm.cf.ac.uk/User/Andrew.Wilson/">http://www.cm.cf.ac.uk/User/Andrew.Wilson/</A>
Voice/Fax: +44 (0) 1865 513 091


</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="00663" HREF="msg00663.html">[MUD-Dev] Re: clients anyone?...</A></STRONG>
<UL><LI><EM>From:</EM> "Adam J. Thornton" &lt;adam#phoenix,Princeton.EDU&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00664.html">[MUD-Dev] Amoeba: Distributed OS release</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00666.html">[MUD-Dev] Re: DBMS in MU*'s</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00663.html">[MUD-Dev] Re: clients anyone?...</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00689.html">[MUD-Dev] Re: clients anyone?...</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00665"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00665"><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: Methods to Reduce Ecological Wipeout</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00681" HREF="msg00681.html">[MUD-Dev] Re: Methods to Reduce Ecological Wipeout</A></strong>, 
s001gmu <a href="mailto:s001gmu#nova,wright.edu">s001gmu#nova,wright.edu</a>, Wed 12 Aug 1998, 13:06 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00664" HREF="msg00664.html">[MUD-Dev] Amoeba: Distributed OS release</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Tue 11 Aug 1998, 20:17 GMT
<LI><strong><A NAME="00662" HREF="msg00662.html">[MUD-Dev] clients anyone?...</A></strong>, 
Andrew Wilson <a href="mailto:andrew#aaaaaaaa,demon.co.uk">andrew#aaaaaaaa,demon.co.uk</a>, Tue 11 Aug 1998, 18:05 GMT
<UL>
<LI><strong><A NAME="00663" HREF="msg00663.html">[MUD-Dev] Re: clients anyone?...</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Tue 11 Aug 1998, 20:03 GMT
<UL>
<LI><strong><A NAME="00665" HREF="msg00665.html">[MUD-Dev] Re: clients anyone?...</A></strong>, 
Andrew Wilson <a href="mailto:andrew#aaaaaaaa,demon.co.uk">andrew#aaaaaaaa,demon.co.uk</a>, Tue 11 Aug 1998, 21:56 GMT
</LI>
<LI><strong><A NAME="00689" HREF="msg00689.html">[MUD-Dev] Re: clients anyone?...</A></strong>, 
Andrew Wilson <a href="mailto:andrew#aaaaaaaa,demon.co.uk">andrew#aaaaaaaa,demon.co.uk</a>, Wed 12 Aug 1998, 17:41 GMT
</LI>
<LI><strong><A NAME="00690" HREF="msg00690.html">[MUD-Dev] Re: clients anyone?...</A></strong>, 
Hans-Henrik Staerfeldt <a href="mailto:hhs#cbs,dtu.dk">hhs#cbs,dtu.dk</a>, Wed 12 Aug 1998, 18:08 GMT
<UL>
<LI><strong><A NAME="00692" HREF="msg00692.html">[MUD-Dev] Re: clients anyone?...</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Wed 12 Aug 1998, 18:37 GMT
<UL>
<LI><EM>Message not available</EM><UL>
<LI><strong><A NAME="00697" HREF="msg00697.html">[MUD-Dev] Re: LinuxThreads and SIGUSR1 (Ref: [MUD-Dev])</A></strong>, 
Adam J. Thornton <a href="mailto:adam#phoenix,Princeton.EDU">adam#phoenix,Princeton.EDU</a>, Wed 12 Aug 1998, 23:09 GMT
</LI>
</UL>
</LI>
</UL>
</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>