1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: PK and my "Mobless MUD" idea -->
<!--X-From-R13: f001tzhNabin.jevtug.rqh -->
<!--X-Date: Fri, 8 May 1998 10:32:48 &#45;0700 -->
<!--X-Message-Id: Pine.PMDF.3.95.980508124547.545319000A&#45;100000#nova,wright.edu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: E0yXgkt&#45;000773&#45;00#mail,kanga.nu -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: PK and my "Mobless MUD" idea</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:s001gmu#nova,wright.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="msg00477.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00479.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00469.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00546.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00478">Author</A>
&nbsp;|&nbsp;<A HREF="#00478">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00478">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: PK and my "Mobless MUD" idea</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: PK and my "Mobless MUD" idea</LI>
<LI><em>From</em>: <A HREF="mailto:s001gmu#nova,wright.edu">s001gmu#nova,wright.edu</A></LI>
<LI><em>Date</em>: Fri, 08 May 1998 13:31:05 -0400 (EDT)</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: "Petidomo List Agent -- Kanga.Nu version" &lt;<A HREF="mailto:petidomo#kanga,nu">petidomo#kanga,nu</A>&gt;</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>


On Thu, 7 May 1998, John Bertoglio wrote:

&gt; 
&gt; From: Dr. Cat &lt;cat#bga,com&gt;
 
[... Dr. Cat states Game industry is clonesville ...]
 
&gt; You are absolutely correct. The commercial game market (and by extension,
&gt; the entire entertaiment industry) is RUN by people who by in large seem to
&gt; have born without the capacity for original thought. The computer game
&gt; industry had avoided the worst of this mindlessness until the last few
&gt; years when huge budgets coupled with a corporate mentality makes it look
&gt; more and more like Hollywood.

I think it reaches further back than that... how many side scroller games
are there?  As far as I can tell, they are all pretty much the same.
Minor variations on a theme.  I don't think the late '90's bring any new
lack of creativity to the industry, it just wraps it in a flashier
package.
 
&gt; &gt;Here on the list, I see things even more narrowly focused, with maybe one
&gt; &gt;or two types of "ideal games" that people are clustered around and trying
&gt; &gt;to figure out how to make.  It's frustrating to me to see so little
&gt; &gt;diversity of opinion and artistic style.

Personanly, I think this is a Good Thing (tm), and, in fact, the entire
PURPOSE of this list.  To focus on one aspect of internet, multiplayer
games.  This is the _MUD-DEV_ list for a reason.

&gt; I think this is something of an overstatement. I have almost finished
&gt; reading the "back issues" of the list (and accepted the general personal
&gt; productivity hit because of it)and find about the only common thread is a
&gt; preference for object-oriented models (something my design does not use,
&gt; BTW). Some of the projects described are so flexible in their design, they
&gt; look like they could model any world including Furcadia. Lacking their
&gt; talents and skills, I am building a far less ambitious project.

I have to agree with Dr. Cat a bit here.  There is some variation in the
topics of games (SF vs Fantasy vs Fantasy-historical, etc), and some
variation on whether the design is a game or a game server, but the over
all focus is still fairly narrow.  That being said, I do thuroughly enjoy
the threads that wander off of the specific topic of the list... fresh air
is good.  It can shake things up, and possibly cause us to redefine the
purpose of the list, to grow as the mud community grows.

&gt; A lot of the examples used seem to relate to traditional mud thinking but
&gt; when you look carefully they relate to very sophisticated design issues. I
&gt; see this a courtesy to others who think in more traditional terms. The
&gt; Bubba stuff has helped me to see many issues and angles which would
&gt; otherwise be obscured by C++ coding and atomic threads...whatever they are?

An Atomic event is an event that is executed as if it were one machine
instruction.  While it is being executed nothing else is being executed.
A simple Atomic event on a single processor machine is an assignment:

   x = 5;

While that assignment is being executed, nothing else can be executed.
The discussion pertaining to threads and events is a discussion about how
to extend that model to apply to more than one instruction in a
multi-threaded/multi-process[ing|or] environment...

Essentially, how do I get something like:

  function foo() {
    x += 5;
    y += x;
  }

to execute as if it were one statement to the machine, when I have
potentially dozens of things going on at once (or as close to it as makes 
no difference)?

I personnaly have taken a traditional locking model approach, which is why
I've stayed out of the conversation on C&amp;C vs. S&amp;S.  You can read up on my
approach (among others) in the archives under the 'Event Handling' and
'DBs and Events' threads from earlier this year, if you haven't already.

[...]

&gt; I would like to see far more discussion of commercial issues on this list.
&gt; Commercial acceptance of a product is a major test of the quality of the
&gt; design (admittedly not the only test). Opting out of the commercial arena
&gt; allows one a degree of freedom which is often counterproductive.

