2000Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Embedded languages, object persistance... ack. -->
<!--X-From-R13: "Xnl Qneyfba" <abcNzvger.bet> -->
<!--X-Date: Mon, 03 Jan 2000 12:25:33 &#45;0800 -->
<!--X-Message-Id: 00c801bf5628$028a4580$18095381@POINTSMAN -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 000c01bf51db$81f3f600$f6088d18#busy1,on.wave.home.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Embedded languages, object persistance... ack.</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:nop#mitre,org">
</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="msg00042.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00044.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00046.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00124.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00043">Author</A>
&nbsp;|&nbsp;<A HREF="#00043">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00043">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Embedded languages, object persistance... ack.</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: &lt;<A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A>&gt;</LI>
<LI><em>Subject</em>: Re: [MUD-Dev] Embedded languages, object persistance... ack.</LI>
<LI><em>From</em>: "Jay Carlson" &lt;<A HREF="mailto:nop#mitre,org">nop#mitre,org</A>&gt;</LI>
<LI><em>Date</em>: Mon, 3 Jan 2000 15:20:42 -0500</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: <A HREF="mailto:mud-dev-admin#kanga,nu">mud-dev-admin#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>
[...the moo apologist wakes...]

"Joe Kingry" &lt;jkingry#uwaterloo,ca&gt; writes on Wednesday, December 29, 1999
4:03 AM:


&gt; I mean, I know what the goals in general are. Persistance. You have a
house
&gt; say in some place in the world. It get's damaged, it stays damaged until
it
&gt; is repaird. So persistence is done through some kind of database, or
&gt; multiple databases broken up to distribute categories/workload.

Geez, this has been around in the Tiny family and DGD for years.

The big lose of persistence is that it's harder to get things back to a
known state if your code screws up.  For instance, some MOO projects I've
worked on have had fsck-like state checkers that would attempt to clean up
broken object state and half-broken links.  By forcing programmers to
explicitly manage state, you force them to spend some time thinking about
these kinds of things.  OTOH, when you're prototyping it's not something you
care much about.

&gt; I want a mud server on which I can change the code online of say a skill,
a
&gt; spell or something else. I understand that this is the purpose of having
an
&gt; embedded language that runs "on top of" the mud's driver. i.e. MUF for
MUQ,
&gt; Python for AR3 etc.  So in general I know this code is to be compiled
since
&gt; you don't want to be executing "scripts", but is this code an object? and
&gt; then is the byte-code stored? ack.. I'm confused.

Slightly offtopic: there's an interesting terminology/concept confusion
common in MUD object design discussions.  Usually when we're talking about
mud objects, we're thinking of things like rooms, swords, NPCs, etc.  In
languages like Smalltalk, everything is an object, even a method.  I've seen
many people (especially myself) going down ratholes where you can pick up
integers or method definitions, or fail to design using the programming
language objects to build when difficult to figure out a VR behavior for an
abstract concept.

&gt; All I want in a mud server is this:
&gt;
&gt; -doesn't have every object in memory, only when needed, otherwise on file.

MOO trivially satisfies this; after all, there are many fine lines of code
in the kernel to do it, so why duplicate?

&gt; -doesn't require me to learn it's "own custom embedded language", this one
&gt; really gets to me
&gt; -somehow allows for security and access levels while coding

As far as I know, there are no mainstream languages for dynamic persistent
programming environments that do anything plausible with multi-author
security.  So I think you lose on this.

Explicit representation of authorship and authority in dynamic languages is
pretty interesting.  Doug Orleans is working on it.

&gt; -somehow allows for an event type system

Any of the full-out programmable servers will give you many different
options for how you want to code your own personal event system. :-)

&gt; -allows code to be contained in packages and has appropriate management
&gt; features. Ie. I can write the code offline in a file and then upload the
&gt; file to the server

This requirement is difficult when combined goal of a persistent
environment.  In many cases it doesn't make sense to be hacking on objects
out of context; consider adding and removing object properties.  There has
to be a pretty full set of synchronization logic for this to really work the
Right Way.

&gt; -will allow for http access to the database

JHM was the first mud web server, and there are n different competing MOO
web application frameworks....

&gt; An added bonus would be, but hardly nessesary:
&gt; -driver ported to both Win32 platform and *nix platforms and database is
&gt; independent of platform.

Mostly true of MOO, modulo crypt() issues.

Jay




_______________________________________________
MUD-Dev maillist  -  MUD-Dev#kanga,nu
<A  HREF="http://www.kanga.nu/lists/listinfo/mud-dev">http://www.kanga.nu/lists/listinfo/mud-dev</A>

</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="00124" HREF="msg00124.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>
<ul compact><li><em>From:</em> J C Lawrence &lt;claw#kanga,nu&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="msg00042.html">[MUD-Dev] Catalog of Compiler Construction Tools</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00044.html">[MUD-Dev] Microthreads for Python</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00046.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00124.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00043"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00043"><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="00013" HREF="msg00013.html">[MUD-Dev] JavaWorld: Build an object database</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Sat 01 Jan 2000, 20:51 GMT
<LI><strong><A NAME="00012" HREF="msg00012.html">[MUD-Dev] Muq update</A></strong>, 
Cynbe ru Taren <a href="mailto:cynbe#muq,org">cynbe#muq,org</a>, Sat 01 Jan 2000, 20:14 GMT
<LI><strong><A NAME="00004" HREF="msg00004.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Sat 01 Jan 2000, 19:03 GMT
<UL>
<LI><strong><A NAME="00046" HREF="msg00046.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
Jay Carlson <a href="mailto:nop#mitre,org">nop#mitre,org</a>, Tue 04 Jan 2000, 01:28 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00043" HREF="msg00043.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
Jay Carlson <a href="mailto:nop#mitre,org">nop#mitre,org</a>, Mon 03 Jan 2000, 20:25 GMT
<UL>
<LI><strong><A NAME="00124" HREF="msg00124.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Tue 18 Jan 2000, 09:17 GMT
<UL>
<LI><strong><A NAME="00137" HREF="msg00137.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
icecube <a href="mailto:icecube#ihug,co.nz">icecube#ihug,co.nz</a>, Tue 18 Jan 2000, 20:52 GMT
</LI>
<LI><strong><A NAME="00144" HREF="msg00144.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
Kevin Littlejohn <a href="mailto:darius#connect,com.au">darius#connect,com.au</a>, Wed 19 Jan 2000, 02:56 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00092" HREF="msg00092.html">Re: [MUD-Dev] Embedded languages, object persistance... ack.</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Sat 15 Jan 2000, 07:14 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>