1998Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: lockless system &#45; foolproof? -->
<!--X-From-R13: X Q Znjerapr <pynjNhaqre.rate.ftv.pbz> -->
<!--X-Date: Wed, 2 Sep 1998 13:50:15 &#45;0700 -->
<!--X-Message-Id: 199809022049.NAA03087#under,engr.sgi.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199809020456.VAA17040#cashew,snugharbor.com.snugharbor.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: lockless system - foolproof?</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:claw#under,engr.sgi.com">
</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="msg00914.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00916.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00903.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00896.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00915">Author</A>
&nbsp;|&nbsp;<A HREF="#00915">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00915">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: lockless system - foolproof?</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: lockless system - foolproof? </LI>
<LI><em>From</em>: J C Lawrence &lt;<A HREF="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</A>&gt;</LI>
<LI><em>Date</em>: Wed, 02 Sep 1998 13:49:53 -0700</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>
On Tue, 01 Sep 1998 21:56:46 -0600 
T Alexander Popiel&lt;popiel#snugharbor,com&gt; wrote:

&gt; In message: &lt;<A HREF="msg00899.html">199809011749.KAA04222#under,engr.sgi.com</A>&gt; J C Lawrence
&gt; &lt;claw#under,engr.sgi.com&gt; writes:

&gt;&gt; This assumes that the propagation of shouts across the land is
&gt;&gt; assumed to be instantaneous.  Is that really an automatic
&gt;&gt; assumption?

&gt; It certainly is for me, and probably for anyone with any experience
&gt; playing on LPs, MUSHes, MOOs, or Dikus.  Umm, I think that's over
&gt; 90% of the non-commercial MUDding playerbase.

Dunno.  I've been playing MUDs since the mid 1980's and never assumed
that SHOUTs propagated instantly.  Then again I started playing MUDs
with 300 baud modems so *nothing* propagated instantly.

&gt; The neophyte logging on to a MUD with no prior experience will
&gt; probably not make that assumption immediately, but I'd expect it to
&gt; be assumed pretty quickly, if you give people command feedback and
&gt; prompts; in traditional systems (like DOS) you don't get the command
&gt; prompt back until the command has finished executing in entirety,
&gt; and multitasking is hidden and the user is told to think of the
&gt; computer doing only one thing at a time (because the general
&gt; consensus seems to be that a user cannot grok concurrency).

This is pretty obvious in my environment, as was discussed under the
"Digging the Panama Canal" scenario.  For me, entering a command and
hitting ENTER returns a prompt as soon as the command parses
successfully (as indicated by the "Okay" ack -- see prior discussion
of ambiguity resolution for minor discussion (I think) on this).  The
command itself may execute at any time after the successful parse, and
depending on how that specific command was phrased as well as later
and earlier commands, may or may not execute in a defined sequence
with other commands entered.

  &gt; dig panama canal
  Okay.
  &gt; ...you may now enter more commands, but nothing has happened 
      yet from your "dig" command...
  You start digging the panama canal.
  ...long time passes...
  &gt; l 
  You are standing in a large very deep hole in the ground that 
      you are in the process of digging.

The implicitly concurrent nature is communicated by the seperation of
the acks on command parse and the action ack on first command event
execution.  In the above example the player knows the instant his
character starts digging: he gets the, "You start digging the panama
canal" message.  He should pretty quickly pick up the distinction if
only due to the fact that the gets the "Okay" almost instantly and may
have to wait a fair bit (depending on what else he is doing) for the
other.

This concurrency is implict at a very low level with the command
structure, much in the way that type-ahead is expected and depended
upon with most other MUDs, such that players almost necessarily must
exercise the supports to do what they want (there's a bunch of
supports for commands of the form, "Start doing this and keep doing it
until I tell you to stop").  

&gt; So I'd posit that even if it's not an automatic assumption, it's one
&gt; that will happen often enough to warrant worrying about.  (One
&gt; interesting way to document a non-instantaneous propogation would be
&gt; to make something like the speed of sound real... and then make a
&gt; quest about finding out how fast sound travels.)

Yes, this is different than your standard DIKU, LP, MUSH, etc.  Yes,
this could and may be viewed as an interface expectation and
transparency problem.  No, I'm not going to worry about it.  Generic
DIKU, MUSH, LP etc players are not my targets.

-- 
J C Lawrence                               Internet: claw#null,net
(Contractor)                               Internet: coder#ibm,net
---------(*)                     Internet: claw#under,engr.sgi.com
...Honourary Member of Clan McFud -- Teamer's Avenging Monolith...


</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="00903" HREF="msg00903.html">[MUD-Dev] Re: lockless system - foolproof?</A></STRONG>
<UL><LI><EM>From:</EM> "T. Alexander Popiel" &lt;popiel#snugharbor,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00914.html">[MUD-Dev] VT-100 and other terminal data</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00916.html">[MUD-Dev] Re: UBE/high: Re: FW: UBE/high: Re: W IRED: Kilers</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00903.html">[MUD-Dev] Re: lockless system - foolproof?</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00896.html">[MUD-Dev] Re: lockless system - foolproof?</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00915"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00915"><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: lockless system - foolproof?</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00883" HREF="msg00883.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Mon 31 Aug 1998, 05:49 GMT
<UL>
<LI><strong><A NAME="00886" HREF="msg00886.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
T. Alexander Popiel <a href="mailto:popiel#snugharbor,com">popiel#snugharbor,com</a>, Mon 31 Aug 1998, 14:42 GMT
<UL>
<LI><strong><A NAME="00899" HREF="msg00899.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Tue 01 Sep 1998, 17:50 GMT
<UL>
<LI><strong><A NAME="00903" HREF="msg00903.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
T. Alexander Popiel <a href="mailto:popiel#snugharbor,com">popiel#snugharbor,com</a>, Wed 02 Sep 1998, 04:57 GMT
<UL>
<LI><strong><A NAME="00915" HREF="msg00915.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 02 Sep 1998, 20:50 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00896" HREF="msg00896.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
James Wilson <a href="mailto:jwilson#rochester,rr.com">jwilson#rochester,rr.com</a>, Tue 01 Sep 1998, 03:51 GMT
<UL>
<LI><strong><A NAME="00900" HREF="msg00900.html">[MUD-Dev] Re: lockless system - foolproof?</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Tue 01 Sep 1998, 18:08 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</ul>
</ul>
</ul>
</LI>
<LI><strong><A NAME="00868" HREF="msg00868.html">[MUD-Dev] Quake 3:  How to do OpenGL</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Fri 28 Aug 1998, 02:40 GMT
<LI><strong><A NAME="00864" HREF="msg00864.html">[MUD-Dev] Re: The 'consider' command</A></strong>, 
Damion Schubert <a href="mailto:zjiria#texas,net">zjiria#texas,net</a>, Thu 27 Aug 1998, 05:11 GMT
</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>