2021-06-20 09:48:37 +01:00
|
|
|
|
using OWML.Utils;
|
|
|
|
|
using QSB.Utility;
|
|
|
|
|
using QSB.WorldSync;
|
|
|
|
|
|
|
|
|
|
namespace QSB.ShipSync.WorldObjects
|
|
|
|
|
{
|
|
|
|
|
class QSBShipHull : WorldObject<ShipHull>
|
|
|
|
|
{
|
|
|
|
|
public override void Init(ShipHull hull, int id)
|
|
|
|
|
{
|
|
|
|
|
ObjectId = id;
|
|
|
|
|
AttachedObject = hull;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetDamaged()
|
|
|
|
|
{
|
|
|
|
|
DebugLog.DebugWrite($"[HULL] {AttachedObject} Set damaged.");
|
|
|
|
|
AttachedObject.SetValue("_damaged", true);
|
2021-07-07 09:00:54 +01:00
|
|
|
|
AttachedObject.RaiseEvent("OnDamaged", AttachedObject);
|
2021-06-20 09:48:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-20 10:06:29 +01:00
|
|
|
|
public void SetRepaired()
|
|
|
|
|
{
|
|
|
|
|
DebugLog.DebugWrite($"[HULL] {AttachedObject} Set repaired.");
|
|
|
|
|
AttachedObject.SetValue("_damaged", false);
|
2021-07-07 09:00:54 +01:00
|
|
|
|
AttachedObject.RaiseEvent("OnRepaired", AttachedObject);
|
2021-06-20 10:06:29 +01:00
|
|
|
|
var damageEffect = AttachedObject.GetValue<DamageEffect>("_damageEffect");
|
|
|
|
|
damageEffect.SetEffectBlend(0f);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-20 09:48:37 +01:00
|
|
|
|
public void ChangeIntegrity(float newIntegrity)
|
|
|
|
|
{
|
|
|
|
|
DebugLog.DebugWrite($"[HULL] {AttachedObject} Change integrity to {newIntegrity}.");
|
|
|
|
|
AttachedObject.SetValue("_integrity", newIntegrity);
|
|
|
|
|
var damageEffect = AttachedObject.GetValue<DamageEffect>("_damageEffect");
|
|
|
|
|
damageEffect.SetEffectBlend(1f - newIntegrity);
|
|
|
|
|
}
|
2021-06-20 12:43:02 +01:00
|
|
|
|
|
|
|
|
|
public void RepairTick(float integrity)
|
|
|
|
|
{
|
|
|
|
|
AttachedObject.SetValue("_integrity", integrity);
|
|
|
|
|
var damageEffect = AttachedObject.GetValue<DamageEffect>("_damageEffect");
|
|
|
|
|
damageEffect.SetEffectBlend(1f - integrity);
|
|
|
|
|
}
|
2021-06-20 09:48:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|