.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $5.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #1  
Old February 6th, 2001, 05:49 PM

SunDevil SunDevil is offline
Sergeant
 
Join Date: Dec 2000
Location: Mesa, AZ
Posts: 250
Thanks: 0
Thanked 0 Times in 0 Posts
SunDevil is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

How about each component having hit points.
Reply With Quote
  #2  
Old February 6th, 2001, 06:16 PM

Drake Drake is offline
Sergeant
 
Join Date: Jan 2001
Location: Wheaton, IL
Posts: 202
Thanks: 0
Thanked 0 Times in 0 Posts
Drake is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

quote:
Originally posted by Zanthis:
It would be important to note, however, that if you had ten Organic Armor III's and got hit ten times for 100 damage each, with individual tracking it would be possible that each hit applied to a different piece of armor, meaning *none* of them would be destroyed despite taking 1000 damage.



I wonder if that's really a problem. It'd certainly make sense if you can't direct general damage to specific components. If you want to avoid that situation though, just have the combat engine apply damage to partially damaged components before it starts damaging other components.

Of course, then it'd have to make sure that rule only applies to components the weapon is supposed to damage...

-Drake
Reply With Quote
  #3  
Old February 6th, 2001, 07:26 PM

Zanthis Zanthis is offline
Corporal
 
Join Date: Jan 2001
Posts: 89
Thanks: 0
Thanked 0 Times in 0 Posts
Zanthis is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

SunDevil:
Well, they do each have hit points right now. At least, they have a maximum hit points. They *don't* have a current hit points because they cannot be damaged, only destroyed.

This is most likely a programming choice for two reasons. First, it is easier (less code to write) to just not track individual component damage. Second, it requires less space (memory). Every component would get bigger by at least 2 bytes. How many components have you seen in tactical combat? Not that many right? But guess what, it would increase the size of every components in game, not just in combat. So, how many components have you seen anywhere in the game at one time (remember to include fighters, troops, mines and platforms)?

The only way to avoid that memory waste would be to make two Versions of the component structure, one with current hit points, one without. Then, in tactical combat, use the former, otherwise, use the latter. Lots of programming and doubles the work required whenever code changes are made to the components structure (since you have to change both Versions).

Drake:
Another possibility is to have two "this is the component we are trying to kill" pointers. One for normal attacks, which will typically be pointing to a piece of your armor, and one for armor-skipping attacks which would be pointing to something other than armor.

I said in the FAQ that I thought they already did this (using only one pointer) so it shouldn't be a problem to implement two.

[This message has been edited by Zanthis (edited 06 February 2001).]

[This message has been edited by Zanthis (edited 06 February 2001).]
__________________
-Zan
Reply With Quote
  #4  
Old February 6th, 2001, 07:52 PM
Seawolf's Avatar

Seawolf Seawolf is offline
Second Lieutenant
 
Join Date: Aug 2000
Location: New York, New York USA
Posts: 480
Thanks: 0
Thanked 0 Times in 0 Posts
Seawolf is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

Kudoes to Z for getting that information but I think no one has pointed out is that if we go to this damaged but not destroyed system for components what impact wil it have on the game? If they perform at normal levels then there is little point to keeping track of damage. Damage control could be fixing them while combat is ongoing to account for needing to reach the threshold to destroy it.

Also the entire repair system would have to be converted to a point system rather than a component systems. How much work that would intail I don't know but would guess alot as well as increase exponentially the memeory requirements. While making the game more realistic I don't think that the benefit received outweighs the cost involved.

------------------
Seawolf on the prowl
__________________
Seawolf on the prowl
Reply With Quote
  #5  
Old February 6th, 2001, 08:05 PM

Nyx Nyx is offline
Sergeant
 
Join Date: Dec 2000
Location: Fairfield, Iowa
Posts: 268
Thanks: 0
Thanked 0 Times in 0 Posts
Nyx is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

Why not just have "extra damage to armor" and "extra damage to internals" as fields to store the info and extra damage is never aplied to shields (as it should never be from what I can tell)? Organic armor wouldn't regenerate at all until damage was taken and then it would only regenerate against the "extra damage to armor" value. The above would also break the CA weirdness as extra damage to armor would pile up and tear down the CA like I presume it is supposed to.

------------------
Compete in the Space Empires IV World Championship at www.twingalaxies.com.
__________________
Compete in the Space Empires IV World Championship at www.twingalaxies.com.
Reply With Quote
  #6  
Old February 6th, 2001, 09:08 PM
LintMan's Avatar

LintMan LintMan is offline
Sergeant
 
Join Date: Oct 2000
Posts: 295
Thanks: 0
Thanked 0 Times in 0 Posts
LintMan is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

Zanthis - great work!

This is one screwey damage modelling system!

I think the best fix is to allow partial component damage. If it's data storage of management concerns that prevent this - it even only needs to be tracked during combat - let's justr say that all partial damage is automatically repaired (by damage control teams) after combat (that's how I thought it already worked!), so only destroyed components would need to be repaired at space yards, etc.

If the partial damage is only tracked in combat, the data management and storage is minimal and much of the screwiness is fixed.

It sounds like OA needs some tweaking also - I'd prefer if it didn't store up points while undamaged, but if there was partial damage tracking, that should be healed. If removing the built-up repair storage made OA a bit wimpy, maybe then its repair rate could be increased.

For Crystalline, it seems like the absorption should be on a per-armor-component basis. In other words, on a ship with 4 CA's, it you hit with a single weapon for 60 points of damage, that damage would be applied to a single piece of armor, and only THAT piece's absorption would kick in, so only 15 back to shields, not 60. A separate hit on that or another CA piece would also have 15 points absorbed. (Again, this might need to be rebalanced fr more absorption if this made it too wimpy)

Lastly, multiple fighter weapons or grouped weapons, should still count as individual attacks for the above purposes. As it stands now, emissive armor is totally worthless.
Reply With Quote
  #7  
Old February 6th, 2001, 10:07 PM

Zanthis Zanthis is offline
Corporal
 
Join Date: Jan 2001
Posts: 89
Thanks: 0
Thanked 0 Times in 0 Posts
Zanthis is on a distinguished road
Default Re: Armor, Shields and Damage (FAQ)

Seawolf:
I am not advocating keeping track of partial component damage outside of combat. I think it would be more trouble than its worth.

Nyx:
I agree completely. This is the solution I would pick were I in MM place. Especially OA regenerating "extra armor damage." I think that is very advisable when eliminating the regeneartion build up.

LintMan:
I don't think CA should be changed in that fashion. Just fixing it so "extra [armor] damage" isn't pulled out to not only restrike shields, but re-generate shields would make massive CA armor beatable even by a weapon that did one point of damage.

Basically, as long as you were doing less damage than it could turn into shields, every other hit would do no damage.
__________________
-Zan
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 10:25 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.