1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: regulating player&#45;created objects -->
<!--X-From-R13: f001tzhNabin.jevtug.rqh -->
<!--X-Date: Fri, 4 May 1998 03:49:58 &#45;0700 -->
<!--X-Message-Id: Pine.PMDF.3.95.980504130442.545300868A&#45;100000#nova,wright.edu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Pine.SGI.3.96.980501175808.9729C&#45;100000#red,angel.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: regulating player-created objects</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="msg00358.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00361.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00317.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00484.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00359">Author</A>
&nbsp;|&nbsp;<A HREF="#00359">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00359">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: regulating player-created objects</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: regulating player-created objects</LI>
<LI><em>From</em>: <A HREF="mailto:s001gmu#nova,wright.edu">s001gmu#nova,wright.edu</A></LI>
<LI><em>Date</em>: Mon, 04 May 1998 13:18:20 -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 Fri, 1 May 1998, Adam Wiggins wrote:

&gt; On Fri, 1 May 1998, Dan Shiovitz wrote:
&gt; &gt; On Thu, 30 Apr 1998, Adam Wiggins wrote:

[... objects as composites of components ...]

&gt; &gt; [..]
&gt; &gt; 
&gt; &gt; Hmm. I've been chewing on this for a while. It's pretty clear that the
&gt; &gt; latter isn't feasible. It occurred to me, though that you could get
&gt; &gt; some sort of in-the-middle compromise by not hard-coding all the
&gt; &gt; classes of objects that can be created. I guess you might want to have
&gt; &gt; some base ones defined, but beyond that you could let the admins
&gt; &gt; create "patterns" that players can learn and create. For instance, say
&gt; &gt; someone knows the "chest of drawers" pattern. This would be something
&gt; &gt; that an admin wrote in some sort of in-game coding language. According
&gt; &gt; to the pattern, say, the chest of drawers is composed of 3 large
&gt; &gt; boards, some nails, and three drawers. "drawer" is another pattern. A
&gt; &gt; drawer consists of 4 small boards and one medium board, plus some
&gt; &gt; nails. So eventually all patterns are decomposed into sub-patterns
&gt; &gt; which get decomposed into atoms. Atoms are things that don't have to
&gt; &gt; be specified how to make: "carve large board from log" will give you a
&gt; &gt; large board if the log is large enough. 

The first thing I thought of when I read this was 'wow.. what an
interesting application of OOD.'  Seems like a no-brainer in an OO
implementation, neh?
 
&gt; &gt; The advantage of this system is in the use of sub-patterns. For
&gt; &gt; instance, you could have the "arrow" pattern be made of up "shaft",
&gt; &gt; "arrowhead", and "fletching". Anything that fits into these categories
&gt; &gt; can be used to make an arrow; so you could make arrows with steel
&gt; &gt; heads, or flint heads, or diamond heads if you can find a way to chip
&gt; &gt; them, and so on. 

Isn't Inheritance beautifull?

&gt; &gt; This doesn't let players create anything they want. If I want to make
&gt; &gt; a cuckoo clock with a secret compartment in the bottom, there has to
&gt; &gt; be a cuckoo clock pattern already existing (and presumably made up of
&gt; &gt; a gear pattern, a carving of an animal pattern (usually animal=bird),
&gt; &gt; a bell pattern, and a small base pattern). But if there's already a
&gt; &gt; base-with-secret-compartment pattern created, I can make my cuckoo
&gt; &gt; clocks come with secret compartments even if that wasn't the intent of
&gt; &gt; the original pattern creators. 

I don't think it would be too difficult to extend the system so that
people could create something very similar to something else...
esentially, add attributes to an inherited class.  But then, you get into
some interesting areas there... in a C+ implemenation, dynamic linking is
probably your friend here.

&gt; &gt; (Of course, the downside to this is every game object needs to be
&gt; &gt; deconstructible now. Oh bother.)

heh... Actually, this system will fit beautifully well with what I have in
mind for I/O decoupling... Why have the object even know or care what it
looks like to the user?  The client will have to have a representation for
all the primitives, but from there all it needs is a list of the
configuration of primitves, and it then handles all the displaying.

&gt; &gt; Anyway, am I reinventing a known wheel here?  

