2000Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: RE: [MUD&#45;Dev] The Endeavour Map and MUD Applications -->
<!--X-From-R13: "Xbua Pregbtyvb" <woNchyfrcbyy.pbz> -->
<!--X-Date: Thu, 17 Feb 2000 20:59:38 &#45;0800 -->
<!--X-Message-Id: NDBBJHDDILCFMCFAFDINCEIADPAA.jb#pulsepoll,com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 002801bf7913$e4404520$5bd172cf@SPAWN2000 -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, RE: [MUD-Dev] The Endeavour Map and MUD Applications</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:jb#pulsepoll,com">
</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="msg00405.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00407.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00394.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00383.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00406">Author</A>
&nbsp;|&nbsp;<A HREF="#00406">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00406">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>RE: [MUD-Dev] The Endeavour Map and MUD Applications</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: &lt;<A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A>&gt;</LI>
<LI><em>Subject</em>: RE: [MUD-Dev] The Endeavour Map and MUD Applications</LI>
<LI><em>From</em>: "John Bertoglio" &lt;<A HREF="mailto:jb#pulsepoll,com">jb#pulsepoll,com</A>&gt;</LI>
<LI><em>Date</em>: Thu, 17 Feb 2000 19:42:03 -0800</LI>
<LI><em>Importance</em>: Normal</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>
&gt; Justin Rogers
&gt; Sent: Wednesday, February 16, 2000 10:55 PM
&gt;
&gt; [John]

&lt;cut description of use of bit mapped graphics to generate database&gt;

&gt;     I remember this thread and it was actually quite interesting.  The
&gt; problem
&gt; lied in the abundance of characters that could be used to specify
&gt; various
&gt; terrain types and the such.
&gt;     This new approach you are talking about has some other neat
&gt; ramifications
&gt; that I'll talk about below.  But since you are making high resolution,
&gt; beautified
&gt; graphics of the world and landscape you also have these available to
&gt; the user.

Actually, the entire map probably would not be directly available to users.
Pieces could be cut out and turned into local maps but discovery is part of
the fun of this design. It would be far more fun (at least for the designer)
to see maps posted by users and compare them to the actual world map whose
main function is to serve as a design template.


&gt; [John]
&gt; &gt; You save the file as a PPM file. A program that parses each pixel of
&gt; the
&gt; &gt; graphic creates the initial world, exits from one location to
&gt; another and
&gt; &gt; defines the elevation.

&gt;     How does it define the exits.  Obviously this is truly a *world*
&gt; file in
&gt; which every direction can be taken to reach every other direction.
&gt; You
&gt; would have to specify quite a bit more to get *real* type exits.

My world design uses a zoom metaphor. Each cell mapped using the graphic
layout is about 20km x 20km. When a player or group is moving at this level,
they are in "expedition mode" which allows large distances to be traversed
in a reasonable amount of time. The gateway between Regions know how
difficult it is to move from one to another. You can declare the use of road
or water movement (assuming other conditions are already met and there is a
road or major river connecting the two Regions).  Movement is abstract as is
the consumption of resources. How and where you are moving determines the
frequency and type of encounters which drop you down into Location level to
deal with. While you can move 2000km in a few seconds, you will starve to
death if the proper steps are not taken. There is an intermediate level
which further breaks down each of the Regions in to 400 1km Areas. This
creates 400 million unique places in the world. Each can be controlled by a
player bringing a strategic level of play for the ultimate in powergaming.

The program generates gateways between all cells in all 8 compass directions
as the cells are parsed. Obviously, some routes are easier than others.
"Real exits" are created at the Location level which uses a reasonably
standard "rooms" metaphor. They are created by a GUI online editor, by
character actions and by random generation at the point of entry.

&gt;For
&gt; this
&gt; height field type map there are definitely several programs out that
&gt; can
&gt; autogenerate unique worlds.  Which certainly makes more sense than
&gt; plotting
&gt; a couple million pixels...

I am very interested in the idea of autogeneration at more granular levels
but actually, a 1200 x 800 world can be built very quickly. Remember, in a
paint program you draw outlines and then flood fill. A million clicks would
be very tedious. Of course, you can spend days tweeking the world. My basic
point that it is much faster to draw a new island in a part of the globe
seems a bit barren than to hand code all the cells into the world database.

&gt;
&gt;     Your overplayed picture approach definitely has its merits...  What
&gt; I fully
&gt; propose would be the use of 16 color maps and actually define various
&gt; levels
&gt; that get transposed....  16 colors for elevation of certain heights.
&gt; The same
&gt; 16 colors for cities, same for minerals etc...

That is exactly how it works. Interestingly, there is no strict limit for 16
color palettes, it is just that I have never needed more than 16. It might
make more sense to define all the colors in a single palette since PSP
(paint shop pro) allows you to display the palettes in palettes order. It
also allows you to define the palettes in a text document (including
comments so you can remember what color does what).

&gt; Then the user can ask
&gt; for a
&gt; certain type of map within the game.
&gt;   &gt;  map geographic
&gt;   &gt;  map mineral
&gt;
&gt;     That way you can use the basic set of colors, but you can have 20
&gt; different
&gt; types of maps.

This idea is interesting because it would allow you to use the same legend
for each map and just relabel for a different purpose. I have chosen to use
different palettes because it seems reasonable to use colors which relate to
the information. What we do is store the color value (in hex) with the
terrain (or whatever) type and display it when the player uses the map
making skill. Depending on the level of skill and/or the ownership of the
proper maps, the player can display an X by X display of the local data
inside of a window in their browser.

&gt;
&gt;     Also, have you looked into using a geographic database to create
&gt; your world.
&gt; I've looked into using GIS data to create a MUD exactly like the
&gt; world.

I like this idea, but one of the reasons to build your own planet is to make
a "better" world. At the very least, one which is different. I suspect the
same methodology described in my original post would work great with GIS
data.

&gt; I
&gt; defined about 100 regions and then defined programs that would
&gt; populate those
&gt; regions using biological systems.  Once I had a fully functional world
&gt; model with
&gt; GIS data and vegetation data built on top I put about 400 mini ai NPCs
&gt; to work
&gt; in groups of ten and let them build and populate.  It was an ants
&gt; behind the glass
&gt; type of MUD because there was no PC integration.  But it was rather
&gt; neat to watch
&gt; and the system was there in a way that I didn't need any world
&gt; builders to create
&gt; areas.  After about 3 months all my areas were created.

This is a really interesting idea.
I would be very interested in knowing how you did the world generation.

John A. Bertoglio
  _____

| PulsePoll.com &lt;<A  HREF="http://www.pulsepoll.com/">http://www.pulsepoll.com/</A>&gt;
| 503.781.3563
| jb#pulsepoll,com &lt;<A  HREF="mailto:jb#pulsepoll,com">mailto:jb#pulsepoll,com</A>




_______________________________________________
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="00386" HREF="msg00386.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></STRONG>
<UL><LI><EM>From:</EM> "Justin Rogers" &lt;justin#mlstoday,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00405.html">Re: [MUD-Dev] code base inquiry</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00407.html">Re: [MUD-Dev] code base inquiry</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00394.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00383.html">RE: [MUD-Dev] The Endeavour Map and MUD Applications</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00406"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00406"><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] The Endeavour Map and MUD Applications</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00375" HREF="msg00375.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Ted Milker <a href="mailto:tmilker#radiks,net">tmilker#radiks,net</a>, Thu 17 Feb 2000, 05:42 GMT
</LI>
</ul>
</ul>
<LI><strong><A NAME="00376" HREF="msg00376.html">RE: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
John Bertoglio <a href="mailto:jb#pulsepoll,com">jb#pulsepoll,com</a>, Thu 17 Feb 2000, 05:42 GMT
<UL>
<LI><strong><A NAME="00386" HREF="msg00386.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Justin Rogers <a href="mailto:justin#mlstoday,com">justin#mlstoday,com</a>, Thu 17 Feb 2000, 18:40 GMT
<UL>
<LI><strong><A NAME="00394" HREF="msg00394.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Eli Stevens (Grey) <a href="mailto:ens017#mizzou,edu">ens017#mizzou,edu</a>, Thu 17 Feb 2000, 20:47 GMT
</LI>
<LI><strong><A NAME="00406" HREF="msg00406.html">RE: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
John Bertoglio <a href="mailto:jb#pulsepoll,com">jb#pulsepoll,com</a>, Fri 18 Feb 2000, 04:59 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
<LI><strong><A NAME="00383" HREF="msg00383.html">RE: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Koster, Raph <a href="mailto:rkoster#origin,ea.com">rkoster#origin,ea.com</a>, Thu 17 Feb 2000, 18:40 GMT
</LI>
<LI><strong><A NAME="00673" HREF="msg00673.html">RE: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Lo, Kam <a href="mailto:LoK#logica,com">LoK#logica,com</a>, Tue 21 Mar 2000, 16:57 GMT
<UL>
<LI><strong><A NAME="00676" HREF="msg00676.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Justin Rogers <a href="mailto:justin#mlstoday,com">justin#mlstoday,com</a>, Tue 21 Mar 2000, 21:45 GMT
<UL>
<LI><strong><A NAME="00689" HREF="msg00689.html">Re: [MUD-Dev] The Endeavour Map and MUD Applications</A></strong>, 
Joel Dillon <a href="mailto:jo#trolltech,com">jo#trolltech,com</a>, Wed 22 Mar 2000, 17:19 GMT
</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>