1999Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: (fwd) Re: DESIGN: Proposed topic of Discussion (Injecting Pure Signal) -->
<!--X-From-R13: [vx Qynexr <zvxpyexNvoz.arg> -->
<!--X-Date: Fri, 8 Jan 1999 12:16:37 &#45;0800 -->
<!--X-Message-Id: 36962161.C2BDC7C3#ibm,net -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199812230237.SAA07232#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: (fwd) Re: DESIGN: Proposed topic of Discussion (</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:mikclrk#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="msg00087.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00089.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00097.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00084.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00088">Author</A>
&nbsp;|&nbsp;<A HREF="#00088">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00088">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: (fwd) Re: DESIGN: Proposed topic of Discussion (Injecting Pure Signal)</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: (fwd) Re: DESIGN: Proposed topic of Discussion (Injecting Pure Signal)</LI>
<LI><em>From</em>: Mik Clarke &lt;<A HREF="mailto:mikclrk#ibm,net">mikclrk#ibm,net</A>&gt;</LI>
<LI><em>Date</em>: Fri, 08 Jan 1999 15:16:49 +0000</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>
J C Lawrence wrote:

&gt; From: &lt;telford#xenon,triode.net.au
&gt;
&gt; An on-topic thread is generally doomed to failure but I might as
&gt; well give it a stab.
&gt; 
&gt; &gt; Administrators, designers, and coders - what are you creating?
&gt; &gt; Some seem to want to recapture your first mud, or get your very
&gt; &gt; own mud... I've no interest in those. But for the rest of
&gt; &gt; you... what is your objective? Do you want a lot of players?
&gt; &gt; Mature players? To show of your art?
&gt; 
&gt; My main spare-time project at the moment is movement and mapping.
&gt; To put it simply I want to get something that goes beyond the
&gt; discrete nature of rooms and exits. In a conventional MUD you map
&gt; the mud by using graph theory and you explore by enumerating the
&gt; rooms.
&gt; 
&gt; My feeling is that this doesn't offer enough scope for designing
&gt; interesting maps and playing the game gets too mechanical. I want to
&gt; store the position of each MOB (including characters) as a floating
&gt; point vector to allow similar type of virtual world modeling that
&gt; Quake uses (sans the graphics :-)

Firstly note that the graph can be in terms of more than north, south,
east and west.  I had an LP Mudlib at one point that allowed you to
define exits with any name you liked.  It worked quite well for,
allowing exits like 'swim in the pool', 'jump down', 'climb down',
'small tunnel'.  It also broken the graph away from the X-Y-Z grid and
made mapping a lot harder.

The current mud I'm working on will have contitional exits - they are
only present under certain circumstances and conditional destinations -
the exit normally leads to room A, but under some circumstances might
take you to room B or C.  This is useful for apparently changing a part
of the world in accordance to something that has happened elsewhere.
 
&gt; The first main issue I wanted to address was scaling. A step in a
&gt; discrete map is a step whether you be walking the wilderness or
&gt; shopping in the main street or wandering the corridors of a
&gt; castle. This is totally unrealistic, especially when movement points
&gt; are taken into consideration. I am working on a multi-scaling map
&gt; that is built from squares where the squares have a range of
&gt; sizes. It only stores the squares that exist -- not the entire grid
&gt; -- so memory efficiency is good. It can also take a given position
&gt; and search for the region that the position is located in, the
&gt; search is currently O(log N) where N is the total number of regions
&gt; because I use B-tree storage. In theory, a suitable hash table could
&gt; bring the search to O(1).

Sounds interesting.  Did you consider a hierarchy of fixed scales, where
each level would be a fixed size, with a fixed movement cost, but you
would have the ability to change levels?  Levels might be continental,
national, city and building, with maybe a factor of 10 between each one.
 
&gt; What's implemented so far:
&gt; 
&gt; * moving around is easy enough when you specify the exact distance to move
&gt;   but most players want to just give a direction and have the move distance
&gt;   implicit. With suitably chosen implicit move distances the system should
&gt;   `feel' quite similar to room-oriented MUDs that players are familiar with
&gt;   while still allowing the realism of a virtual reality world.

Hmmm. Sounds a bit like the old Elite movement system.  One of the
problems with that is in the way it did colision detection.  It took a
fixed fraction of your current speed and extrapolated along your course
in steps that size to see what you hit.  This meant that, if you were
going fast enough, you could fly through a planet.  You'll probably need
some sort of ray/surface model or to step along the path using single
units to look for the walls.  Movement distance should probably depend
upon movement mode, but you might want to automatically stop it when the
player enters a new square.
 
Mik
-- 
<A  HREF="http://www.geocities.com/SoHo/Cafe/2260">http://www.geocities.com/SoHo/Cafe/2260</A>




</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00087.html">[MUD-Dev] Re: Levels versus Skills, who uses them and when.</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00089.html">[MUD-Dev] Re: Info about different skill systems</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00097.html">[MUD-Dev] Re: Intelligent WebGlimpse archive searching at Kanga.Nu</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00084.html">[MUD-Dev] Re: [RRE]MediaMOO annual birthday symposia: 1/20</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00088"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00088"><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="00116" HREF="msg00116.html">[MUD-Dev] 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 12 Jan 1999, 16:07 GMT
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00667" HREF="msg00667.html">[MUD-Dev] 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>, Sun 21 Mar 1999, 10:23 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00111" HREF="msg00111.html">[MUD-Dev] GRASS GIS Web Site</A></strong>, 
Elis Pomales <a href="mailto:pomales#caip,rutgers.edu">pomales#caip,rutgers.edu</a>, Tue 12 Jan 1999, 06:50 GMT
<LI><strong><A NAME="00097" HREF="msg00097.html">[MUD-Dev] Re: Intelligent WebGlimpse archive searching at Kanga.Nu</A></strong>, 
Caliban Tiresias Darklock <a href="mailto:caliban#darklock,com">caliban#darklock,com</a>, Sat 09 Jan 1999, 00:23 GMT
<LI><strong><A NAME="00088" HREF="msg00088.html">[MUD-Dev] Re: (fwd) Re: DESIGN: Proposed topic of Discussion (Injecting Pure Signal)</A></strong>, 
Mik Clarke <a href="mailto:mikclrk#ibm,net">mikclrk#ibm,net</a>, Fri 08 Jan 1999, 20:16 GMT
<LI><strong><A NAME="00084" HREF="msg00084.html">[MUD-Dev] Re: [RRE]MediaMOO annual birthday symposia: 1/20</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Thu 07 Jan 1999, 16:39 GMT
<LI><strong><A NAME="00082" HREF="msg00082.html">[MUD-Dev] Keegan's MUD Tree</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Thu 07 Jan 1999, 05:24 GMT
<LI><strong><A NAME="00081" HREF="msg00081.html">[MUD-Dev] OT: Mike Sellers needs some help load testing</A></strong>, 
J C Lawrence <a href="mailto:claw#kanga,nu">claw#kanga,nu</a>, Thu 07 Jan 1999, 03:11 GMT
<LI><strong><A NAME="00076" HREF="msg00076.html">[MUD-Dev] [RRE]MediaMOO annual birthday symposia: 1/20</A></strong>, 
Bruce Mitchener, Jr. <a href="mailto:bruce#puremagic,com">bruce#puremagic,com</a>, Thu 07 Jan 1999, 02:02 GMT
</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>