aside from OOD, nope.  :)
 
&gt; Long quote, but I think all of it is relevant.
&gt; 
&gt; Actually, now that you mention, Orion and I tossed around this idea a few
&gt; years back.  The idea was that the basic object types are only shapes.
&gt; These basic types can only ever be made of one material.  Thus you can
&gt; determine the number of sub-objects something should have by the number of
&gt; distinct forms, and the number of distinct materials.  Thus your average
&gt; axe has two objects: an axehead made of steel, and a shaft made of oak.
&gt; 'shaft' and 'axehead' are both primitive object forms; oak and steel are
&gt; two possible materials one can extract from the game world.  We originally
&gt; came up with this because we wanted an easy way to damage objects in a
&gt; specific way.  I wanted to be able to burn the axe and have a pile of ash
&gt; plus a charred axehead.  All objects in the world are defined this way,
&gt; including creatures.  No object can exist that is not a primitive - all
&gt; non-primitive objects are just containers for their primitives.  A human
&gt; would contain a whole bunch of limbs, for example.  A specific limb would
&gt; contain primitives in the form of a bone, some muscle, and some skin.
&gt; This makes things like damage a no-brainer.  It also makes it easy to add
&gt; cool effects like a 'turn bones to adamantite' spell.  Now you get all the
&gt; bonuses you'd expect from adamantite bones.

A lovely perk that I hadn't thought of..  *kudos*
 
&gt; I see this as being very feasible in a text-based environment, but it
&gt; would require a pretty serious amount of attention to creating basic
&gt; objects.  Just getting the thing to a playable point would be a serious
&gt; chore, but at that point you'd have an incredible amount of freedom with
&gt; how your objects interact.

Why limit it to text?  As I said above, just remove the I/O from the
server, and foist if off on the client, and then your mud becomes easily
extendable as new interface technology arises.

Yes, it will require a large amount of initial time invested.
But hey, what else am I going to do with my weekends? :)

-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="00317" HREF="msg00317.html">[MUD-Dev] Re: regulating player-created objects</A></STRONG>
<UL><LI><EM>From:</EM> Adam Wiggins &lt;adam#angel,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00358.html">[MUD-Dev] Re: (fwd) AD: [custom graphical] whitestar Crossfire MUD</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00361.html">[MUD-Dev] Re: There can be.. only ONE! (fwd)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00317.html">[MUD-Dev] Re: regulating player-created objects</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00484.html">[MUD-Dev] Re: regulating player-created objects</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00359"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00359"><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="00258" HREF="msg00258.html">[MUD-Dev] regulating player-created objects</A></strong>, 
Dan Shiovitz <a href="mailto:dbs#cs,wisc.edu">dbs#cs,wisc.edu</a>, Thu 30 Apr 1998, 04:01 GMT
<UL>
<LI><strong><A NAME="00275" HREF="msg00275.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Thu 30 Apr 1998, 19:16 GMT
<UL>
<LI><strong><A NAME="00309" HREF="msg00309.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Dan Shiovitz <a href="mailto:dbs#cs,wisc.edu">dbs#cs,wisc.edu</a>, Fri 01 May 1998, 22:44 GMT
<UL>
<LI><strong><A NAME="00317" HREF="msg00317.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Sat 02 May 1998, 01:07 GMT
<UL>
<LI><strong><A NAME="00359" HREF="msg00359.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
s001gmu <a href="mailto:s001gmu#nova,wright.edu">s001gmu#nova,wright.edu</a>, Mon 04 May 1998, 10:49 GMT
</LI>
<LI><strong><A NAME="00484" HREF="msg00484.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Sun 10 May 1998, 02:33 GMT
<UL>
<LI><strong><A NAME="00488" HREF="msg00488.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Marian Griffith <a href="mailto:gryphon#iaehv,nl">gryphon#iaehv,nl</a>, Sun 10 May 1998, 21:03 GMT
<UL>
<LI><strong><A NAME="00636" HREF="msg00636.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Sat 16 May 1998, 22:29 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00609" HREF="msg00609.html">[MUD-Dev] Re: regulating player-created objects</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Fri 15 May 1998, 19:56 GMT
</LI>
</UL>
</LI>
</UL>
</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>