It's not the freedom that is counterprodutive, merely the lack of the
same amount of discipline in the approach that is counter productive.
Granted, the lack of $-in-hand customers and [angry] investors is
condusive to a more lax developement environment, but it is not the cause
of the problem.  :)

&gt; Our
&gt; current commercial internet applications have been improved, dramatically,
&gt; by customer feedback. As clever as we were (and we are quite clever), the
&gt; market is smarter. Balancing the interests of our clients, their clients
&gt; and system users has improved the product beyond our original expecations
&gt; of what was possible. I am sure that will be the case with my virtual
&gt; world.

Again, I don't see any reason the same approach can't be taken with a
hobby product... I don't know of any where it HAS been taken, but that
doesn't mean it CAN'T be done.  ;)
 
[...]

&gt; One fact of life on the internet (I have learned from my wife's single
&gt; women friends in the 30-50 age range) is they now let "anybody" in. When a
&gt; lot of these people started using the net is was a somewhat exclusive club
&gt; due to technical complexity and economic issues. This made it an attractive
&gt; place to meet people. (I know of at least 3 marriages and several more
&gt; long-term relationship which were spawned on the internet.) Is it possible
&gt; to recreate that original spirit and sense of a "special place"?

I'd say this list succeeds, at least IMHO.  *kudos* to JC and all who have
worked _very_ hard over the years.
 
&gt; If you go advertising supported, you run the risks of network television.
&gt; Advertising means two things, numbers (of households) and demographics. Can
&gt; you maintain creative control when advertisers demand greater numbers of
&gt; households or more penetration into specific demographic groups. A world
&gt; with a million players will be an attractive market for advertisers...but
&gt; will your product devolve to level of WB sitcoms to reach it?

About all I have to say here (my major reason for not even considering
such a move): least common denominator.  I don't think I could tolerate
working on a project that had that as a goal.  I abhor the level that TV
[far too] often stoops to, and don't miss having a TV around at all.

I can picture it...

TAA - TV Addicts Anonymous...
  "Hi, my name is Greg, and I've been w/o TV in my life for 6 months!"

  &lt;from the crowd&gt;
  "Hi Greg!"

*snicker*

[... Dr. Cat's Sig ...] 

&gt; &gt;
&gt; 
&gt; 
&gt; 
&gt; -- 
&gt; MUD-Dev: Advancing an unrealised future.


Sig?  I've noticed several ppl w/o them of late...


-Greg 


-- 
MUD-Dev: Advancing an unrealised future.

</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00469" HREF="msg00469.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></STRONG>
<UL><LI><EM>From:</EM> "John Bertoglio" &lt;alexb#internetcds,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00477.html">[MUD-Dev] RE: Some essays I've written lately</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00479.html">[MUD-Dev] MURKLE: Wot it is</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00469.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00546.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00478"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00478"><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>[MUD-Dev] Re: PK and my "Mobless MUD" idea</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00435" HREF="msg00435.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
John Bertoglio <a href="mailto:alexb#internetcds,com">alexb#internetcds,com</a>, Wed 06 May 1998, 20:54 GMT
<UL>
<LI><strong><A NAME="00438" HREF="msg00438.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
Dr. Cat <a href="mailto:cat#bga,com">cat#bga,com</a>, Wed 06 May 1998, 21:31 GMT
<UL>
<LI><strong><A NAME="00440" HREF="msg00440.html">[MUD-Dev] META: Character of the list's membership</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 06 May 1998, 21:50 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00469" HREF="msg00469.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
John Bertoglio <a href="mailto:alexb#internetcds,com">alexb#internetcds,com</a>, Fri 08 May 1998, 06:35 GMT
<UL>
<LI><strong><A NAME="00478" HREF="msg00478.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
s001gmu <a href="mailto:s001gmu#nova,wright.edu">s001gmu#nova,wright.edu</a>, Fri 08 May 1998, 17:32 GMT
</LI>
<LI><strong><A NAME="00546" HREF="msg00546.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 13 May 1998, 19:12 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00530" HREF="msg00530.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
John Bertoglio <a href="mailto:alexb#internetcds,com">alexb#internetcds,com</a>, Wed 13 May 1998, 05:14 GMT
<UL>
<LI><strong><A NAME="00610" HREF="msg00610.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Fri 15 May 1998, 20:08 GMT
<UL>
<LI><strong><A NAME="00816" HREF="msg00816.html">[MUD-Dev] Re: PK and my "Mobless MUD" idea</A></strong>, 
Marian Griffith <a href="mailto:gryphon#iaehv,nl">gryphon#iaehv,nl</a>, Sun 24 May 1998, 13:10 GMT
</LI>
</UL>
</LI>
</UL>
</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>