1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Nested coorindate space model -->
<!--X-From-R13: Zvat <Y.Z.Zb&#45;94Nfghqrag.yobeb.np.hx> -->
<!--X-Date: Sat, 30 May 1998 08:39:22 &#45;0700 -->
<!--X-Message-Id: Pine.SOL.3.96.980530161149.11025C&#45;100000@sun&#45;cc203 -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199805270308.UAA02599#under,engr.sgi.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Nested coorindate space model</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:K.L.Lo-94#student,lboro.ac.uk">
</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="msg00852.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00854.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00839.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00854.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00853">Author</A>
&nbsp;|&nbsp;<A HREF="#00853">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00853">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Nested coorindate space model</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: Nested coorindate space model </LI>
<LI><em>From</em>: Ling &lt;<A HREF="mailto:K.L.Lo-94#student,lboro.ac.uk">K.L.Lo-94#student,lboro.ac.uk</A>&gt;</LI>
<LI><em>Date</em>: Sat, 30 May 1998 16:37:37 +0100 (BST)</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#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 Tue, 26 May 1998, J C Lawrence wrote:
&gt; On Thu, 21 May 1998 18:03:03 +0100 (BST) 
&gt; Ling &lt;K.L.Lo-94#student,lboro.ac.uk&gt; wrote:
&gt; 
&gt; &gt; Or perhaps something even more bizarre, like transformations to a Z
&gt; &gt; plane:
&gt; 
&gt; &gt;  &gt; l
&gt; &gt;  There's a huge building 100m to the right.
&gt; &gt;  &gt; turn right
&gt; &gt;  There's a huge building 100m infront of you.
&gt; &gt;  &gt; walk
&gt; &gt;  [pause] There's a huge building 30m to your left.
&gt; &gt;  &gt; walk towards building
&gt; &gt;  [pause]
&gt; &gt;  l
&gt; &gt;  There's a huge building 150m to your right.
&gt; 
&gt; &gt; A modern day maze.  (eek, bad game design!)
&gt; 
&gt; It can certainly do things like the Blue Grass and Mobius Row, which
&gt; are not entirely alien to your above concept.  Both are in essence
&gt; directionally sensitive mazes and (in this system) reliant on careful
&gt; placement of directionally sensitive invisible teleports to arrange
&gt; the directional and motion order sensitivity.

I was thinking of something like a conformal transform which is
pretty much what you're intending:

  Domain is perceived in the w plane.

  w is defined by:  w = u + v
            where:  u = x^2*y^2
                    v = 2xy

  Substitute other formulae for u and v as you see fit.  Just avoid 1/xy
  or anything else that would form a pole.

Players walk around in x, y as usual but when they do a look, they see
the w plane.  Alternative, players looking into the domain perceive the
w-plane.  [You see Bubba walking backwards into a building...]

&gt; Defining a new coordinate system within the domain has proven
&gt; exceptionally useful, tho the translations to the external world can
&gt; be awkward.  While I haven't needed to make the definition yet, pretty 
&gt; soon I'm going to have decide if:
&gt; 
&gt;   Given a domain with specified external dimensions of X (say 1x1x1),
&gt; but which defines and internal coordinate system and thus has internal
&gt; dimensions of Y (say 100x100x100), what happens at the translation
&gt; points between the domains?  Is scaling employed such that objects
&gt; effectively "shrink" to 1,000,000'th of their actual size when they
&gt; enter the nested domain, or are matched scale "windows" defined which
&gt; support the interface translations?
&gt; 
&gt; The TARDIS would seem to indicate the latter.

I think so too, scaling would be horrid.  A builder wanting to mimick
Alice in Wonderland's scaling feats could stick in code for that kinda
thing...  Then again, given that there is an interface between domains
that converts objects, it oughta be pretty transparent to the players.
Bubba lobbing a stick into the TARDIS should still see a stick entering
the TARDIS, not a tree.  Conversely, Boffo inside the TARDIS shouldn't see
a twig coming in turning into a stick.

