1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Collecting ideas for a MUD server... (fwd) -->
<!--X-From-R13: Dnuhy Evaun <efvaunNtyhr.hzq.rqh> -->
<!--X-Date: Wed, 22 Dec 1999 21:36:27 &#45;0800 -->
<!--X-Message-Id: Pine.LNX.4.10.9912222155170.11208&#45;100000@localhost.localdomain -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 006801bf4cc7$1bd2dcb0$5bd172cf@SPAWN2000 -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:rsinha@glue.umd.edu">
</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="msg00748.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00751.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00773.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00755.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00749">Author</A>
&nbsp;|&nbsp;<A HREF="#00749">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00749">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</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] Collecting ideas for a MUD server... (fwd)</LI>
<LI><em>From</em>: Rahul Sinha &lt;<A HREF="mailto:rsinha#glue,umd.edu">rsinha#glue,umd.edu</A>&gt;</LI>
<LI><em>Date</em>: Wed, 22 Dec 1999 22:14:44 -0500 (EST)</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 Wed, 22 Dec 1999, Justin Rogers wrote:

&gt; [Rahul Sinha]
&gt; 
&gt; &gt; ActiveX???
&gt; &gt; most muds run on Unix, with good reason, stay FAR away from activeX,
&gt; &gt; unless you think your mud shoudl run on a server with the GUI in
&gt; &gt; kernelspace...
&gt;     Most MUDs is right.   But you are creating a new mud.  So why are you
&gt; worried about what most MUDs do.  You should be worried about what your
&gt; MUD will do.  I've already programmed a MUD using all of the theories
&gt; and items I have described.

granted, using something for history's sake is bad.  BUT, one _should_
stop and consider why other muds do what they do.

Most muds have one monolithic code base. this is bad, the LPC
driver-mudlib split makes more sense.  Why are they that way? the Diku
heritage. (this is an example of history being wrong)

I won't give a counter-example, as (my fault) OS wars do not belong here.
But I shall say this.  I have a Win2k rc2 box sitting next to me in
addition to my linux box.  It is NOT as stable, but the issue is
performance for this sort of stuff.  If you want details on why I believe
this, email me off-list.

&gt;     Its not embedded into a web page.  Your obviously a UNIX guy.  ActiveX
&gt; isn't for web pages.  COM is coming into existence on UNIX now.  And that
&gt; is what ActiveX is all about, COM components.  My mud will run on any COM
&gt; complient operating system or any OS that has COM extensions.  Also, the
&gt; server has multiple output/input plugins.  I can have ten different types of
&gt; clients viewing my world in ten different ways based on the port they connect
&gt; to.  For instance.  Vampires can see at night, so their gamma is higher.  Bug
&gt; based
&gt; creatures see into the infrared and I jack the red level up on the levels as a
&gt; result.  But you can also connect to the mud through the standard text port.  So
&gt; I'm not locked, because I'm modular =-)

okay, why not just implement the entire gamma/color correction thing
client side, and sent simple commands to change them when appropriate?

My point is not that you cannot do foo with activeX/COM, but that there
are faster ways to do this, usually by looking at the problem and working
backwards, instead of choosing a technology and seeing what can be done
with it.

