1997Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev]  Re: Issues from the digests and Wout's list -->
<!--X-From-R13: "Xba O. Znzoreg" <wyflfvapNvk.argpbz.pbz> -->
<!--X-Date: from major.globecomm.net [207.51.48.5] by mx3.ibm.net id 861946681.19376&#45;1 Fri Apr 25 05:38:01 1997 -->
<!--X-Message-Id: 199704250543.AAA12618@dfw&#45;ix11.ix.netcom.com -->
<!--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]  Re: Issues from the digests and Wout's list</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:jlsysinc#ix,netcom.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="msg00211.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00213.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00221.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00229.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00212">Author</A>
&nbsp;|&nbsp;<A HREF="#00212">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00212">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: "Multiple Recipients of MUD Design Mailing List" &lt;<A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A>&gt;</LI>
<LI><em>Subject</em>: Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</LI>
<LI><em>From</em>: "Jon A. Lambert" &lt;<A HREF="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</A>&gt;</LI>
<LI><em>Date</em>: Fri, 25 Apr 1997 01:46:17 -0400</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
&gt; From: clawrenc#cup,hp.com
&gt; 
&gt; Actually I understand current LP's do a mix of a global parser (drink
&gt; is avilable everywhere), and verbs bound to unique objects, but that's
&gt; another matter.

All of my verbs are bound to actor.  Verbs like walk, drink, give, etc
are bound to character.  In your press button example, press is bound
to character while any action the button is designed to accomplish
(ala thwack character with arm) is bound to the button.

Objects have distinct types which may invalid certain actions performed
against them.  This is very similar to the Diku object state flags. 
One advantage to this is maintainability and consistency.  All 'drink'
code is located in one routine along with all state checking.  Very
simple.

Note: I have much to say on the combat matters after I catch up. :-)

&gt; 
&gt; I'm a big fan of having verbs bound directly to their target objects. 
&gt; It works, its simple, its efficient, and it allows useful pre-parsing
&gt; by template ala ColdX.  The disadvantage as you write is the lack of
&gt; global defaults for common verbs like "drink".  
&gt; 
&gt; Happily this can be fixed with a touch of LP's parser layer concepts. 
&gt; Have the same verbs-on-objects that MOO, ColdX, and old LP's use, use
&gt; ColdX's template concept (a grown up version of MOO's), and then given
&gt; such template value weightings.  In my case I assign a weighting to
&gt; templates from 0 - 255.  Matching verbs/templates are searched for in
&gt; the normal manner (player, inventory, room etc), with the first
&gt; matching template which weight is over 128 accepted.  If no matching
&gt; templates are found with weights over 128, then the heaviest template
&gt; (largest weight) closest (least removed ala player/inventory/room) to
&gt; the player is taken instead.

While I love the use of regular expressions in COLD, the enhancements
they have made to context are decidedly irritating.  One's order of verb
processing can easily change by moving about the world and picking
up and dropping items.    I prefer a consistent and fixed context order.
It makes for a more comfortable user interface.

&gt; 
&gt; And thus you get state flags and all the endless horrors and nastiness
&gt; that they bring.  No thanks.
&gt; 
I love flags.  I have never experienced the least amount of queasiness
in using them.  :-)  
They certainly have their place in implementing an object-oriented design.
You can end up with a very deep inheritance tree if every minor difference
between objects causes you to create an abstract super-class with 
descendent classes modeling your minor differences.  The result is object
oriented code that can be as difficult to follow as unstructured code.
The LP and MOO libs I have seen exhibit their own set of horrors along
this line.  While I don't particularly agree with the design goals(?) of the
Mud++ project, the inheritance structure is simple (too simple perhaps?)
enough to allow code to be easily followed and highly maintainable.  

I have been enmeshed in Language design for the the last couple of
weeks.  PCCTS is slicker than one-eyed cephlapods from Paraworld Blue.  
More later.. splub gnog furb Squaz.


JL
 


</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="00229" HREF="msg00229.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</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="msg00211.html">Me</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00213.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00221.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00229.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00212"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00212"><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: Issues from the digests and Wout's list</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00201" HREF="msg00201.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
Shawn Halpenny <a href="mailto:malachai#iname,com">malachai#iname,com</a>, Thu 24 Apr 1997, 21:45 GMT
</LI>
<LI><strong><A NAME="00204" HREF="msg00204.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Fri 25 Apr 1997, 00:33 GMT
</LI>
<LI><strong><A NAME="00205" HREF="msg00205.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
Jeff Kesselman <a href="mailto:jeffk#tenetwork,com">jeffk#tenetwork,com</a>, Fri 25 Apr 1997, 02:06 GMT
<UL>
<LI><strong><A NAME="00221" HREF="msg00221.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Fri 25 Apr 1997, 23:22 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00212" HREF="msg00212.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Fri 25 Apr 1997, 12:38 GMT
<UL>
<LI><strong><A NAME="00229" HREF="msg00229.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Sat 26 Apr 1997, 03:13 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00213" HREF="msg00213.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
Jeff Kesselman <a href="mailto:jeffk#tenetwork,com">jeffk#tenetwork,com</a>, Fri 25 Apr 1997, 12:43 GMT
<UL>
<LI><strong><A NAME="00230" HREF="msg00230.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
clawrenc <a href="mailto:clawrenc#cup,hp.com">clawrenc#cup,hp.com</a>, Sat 26 Apr 1997, 03:18 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00215" HREF="msg00215.html">Re: [MUD-Dev]  Re: Issues from the digests and Wout's list</A></strong>, 
Travis Casey <a href="mailto:casey#NU,cs.fsu.edu">casey#NU,cs.fsu.edu</a>, Fri 25 Apr 1997, 13:00 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>