1998Q2/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: [MUD&#45;Dev] Re: Combat  Was Re: Leaving characters in play -->
<!--X-From-R13: Oqnz Ivttvaf <nqnzNnatry.pbz> -->
<!--X-Date: Mon, 18 May 1998 19:50:20 &#45;0700 -->
<!--X-Message-Id: Pine.SGI.3.96.980518192431.6875C&#45;100000#red,angel.com -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: Pine.LNX.3.95.980518173503.1045A&#45;100000#pyrolisk,ip.local -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, [MUD-Dev] Re: Combat  Was Re: Leaving characters in play</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:adam#angel,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="msg00680.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00682.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00686.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00632.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00681">Author</A>
&nbsp;|&nbsp;<A HREF="#00681">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00681">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</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: Combat  Was Re: Leaving characters in play </LI>
<LI><em>From</em>: Adam Wiggins &lt;<A HREF="mailto:adam#angel,com">adam#angel,com</A>&gt;</LI>
<LI><em>Date</em>: Mon, 18 May 1998 19:50:00 -0700 (PDT)</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:mud-dev#kanga,nu">mud-dev#kanga,nu</A></LI>
<LI><em>Sender</em>: "Petidomo List Agent -- Kanga.Nu version" &lt;<A HREF="mailto:petidomo#kanga,nu">petidomo#kanga,nu</A>&gt;</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On Mon, 18 May 1998, Oliver Jowett wrote:
&gt; On Mon, 18 May 1998, Orion Henry wrote:
&gt; &gt; -- Actions all have a priority that the queue is sorted by.  The priority
&gt; &gt; levels we had decided on were (from lowest to highest) menial, information
&gt; &gt; gathing, life-or-death, reactionary, and involentary.
&gt; 
&gt; I have a feeling I've seen discussion of this before on the list, but 
&gt; anyway..

Yes, I wrote many a message on this topic.  Mainly when we had just
finished implementing it (about a year and a half ago now, I think) and
were very busy patting ourselves on the back. :)  Seriously, it's a very
cool system that has stood the test of time very well.  We've yet to come
across any actions which we couldn't do elegantly in this system.  And the
source file for *all* the handler code is something like 250 lines, so
it's not like it's difficult to implement.

&gt; How long do actions last in the queue? How are they affected by changes in
&gt; the environment?

This is probably the least fleshed out part so far.  Actions get kicked
out based on simple length of the queue.  At a certain point low priority
actions start getting dropped off the far end if they've been "put off"
for too long.  As Orion has illustrated with his examples (I'll try not to
repeat him too much), that means that if you are momentarily interrupted,
you return to what you were doing, but if you do something important for a
long time your 'forget' about the piddling stuff you were doing before.

Thus:

% hide
You hide in the shadows.
% [...]
Bubba arrives from the south.
Bubba looks around furtively.
Bubba sets down a bag of treasure.
Bubba picks up a shovel.
Bubba begins digging a hole.
% palm bag
You furtively nab the bag.
You return to hiding.
% [...]
Bubba finishes digging the hole.
Bubba frowns.
Bubba says, 'hum, must have left it in the other room'
Bubba leaves north.

But:

% hide
You hide in the shadows.
% [..]
A dragon appears from the north.
The dragon massacres you with his bite.
% 
[long fight]
The dragon is dead!
%

Note no 'you return to hiding' at the end.

&gt;   &gt; get sword
&gt;   &gt; open chest
&gt;   You pick up the sword.
&gt;   Bubba charges in and swings his sword at you!
&gt;   &gt; parry
&gt;   You parry Bubba's wild blow.
&gt; 
&gt; [.. combat ..]
&gt; 
&gt;   Bubba casts the dreaded "make all chests electrified" spell.
&gt;   &gt; skewer bubba
&gt;   You skewer Bubba with your sword. He collapses to the ground.
&gt;   You open the chest. ZAP! You are dead!
&gt;   &gt; say damn!

Although I realize this isn't a very good answer, we actually get around
this by not doing things like the above. :)  Seriously, we've designed
character actions as things that take time and perparation, in hopes to
reduce the action-game feel to the gameplay.  Our magic system doesn't
have any spells, instead it involves a pretty complicated process of
channeling elemental forces from some source, focusing them in your body,
and then streaming them into a target.  There are *no* commands that
happen instantly when you type them.  Thus you always have warning.  I
might add that magic (which is *very* hard to come by, and does not have
any 'spells' persay) takes a long time to execute, and gives several
pretty nasty-looking messages warning you what's going on.  If you're
still around when the spell is released, you get what you deserve.

Which brings up an important point: the system doesn't work unless *all*
actions which physically affect the world are implemented as tasks.
Otherwise you get the affects I mentioned in that thread about Jon's
turn-based combat where you can abuse the asyncronous freebie commands in
order to get advantages.  (Note: status commands like "config" or "score"
are flagged as being system-level commands and do happen the moment you
type them.  But those are the only ones.)

&gt; Perhaps parse commands when received, to the point where you know what it
&gt; refers to (ie. resolve context at the point the command is entered, not
&gt; when the action un-queues). Then, if there is a visible state change in

Yes, that's what happens.  In some cases, if the action is a long one, it
gives a "you begin.." message, which ends up chaining a series of tasks.

