1999Q4/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] Ideas for dynamic worlds -->
<!--X-From-R13: Rnivq [betna <bzbetnaNzhfxvathz.rqh> -->
<!--X-Date: Wed, 15 Dec 1999 18:45:43 &#45;0800 -->
<!--X-Message-Id: 38584C83.6C76F956#muskingum,edu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: E11wakS&#45;0007Ou&#45;00#ethereal,dhis.org -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] Ideas for dynamic worlds</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:omorgan#muskingum,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="msg00601.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00603.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00598.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00595.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00602">Author</A>
&nbsp;|&nbsp;<A HREF="#00602">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00602">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] Ideas for dynamic worlds</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>: Re: [MUD-Dev] Ideas for dynamic worlds</LI>
<LI><em>From</em>: David Morgan &lt;<A HREF="mailto:omorgan#muskingum,edu">omorgan#muskingum,edu</A>&gt;</LI>
<LI><em>Date</em>: Wed, 15 Dec 1999 21:20:51 -0500</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: <A HREF="mailto:mud-dev-admin#kanga,nu">mud-dev-admin#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>
Nolan Darilek wrote:
&gt; 
&gt; I've been a lurker on this list for nearly a year. 

Same here.  :)

&gt; After taking a 8-9 month break (more like 'forced leave of absence' 
&gt; :) from MUDding, I've come back, sorta. :) 

I've only really played one MU*, and haven't had much access to it for
a year and a half now, except during the summer.  It also has had a
playerbase of about 3 or 4 for the last year or so, and now they tell
me it's going down permanently..  :s
So take my input with a grain of salt.

&gt; What are my ideas, you ask? I'm trying to design a framework for
&gt; creating a very dynamic world with a very rich level of detail. I 
&gt; have quite a few ideas, and I've noted several flaws in a few of 
&gt; them, but I'm sure that I'm missing more.

whaddya know, I'm considering the same thing..  estimated release date
is in ten years, especially considering the current [nigh-nonexistant]
rate of development.
 
&gt; I've often been obsessed with the idea of coordinate systems in
&gt; MUDs. I don't mean the typical 'one room per grid square' idea which
&gt; many MUDs use. Instead, I'm considering a system of stacked
&gt; grids. 

Same here, at least to some degree.

&gt; Each grid has a width and length, and an attached description
&gt; written in an XML-based mark-up language which will be used for all
&gt; text sent to the user. 
[snip]

hm..  I think I'm trying for a more dynamically-generated appraoch: 
the underlying layers have some environmental effects, but most of the
current description depends on what objects are visible.
 
&gt; Maps represent a "logical area." On most MUDs, each room might be
&gt; replaced by a map with the room's width and depth. Furthermore, no
&gt; matter where you are, you are always present on a map. Imagine a
&gt; tree-like structure. The root node of the tree represents the terrain
&gt; atop which your world is set. In most cases, this would probably be 
&gt; an ocean, but it could certainly be a desert, or maybe even the
&gt; universe.

Again, this is similar but not the same as what i'm planning.  there's
a base 'ground' layer, which has various terrains on top of it (town,
forest, desert, mountain, etc) and those will likely have objects on
them for the room's appearance.  I don't think there would be a way to
translate the 'standard' MU* concept of rooms to my system, although
indoor 'rooms' might be similar.
 
&gt; The algorithm which I am considering for rendering text descriptions
&gt; is recursive, first displaying the description of the map atop which 
&gt; the user stands, also describing surrounding objects. If the current 
&gt; map is transparent, it recurses downward to the surrounding maps 
&gt; until the map boundaries extend beyond visibility. So, if you are 
&gt; standing on a forested road near an ocean, you first see a 
&gt; description of the road concatenated with a description of the forest 
&gt; and the ocean. 

That doesn't sound too bad, but I don't like your next statement:

&gt; Since both likely are impossible to see past, the description 
&gt; algorithm doesn't recurse further.

How do you know that both are likely to be impossible to see past? 
Perhaps you could implement some sort of sight radius for the
character which determines how far away you recurse?
 
&gt; This algorithm doesn't take into account visibility of distant
&gt; objects. If a mountain range rises past the forest, the algorithm
&gt; would stop after noticing that the forest is too far to see past. One
&gt; workaround which I've considered is marking certain objects as
&gt; 'noteworthy', and thus continuing the recursion and only selecting
&gt; marked objects from the countless others, but this would be a waste 
&gt; of CPU time. I'm sure there are ways of handling this; I just don't 
&gt; know what they are.

[someone mentioned heightfields, which you need for various reasons]
OK, another question:  do you recurse _through_ the neighboring maps
as
well, or just add them in?  I didn't entirely understand you there.
 
