Skip to content
Snippets Groups Projects
Commit 676384db authored by Robin Halseth Sandvik's avatar Robin Halseth Sandvik
Browse files

Changed the Calculate() method for AttackStats.

- Now can take CharacterStats.
- Creates a new AttackStat instead of modifying this one.
- Throws exception if ran on an already calculated AttackStat.
parent 14418395
No related branches found
No related tags found
1 merge request!30Improvements to attacks.
......@@ -81,9 +81,19 @@ namespace BigSock {
/*
Calculates the final attack stats.
(Takes crit and damage spread and calculates the final values)
Cannot calculate a calculated attack.
*/
public IAttackStats Calculate() {
IsCalculated = true;
public IAttackStats Calculate(ICharacterStats char = null) {
// Check that this attack hasn't been calculated already.
if(IsCalculated) throw new InvalidOperationException("This attack has already been calculated!");
// Creates return object.
AttackStats res;
if(char != null) res = (AttackStats) this.Apply(char);
else res = Clone();
// Mark the calculated attack as calculated.
res.IsCalculated = true;
// Calculate damage variety.
var mod = (1-DamageVariance) + RND.NextDouble() * DamageVariance * 2;
......@@ -95,8 +105,30 @@ namespace BigSock {
IsCrit = true;
}
return this;
return res;
}
/*
Creates a clone of this object.
*/
public static AttackStats Clone() {
return new AttackStats{
Damage = Damage,
Knockback = Knockback,
Range = Range,
ProjectileSpeed = ProjectileSpeed,
AttackSpeed = AttackSpeed,
CritChance = CritChance,
CritDamageModifier = CritDamageModifier,
Source = Source,
Actor = Actor,
DamageVariance = DamageVariance,
IsCalculated = IsCalculated,
IsCrit = IsCrit,
};
}
}
}
\ No newline at end of file
......@@ -79,7 +79,7 @@ namespace BigSock {
Calculates the final attack stats.
(Takes crit and damage spread and calculates the final values)
*/
IAttackStats Calculate();
IAttackStats Calculate(ICharacterStats char = null);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment