1999Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev] question about tile&#45;based games -->
<!--X-From-R13: OD Epuyrvpure <nefNajh.rqh> -->
<!--X-Date: Mon, 16 Aug 1999 09:50:33 &#45;0700 -->
<!--X-Message-Id: 4.2.0.58.19990814175419.00bbee40#lulu,acns.nwu.edu -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199908132142.PAA20431@ami&#45;cg.GraySage.Edmonton.AB.CA -->
<!--X-Reference: Pine.LNX.4.10.9908131744580.18420&#45;100000#gummy,adhesive.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev] question about tile-based games</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:ars#nwu,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="msg00099.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00101.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00098.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00102.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00100">Author</A>
&nbsp;|&nbsp;<A HREF="#00100">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00100">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev] question about tile-based games</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] question about tile-based games</LI>
<LI><em>From</em>: AR Schleicher &lt;<A HREF="mailto:ars#nwu,edu">ars#nwu,edu</A>&gt;</LI>
<LI><em>Date</em>: Sat, 14 Aug 1999 18:12:56 -0400</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>
At 05:47 PM 8/13/99 -0500, Wes Connell &lt;wconnell#adhesive,com&gt; wrote:

 &gt;A couple of ideas. I've always liked the way UO handles this type of
 &gt;thing. Allowing players to walk "through" other players/mobs, but make it
 &gt;cost. In UO's case it is stanima points. Why not use a good thing? We
 &gt;could even improve it. Have player configurable stances.

&lt;some text about different stances deleted&gt;

 &gt;The stances could also be used in many other parts of the game system. Ie:
 &gt;Suprise attacks would not be as effective if the victim were in a
 &gt;defensive stance. Shop keepers would not sell to players in an aggressive
 &gt;stance. Etc etc.