&gt; This system would allow for some interesting features. Since movement
&gt; is based on speed and direction, and not on typing a single command
&gt; and moving an arbitrary distance in an arbitrary amount of time, it
&gt; seems that adding vehicle systems would be a natural extension to the
&gt; game.

It's not something I would've thought of easily, but it is needed for
my MU* for other reasons, so hearing that they're a "natural
extension" is good news for me :)

&gt; A disadvantage, though, is that it would be difficult to represent a 
&gt; world which didn't conveniently use right angles for everything.

Why must this system use only 4 directions?

&gt; A winding wilderness road would be quite annoying to walk down if you 
&gt; had to sit at your computer with a graphing calculator, punching in 
&gt; trig equations every few seconds. 

You couldn't just say 'follow road' or something, and let the computer
handle the direction changes? [reads the next paragraph]  yeah,
something like that.  Mayhaps make roads etc with some sort of radial
vectors[1] that say where &amp; how the road turns, and then the algorithm
can apply the same vectors to anyone following the road?

[1] I just made up that phrase, actually.. In this usage it appears to
be approximately a derivative of the road if it were a function..  it
would be a series of values for how much the road swerves; 
{.1,.1,.1,-.2,-.2,-.2} would be a gentle right curve followed by a
left curve that was twice as sharp.

&gt; Since most games use compass directions anyway, I doubt that would 
&gt; pose much of a problem. 

Perhaps, but it also would eliminate some of the richness your system
could have.

&gt; Additionally, it may be possible to create an intelligent
&gt; server-side algorithm for following roads, paths, bridges, etc. Since
&gt; they would be represented by rectangular maps, the algorithm would
&gt; only need to determine which border is the map's width and which is
&gt; its length, and set the object's course to the path which the line
&gt; follows, updating this every second or so.

Which is more or less what people do, right?  ..You might also be able
to use this to implement 'drunkenness'...  instead of following the
road straightly, you weave all over it. [randomly 'push' the
character's direction] heheh  :s

[snippage throughout]
&gt; In my description algorithm, I mentioned describing the objects on 
&gt; the map. What if buildings, lamp posts, trees, shrubberies, etc. were
&gt; objects? A game developer would need only define a building and its
&gt; basic description, as well as other states in which the building 
&gt; could be and their accompanying description. Thus, a builder would 
&gt; only need to change the building's normal description, and once it is 
&gt; added to a location, the description is automatically added by the 
&gt; algorithm. This would require additional development time for 
&gt; designers, but it might add lots of descriptive realism to the world. 
&gt; This could be taken even farther; a building template could create 
&gt; everything. Objects could also have pre-programmed behaviors as well.

&lt;nod&gt;  That's how I intend my system to work.

&gt; There are a few problems with this approach, though. If, for example,
&gt; you are in a forest, you don't necessarily want to see the 
&gt; description of every single tree nearby. Certain objects could be 
&gt; defined as groupable with group descriptions. Thus, lots of trees 
&gt; could be described as such, while a single tree could be described in
&gt; detail. 

The MUD-Dev list mentioned something about uber-objects that I thought
applies to this..  Instead of grouping objects, make a group-object &amp;
then say what individual objects it may contain.

&gt; Additionally, depending on how far the object paradigm is
&gt; extended, building could eventually require someone to plot out
&gt; blueprints before starting, which isn't what I want to see. A 
&gt; building object could handle the creation of all walls, windows, etc. 
&gt; while giving the builder the chance to customize his work
&gt; afterwards. Arranging room maps within the building to fit within the
&gt; walls may also pose a problem. If the dimensions of the building are
&gt; made into an easy-to-work-with number though, laying out rooms
&gt; shouldn't pose much of a problem.

&lt;nod&gt;  I'm now toying with the idea (just an idea right now) of using
POV-Ray files (or something similar) as area files...
Sure it'll take a bunch of work, but you can see what the place
actually looks like if you want..   &lt;g&gt;
 
&gt; I have quite a few more ideas, though none are quite this complex. 
&gt; I'd like to steer away from writing text directly to the client for
&gt; example, instead using events to signify changes in the
&gt; environment. Eventually the events would be converted into message
&gt; events depending on the user's immediate environment (in an attic,
&gt; rain may be heard pounding on the roof, while it may sound more
&gt; distant in a basement for example) but the environment will not be
&gt; allowed to simply send strings to the client.

sounds good.
 
&gt; On one hand, I can see how this could pose quite a problem for world
&gt; developers, and I'm sure some of you are thinking that it would be 
&gt; too much work. My reasoning, though, is that if reasonable defaults 
&gt; for most options can be provided, the developers aren't necessarily
&gt; required to put forth any additional work unless they want to make
&gt; their world even more detailed than it already is. Using the above
&gt; example, default weather messages can be provided for indoor and
&gt; outdoor locations. If a builder wants to implement a special case,
&gt; though, the facilities are there for him to do so.

