blob: 23c0ba5bf6048c62983ce55f28952a9840ead1d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#pragma once
#include "openvic-simulation/modifier/ModifierEffect.hpp"
#include "openvic-simulation/types/fixed_point/FixedPointMap.hpp"
namespace OpenVic {
struct ModifierValue {
friend struct ModifierManager;
using effect_map_t = fixed_point_map_t<ModifierEffect const*>;
private:
effect_map_t PROPERTY(values);
public:
ModifierValue();
ModifierValue(effect_map_t&& new_values);
ModifierValue(ModifierValue const&);
ModifierValue(ModifierValue&&);
ModifierValue& operator=(ModifierValue const&);
ModifierValue& operator=(ModifierValue&&);
/* Removes effect entries with a value of zero. */
void trim();
size_t get_effect_count() const;
void clear();
bool empty() const;
fixed_point_t get_effect(ModifierEffect const& effect, bool* effect_found = nullptr) const;
fixed_point_t get_effect_nullcheck(ModifierEffect const* effect, bool* effect_found = nullptr) const;
bool has_effect(ModifierEffect const& effect) const;
void set_effect(ModifierEffect const& effect, fixed_point_t value);
ModifierValue& operator+=(ModifierValue const& right);
ModifierValue operator+(ModifierValue const& right) const;
ModifierValue operator-() const;
ModifierValue& operator-=(ModifierValue const& right);
ModifierValue operator-(ModifierValue const& right) const;
ModifierValue& operator*=(fixed_point_t const& right);
ModifierValue operator*(fixed_point_t const& right) const;
void apply_target_filter(ModifierEffect::target_t targets);
void multiply_add_filter(ModifierValue const& other, fixed_point_t multiplier, ModifierEffect::target_t targets);
friend std::ostream& operator<<(std::ostream& stream, ModifierValue const& value);
};
}
|