1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Some thoughts on languages and users &#45; was: Ma -->
<!--X-From-R13: "Xba O. Znzoreg" <wyflfvapNvk.argpbz.pbz> -->
<!--X-Date: Fri, 1 May 1998 23:17:31 &#45;0700 -->
<!--X-Message-Id: 199805020615.BAA11373@dfw&#45;ix11.ix.netcom.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 9804290515.8wzs@ami&#45;cg.GraySage.Edmonton.AB.CA -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Some thoughts on languages and users - was: Ma</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="msg00317.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00319.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00228.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00426.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00318">Author</A>
&nbsp;|&nbsp;<A HREF="#00318">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00318">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Some thoughts on languages and users - was: Ma</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: Some thoughts on languages and users - was: Ma</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>: Sat, 2 May 1998 02:18:53 -5</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: "Petidomo List Agent -- Kanga.Nu version" &lt;<A HREF="mailto:petidomo#kanga,nu">petidomo#kanga,nu</A>&gt;</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On 28 Apr 98 at 22:15, Chris Gray wrote:
&gt; [Jon Lambert:]
&gt; 
&gt; [much trimmed!]
&gt; 
&gt; :Rather than attempting to discuss your server design (since I'd be 
&gt; :quite ignorant), I'll bore you with a few thoughts on my own design 
&gt; :philosophies regarding languages and how they relate to my server 
&gt; :and my users.  And needless to say, run right off on a tangent.
&gt; 
&gt; Me too!
&gt; 
&gt; There are sort-of (okay, I'm stretching it!) 4 levels in my system. The lower
&gt; level is all written in compiled languages (soon C), and I'm the only one
&gt; who can currently touch that level. The next level is the MUD programming
&gt; language, which is quite a bit cleaner and safer than C (e.g. there are
&gt; no pointers, and the run-time catches things like division by zero, array
&gt; indexes out of bounds, etc.).  Anyone who has been granted "apprentice" or
&gt; "wizard" status can use that language. 

Nod.  I agree that pointers should not be present in a user MPL and 
catching run-time errors safely is very important.  I've seen several 
implementations from C++, Ada, Java and several current MPLs.  I think 
some of the MPLs have done a good job in this area. (kudos to the 
Genesis/Cold crew).  

I know you've posted on this before, and there was a heated discussion on 
it, but I can't remember what your position on variable typing was.  
I'm going for very weakly-typed variables (all variables are of type 
variant), yet having requirements for simple declaration.  Sort of like 
"Rexx, but you better tell me what's a legal name".  All type resolutions 
are the responsiblity of the component object interface.  I'm still 
wrestling with how I handle type promotions and conversions.   

&gt; The next level is a text input with
&gt; prompts system, where the form of code that can be written is quite a lot
&gt; restricted, and each portion is prompted for (the prompt itself changes, and
&gt; there is a one-line full prompt for each section). To be honest, I don't
&gt; know that this type of thing is worthwhile - I haven't had a chance to
&gt; watch the appropriate level of player trying to use it. 

Hmmm, why not implement it as the accessible, but hidden, power-user 
interface for your next level?  

This kind of reminds me of IBM's QMF.  One can cycle through a series of 
screens and specify the different sections of a query and report format 
and then execute or save it when satisfied that all is well.

Aside: QMF sometimes included an apologetic "Sorry" in it's error 
messages.  

&gt; The highest level
&gt; of things that can be done is done completely with the mouse. There is the
&gt; least capability with that method, but anyone can do it. The only problem
&gt; most people get into is entering object names properly (I want them in
&gt; an internal form like 'noun;adjective,adjective').

It is my fervent hope that programming side of my builder interface be 
mostly point and click.  Anything that's an mud-object or component will 
be dragable to a blank piece of paper and linked together with sequence, 
control and decision links.  Control and decision links can filled in 
manually or through expandable property boxes.  (sort of like the VC++ 
or J++ Object Explorer interfaces).  Every Object is reflective of all 
it's public properties and methods.  Of course hot keys will be 
available.  

The actual creative writing task will also be done on a blank piece of 
paper.  It will likely resemble one or more of the popular WebEditors.  A 
library of tags and components can be selected and embedded within the 
document.  The visible format will resemble an expandable/collapsible 
outline.  The idea for this comes from some ancient DOS versions of 
thought-processors that I've had the pleasure (and displeasure) playing 
with.