&gt;     Each user has his own thread that he runs in.  Works for up to about 20
&gt; users.  I modified this later though.  Each area runs in its own thread, and
bravo, good choice
&gt; large groups of NPCs have their own threads.  All in all about 50 threads
I split this off into a seperate binary, no need for npcs to be treated
differnetly than pcs, they can operate in the same thread. the
ncp-specific work being done in the other binary, as the main mud does not
need to include this code (not to mention, this allows for different
development cycles for the two, unrelated, projects

&gt; &gt; ummm a peer-to-peer setup is not safe for any centralized game... Justin,
&gt; &gt; have you actually implemented this? If so, you are begging for some player
&gt; &gt; to remember that he can hexedit his character...
&gt; 
&gt;     No not at all.  It isn't quite like that.  I do keep a global player up.
&gt; But
&gt; they are still playing the game.  Users transfer their information around to
&gt; others as they are playing.  So if you log into the system and your user profile
&gt; doesn't match the user profile that everyone else has of you then you get
&gt; kicked.

JCL's man in the middle point is brilliant, I was more thinking that this
is unnecissary.  Why not just have a single server, that keeps all data?

this reduces net traffic, and HD space is cheap.

&gt; 
&gt;     I implemented this because people can create their own worlds offline and
&gt; when
&gt; they start each becomes a shard.  And two players with mutual agreeance can
&gt; create
&gt; links between their worlds and thus users can navigate over player created
&gt; terrains.

so distribute the server binaries, and code in a easy way to link servers.

&gt; 
&gt; &gt; and if you are streaming DirectPLay, how is this peer-to-peer? (iow you
&gt; &gt; NEED a client-server setup)
&gt;     These are multiple instances.  Like I said, I programmed a core that loads
&gt; the
&gt; plugins, and now I have nearly 300 plugins that I've created and as such can at
&gt; any
&gt; time spawn around 80 different games that I've made each with different storage
&gt; locations, commands, input mechanisms, output formats etc...

but dlopen()able .sos (or .dlls for the winfolks) ahve this same property.

Your way may work.  I just feel that for the new project that spawned this
thread, there are faster ways (in programming time) that also leave one
with a faster, lighter, more portable result.

and COM objects are not inherently cross-platform, unless they have been
abstracted to the level of Java byte-code (where performace begins to
matter)  If nothing else, endianness issues exist.

(iow do you interpret COM objects, or execute them... if there is no
interpretaiton layer, even if they are akin to what I know about the older
OLE objects, they are not cross-platform.  If there is an interp layer,
this is another Java, why not go with the already-implemented standard,
instead of a vaporware one?


	Rahul Sinha
Computer Science/ Government,
University Of Maryland College Park
AIM: qui dire	ICQ: 9738191	(301)935-5542





_______________________________________________
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="00755" HREF="msg00755.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</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-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00732" HREF="msg00732.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
<UL><LI><EM>From:</EM> "Justin Rogers" &lt;justin@mlstoday.com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00748.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00751.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00773.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="msg00755.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00749"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00749"><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] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00771" HREF="msg00771.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
J C Lawrence <a href="mailto:claw@kanga.nu">claw@kanga.nu</a>, Thu 23 Dec 1999, 17:31 GMT
<UL>
<LI><strong><A NAME="00776" HREF="msg00776.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
Jay Carlson <a href="mailto:nop@mitre.org">nop@mitre.org</a>, Thu 23 Dec 1999, 20:50 GMT
</LI>
<LI><strong><A NAME="00781" HREF="msg00781.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>, Fri 24 Dec 1999, 07:47 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00773" HREF="msg00773.html">Re: [MUD-Dev] Two threads forced to one CPU? (was: Collecting ideas for a MUD server...)</A></strong>, 
Marc Bowden <a href="mailto:ryumo@merit.edu">ryumo@merit.edu</a>, Thu 23 Dec 1999, 18:00 GMT
</LI>
</ul>
</ul>
</ul>
<LI><strong><A NAME="00749" HREF="msg00749.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></strong>, 
Rahul Sinha <a href="mailto:rsinha@glue.umd.edu">rsinha@glue.umd.edu</a>, Thu 23 Dec 1999, 05:36 GMT
<UL>
<LI><strong><A NAME="00755" HREF="msg00755.html">Re: [MUD-Dev] Collecting ideas for a MUD server... (fwd)</A></strong>, 
J C Lawrence <a href="mailto:claw@kanga.nu">claw@kanga.nu</a>, Thu 23 Dec 1999, 06:49 GMT
</LI>
</UL>
</LI>
</ul>
<LI><strong><A NAME="00740" HREF="msg00740.html">Re: [MUD-Dev] 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, 23:46 GMT
</LI>
<LI><strong><A NAME="00741" HREF="msg00741.html">Re: [MUD-Dev] 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, 23:55 GMT
</LI>
</ul>
<LI><strong><A NAME="00738" HREF="msg00738.html">Re: [MUD-Dev] 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, 23:36 GMT
</LI>
</ul>
</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>