1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: RE: [MUD&#45;Dev] Languages for MUD drivers -->
<!--X-From-R13: "Znherag Pbffnivg" <obffnivgNplorepnoyr.se> -->
<!--X-Date: Wed, 17 Nov 1999 13:25:06 &#45;0800 -->
<!--X-Message-Id: E11oCVu&#45;0003m8&#45;00@kanga.nu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: E11nY0E&#45;0006Ai&#45;00@kanga.nu -->
<!--X-Reference: 000601bf30c0$74df2b60$0201a8c0@granite -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, RE: [MUD-Dev] Languages for MUD drivers</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:bossavit@cybercable.fr">
</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="msg00298.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00309.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00491.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00350.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00308">Author</A>
&nbsp;|&nbsp;<A HREF="#00308">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00308">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>RE: [MUD-Dev] Languages for MUD drivers</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>: RE: [MUD-Dev] Languages for MUD drivers</LI>
<LI><em>From</em>: "Laurent Bossavit" &lt;<A HREF="mailto:bossavit#cybercable,fr">bossavit#cybercable,fr</A>&gt;</LI>
<LI><em>Date</em>: Wed, 17 Nov 1999 22:13:44 +0100</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>
Ian Macintosh sez:

&gt; Distributed processing support can be handled by running multiple
&gt; processes and interconnecting them.  I've always thought that this is
&gt; a better way of handling large systems and a large number of users.
&gt; ie, segment areas (zones) onto different servers and link them.

There's no really good (read transparent) way to interconnect several 
MOO servers in that way. Suppose I'm running the Feral Forest on 
server A, the Damp Dungeon on server B; I want the key from the lower 
dungeon cell to open the witch's hut in the forest - hence I want the 
player to be able to take the key and move from A to B, moving the 
key with em - and there's no way AFAIK that can be done with MOO.

Even assuming something like an 'object exchange protocol' that would 
let server A open a connection to server B, spit out the key object's 
code and properties so that a new, equivalent object can be created 
there, and the old key deleted; assuming I have a way to make sure 
the key won't be duplicated or deleted altogether if something 
happens to the network connection between A and B while this is going 
on; assuming I can do the same to the player object; assuming I can 
require the player emself to disconnect from A and reconnect to B in 
an orderly fashion whenever this happens - which implies a custom 
client program, or tech support headaches...

Hmm, I can't assume all of the above anyway since it's far from 
realistic, but you see where this would lead - a lot of in-DB code 
that deals only with such interconnections. (And what if the key has 
a property pointing to another object local to A; and what if the key 
has parent objects that are not in B, etc. etc.) It's much better if 
such distributed processing is in some appropriate fashion a 
capability of the server itself. MOO as it is doesn't fit the bill; 
and adding these capabilities to a MOO server wouldn't be a piece of 
cake.

In fact, my port to Java did include distributed operation support, 
based on RMI. One of the first things that became apparent as I was 
implementing it was that some MOO-language modifications would be 
necessary; the very least I could get away with was a syntactic 
representation of remote objects, i.e. the literal
  #1
referred to the local #1 whereas
  #my.server.com:1
referred to #1 on my.server.com. With these modifications it was 
possible to call verbs and read or write properties on remote objects 
transparently, as if they were local.

But I soon realized I had in fact opened a very nasty can of worms. I 
had to add code to the server to prohibit creation of local objects 
that were children of remote objects, otherwise I would have had to 
implement a distributed database as well - which was both beyond me 
and beyond my time budget. Another problem was the permissions 
system; how the Wizard on server A would be prevented from having 
wizard access for server B's objects, or if I decided to 'trust' 
wizard bits between servers, how to securely authenticate server 
connections.

To cut a long story short, I eventually gave up on "good" 
disitributed support and left it in a fairly primitive state - I had 
to ship product and it didn't look as if it would see much use.

&gt; I'm not sure of what you are refering to when you say concurrent
&gt; processing support?  I understand the term, but I don't understand
&gt; the context re reactive worlds? 

I'm basically referring to support for preemptive (rather than MOO's 
collaborative) multitasking. Task scheduling seems to be a primary 
cause of lag in MOO servers - true multithreading means a server is 
more responsive; at least that's the theory.

