1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: Distribution schemes (was Re: [MUD&#45;Dev] Languages for MUD drivers) -->
<!--X-From-R13: "Pehpr [vgpurare, Xe." <oehprNcherzntvp.pbz> -->
<!--X-Date: Thu, 18 Nov 1999 17:23:16 &#45;0800 -->
<!--X-Message-Id: 01a501bf322c$43db5260$7101a8c0@howdy.cybersight.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: Distribution schemes (was Re: [MUD-Dev] Languages for MUD </title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:bruce@puremagic.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="msg00390.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00392.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00403.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00395.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00391">Author</A>
&nbsp;|&nbsp;<A HREF="#00391">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00391">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</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: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</LI>
<LI><em>From</em>: "Bruce Mitchener, Jr." &lt;<A HREF="mailto:bruce#puremagic,com">bruce#puremagic,com</A>&gt;</LI>
<LI><em>Date</em>: Thu, 18 Nov 1999 17:20:28 -0800</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>
On Thursday, November 18, 1999, Mik Clarke wrote:
&gt;"Bruce Mitchener, Jr." wrote:
&gt;&gt; &gt;What you really should do though, to my mind, is segment the
&gt;&gt; &gt;functionality.  Now perhaps that is what you are alluding to when you
&gt;&gt; &gt;talk about event-based distribution, although I read that as saying
&gt;&gt; &gt;that the exact same command could be processed on any particular
&gt;&gt;
&gt;&gt; &gt;server, depending on that servers load at the time.
&gt;&gt;
&gt;&gt; I tend to think about it roughly this way and with the use of events, but
&gt;&gt; I need to put a lot more thought into my current set of thoughts.
&gt;
&gt;Uuugh. Yuk.  So every say statement goes through server 1 and every
&gt;spell
&gt;cast through server 2 and every move through server 3?  I think this
&gt;would very quickly drown from the amount of ineraction required between
&gt;the servers.  Bandwidth and network latency are the bug bears.  Avoid
&gt;all designs that have any sort of heavy dependency on network traffic
&gt;and remote processing during the processing of commands.


That would appear to be a rather naive implementation.  I'd like to think
I'm not that stupid. :)   I wouldn't break it out at the command level, but
there are various subsystems which can be broken out and segregated.

&gt;&gt; &gt;You could of course split those tasks any way you like, but the
&gt;&gt; &gt;concept should be clear from the example.  What you really want to do
&gt;&gt; &gt;is ensure that any particular part of the project can be handled by
&gt;&gt; &gt;one or more servers in your server farm.  If you do that right, you
&gt;&gt; &gt;don't need to concern yourself too much about where the right place to
&gt;&gt; &gt;split would be.  If you find you allocated too few servers for the mob
&gt;&gt; &gt;AI for example, you just add another server and split them into 3
&gt;&gt; &gt;groups instead of 2.
&gt;&gt;
&gt;&gt; Why does AI get treated any different from any other client connected to
the
&gt;&gt; game?  (Making a lot of assumptions: clients aren't accessing world via
flat
&gt;&gt; text that they just display, like telnet; that there are clients; etc).
&gt;
&gt;It's imbedded, there's no network latency, they have direct access to
&gt;all program objects and variables.  AI can be a lot more efficient than
&gt;a client as it can directly process the world events, not the text
&gt;messages that result from them.


That just gives AI an advantage over players and requires them to be in the
same process space as the rest of the system.  As for your efficiency point,
I don't plan on sending text messages to any of them.  World events will
travel to any interested and connected server and to the clients.
Presentation of the world events or processing of the world events is a
client issue.  With proper authorization, clients will be able to produce
various world events as well.  This would allow even stuff like a weather
system to be separated out into a rather specialized 'client'.  AI wouldn't
suffer any disadvantages that I can tell by doing it this way over having it
in the same process space.

 - Bruce





_______________________________________________
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="00395" HREF="msg00395.html">RE: Distribution schemes (was 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-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00390.html">Re: [MUD-Dev] code base inquiry</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00392.html">Re: Player statistics calculation (Was: Re: [MUD-Dev] code  base inquiry)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00403.html">RE: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00395.html">RE: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00391"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00391"><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: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00353" HREF="msg00353.html">RE: Distribution schemes (was 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="00379" HREF="msg00379.html">Re: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></strong>, 
Mik Clarke <a href="mailto:mikclrk@attglobal.net">mikclrk@attglobal.net</a>, Thu 18 Nov 1999, 21:11 GMT
</LI>
<LI><strong><A NAME="00364" HREF="msg00364.html">RE: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></strong>, 
Koster, Raph <a href="mailto:rkoster@origin.ea.com">rkoster@origin.ea.com</a>, Thu 18 Nov 1999, 17:00 GMT
<UL>
<LI><strong><A NAME="00403" HREF="msg00403.html">RE: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></strong>, 
Ian Macintosh <a href="mailto:iman@issystems.co.nz">iman@issystems.co.nz</a>, Fri 19 Nov 1999, 20:30 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00391" HREF="msg00391.html">Re: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></strong>, 
Bruce Mitchener, Jr. <a href="mailto:bruce@puremagic.com">bruce@puremagic.com</a>, Fri 19 Nov 1999, 01:23 GMT
<UL>
<LI><strong><A NAME="00395" HREF="msg00395.html">RE: Distribution schemes (was Re: [MUD-Dev] Languages for MUD drivers)</A></strong>, 
Ian Macintosh <a href="mailto:iman@issystems.co.nz">iman@issystems.co.nz</a>, Fri 19 Nov 1999, 18:26 GMT
</LI>
</UL>
</LI>
</ul>
</LI>
<LI><strong><A NAME="00289" HREF="msg00289.html">[MUD-Dev] Sony's EverQuest Admits Using Diku</A></strong>, 
Locke <a href="mailto:theisles@mugs.net">theisles@mugs.net</a>, Wed 17 Nov 1999, 16:31 GMT
<UL>
<LI><strong><A NAME="00297" HREF="msg00297.html">Re: [MUD-Dev] Sony's EverQuest Admits Using Diku</A></strong>, 
rnicoll <a href="mailto:rnicoll@respc-jrn.res.st-andrews.ac.uk">rnicoll@respc-jrn.res.st-andrews.ac.uk</a>, Wed 17 Nov 1999, 17:20 GMT
</LI>
<LI><strong><A NAME="00304" HREF="msg00304.html">Re: [MUD-Dev] Sony's EverQuest Admits Using Diku</A></strong>, 
Greg Miller <a href="mailto:gmiller@classic-games.com">gmiller@classic-games.com</a>, Wed 17 Nov 1999, 21:24 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>