diff options
Diffstat (limited to 'universe/src')
-rw-r--r-- | universe/src/TurretType.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/universe/src/TurretType.cpp b/universe/src/TurretType.cpp new file mode 100644 index 0000000..d213d07 --- /dev/null +++ b/universe/src/TurretType.cpp @@ -0,0 +1,23 @@ +#include <kurator/universe/TurretType.h> + +#include <algorithm> +#include <cmath> + + +namespace kurator +{ +namespace universe +{ + + +double +TurretType::effective_damage(const double distance) const +{ + const auto overflow = distance - optimal_range; + const auto falloff = std::max(0.0, overflow / optimal_range / falloff_modifier); + return base_damage * std::round(std::pow(falloff_intensity, std::pow(falloff, 2)) * 1000) / 1000; +} + + +} // namespace universe +} // namespace kurator |