1999Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Custom Server Roll Call? -->
<!--X-From-R13: Quevf Uenl <ptNnzv&#45;pt.UenlEntr.Sqzbagba.OP.QO> -->
<!--X-Date: Sat, 15 May 1999 02:30:19 &#45;0700 -->
<!--X-Message-Id: 199905150551.XAA03887@ami&#45;cg.GraySage.Edmonton.AB.CA -->
<!--X-Content-Type: text/plain -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Custom Server Roll Call?</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">
</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="msg00248.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00253.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00185.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00278.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00249">Author</A>
&nbsp;|&nbsp;<A HREF="#00249">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00249">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Custom Server Roll Call?</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] Custom Server Roll Call?</LI>
<LI><em>From</em>: Chris Gray &lt;<A HREF="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</A>&gt;</LI>
<LI><em>Date</em>: Fri, 14 May 1999 23:51:18 -0600</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>
[Emil Eifrem:]

&gt; The problem here is that generateEvent() just adds the DB_ISSUE_QUERY event
&gt; to the event queue and then immediately returns. All the actual processing
&gt; of the event is handled asynchronously, ie in one or more separate threads
&gt; in the kernel. Sticking to my example above, this is a big problem for the
&gt; Command module who just wanted to get an int representing the amount of
&gt; swords in the DB. What should it do? Sleep until the DB answers with a new
&gt; event? Continue processing other commands until the DB module answers --
&gt; then, continue executing the sword-counting command?
&gt;
&gt; None of the above is viable. My solution was to introduce a second way of
&gt; IMC, tentatively called "exported functions." (Horrible name for something
&gt; in a Java server, I know.) The idea is to make it possible for a module to
&gt; execute special, 'exported' methods in other modules. Probably the best way
&gt; to explain this is to show an example:
&gt;
&gt; ---
&gt; DBModuleInterface = getModuleInterface("database");
&gt; int amountOfSwords = DBModuleInterface.issueQuery(query);
&gt; player.println("There are " + amountOfSwords + " swords in the db.");

I think this is quite close to the issues that came up with devmud. I
haven't been on Jon's MUD for months, so I don't know if stuff is happening
there or not.

We had talked about ways of linking up an exporter of functions to importers
of functions, based on descriptions of their arguments and their names. Thus,
the type-safe aspect wasn't done by the implementation language, but rather
by the matching code. My Java isn't good enough to know whether you can do
this in Java or not.

You could handle it by just using your first, event-based interface. The
command code builds the DB request and emits it. The DB code receives the
request and processes it. It then emits a DB-response message, containing
an identifier that was also in the request message. Receipt of that
response wakes up the command module, which was in a form of sleep,
waiting for a message like that. I won't comment on the efficiency of
a scheme like this, but it ought to work. Unfortunately, this completely
bypasses your desire for language-enforced type safeness, since you are
doing everything with strings, which are not checked by Java, but only
by the module(s) that receive them. It sounded like you were already
using lots of threads, so having the command module asleep, waiting
for a response, shouldn't matter - it should still be able to run
other threads to handle further input.

&gt; This may not sound like a big problem. But it is, believe you me. Let's say
&gt; that I want to have a Player class that several modules are dealing with.
&gt; For example, I used to have a "Creation" module, that was responsible for
&gt; creating new players and characters (player = a rl-world person, character
&gt; = a fictional person run by a player). I thought this was a neat idea, but
&gt; in order to have the Creation module pass the newly created players and
&gt; characters to other modules (say, the 'World' module and the 'Playermode'
&gt; module) I would have to move the Player and Character classes into the
&gt; kernel. Remember, classes created in the Creation module are only visible
&gt; to the Creation module.

Indirection. You'll have to go back to the older form of using objects,
rather than the C++ form. *Only* the module that defines a class can do
any operations on it. Everyone else can just store and pass around
references to specific objects of those classes. Untyped pointers,
essentially. You could just use integers for them, but Objects are likely
easier. Will this make it awkward to do lots of things? You bet! And
inefficient.

Things like this were some of the reasons I was having trouble thinking
how to go much further with devmud stuff. Socket stuff and telnet stuff
were certainly separable. People then wanted to get into things that,
to me, were aspects of the scenario, not the server. We even had trouble
with a programming language, since the nature of the language is closely
linked with how you want to use it. I could make my AmigaMUD language
into a module, I think, but then anyone using it is constrained by the
nature of the language. This is only possible because almost all of my
MUD is softcode, using that language. Thus, my server doesn't know about
much other than the low-level database, player records, logging, etc.
It sounds like you want aspects of your scenario (as opposed to your
low-level server) to be reloadable modules. I don't really see a way to
do that cleanly.

--
Don't design inefficiency in - it'll happen in the implementation.

Chris Gray     cg#ami-cg,GraySage.Edmonton.AB.CA
               <A  HREF="http://www.GraySage.Edmonton.AB.CA/cg/">http://www.GraySage.Edmonton.AB.CA/cg/</A>


_______________________________________________
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="00278" HREF="msg00278.html">Re: [MUD-Dev] Custom Server Roll Call?</A></strong>
<ul compact><li><em>From:</em> Emil Eifrem &lt;emil#prophecy,lu&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="msg00248.html">[MUD-Dev] Monthly FAQ Posting</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00253.html">RE: [MUD-Dev] Sockets</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00185.html">Re: [MUD-Dev] Custom Server Roll Call?</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00278.html">Re: [MUD-Dev] Custom Server Roll Call?</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00249"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00249"><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] Custom Server Roll Call?</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00157" HREF="msg00157.html">RE: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Wed 05 May 1999, 15:18 GMT
</LI>
<LI><strong><A NAME="00159" HREF="msg00159.html">RE: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Thu 06 May 1999, 04:33 GMT
<UL>
<LI><strong><A NAME="00161" HREF="msg00161.html">RE: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Marc Hernandez <a href="mailto:marc#ias,jb.com">marc#ias,jb.com</a>, Thu 06 May 1999, 05:50 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00185" HREF="msg00185.html">Re: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sun 09 May 1999, 11:24 GMT
</LI>
<LI><strong><A NAME="00249" HREF="msg00249.html">Re: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sat 15 May 1999, 09:30 GMT
<UL>
<LI><strong><A NAME="00278" HREF="msg00278.html">Re: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Emil Eifrem <a href="mailto:emil#prophecy,lu">emil#prophecy,lu</a>, Mon 17 May 1999, 04:41 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00300" HREF="msg00300.html">Re: [MUD-Dev] Custom Server Roll Call?</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Tue 18 May 1999, 06:46 GMT
</LI>
</ul>
</LI>
<LI><strong><A NAME="00121" HREF="msg00121.html">Re: [MUD-Dev] Censorship, Virtual v Artificial Worlds, Python</A></strong>, 
Dan <a href="mailto:scatter#thevortex,com">scatter#thevortex,com</a>, Mon 03 May 1999, 16:00 GMT
<UL>
<LI><strong><A NAME="00135" HREF="msg00135.html">Re: [MUD-Dev] Censorship, Virtual v Artificial Worlds, Python</A></strong>, 
Matthew Mihaly <a href="mailto:diablo#best,com">diablo#best,com</a>, Tue 04 May 1999, 05:52 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>