OpenXcom Forum
OpenXcom Forks => OXCE Support => OpenXcom Extended (OXCE) => OXCE Support Y-scripts => Topic started by: Nord on March 01, 2020, 08:59:46 pm
-
Here is a script for auto choosing weakest armor side when hit.
But it is not working. Maybe someone know why?
extended:
tags:
RuleItem:
ITEM_IS_PRESSURE: int
scripts:
hitUnit:
- offset: 5 #Pressure side
code: |
var int frontarmor;
var int leftarmor;
var int reararmor;
var int rightarmor;
var int underarmor;
var int temp;
var int temparmor;
var ptr RuleItem itemRuleset;
damaging_item.getRuleItem itemRuleset;
itemRuleset.getTag temp Tag.ITEM_IS_PRESSURE;
if eq temp 0;
return power part side;
end;
unit.getArmor frontarmor 0;
unit.getArmor leftarmor 1;
unit.getArmor reararmor 2;
unit.getArmor rightarmor 3;
unit.getArmor underarmor 4;
if gt frontarmor leftarmor;
set temp 1;
set temparmor leftarmor;
else;
set temp 0;
set temparmor frontarmor;
end;
if gt temparmor reararmor;
set temp 2;
set temparmor reararmor;
end;
if gt temparmor rightarmor;
set temp 3;
set temparmor rightarmor;
end;
if gt temparmor underarmor;
set temp 4;
end;
set side temp;
return power part side;
Thanks.
-
What exactly is not working?
Did you check the openxcom.log output? Does it say anything?
Are you aware of the difference between damaging_item and weapon_item?
Did you try adding debug_log output to make debugging easier? Does the script get executed at all?
Also, are you aware how the damage formula works, and that you need more than zero power to arrive at this stage of the damage calculation in order for your script to get executed?
-
Are you aware of the difference between damaging_item and weapon_item?
I am not sure. Can you please explain or provide a link to description?
Did you try adding debug_log output to make debugging easier? Does the script get executed at all?
Good idea. I can debug where it fails indeed. Thanks.
Also, are you aware how the damage formula works, and that you need more than zero power to arrive at this stage of the damage calculation in order for your script to get executed?
Do you mean damage before armor counts, or damage to health?
Thanks for reply, you give me a way to move. I will write reply if i have some results.
-
damaging_will be set to the ammo item on weapons with ammo, while weapon_item is the weapon itself.
As for damage, I think that armor resistances gets applied before hitUnit executes. Meaning if the armor resistance reduces the damage to less than 1 hitUnit won't get called.
-
damaging_will be set to the ammo item on weapons with ammo, while weapon_item is the weapon itself.
Thanks for explanation. Here i use weapon without ammo though.
As for damage, I think that armor resistances gets applied before hitUnit executes. Meaning if the armor resistance reduces the damage to less than 1 hitUnit won't get called.
That's odd. I think this can be a reason. But armor resistances is applied before armor values, and they are done via hitunit. Dont you think about damagingunit?(or something like that)
-
So, turns out I am both right and wrong.
The power gets reduced by the resistances before hitUnit script gets called, but the check if the power is at least 1 is done beforehand.
# power of hitUnit / original_damage of damageUnit = (power of weapon +/- randomRange%) * damageModifier(Armor,Type)
# damage of damageUnit = (power output of hitUnit) - Armor(Side) * ArmorEffectiveness
# output of damageUnit is applied immediately
hitUnit and damageUnit are always called together. If hitUnit gets called then so will damageUnit. It is just if the power is not enough to begin with, that none of them gets called.
-
So if weapon power>0, they both will be called. and then goes armor. Looks like i did something wrong elsewhere. Going to debug...
-
You can try using the debug_log script command to put stuff in the log file to help with debugging. For example, if you just want to know whether or not the item has the tag and what the power was, you could add this right after you get the tag:
debug_log 0 "power = " power;
debug_log 1 "tag = " temp;
Once you hit a unit, check your openxcom.log file and you should see the output from your script.
-
Ok, i got:
debug_log "Started, side:" side;
weapon_item.getRuleItem itemRuleset;
itemRuleset.getAccuracyMelee temp;
debug_log "Accu:" temp;
itemRuleset.getTag temp Tag.ITEM_IS_PRESSURE;
if eq temp 0;
debug_log "Fail" temp;
return power part side;
end;
And got "Accu: 0" and "Fail 0". Looks like i can not acquire item properties.
How to get it then, if
weapon_item.getRuleItem itemRuleset;
itemRuleset.getTag temp Tag.ITEM_IS_PRESSURE;
is wrong?
-
weapon_item.getRuleItem itemRuleset;
itemRuleset.getTag temp Tag.ITEM_IS_PRESSURE;
Looks good to me.
Where did you assign the tag to the item?
Also try this:
debug_log weapon_item; # is this what you expect it to be?
-
To make things a bit more transparent, here is how OXCE handles damage wrt. to the scripts:
random_damage = getRandomDamage(power_of_weapon); // apply damageRange (0-200% in vanilla ufo)
TileEngine.hitUnit(targetUnit, random_damage)
{
targetUnit.damage(random_damage)
}
BattleUnit.damage(random_damage)
{
if (random_damage < 0) return; // DO NOTHING
random_damage = reduceByResistance(random_damage, ResistType); // apply armor damage modifiers (resistances)
CALL SCRIPT: HitUnit(random_damage as power)
adjusted_damage -= getArmor(side) * ArmorEffectiveness; // apply armor on respective side, taking armor effectiveness into account
CALL SCRIPT: DamageUnit(random_damage as original_damage, adjusted_damage as damage)
=> Apply Damage directly from output of DamageUnit script
}
-
weapon_item.getRuleItem itemRuleset;
itemRuleset.getTag temp Tag.ITEM_IS_PRESSURE;
Looks good to me.
Where did you assign the tag to the item?
In the same file, like this:
...
items:
- type: GULPGULP
meleeAnimation: 0
power: 8
damageType: 6
blastRadius: 0
damageAlter:
RandomType: 3
ArmorEffectiveness: 4
ToWound: 0
ToArmor: 0
RandomStun: false
accuracyMelee: 101
costMelee:
time: 1
battleType: 3
clipSize: -1
invWidth: 2
invHeight: 2
recover: false
tags:
ITEM_IS_PRESSURE: 1
Also try this:
debug_log weapon_item; # is this what you expect it to be?
[02-03-2020_20-29-32] [DEBUG] Script debug log at 0x58: null
:-(
Maybe all it is because this weapon is not exactly weapon, but environment effect?
-
Aha! Yes, the environmental effect does not pass the weapon to the hitUnit method call.
-
So, no chances?
-
That would be a question for Meridian. I stumbled upon the same issue some days ago, not sure what the reasons are.
-
Aha! Yes, the environmental effect does not pass the weapon to the hitUnit method call.
That would be a question for Meridian. I stumbled upon the same issue some days ago, not sure what the reasons are.
The scripts didn't even exist when enviro effects were implemented.
And when I was (periodically) merging OXCE into what was back then OXCE+, I probably didn't notice any changes necessary.
It's most likely simply just a missing feature... we have dozens of those... I'm pretty sure your soldier skills PR is not compatible with at least a dozen of other concepts... it's the same :)
So, no chances?
Someone just has to do it.
And test it.
-
Another thing is this item exists or its only type of it used as damage source?
-
Another thing is this item exists or its only type of it used as damage source?
It doesn't exist as a BattleItem.
Only the type used.
https://github.com/MeridianOXC/OpenXcom/blob/oxce-plus/src/Battlescape/NextTurnState.cpp#L308
-
No, offense intended. Didn't even think it was an oversight. Like you said, the feature itself was completed and passing the battleitem down the line was just not needed. I might put that on my backlog and have a look at it, if I find the time.