&gt; Both of the upper levels are written within the MUD language, so can readily
&gt; be extended as needed.
&gt;

Nod.  The output of my upper level will be MPL, although the state of the 
desktop will be stored separately for now.  Perhaps eventually it will be 
a roundtrip tool.  Actual user interface aspects must be written in a 
native language rather than the MPL since there is way too much platform 
dependence here.   

&gt; My experience is very limited compared to some out there, but what I've seen
&gt; is that some people master the MUD language without much trouble. Others
&gt; aren't into programming, but do enjoy the simple building a lot, and will
&gt; spend hours redecorating things. Still others only want to bash things.
&gt; Nothing new here, but merely pointing out that all levels of users will
&gt; exist for any aspect of the system.

I have a gut feeling that users will fall into 4 categories.  I have no 
idea of where and how the numbers fall out.

1) Not interested.  I came to play.
2) Notemakers.  I write, therefore I am.  I'll just pick from the 
   library, thank you. 
3) RubeGoldbergers.  Willing to use most of the tools of my "widget 
   workshop" and fiddle with the properties.  Not quite right?
   What's that stuff that looks kinda like basic?
4) Scriptors.  Drop me into the MPL.  I know how to swim.

&gt; I won't comment much more here (my brand new computer awaits me), but I
&gt; like Jon's idea of building everything out of components, which can then be
&gt; disassembled (or further assembled). Lots of stuff can be handled that way,
&gt; but, as usual, there will be lots of annoying exceptions, too! Things like
&gt; fluids would need special handling, as would situations where the original
&gt; components still maintain some of their identity.

&lt;Gasp!&gt;  Oh crap... fluids and gases.  This is excellent thread material. 
Anyone? Help! 


--
--/*\ Jon A. Lambert - TychoMUD     Internet:jlsysinc#ix,netcom.com /*\--
--/*\ Mud Server Developer's Page &lt;<A  HREF="http://www.netcom.com/~jlsysinc">http://www.netcom.com/~jlsysinc</A>&gt; /*\--
--/*\   "Everything that deceives may be said to enchant" - Plato   /*\--

-- 
MUD-Dev: Advancing an unrealised future.

</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="00426" HREF="msg00426.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Ma</A></strong>
<ul compact><li><em>From:</em> J C Lawrence &lt;claw#under,engr.sgi.com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00228" HREF="msg00228.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Macro semi</A></STRONG>
<UL><LI><EM>From:</EM> cg#ami-cg,GraySage.Edmonton.AB.CA (Chris Gray)</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00317.html">[MUD-Dev] Re: regulating player-created objects</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00319.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00228.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Macro semi</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00426.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Ma</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00318"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00318"><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><A NAME="00248" HREF="msg00248.html">[MUD-Dev] Reuters: Cheaters Never Prosper</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Thu 30 Apr 1998, 00:14 GMT
<LI><strong><A NAME="00236" HREF="msg00236.html">[MUD-Dev] Bio of John Bertoglio</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 29 Apr 1998, 20:01 GMT
<LI><strong><A NAME="00230" HREF="msg00230.html">[MUD-Dev] Re: (fwd) Confusing?</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Wed 29 Apr 1998, 06:02 GMT
<LI><strong><A NAME="00228" HREF="msg00228.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Macro semi</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Wed 29 Apr 1998, 06:02 GMT
<UL>
<LI><strong><A NAME="00318" HREF="msg00318.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Ma</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Sat 02 May 1998, 06:17 GMT
<UL>
<LI><strong><A NAME="00426" HREF="msg00426.html">[MUD-Dev] Re: Some thoughts on languages and users - was: Ma</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 06 May 1998, 18:33 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00233" HREF="msg00233.html">[MUD-Dev] Re: (fwd) MOB or player? Re: Global Communications on Muds</A></strong>, 
John Bertoglio <a href="mailto:alexb#internetcds,com">alexb#internetcds,com</a>, Wed 29 Apr 1998, 05:46 GMT
<LI><strong><A NAME="00224" HREF="msg00224.html">[MUD-Dev] META: Mail archives and MIME attachments</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 29 Apr 1998, 01:25 GMT
<UL>
<LI><strong><A NAME="00320" HREF="msg00320.html">[MUD-Dev] Re: META: Mail archives and MIME attachments</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Sat 02 May 1998, 06:36 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>