&gt; &gt; How are overlapping domains resolved?
&gt; 
&gt; Its transparent and utterly ignorable.  A domain defines a private
&gt; coordinate space.  If you don't epxressly define a new coordinate
&gt; system it merely defaults to inheriting its parent's.  Overlapping
&gt; domains thus don't actually overlap -- they don't overlap in the
&gt; coordinate space defined __within__ the domain.  They may however
&gt; overlap in their mappings to their parent's domain.
&gt; 
&gt; As those mappings are only every of concern for the translation points 
&gt; (where the domains can be exited or entered), that *really* doesn't
&gt; matter any more.  As long as they're consistent within their internal
&gt; system, and as long as the parent system is consistent within it self
&gt; (but not counting its child domains), everything works.

Cool, deadly confusing.  When I visit Murkle, I shall build myself a
cubby hole and hide.

  |    Ling Lo of Remora (Top Banana)
_O_O_  Elec Eng Dept, Loughborough University, UK.     kllo#iee,org



</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="00868" HREF="msg00868.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>
<ul compact><li><em>From:</em> J C Lawrence &lt;claw#under,engr.sgi.com&gt;</li></ul>
<li><strong><A NAME="00854" HREF="msg00854.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>
<ul compact><li><em>From:</em> Michael Hohensee &lt;michael#sparta,mainstream.net&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00839" HREF="msg00839.html">[MUD-Dev] Re: Nested coorindate space model</A></STRONG>
<UL><LI><EM>From:</EM> J C Lawrence &lt;claw#under,engr.sgi.com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00852.html">[MUD-Dev] Re: UO's rep system, was: CGDC</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00854.html">[MUD-Dev] Re: Nested coorindate space model</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00839.html">[MUD-Dev] Re: Nested coorindate space model</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00854.html">[MUD-Dev] Re: Nested coorindate space model</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00853"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00853"><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="00741" HREF="msg00741.html">[MUD-Dev] Re: Now For Something Completely Different: PK with style</A></strong>, 
John Bertoglio <a href="mailto:alexb#internetcds,com">alexb#internetcds,com</a>, Thu 21 May 1998, 05:04 GMT
<LI><strong><A NAME="00730" HREF="msg00730.html">[MUD-Dev] Nested coorindate space model</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 20 May 1998, 18:19 GMT
<UL>
<LI><strong><A NAME="00756" HREF="msg00756.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
Ling <a href="mailto:K.L.Lo-94#student,lboro.ac.uk">K.L.Lo-94#student,lboro.ac.uk</a>, Thu 21 May 1998, 17:30 GMT
<UL>
<LI><strong><A NAME="00839" HREF="msg00839.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 27 May 1998, 03:09 GMT
<UL>
<LI><strong><A NAME="00853" HREF="msg00853.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
Ling <a href="mailto:K.L.Lo-94#student,lboro.ac.uk">K.L.Lo-94#student,lboro.ac.uk</a>, Sat 30 May 1998, 15:39 GMT
<UL>
<LI><strong><A NAME="00854" HREF="msg00854.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
Michael Hohensee <a href="mailto:michael#sparta,mainstream.net">michael#sparta,mainstream.net</a>, Sat 30 May 1998, 20:07 GMT
<UL>
<LI><strong><A NAME="00855" HREF="msg00855.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
Michael Hohensee <a href="mailto:michael#sparta,mainstream.net">michael#sparta,mainstream.net</a>, Sun 31 May 1998, 13:32 GMT
</LI>
<LI><strong><A NAME="00869" HREF="msg00869.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Wed 03 Jun 1998, 18:49 GMT
<UL>
<LI><strong><A NAME="00893" HREF="msg00893.html">[MUD-Dev] Re: Nested coorindate space model</A></strong>, 
Michael Hohensee <a href="mailto:michael#sparta,mainstream.net">michael#sparta,mainstream.net</a>, Sat 06 Jun 1998, 02:41 GMT
</LI>
</UL>
</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>