1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: MUD&#45;Dev digest, Vol 1 #237 &#45; 9 msgs -->
<!--X-From-R13: "Re. Qng" <pngNernygvzr.arg> -->
<!--X-Date: Thu, 23 Dec 1999 09:13:12 &#45;0800 -->
<!--X-Message-Id: 199912231702.LAA09406@sullivan.realtime.net -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: E1213ui&#45;00004v&#45;00@kanga.nu -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: MUD-Dev digest, Vol 1 #237 - 9 msgs</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:cat@realtime.net">
</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="msg00769.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00771.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00789.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00783.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00770">Author</A>
&nbsp;|&nbsp;<A HREF="#00770">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00770">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: MUD-Dev digest, Vol 1 #237 - 9 msgs</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: MUD-Dev digest, Vol 1 #237 - 9 msgs</LI>
<LI><em>From</em>: "Dr. Cat" &lt;<A HREF="mailto:cat#realtime,net">cat#realtime,net</A>&gt;</LI>
<LI><em>Date</em>: Thu, 23 Dec 1999 11:02:51 -0600 (CST)</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>
-- Start of included mail From:  J C Lawrence &lt;claw#kanga,nu&gt;
&gt; On Wed, 22 Dec 1999 22:14:44 -0500 (EST) 
&gt; Rahul Sinha &lt;rsinha#glue,umd.edu&gt; wrote:
&gt; 
&gt; &gt;&gt; I implemented this because people can create their own worlds
&gt; &gt;&gt; offline and when they start each becomes a shard.  And two
&gt; &gt;&gt; players with mutual agreeance can create links between their
&gt; &gt;&gt; worlds and thus users can navigate over player created terrains.
&gt; 
&gt; &gt; so distribute the server binaries, and code in a easy way to link
&gt; &gt; servers.
&gt; 
&gt; While I don't know the mechanics of how he does it, Dr Cat does
&gt; something not entirely unrelated to this with Furcadia.  I recall
&gt; that he's discussed the high level features of these "dreams"
&gt; (corret term?) on the list, but not the implementation.

Furcadia comes with a "dream editor" players can create their own maps
with, and which lets them test most of the features supported by the
scripting language (DragonSpeak) offline.  The game server runs one
process per "dream", and when a player uploads one they've created it
assigns a process that currently has zero players in it to handling the
new map, and puts a teleporter to it next to the player that uploaded it.

The model is designed specifically to allow the processes to be
distributed across multiple host machines for scalability.  But
I don't plan to let players run dream server processes.  If it
ever looks like it might make good business sense &amp; wouldn't degrade
the quality of the game experience, I might consider it.  Right now
I'm running the server at an exodus.net hosting site, which as far
as I know is the best way to assure the lowest latency for the greatest
percentage of players.  My experience suggests that most netlag comes from
the public peering sites that data gets routed through when a player's ISP
and the MUD's connection are provided by two different backbone providers.
If your MUD host is on PSInet, then players using ISPs connected through
PSInet will tend to get low latency, and performance for users on any of
the other backbones will be highly variable and unreliable (though
sometimes it will be good).  The solution is to have a site with "private
peering", meaning basically they bought high bandwidth connections to most
of the major backbones.  Generally traffic from any user that's using any
of those backbones will come right in through that backbone with low
latency.  Exodus connects to six of the top backbones with fiber optic
lines, which is pretty good if you ask me.

For a less latency-sensitive game, or a hobby project, spreading the
servers all over and having highly variable performance might be fine
anyway.  But for a commercial server, quality of service is essential,
and it would be bad to have people wander into a tavern and suddenly find
themselves being served by some user machine on an obscure backbone, or
through a sattelite link that guarantees 500 milliseconds extra latency,
or sharing some guy's 56K modem with 70 other players.

