1997Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev]	(fwd) Re: Issues from the digests and Wout's list -->
<!--X-From-R13: ptNnzv&#45;pt.UenlEntr.Sqzbagba.OP.QO (Quevf Uenl) -->
<!--X-Date: from tacitus.globecomm.net [207.51.48.7] by mx5.ibm.net id 862179035.46228&#45;1 Sun Apr 27 22:10:35 1997 -->
<!--X-Message-Id: 9704272314.7yni@ami&#45;cg.GraySage.Edmonton.AB.CA -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev]	(fwd) Re: Issues from the digests and Wout's lis</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">
</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="msg00259.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00261.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00299.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00264.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00260">Author</A>
&nbsp;|&nbsp;<A HREF="#00260">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00260">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev]	(fwd) Re: Issues from the digests and Wout's list</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev]	(fwd) Re: Issues from the digests and Wout's list</LI>
<LI><em>From</em>: <A HREF="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</A> (Chris Gray)</LI>
<LI><em>Date</em>: Sun, 27 Apr 97 16:14:08 MST</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
[Raz:]
:I've a feeling I may be in the minority of being an English member of the
:list, so the following may not ring many bells to too many people:

I probably don't count as English, but I was born there, and my family
is English, but we moved to Canada when I was 4 years old.

[Command completion example deleted.]

I have a philosophical problem with command completion like that. Doing it
requires storing a state on the character, which affects how input commands
are "understood". This can lead to confusion on the part of the player,
if the player and the computer disagree about the state. Perhaps it is a
minor problem, but it can be an irritating one. An adventure game has a
fixed set of commands, determined when the game is written. In many MUDs,
mine included, objects and even verbs can be added by multiple people,
while the system is running. Ambiguities can arise which were not
anticipated. So, I want the rules for input parsing to be as simple and
stateless as possible. Also, on a MUD, the world can change a lot between
the inputs from a given player. So, the command state saved can be made
invalid. What if someone drops a new green bag between the commands? What
if one is replaced by another? As a player, I'd rather not be surprised
in that way. I want the surprises to be part of the scenario, not part
of the interface!

:I assume we're all aiming at something better in terms of parsers?  =
:Forgive
:me if I've missed a whole discussion - I'm foolishly writing this without
:catching up on the other mails - but its something I've not seen =
:mentioned
:at least during the time I was able to keep up to date with the list.
:
:By something better, I mean such features as the above type of command
:completion (which I *have* seen you discussing =3D)), pronouns, =
:conjunctions,
:support for EXCEPT, etc.  This is the sort of parser my coder friend
:supplied for a very old experimental engine, which would support a =
:sequence
:such as (engine responses snipped):
:  &gt; get all except the green bag
:  &gt; examine bag
:  &gt; get it and put the flask in it
:  &gt; put key in box and put it in the bag

I've thought of doing 'except' type stuff, but it hasn't been high enough
priority. It doesn't seem to add much, unless there are a lot of objects
around. Using 'it' is something on my list to investigate. The last
example normally uses 'then' instead of 'and', since 'and' is used
when listing objects. Although in that case, there is already an indirect
object, so the 'and' after it wouldn't normally be used. (Are there English
sentences in which the indirect object phrase has 'and' in it?) Currently,
the limit in mine is something like:

  Put the steel sword, the rock and big yellow brick into glass trophy case.

Points: 'the'/'a' is optional; Can capitalize as you wish. Can punctuate.
Can accept lists with ',' or 'and'. Can have indirect objects. Can have
arbitrary lists of adjectives.

:It even supported the command that Magnetic Scrolls made such a big deal
:about, namely:
:  &gt; put the pot plant in the plant pot
:
:Though, apparently, there's nothing very complicated about that syntax at
:all =3D)

That's pretty straightforward. My 'putIn' verb just tells you that you
can't put something into itself.

--
Chris Gray   cg#ami-cg,GraySage.Edmonton.AB.CA

</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<ul compact><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><A NAME="00264" HREF="msg00264.html">Magnetic Scrolls' magical parser</A></strong>
<ul compact><li><em>From:</em> Greg Munt &lt;greg#uni-corn,demon.co.uk&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00259.html">Re: MUD Design Digest V1 #55</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00261.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00299.html">Re: [MUD-Dev]  Re: Combat</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00264.html">Magnetic Scrolls' magical parser</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00260"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00260"><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: Combat</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00291" HREF="msg00291.html">Re: [MUD-Dev]  Re: Combat</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Wed 30 Apr 1997, 01:03 GMT
</LI>
<LI><strong><A NAME="00278" HREF="msg00278.html">Re: [MUD-Dev]  Re: Combat</A></strong>, 
Jeff Kesselman <a href="mailto:jeffk#tenetwork,com">jeffk#tenetwork,com</a>, Tue 29 Apr 1997, 16:15 GMT
</LI>
<LI><strong><A NAME="00297" HREF="msg00297.html">Re: [MUD-Dev]  Re: Combat</A></strong>, 
Travis Casey <a href="mailto:casey#NU,cs.fsu.edu">casey#NU,cs.fsu.edu</a>, Wed 30 Apr 1997, 09:19 GMT
</LI>
<LI><strong><A NAME="00299" HREF="msg00299.html">Re: [MUD-Dev]  Re: Combat</A></strong>, 
Travis Casey <a href="mailto:casey#NU,cs.fsu.edu">casey#NU,cs.fsu.edu</a>, Wed 30 Apr 1997, 09:48 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00260" HREF="msg00260.html">Re: [MUD-Dev]	(fwd) Re: Issues from the digests and Wout's list</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Mon 28 Apr 1997, 05:10 GMT
<UL>
<LI><strong><A NAME="00264" HREF="msg00264.html">Magnetic Scrolls' magical parser</A></strong>, 
Greg Munt <a href="mailto:greg#uni-corn,demon.co.uk">greg#uni-corn,demon.co.uk</a>, Tue 29 Apr 1997, 04:08 GMT
<UL>
<LI><strong><A NAME="00273" HREF="msg00273.html">Re: [MUD-Dev]  Magnetic Scrolls' magical parser</A></strong>, 
Adam Wiggins <a href="mailto:nightfall#inficad,com">nightfall#inficad,com</a>, Tue 29 Apr 1997, 11:46 GMT
<UL>
<LI><strong><A NAME="00286" HREF="msg00286.html">Re: [MUD-Dev]  Magnetic Scrolls' magical parser</A></strong>, 
Nathan Yospe <a href="mailto:yospe#hawaii,edu">yospe#hawaii,edu</a>, Wed 30 Apr 1997, 00:32 GMT
</LI>
<LI><strong><A NAME="00307" HREF="msg00307.html">Re: [MUD-Dev]  Magnetic Scrolls' magical parser</A></strong>, 
Ling <a href="mailto:K.L.Lo-94#student,lut.ac.uk">K.L.Lo-94#student,lut.ac.uk</a>, Fri 02 May 1997, 20:35 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>