1997Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Usability and interface and who the hell is suppo -->
<!--X-From-R13: ptNnzv&#45;pt.UenlEntr.Sqzbagba.OP.QO (Quevf Uenl) -->
<!--X-Date: Tue, 23 Sep 1997 06:02:31 +0000 -->
<!--X-Message-Id: 9709230336.8grm@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] Usability and interface and who the hell is supp</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="msg01376.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01378.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg01355.html">Previous</a>
&nbsp;|&nbsp;<a href="msg01428.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#01377">Author</A>
&nbsp;|&nbsp;<A HREF="#01377">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#01377">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Usability and interface and who the hell is suppo</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] Usability and interface and who the hell is suppo</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>: Mon, 22 Sep 97 20:36:22 MST</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
[Caliban:]

:When I presented general solutions, I received a clear and overwhelming
:majority of posts which considered the thread irrelevant.

Perhaps you needed some examples? (Sorry, I couldn't resist!)

:them were specifically combative and insulting. Such an overwhelming
:majority may be statistically considered to be representative of the
:active group members.

That's not my recollection at all. Oh well, clearly different people
interpret a given set of words in different ways.


And now onto useful discussion...

:I'd agree entirely, but somewhere along the line you start hitting the
:problem of what exactly the second ball *is*. Some systems count from
:the top of the list, some count from the bottom. In order to resolve
:this, you have to introduce an incompatibility or an inconsistency. You
:also end up tying the interface to the underlying server. One possible
:solution is to make the syntax of game X conform to the expectations a
:player at game X would have, but then you have differing operation of
:commands. If you select one operational method and stick with it, you
:become incompatible with the syntax you borrowed from game X in order to
:be compatible with game Y (or with no game at all), which pretty much
:kills the idea of making it easier for a game X player to use your game.
:If it's not going to work like game X, why allow the same syntax?

Excellent point. Are there actual reverse meanings like that around?
It surprises me that someone would count from the bottom of the list. Is
the "standard" solution to disallow ambiguous references, or to just
pick one item, according to whatever rules the system has? You don't
have to have a very complex world, or many builders, before ambiguities
arise.

:I find the arbitrary numbering of items to be confusing; 'get the second
:ball' means what? Get the second ball that arrived? Get the second ball
:from the left? From the right? From the top? In the real world, if I
:were to set down three balls next to another ball by placing one on each
:end and then one between the two on your left, what exactly would the
:second ball be? The second ball to arrive is the first one I put down.
:The second ball I set down is the one on the other end. The second ball
:from left to right is the last one I put down. And the second ball from
:right to left is the one that was already there. It's inherently
:ambiguous. The way most games handle this is to consider them in the
:order they were placed, and have no real representation of exactly where
:in the game world they are. But they handle this in varying fashions:
:stack, queue, internal object reference, how do you tell?

Another excellent example. Your point is taken. Having said that, I am
now in a quandary as to what *should* be done! My current implementation
allows the use of the syntax like     "get rock #3"    and I will find
the 3rd rock in the room's contents, as counting down in the list of
items in the room. It seems to me that a system has to have *some*
way of handling this, else the player cannot do some things. Users have
suggested an additional form (from NLP!), where "get a rock" would
specifically allow the system to chose which one to get. I could also
allow a per-player toggle, allowing "get rock" to do the same. Is this
putting in too much complexity, and making the user interface needlessly
difficult?

:This is a huge and complex problem, and is a perfect example of exactly
:where I feel NLP falls down. NLP is not objective, and soaks a
:tremendous amount of effort into solving questions like this instead of
:into other more interesting functions of the game design. For this
:reason, I consider it a Bad Thing. There are certainly solutions, but
:the solutions either kill NLP or introduce significantly more complexity
:to the user command set and/or the design of the parser. NLP is like
:saying your game is going to support everything. No game can support
:everything, so your goal is intrinsically unrealistic. And to provide
:the *illusion* that your game supports everything is eventually
:frustrating to the player, as he discovers that certain perfectly
:reasonable commands utterly confuse your parser. And if you have too
:many special cases, you're doing it wrong.

I agree with most of what you are saying here, but it seems to me the
problems are ones which have to be solved in a given system, whether
through natural-language-like means or others. It's worth noting that
many of these problems disappear if you use can choose items with a
pointer in a graphical display.

I guess that's my problem with what you are saying, in general. You are
saying that NLP (I'm not real sure what you mean by that, but for the
sake of continuing this discussion, I'm assuming you mean the small
extensions to input syntax that allow the user to use slightly more
correct English syntax in commands) causes lots of problems, which I
certainly agree with. But it can also solve lots of problems, and if
it is done away with, other solutions must be found. Is there a net
gain after doing that?

To clarify what I'm getting at, here is a trivialized example: Boffo has
just defeated a dragon, and is faced with its hoard. There are seventeen
swords, including three two-handed swords. How does Boffo pick one up,
or examine it? Can anyone think of a better solution than any of the
ones previously listed (or mine)?

This is a pretty low-level detail to be talking about, but at least
its a start!

--
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="01428" HREF="msg01428.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>
<ul compact><li><em>From:</em> clawrenc#cup,hp.com</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg01376.html">Re: [MUD-Dev] Usability and interface</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg01378.html">Re: [MUD-Dev] Usability and interface</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg01355.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg01428.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#01377"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#01377"><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] Usability and interface and who the hell is suppo</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="01398" HREF="msg01398.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Wed 24 Sep 1997, 00:03 GMT
</LI>
</ul>
</ul>
<LI><strong><A NAME="01332" HREF="msg01332.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Travis Casey <a href="mailto:efindel#polaris,net">efindel#polaris,net</a>, Sun 21 Sep 1997, 01:05 GMT
<UL>
<LI><strong><A NAME="01351" HREF="msg01351.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Mon 22 Sep 1997, 01:32 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01355" HREF="msg01355.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Travis Casey <a href="mailto:efindel#polaris,net">efindel#polaris,net</a>, Mon 22 Sep 1997, 03:01 GMT
</LI>
<LI><strong><A NAME="01377" HREF="msg01377.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Tue 23 Sep 1997, 06:02 GMT
<UL>
<LI><strong><A NAME="01428" HREF="msg01428.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Wed 24 Sep 1997, 23:04 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="01387" HREF="msg01387.html">[MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Maddy <a href="mailto:maddy#fysh,org">maddy#fysh,org</a>, Tue 23 Sep 1997, 16:09 GMT
</LI>
<LI><strong><A NAME="01390" HREF="msg01390.html">RE: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Tue 23 Sep 1997, 17:46 GMT
<UL>
<LI><strong><A NAME="01417" HREF="msg01417.html">Re: [MUD-Dev] Usability and interface and who the hell is suppo</A></strong>, 
Broly <a href="mailto:broly#mail,bcpl.lib.md.us">broly#mail,bcpl.lib.md.us</a>, Wed 24 Sep 1997, 17:24 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>