I've also been kind of assuming that all the server machines will be
connected by a LAN.  It's conceivable some or all of the communication
between hosts could be done by having multiple CPUs with a shared memory
architecture as well.  This allows for more lenient assumptions about how
much volume of data can pass between the server processes and with what
kind of latency it will arrive.  If they were talking halfway around the
world to each other it'd take a lot less to choke the game and slow it
down.  That's a theoretical issue at the moment, though.  Right now the
architecture would work modestly well with widely separated hosts, and
after a major reworking I'm going to do next year to improve scalability,
it'd work even better.  It's more an issue of my design goals, performance
goals, and business goals not being served by giving out the server
binaries than one of the architecture not being suited.

Of course there would be huge security issues with users hacking their
servers to do whatever they wanted, which they would do.  Right now
security is dealt with in the game mainly by A) not having much of any
goal-oriented mechanics implemented yet so there's little motivation to
cheat, and B) having all significant decisions made by the server, so when
I do finally get some goals in people would want to cheat at, we'll still
be in fairly good shape.  Turning the server binaries over to the public
would make method B very ineffective and inadequate, and I'd have to do a
huge amount of work to implement some more difficult approach (which would
still be less effective after all that work, most likely).  Of course
continuing to avoid having goal-oriented mechanics would be one way to
reduce the impact of passing out server software.  But giving a player
godlike powers would still enable them to impersonate anybody, spy on
people invisibly to listen in on their private conversations or simply log
ALL of everyone's speech to browse through later, and trick and mess with
people in a variety of other ways.  Again, such insecurity might be
acceptable for a hobby game with a little warning to players up front to
watch out for that kind of stuff.  But for a commercial game it's a bad
idea.

When it comes right down to it, a lot of the motivation players have for
wanting to run their own machine is psychological.  Having it right there
on their PC is "cool" and gives them a feeling of greater control over it.
But a game running on someone else's server machine can give them as much
control over their areas as the designer/programmers choose to give them,
and can potentially offer them (and the players that enter their areas)
better and more consistent performance and reliability.  The amounts of
CPU, RAM and disk resources it takes to handle a few dozen players
visiting their dream/shard/map/whatever-you-call-it are pretty trivial and
inexpensive these days, when you can pick up a machine for 500 bucks that
would have been called a "supercomputer" not that many years ago.  Even a
hobby project shouldn't have too much trouble getting enough computing
power together to smoothly handle a few hundred simultaneous players, if
the server is coded for efficiency rather than for "let's fulfill the
creator's desire to implement a bunch of complex cool stuff the players
won't even notice".  If you get a thousand or two thousand people - ask
'em to pitch in a few bucks or sell a t-shirt, and go buy a second server
machine and network them.  Or scrape together a thousand bucks from your
inflated salary professional programmers are supposed to get, decide your
hobby is now officially an Expensive Hobby, and buy the machine yourself.

(If you're not getting an inflated salary yet, try a headhunter. :X)

Distributing a game server all over the net might also be fun because A)
it sounds cool and gets press and attention and people saying "wow that's
neat", and B) it's yet another technical challenge and a lot of programmers 
are motivated primarily by the fun of figuring out how to solve interesting
new technical challenges.  But to build the biggest and best online
environment, I think distribution is primarily a solution to the fact that
no single CPU system can handle more than N users (where N is a number
that rises each year, but is far smaller than the largest number of users
you'd like to have and won't pass that threshhold any time soon, if ever).
Distributing the game processes over machines on a LAN (or multiple CPUs
in a box with shared memory) solves that problem quite decently in my
opinion.  Spreading things out further can degrade performance and
introduce huge security issues.  Not to mention bigger problems keeping
every machine running the latest update to the server code, etc.  And I
think the gains from spreading it out are tenuous at best, it's a solution
in search of a problem because it "sounds cool".  It would have been an
appealing one back when machines were weaker - indeed, I did some thinking
about it back in 1990.

