Author Topic: Has anyone attempted to use actions points instead turns for combat?  (Read 22325 times)

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
Has anyone attempted to use actions points instead turns for combat as in Fallout I or 2?

[EDIT]
For rogue like games!
« Last Edit: August 23, 2013, 07:15:25 AM by Endorya »
"You are never alone. Death is always near watching you."

Zireael

  • Rogueliker
  • ***
  • Posts: 604
  • Karma: +0/-0
    • View Profile
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #1 on: August 22, 2013, 05:41:38 PM »
You might want to check out Underrail.

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #2 on: August 22, 2013, 06:03:23 PM »
You might want to check out Underrail.
Thanks Zireael!
"You are never alone. Death is always near watching you."

guest509

  • Guest
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #3 on: August 23, 2013, 01:26:58 AM »
X-Com.

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #4 on: August 23, 2013, 07:14:32 AM »
Yeah. But I mean a roguelike games :)
"You are never alone. Death is always near watching you."

Quendus

  • Rogueliker
  • ***
  • Posts: 447
  • Karma: +0/-0
  • $@ \in \{1,W\} \times \{1,H\}$
    • View Profile
    • Klein Roguelikes
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #5 on: August 23, 2013, 05:26:12 PM »
This kind of system is useful as a user interface in tactical games with small numbers of units, because it lets the player, who thinks on a bigger scale than single-tile moves and single attacks, give a tactically meaningful sequence of orders to a unit without getting distracted by all the other units they control. It's good to minimise the number of times the player switches between controlling different units, as there is some mental adjustment time.

In roguelikes, where the player traditionally controls only one unit, it's not so important to group individual actions into long turns because the player never has to switch to controlling another unit. All commands can be processed immediately.

guest509

  • Guest
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #6 on: August 23, 2013, 07:13:14 PM »
Yeah. But I mean a roguelike games :)

x@com

zasvid

  • Rogueliker
  • ***
  • Posts: 58
  • Karma: +0/-0
    • View Profile
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #7 on: August 23, 2013, 07:21:31 PM »
I attempted to come up with a way to use Fallout action points with more concurrency (essentially a speed system based on AP), but I've abandoned the approach as it was too complex for little gain.

Endorya

  • Rogueliker
  • ***
  • Posts: 513
  • Karma: +0/-0
  • The non-purist roguelike lover
    • View Profile
    • Email
"You are never alone. Death is always near watching you."

wire_hall_medic

  • Rogueliker
  • ***
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #9 on: October 01, 2013, 04:14:38 PM »
I got pretty far programming an RL using an action points system; stable, playable, good variety, etc.  Then I scrapped the whole thing, because the action points system flat out did not work for what I had set up.

Action points make turns take much, much longer.  The only way it really woks is if there's something tactically interesting going on every turn.  That is, if there's always combat and no real exploration except for maybe a couple of turns before combat breaks out to build tension.  I tried auto-ending turns after movement if there were no enemies present, and it still wound up slow.

What really drug it out was the enemy turns.  Since they were doing multiple things, they had to go sequentially, and slowly enough that the player could tell what was going on.  If I were to try again, I would execute movement animations together (see: Shiren the Wanderer).  Or probably go with a modal system, so that only the battles are in tactical mode (like Disgaea, or Advance Wars).

akeley

  • Rogueliker
  • ***
  • Posts: 348
  • Karma: +0/-0
    • View Profile
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #10 on: October 01, 2013, 10:42:05 PM »
I`m a die hard fan of AP-based combat systems in RPG and strategy games, but don`t feel they`d fit the RL world too well.  As mentioned above, such encounters would probably drag on too much and it fits squad based games better anyway.

Steam Marines qualifies...a fine game, but it does feel bit sluggish at times.

Kyzrati

  • 7DRL Reviewer
  • Rogueliker
  • *
  • Posts: 508
  • Karma: +0/-0
    • View Profile
    • Grid Sage Games
    • Email
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #11 on: October 02, 2013, 01:42:48 AM »
I got pretty far programming an RL using an action points system; stable, playable, good variety, etc.  Then I scrapped the whole thing, because the action points system flat out did not work for what I had set up.

Action points make turns take much, much longer.  The only way it really woks is if there's something tactically interesting going on every turn.  That is, if there's always combat and no real exploration except for maybe a couple of turns before combat breaks out to build tension.  I tried auto-ending turns after movement if there were no enemies present, and it still wound up slow.

What really drug it out was the enemy turns.  Since they were doing multiple things, they had to go sequentially, and slowly enough that the player could tell what was going on.  If I were to try again, I would execute movement animations together (see: Shiren the Wanderer).  Or probably go with a modal system, so that only the battles are in tactical mode (like Disgaea, or Advance Wars).
I'd agree that an AP system doesn't work for the reasons you point out, especially if it's a single-character game.

Once you control multiple units though, there are ways to handle those drawbacks and keep the game fun. Adding sound effects so that all enemy actions are heard both adds a new dimension and makes enemy turns a lot more informative and interesting. Keeping maps small enough that they don't require too much exploration is another important element.

I recall a comment about last year's fantasy conversion for X@COM praising the giant 3D tree house complete with winding staircases and suspension bridges, but pointing out that it was a bit of a trudge to explore it. I just didn't put enough content close by to keep it interesting while the player walked around (that version was also before I started including sound effects). Map design is a very important factor when it comes to keeping an AP system playable and fun.

wire_hall_medic

  • Rogueliker
  • ***
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #12 on: October 02, 2013, 06:02:57 AM »
I agree.  I've played several games with action points that I've really enjoyed; Advance Wars and Squad Command immediately jump to mind.  And they both feature multiple units to manage, with a map being resolved with far fewer turns than an RL.

And if either of those games had an RL's level of replayability, I'd probably still be playing them.

Gr3yling

  • Rogueliker
  • ***
  • Posts: 168
  • Karma: +0/-0
    • View Profile
    • Email
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #13 on: October 15, 2013, 09:46:12 PM »
What's the advantage of using action points rather than just assigning time values to actions?  Like, saying a basic attack takes seven tenths of a second, or whatever?

Kyzrati

  • 7DRL Reviewer
  • Rogueliker
  • *
  • Posts: 508
  • Karma: +0/-0
    • View Profile
    • Grid Sage Games
    • Email
Re: Has anyone attempted to use actions points instead turns for combat?
« Reply #14 on: October 15, 2013, 09:55:26 PM »
An action point system usually implies that a single unit will be able to perform multiple actions in one turn, before any others get to act. (Unless there is some form of reaction system, like you see in X-COM.)