&gt; Perhaps you could also elaborate reflective capabilities?

Well, MOO's at least got that - in spades : I mean the ability (in 
verb code) to find out what verbs and properties are defined on an 
object, and possibly to modify those. This is a central feature, at 
least IMHO, of a modern M* server - because it lets you write in-DB 
editors. This may seem peripheral to some, but it's crucial to the 
notion of a virtual reality : the point of MUDs and MOOs was that 
they could be modified 'from the inside', which made them more like 
the real world - we don't 'step outside' the real world when we want 
to modify it, but modify it we do !


-[Morendil]-
We all live in a yellow subroutine.




_______________________________________________
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="00411" HREF="msg00411.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>
<ul compact><li><em>From:</em> J C Lawrence &lt;claw@cp.net&gt;</li></ul>
<li><strong><A NAME="00350" HREF="msg00350.html">RE: [MUD-Dev] Languages for MUD drivers</A></strong>
<ul compact><li><em>From:</em> "Ian Macintosh" &lt;iman@issystems.co.nz&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00259" HREF="msg00259.html">[MUD-Dev] Languages for MUD drivers</A></STRONG>
<UL><LI><EM>From:</EM> "Laurent Bossavit" &lt;laurent@netdive.com&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00288" HREF="msg00288.html">RE: [MUD-Dev] Languages for MUD drivers</A></STRONG>
<UL><LI><EM>From:</EM> "Ian Macintosh" &lt;iman@issystems.co.nz&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00298.html">Re: [MUD-Dev] code base inquiry</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00309.html">Re: [MUD-Dev] players who "take away from the game"</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00491.html">Re: [MUD-Dev] Languages for MUD drivers</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00350.html">RE: [MUD-Dev] Languages for MUD drivers</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00308"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00308"><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] Languages for MUD drivers</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00430" HREF="msg00430.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
Jo Dillon <a href="mailto:emily@thelonious.new.ox.ac.uk">emily@thelonious.new.ox.ac.uk</a>, Sun 21 Nov 1999, 22:18 GMT
<UL>
<LI><strong><A NAME="00483" HREF="msg00483.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Wed 24 Nov 1999, 19:36 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00449" HREF="msg00449.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
Greg Miller <a href="mailto:gmiller@classic-games.com">gmiller@classic-games.com</a>, Mon 22 Nov 1999, 20:25 GMT
<UL>
<LI><strong><A NAME="00491" HREF="msg00491.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Wed 24 Nov 1999, 20:38 GMT
</LI>
</UL>
</LI>
</ul>
</ul>
<LI><strong><A NAME="00308" HREF="msg00308.html">RE: [MUD-Dev] Languages for MUD drivers</A></strong>, 
Laurent Bossavit <a href="mailto:bossavit@cybercable.fr">bossavit@cybercable.fr</a>, Wed 17 Nov 1999, 21:25 GMT
<UL>
<LI><strong><A NAME="00350" HREF="msg00350.html">RE: [MUD-Dev] Languages for MUD drivers</A></strong>, 
Ian Macintosh <a href="mailto:iman@issystems.co.nz">iman@issystems.co.nz</a>, Thu 18 Nov 1999, 07:34 GMT
</LI>
<LI><strong><A NAME="00411" HREF="msg00411.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Fri 19 Nov 1999, 23:37 GMT
<UL>
<LI><strong><A NAME="00412" HREF="msg00412.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
Laurent Bossavit <a href="mailto:bossavit@cybercable.fr">bossavit@cybercable.fr</a>, Sat 20 Nov 1999, 00:39 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</ul>
<LI><strong><A NAME="00334" HREF="msg00334.html">Re: [MUD-Dev] Languages for MUD drivers</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Thu 18 Nov 1999, 01:30 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>