One place where there might seem to be some merit would be in serving
different countries, if there's enough demand for this to be an issue &amp; if
the game is latency sensitive enough for it to matter.  You're never going
to get latency halfway around the world faster than the speed of light
(unless we make some major new discoveries in physics), and right now
you're going to get performance a lot worse than that.  But games like
Ultima Online solve this by putting a whole separate copy of the game in
those other countries that have sufficient demand to warrant it.  Which
probably makes more sense anyway.  Why make a "seamless" world where
walking to areas hosted in other countries made performance degrade badly,
and then go to extra effort to encourage people to stay in the locally
hosted areas so the game experience is better...  When with less effort,
you can just set it up so they can only have the good performance?

*-------------------------------------------**-----------------------------* 
   Dr. Cat / Dragon's Eye Productions       ||       Free alpha test:
*-------------------------------------------**  <A  HREF="http://www.bga.com/furcadia">http://www.bga.com/furcadia</A>
    Furcadia - a graphic mud for PCs!       ||  Let your imagination soar!
*-------------------------------------------**-----------------------------*



_______________________________________________
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="00783" HREF="msg00783.html">Re: [MUD-Dev] Re: MUD-Dev digest, Vol 1 #237 - 9 msgs</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="msg00769.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00771.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00789.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00783.html">Re: [MUD-Dev] Re: MUD-Dev digest, Vol 1 #237 - 9 msgs</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00770"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00770"><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="00782" HREF="msg00782.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
cg <a href="mailto:cg@ami-cg.GraySage.Edmonton.AB.CA">cg@ami-cg.GraySage.Edmonton.AB.CA</a>, Fri 24 Dec 1999, 19:03 GMT
<UL>
<LI><strong><A NAME="00787" HREF="msg00787.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
Hans-Henrik Staerfeldt <a href="mailto:hhs@cbs.dtu.dk">hhs@cbs.dtu.dk</a>, Tue 28 Dec 1999, 16:05 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00788" HREF="msg00788.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
cg <a href="mailto:cg@ami-cg.GraySage.Edmonton.AB.CA">cg@ami-cg.GraySage.Edmonton.AB.CA</a>, Tue 28 Dec 1999, 17:44 GMT
<UL>
<LI><strong><A NAME="00789" HREF="msg00789.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
Greg Miller <a href="mailto:gmiller@classic-games.com">gmiller@classic-games.com</a>, Wed 29 Dec 1999, 17:00 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00770" HREF="msg00770.html">[MUD-Dev] Re: MUD-Dev digest, Vol 1 #237 - 9 msgs</A></strong>, 
Dr. Cat <a href="mailto:cat@realtime.net">cat@realtime.net</a>, Thu 23 Dec 1999, 17:13 GMT
<UL>
<LI><strong><A NAME="00783" HREF="msg00783.html">Re: [MUD-Dev] Re: MUD-Dev digest, Vol 1 #237 - 9 msgs</A></strong>, 
J C Lawrence <a href="mailto:claw@kanga.nu">claw@kanga.nu</a>, Fri 24 Dec 1999, 20:13 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00747" HREF="msg00747.html">[MUD-Dev] Job Openings - Mud Engineering</A></strong>, 
Christopher Allen <a href="mailto:ChristopherA@Skotos.net">ChristopherA@Skotos.net</a>, Thu 23 Dec 1999, 01:53 GMT
<LI><strong><A NAME="00723" HREF="msg00723.html">[MUD-Dev] re: Originality/Points of Reference</A></strong>, 
Ian Klimon, Esq. <a href="mailto:ian@aephirsden.com">ian@aephirsden.com</a>, Wed 22 Dec 1999, 18:57 GMT
<LI><strong><A NAME="00718" HREF="msg00718.html">[MUD-Dev] Re: Collecting ideas for a MUD server... (fwd)</A></strong>, 
J C Lawrence <a href="mailto:claw@cp.net">claw@cp.net</a>, Wed 22 Dec 1999, 00:47 GMT
</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>