1998Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Unique items (was: Graphic MUDS/Ultima Online) -->
<!--X-From-R13: pbqreNvoz.arg -->
<!--X-Date: Sun, 15 Feb 1998 10:24:44 +0000 -->
<!--X-Message-Id: 199802150702.HAA51106#out5,ibm.net -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199801300740.AAA07834#user2,inficad.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:coder#ibm,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="msg00466.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00468.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00377.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00466.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00467">Author</A>
&nbsp;|&nbsp;<A HREF="#00467">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00467">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</LI>
<LI><em>From</em>: <A HREF="mailto:coder#ibm,net">coder#ibm,net</A></LI>
<LI><em>Date</em>: Sat, 14 Feb 98 21:52:54 -0800</LI>
<LI><em>Reply-to</em>: <A HREF="mailto:coder#ibm,net">coder#ibm,net</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 30/01/98 at 08:26 AM, Adam Wiggins &lt;nightfall#user2,inficad.com&gt; said:
&gt;[Brandon J. Rickman:]
&gt;&gt; On Sun, 11 Jan 1998 21:43:52, JC Lawrence &lt;claw#under,Eng.Sun.COM&gt; wrote:
&gt;&gt; &gt;  There are two types of objects in the world:
&gt;&gt; &gt;
&gt;&gt; &gt;    a) objects which have an uncertain state
&gt;&gt; &gt;
&gt;&gt; &gt;    b) objects which have a certain state.

...etc

&gt;First of all, the idea that you check for an object being created every
&gt;time someone takes a step seems a bit odd to me.  Does this mean that
&gt;running back and forth over the same patch of ground 10,000 times
&gt;increases your chance of finding the key to castle krak by 10000x? This
&gt;doesn't quite seem right, and has the problems of sucking down a lot of
&gt;CPU time, as you mention.  

Good point.  A possible address is to place meta-ur-objects in every
possible location for the final object.  Upon one of those meta-ur-objects
being realised (ie becoming an actual ur-object or normal-object) all
other meta-ur's would be destructed.  Note that this is essentially
identical to creating locality lists of ur-object probabilities, but with
the added overhead of the extra object creations and maintenance.

The main problem here is that one of the design goals of this model was
reducing the total count of objects that needed keeping track of, with the
cannonical case being the meadow where ten million bunnies had been
slaughtered.  There is little need to keep track of 10 million bunny
skeletons.  However, if Bubba digs in the meadow he should find bunny
bones.  Using the uncertainty model above, there would be no bunny
skeletons until Bubba dug and found one, which bunny bone would have been
dynamically created by Bubba's digging so that he could find it (realism).

&gt;Why not have an object population pulse
&gt;(similar to what's found in current muds), where the system runs through
&gt;the list once, decides which (if any) objects will be created, and then
&gt;finds a suitable place to put them?  

This would work for less populous items than the above bunny skeletons,
and has some interesting promises for ur-objects.  Chasing thos down
briefly seems to end up with a very reduced functionality set of the above
and prior described locality idea.

&gt;This will should cause these items to pop into the world fairly
&gt;frequently, but the chance that they will be found on a given run of
&gt;existance is pretty low.

In a user programmable game this also opens the object's existance and
location to user program resolution, which can be far from ideal.  Leaving
the objects unrealised makes the fact of their existance unknown until the
moment of definition (not the creation of the ur-object, but the
definition and transformation of the ur-object into the normal object).

&gt;This seems to solve every problem - Bubba's key will not suddenly turn
&gt;into the key to castle Krak (as the key's properties are determined at
&gt;time of creation), and CPU usage is very low, at the slight expense of
&gt;extra objects in the world.  I would say that this method would not be
&gt;ideal for piles of leaves and other such extra junk, however, and also
&gt;the indeterminacy thing as originally conceptualized, above, seems to
&gt;have a slightly higher 'neat' factor, for some reason I can't pin down.

ie it basically recreates the current model with the only addition the
dyamic creation of undiscovered objects.

-- 
J C Lawrence                               Internet: claw#null,net
----------(*)                              Internet: coder#ibm,net
...Honourary Member of Clan McFud -- Teamer's Avenging Monolith...


</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="00343" HREF="msg00343.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></STRONG>
<UL><LI><EM>From:</EM> Adam Wiggins &lt;nightfall#user2,inficad.com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00466.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00468.html">Re: [MUD-Dev]  CORBA, RMI, threads</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00377.html">Monthly FAQ posting</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00466.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00467"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00467"><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] Unique items (was: Graphic MUDS/Ultima Online)</STRONG>, <EM>(continued)</EM>
<ul compact>
<LI><strong><A NAME="00197" HREF="msg00197.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
JC Lawrence <a href="mailto:claw#under,Eng.Sun.COM">claw#under,Eng.Sun.COM</a>, Sun 11 Jan 1998, 21:01 GMT
</LI>
<LI><strong><A NAME="00338" HREF="msg00338.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Thu 29 Jan 1998, 00:54 GMT
<UL>
<LI><strong><A NAME="00343" HREF="msg00343.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
Adam Wiggins <a href="mailto:nightfall#user2,inficad.com">nightfall#user2,inficad.com</a>, Fri 30 Jan 1998, 07:37 GMT
<UL>
<LI><strong><A NAME="00377" HREF="msg00377.html">Monthly FAQ posting</A></strong>, 
Ling <a href="mailto:K.L.Lo-94#student,lboro.ac.uk">K.L.Lo-94#student,lboro.ac.uk</a>, Tue 03 Feb 1998, 18:10 GMT
</LI>
<LI><strong><A NAME="00467" HREF="msg00467.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
coder <a href="mailto:coder#ibm,net">coder#ibm,net</a>, Sun 15 Feb 1998, 10:24 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00466" HREF="msg00466.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
coder <a href="mailto:coder#ibm,net">coder#ibm,net</a>, Sun 15 Feb 1998, 04:44 GMT
<UL>
<LI><strong><A NAME="00490" HREF="msg00490.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
Adam Wiggins <a href="mailto:nightfall#user1,inficad.com">nightfall#user1,inficad.com</a>, Mon 16 Feb 1998, 13:56 GMT
<UL>
<LI><strong><A NAME="00510" HREF="msg00510.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
coder <a href="mailto:coder#ibm,net">coder#ibm,net</a>, Tue 17 Feb 1998, 08:15 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00360" HREF="msg00360.html">Re: [MUD-Dev] Unique items (was: Graphic MUDS/Ultima Online)</A></strong>, 
Brandon J. Rickman <a href="mailto:ashes#pc4,zennet.com">ashes#pc4,zennet.com</a>, Sat 31 Jan 1998, 23:36 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>