One of the first major uses I made of the task system was to implent
lockpicking in a slightly more interesting way than "You pick the lock."
Since I'm at work I can't pull up a direct log at the moment, and I'm too
lazy to try to remember all the messages, but I'll try to give the gist of
it:

% pick lock with lockpicks
You begin attempting to pick the lock on the door with your lockpicks.
You slip one lockpick into the lower part of the keyhole.
You slip the second lockpick into the upper part of the keyhole.
% say okay just give me a sec
You say, 'Okay, just give me a sec'
You continue lockpicking.
You probe gently with the lower pick, searching for the tooth-guard.
[...]
You press gently inwards with the top pick.
A soft click cues the completion of your work.
% smile

&gt; what a queued action refers to, and the action has been queued for &gt;N
&gt; seconds, cancel it / require confirmation from the player. 

Nods...actually, this is all rather tranparent to the player, so we've
tried to limit the amount of manipulation they do to the queue.  In fact,
they shouldn't even really be aware that they have a queue at all.
There is the 'stop' command, but tasks generally transpire so quickly (it
is rare that a task should have an execution time of more than two
seconds) that it's not really all that useful.

We *do* do simple validation of object targets, of course, but that's just
simple stuff like:

You raise your weapon to swing at Bubba.
Bubba flees north.
Your weapon cuts through empty air.

or:

% open door
You are suddenly teleported away.
You stop attempting to open the door, confused.
%

or, more likely:

% tickle bubba
A huge fireball arrives from the north and incinerates Bubba, leaving a
small pile of black goo on the ground.
You decide not to tickle Bubba, after all.
%

&gt; Or the system could drop lower-priority actions if something "important"
&gt; happens? eg. &gt;X higher-priority actions queued since the low-priority
&gt; action was.

Right.  Little things tend to get 'lost' in times of stress.  If it's
something that you really care about you can always use the '!' override
to increase the priority of a small action.

&gt; This could be desirable and/or irritating for other reasons:
&gt; 
&gt;   Ouch! You have an itchy ear! You scratch it.
&gt;   &gt; open chest
&gt;   Ooh, that ear really is sore. You scratch it some more.
&gt;   &gt; look in mirror
&gt;   Scratch, scratch.
&gt;   Yup, looks like you've got a nasty rash on your ear.
&gt;   Scratch, scratch.
&gt;   You forget about opening the chest for now. That ear sure is itchy!
&gt;   &gt; grumble


Hehe, sure.

Adam



-- 
MUD-Dev: Advancing an unrealised future.

</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="00660" HREF="msg00660.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></STRONG>
<UL><LI><EM>From:</EM> Oliver Jowett &lt;oliver#jowett,manawatu.planet.co.nz&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00680.html">[MUD-Dev] Re: Using HTML for a Mud character generator</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00682.html">[MUD-Dev] Re: CGDC, a summary</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00686.html">[MUD-Dev] Re: Combat Was Re: Leaving characters in play</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00632.html">[MUD-Dev] Re: OT: Java multithreading performance</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00681"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00681"><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>[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00662" HREF="msg00662.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Oliver Jowett <a href="mailto:oliver#jowett,manawatu.planet.co.nz">oliver#jowett,manawatu.planet.co.nz</a>, Mon 18 May 1998, 04:26 GMT
<UL>
<LI><strong><A NAME="00678" HREF="msg00678.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Orion Henry <a href="mailto:orionZ#ix,netcom.com">orionZ#ix,netcom.com</a>, Tue 19 May 1998, 01:08 GMT
</LI>
<LI><strong><A NAME="00683" HREF="msg00683.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Tue 19 May 1998, 03:36 GMT
</LI>
<LI><strong><A NAME="00686" HREF="msg00686.html">[MUD-Dev] Re: Combat Was Re: Leaving characters in play</A></strong>, 
J C Lawrence <a href="mailto:claw#greek,kanga.nu">claw#greek,kanga.nu</a>, Tue 19 May 1998, 04:28 GMT
</LI>
</UL>
</LI>
</ul>
<LI><strong><A NAME="00681" HREF="msg00681.html">[MUD-Dev] Re: Combat  Was Re: Leaving characters in play</A></strong>, 
Adam Wiggins <a href="mailto:adam#angel,com">adam#angel,com</a>, Tue 19 May 1998, 02:50 GMT
</LI>
</ul>
</ul>
</LI>
<LI><strong><A NAME="00632" HREF="msg00632.html">[MUD-Dev] Re: OT: Java multithreading performance</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sat 16 May 1998, 17:16 GMT
<UL>
<LI><strong><A NAME="00638" HREF="msg00638.html">[MUD-Dev] Re: OT: Java multithreading performance</A></strong>, 
Vadim Tkachenko <a href="mailto:vt#freehold,crocodile.org">vt#freehold,crocodile.org</a>, Sun 17 May 1998, 00:07 GMT
</LI>
<LI><strong><A NAME="00640" HREF="msg00640.html">[MUD-Dev] Re: OT: Java multithreading performance</A></strong>, 
Vadim Tkachenko <a href="mailto:vt#freehold,crocodile.org">vt#freehold,crocodile.org</a>, Sun 17 May 1998, 00:22 GMT
</LI>
</UL>
<UL>
<li>&lt;Possible follow-up(s)&gt;<br>
<LI><strong><A NAME="00642" HREF="msg00642.html">[MUD-Dev] Re: OT: Java multithreading performance</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sun 17 May 1998, 17:16 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>