&lt;nod&gt;  there more functionality you put into your part, the less
details the builders will need to mess with.
 
&gt; I'd really like to hear your thoughts on some of these ideas before I
&gt; pour much more work into the design documents. I currently have a
&gt; rather shabby website for my project, but I'm almost embarrassed to
&gt; give it out until I have more to show for my efforts, though I'd
&gt; certainly welcome any folks who are interested in helping with
&gt; these ideas. If you are, or if you're just interested in watching my
&gt; slow progress (Though hopefully I'll speed up next week :) drop me a
&gt; private message and I'll send the URL. Thanks for reading; I rambled
&gt; on a bit longer than I had planned to. :)

This is really why I'm writing - I'd like to watch your progress :)
I may be able to help or I may not, but either way I'd like to see how
you do with this.  

Hope I gave you _some_ useful input..

 Strike &amp; Co.
-- 
Rule # 1: There are always exceptions to the rules.



_______________________________________________
MUD-Dev maillist  -  MUD-Dev#kanga,nu
<A  HREF="http://www.kanga.nu/lists/listinfo/mud-dev">http://www.kanga.nu/lists/listinfo/mud-dev</A>

</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="00588" HREF="msg00588.html">[MUD-Dev] Ideas for dynamic worlds</A></STRONG>
<UL><LI><EM>From:</EM> Nolan Darilek &lt;nolan_d#bigfoot,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00601.html">[MUD-Dev] Mud-Dev FAQ</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00603.html">Re: [MUD-Dev] The grass is always greener in the other field</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00598.html">RE: [MUD-Dev] Ideas for dynamic worlds</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00595.html">RE: [MUD-Dev] Ideas for dynamic worlds</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00602"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00602"><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="00588" HREF="msg00588.html">[MUD-Dev] Ideas for dynamic worlds</A></strong>, 
Nolan Darilek <a href="mailto:nolan_d#bigfoot,com">nolan_d#bigfoot,com</a>, Sat 11 Dec 1999, 01:03 GMT
<UL>
<LI><strong><A NAME="00594" HREF="msg00594.html">RE: [MUD-Dev] Ideas for dynamic worlds</A></strong>, 
Chimera <a href="mailto:chimera#SoftHome,net">chimera#SoftHome,net</a>, Sat 11 Dec 1999, 19:01 GMT
<UL>
<LI><strong><A NAME="00597" HREF="msg00597.html">Re: [MUD-Dev] Ideas for dynamic worlds</A></strong>, 
Nolan Darilek <a href="mailto:nolan_d#bigfoot,com">nolan_d#bigfoot,com</a>, Sun 12 Dec 1999, 03:16 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00598" HREF="msg00598.html">RE: [MUD-Dev] Ideas for dynamic worlds</A></strong>, 
Joe Kingry <a href="mailto:jkingry#uwaterloo,ca">jkingry#uwaterloo,ca</a>, Sun 12 Dec 1999, 03:16 GMT
</LI>
<LI><strong><A NAME="00602" HREF="msg00602.html">Re: [MUD-Dev] Ideas for dynamic worlds</A></strong>, 
David Morgan <a href="mailto:omorgan#muskingum,edu">omorgan#muskingum,edu</a>, Thu 16 Dec 1999, 02:45 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00595" HREF="msg00595.html">RE: [MUD-Dev] Ideas for dynamic worlds</A></strong>, 
Ilya, Game Commandos <a href="mailto:Ilya#gamecommandos,com">Ilya#gamecommandos,com</a>, Sat 11 Dec 1999, 19:24 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00577" HREF="msg00577.html">Re: [MUD-Dev] Biosystems (was Fair/Unfair? Scenarios)</A></strong>, 
Philip Loguinov -- Draymoor <a href="mailto:fibhufky#erols,com">fibhufky#erols,com</a>, Fri 10 Dec 1999, 03:16 GMT
<UL>
<LI><strong><A NAME="00586" HREF="msg00586.html">Re: [MUD-Dev] Biosystems (was Fair/Unfair? Scenarios)</A></strong>, 
Mik Clarke <a href="mailto:mikclrk#attglobal,net">mikclrk#attglobal,net</a>, Fri 10 Dec 1999, 21:45 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00579" HREF="msg00579.html">Re: [MUD-Dev] Biosystems (was Fair/Unfair? Scenarios)</A></strong>, 
Dundee <a href="mailto:SkeptAck#antisocial,com">SkeptAck#antisocial,com</a>, Fri 10 Dec 1999, 16:28 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>