UO actually has a basic version of stances already, with combat mode.  On 
Origin's servers, however, the only significant difference between the two 
modes are interface issues.  (What does the primary mouse button do, and 
what does the character look like)  About a year ago, a UO server emulator 
named UOR (I think, it's been awhile) actually used a number of these 
stance characteristics.  Being in combat mode significantly raised your 
armor rating, however, you couldn't run while in it, and I think it may 
have even had the shopkeeper restriction as well.  It did seem to work well 
at the time.

 &gt;Granted the previously discussed consequences would still exist. You would
 &gt;just have to make the areas more logical. A hallway usually allows two
 &gt;people to walk side by side. A tunnel would allow a single file line.
 &gt;Unless of course you toss direction into the mix. Wasn't there a guy
 &gt;talking about making 2x4 tiles? I would love to hear more about that.

Rectangular non-square tiles are interesting, however, after giving them 
some thought, they seem rather difficult to implement for a small amount of 
gain.  Here's some of the issues I came up with:

What do you do when the character is facing a direction that is not aligned 
with your tile system?  With a 3x3 tile, it works well to just keep the 
same 3x3 tiles.  However, with a non-square rectangle, you'd need to change 
which tiles were holding the character, and the result could be odd in some 
cases (a character taking up more or less tiles due to his orientation).

What do you do when the character wants to turn?  With a square, the 
character has enough space to do the turn already taken up by him, however, 
with a non-square, the character might be turning through some space that 
is already occupied by something else.

Since orientation is now more important, instead of turning in a direction 
and walking that way, you're now likely to want the ability to move in any 
direction while preserving your orientation, something that wasn't as 
important to have before.

Finally, to bring up an even more complicated situation, consider 
this.  Let's say we have a giant snake that is one tile wide, and five 
tiles long.  The snake is in a narrow, one tile wide tunnel, which reaches 
an intersection with another one tile wide pipe going perpendicular to the 
first tunnel.  For the snake to turn from being in the first tunnel, to 
being in the second, you have to either just instantly pop it around to 
have a different orientation (looks rather odd, and puts the tail of the 
snake somewhere the head has never been),  or you have to be able to bend 
the shape of the snake, into various L shaped configurations, as it moves 
around the pipe.  Now you have even more unusual situations to think about. 
*grins*

AR Schleicher (Jerrith)
ars#nwu,edu (changing to ars#iag,net, slowly)




_______________________________________________
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>
<ul compact><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><A NAME="00102" HREF="msg00102.html">Re: [MUD-Dev] question about tile-based games</A></strong>
<ul compact><li><em>From:</em> Wes Connell &lt;wconnell#adhesive,com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00097" HREF="msg00097.html">Re: [MUD-Dev] question about tile-based games</A></STRONG>
<UL><LI><EM>From:</EM> Chris Gray &lt;cg#ami-cg,GraySage.Edmonton.AB.CA&gt;</LI></UL></LI>
<LI><STRONG><A NAME="00098" HREF="msg00098.html">Re: [MUD-Dev] question about tile-based games</A></STRONG>
<UL><LI><EM>From:</EM> Wes Connell &lt;wconnell#adhesive,com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00099.html">Re: [MUD-Dev] Containing automation?</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00101.html">Re: [MUD-Dev] The Virtual Ecology</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00098.html">Re: [MUD-Dev] question about tile-based games</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00102.html">Re: [MUD-Dev] question about tile-based games</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00100"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00100"><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] question about tile-based games</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<LI><strong><A NAME="00095" HREF="msg00095.html">Re: [MUD-Dev] question about tile-based games</A></strong>, 
AR Schleicher <a href="mailto:ars#nwu,edu">ars#nwu,edu</a>, Thu 12 Aug 1999, 18:10 GMT
</LI>
</ul>
<LI><strong><A NAME="00093" HREF="msg00093.html">Re: [MUD-Dev] question about tile-based games</A></strong>, 
Scott Boding <a href="mailto:sboding#cybersource,com">sboding#cybersource,com</a>, Thu 12 Aug 1999, 18:10 GMT
</LI>
<LI><strong><A NAME="00097" HREF="msg00097.html">Re: [MUD-Dev] question about tile-based games</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Fri 13 Aug 1999, 21:49 GMT
<UL>
<LI><strong><A NAME="00098" HREF="msg00098.html">Re: [MUD-Dev] question about tile-based games</A></strong>, 
Wes Connell <a href="mailto:wconnell#adhesive,com">wconnell#adhesive,com</a>, Fri 13 Aug 1999, 23:24 GMT
<UL>
<LI><strong><A NAME="00100" HREF="msg00100.html">Re: [MUD-Dev] question about tile-based games</A></strong>, 
AR Schleicher <a href="mailto:ars#nwu,edu">ars#nwu,edu</a>, Mon 16 Aug 1999, 16:50 GMT
<UL>
<LI><strong><A NAME="00102" HREF="msg00102.html">Re: [MUD-Dev] question about tile-based games</A></strong>, 
Wes Connell <a href="mailto:wconnell#adhesive,com">wconnell#adhesive,com</a>, Mon 16 Aug 1999, 18:00 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</ul>
</LI>
<LI><strong><A NAME="00081" HREF="msg00081.html">Re: [MUD-Dev] an idea..wondering if this has been done</A></strong>, 
Joey Hess <a href="mailto:joey#kitenet,net">joey#kitenet,net</a>, Fri 06 Aug 1999, 03:02 GMT
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00103" HREF="msg00103.html">Re: [MUD-Dev] an idea..wondering if this has been done</A></strong>, 
Par Winzell <a href="mailto:zell#alyx,com">zell#alyx,com</a>, Mon 16 Aug 1999, 22:45 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00080" HREF="msg00080.html">[MUD-Dev] Game design and gender: An interesting article</A></strong>, 
Nathan F Yospe <a href="mailto:yospe#hawaii,edu">yospe#hawaii,edu</a>, Thu 05 Aug 1999, 01:22 GMT
</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>