Add CDamageInfo

This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-02 00:38:53 +03:00
parent cc514ecf6e
commit f40c4e6555
3 changed files with 120 additions and 1 deletions

View File

@@ -0,0 +1,61 @@
#include "MetroidPrime/CDamageInfo.hpp"
#include "Kyoto/Streams/CInputStream.hpp"
#include "MetroidPrime/CDamageVulnerability.hpp"
CDamageInfo::CDamageInfo(CInputStream& in) : x18_24_noImmunity(false) {
in.ReadLong();
x0_weaponMode = CWeaponMode(EWeaponType(in.ReadLong()));
x8_damage = in.ReadFloat();
xc_radiusDamage = x8_damage;
x10_radius = in.ReadFloat();
x14_knockback = in.ReadFloat();
}
// CDamageInfo::CDamageInfo(const SShotParam& other)
// : x0_weaponMode(CWeaponMode(EWeaponType(other.x0_weaponType), other.x4_24_charged,
// other.x4_25_combo, other.x4_26_instaKill)) , x8_damage(other.x8_damage) ,
// xc_radiusDamage(other.xc_radiusDamage) , x10_radius(other.x10_radius) ,
// x14_knockback(other.x14_knockback) , x18_24_noImmunity(other.x18_24_noImmunity) {}
// CDamageInfo& CDamageInfo::operator=(const SShotParam& other) {
// x0_weaponMode =
// CWeaponMode(EWeaponType(other.x0_weaponType), other.x4_24_charged, other.x4_25_combo,
// other.x4_26_instaKill);
// x8_damage = other.x8_damage;
// xc_radiusDamage = other.xc_radiusDamage;
// x10_radius = other.x10_radius;
// x14_knockback = other.x14_knockback;
// x18_24_noImmunity = other.x18_24_noImmunity;
// return *this;
// }
float CDamageInfo::GetDamage(const CDamageVulnerability& dVuln) const {
EVulnerability vuln = dVuln.GetVulnerability(x0_weaponMode, false);
if (vuln == kVN_Deflect)
return 0.f;
else if (vuln == kVN_Weak)
return 2.f * x8_damage;
return x8_damage;
}
float CDamageInfo::GetRadiusDamage(const CDamageVulnerability& dVuln) const {
EVulnerability vuln = dVuln.GetVulnerability(x0_weaponMode, false);
if (vuln == kVN_Deflect) {
return 0.f;
}
if (vuln == kVN_Weak) {
return 2.f * xc_radiusDamage;
}
return xc_radiusDamage;
}
CDamageInfo::CDamageInfo(const CDamageInfo& other, float dt)
: x0_weaponMode(other.x0_weaponMode)
, x8_damage(other.x8_damage * (60 * dt))
, xc_radiusDamage(x8_damage)
, x10_radius(other.x10_radius)
, x14_knockback(other.x14_knockback)
, x18_24_noImmunity(true) {}