aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/classes/GFXPieChartTexture.cpp
blob: 417566da9d324f35f5bb0b07d06f668c3fd5e525 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
#include "GFXPieChartTexture.hpp"

#include <numbers>

#include "openvic-extension/utility/ClassBindings.hpp"
#include "openvic-extension/utility/UITools.hpp"

using namespace godot;
using namespace OpenVic;

StringName const& GFXPieChartTexture::_slice_identifier_key() {
   static const StringName slice_identifier_key = "identifier";
   return slice_identifier_key;
}
StringName const& GFXPieChartTexture::_slice_colour_key() {
   static const StringName slice_colour_key = "colour";
   return slice_colour_key;
}
StringName const& GFXPieChartTexture::_slice_weight_key() {
   static const StringName slice_weight_key = "weight";
   return slice_weight_key;
}

static constexpr float TWO_PI = 2.0f * std::numbers::pi_v<float>;

Error GFXPieChartTexture::_generate_pie_chart_image() {
   ERR_FAIL_NULL_V(gfx_pie_chart, FAILED);
   ERR_FAIL_COND_V_MSG(
      gfx_pie_chart->get_size() <= 0, FAILED,
      vformat("Invalid GFX::PieChart size for GFXPieChartTexture - %d", gfx_pie_chart->get_size())
   );

   const int32_t pie_chart_size = 2 * gfx_pie_chart->get_size();

   /* Whether we've already set the ImageTexture to an image of the right dimensions,
    * and so can update it without creating and setting a new image, or not. */
   const bool can_update = pie_chart_image.is_valid() && pie_chart_image->get_width() == pie_chart_size
      && pie_chart_image->get_height() == pie_chart_size;

   if (!can_update) {
      pie_chart_image = Image::create(pie_chart_size, pie_chart_size, false, Image::FORMAT_RGBA8);
      ERR_FAIL_NULL_V(pie_chart_image, FAILED);
   }

   static const Color background_colour { 0.0f, 0.0f, 0.0f, 0.0f };

   if (!slices.empty()) {
      const float pie_chart_radius = gfx_pie_chart->get_size();

      const Vector2 centre_translation = Vector2 { 0.5f, 0.5f } - static_cast<Vector2>(pie_chart_image->get_size()) * 0.5f;

      for (Vector2i point { 0, 0 }; point.y < pie_chart_image->get_height(); ++point.y) {

         for (point.x = 0; point.x < pie_chart_image->get_width(); ++point.x) {

            const Vector2 offset = centre_translation + point;

            if (offset.length() <= pie_chart_radius) {

               /* Calculate the anti-clockwise angle between the point and the centre of the image.
                * The y coordinate is negated as the image coordinate system's y increases downwards. */
               float theta = atan2(-offset.y, offset.x);
               if (theta < 0.0f) {
                  theta += TWO_PI;
               }

               /* Rescale angle so that total_weight is a full rotation. */
               theta *= total_weight / TWO_PI;

               /* Default to the first colour in case theta never reaches 0 due to floating point inaccuracy. */
               Color colour = slices.front().first;

               /* Find the slice theta lies in. */
               for (slice_t const& slice : slices) {
                  theta -= slice.second;

                  if (theta <= 0.0f) {
                     colour = slice.first;
                     break;
                  }
               }

               pie_chart_image->set_pixelv(point, colour);
            } else {
               pie_chart_image->set_pixelv(point, background_colour);
            }
         }
      }
   } else {

      pie_chart_image->fill(background_colour);

   }

   if (can_update) {
      update(pie_chart_image);
   } else {
      set_image(pie_chart_image);
   }

   return OK;
}

Error GFXPieChartTexture::set_slices_array(godot_pie_chart_data_t const& new_slices) {
   slices.clear();
   total_weight = 0.0f;
   for (int32_t i = 0; i < new_slices.size(); ++i) {
      Dictionary const& slice_dict = new_slices[i];
      ERR_CONTINUE_MSG(
         !slice_dict.has(_slice_colour_key()) || !slice_dict.has(_slice_weight_key()),
         vformat("Invalid slice keys at index %d", i)
      );
      const slice_t slice = std::make_pair(slice_dict[_slice_colour_key()], slice_dict[_slice_weight_key()]);
      if (slice.second > 0.0f) {
         total_weight += slice.second;
         slices.push_back(slice);
      }
   }
   return _generate_pie_chart_image();
}

void GFXPieChartTexture::_bind_methods() {
   OV_BIND_METHOD(GFXPieChartTexture::clear);

   OV_BIND_METHOD(GFXPieChartTexture::set_gfx_pie_chart_name, { "gfx_pie_chart_name" });
   OV_BIND_METHOD(GFXPieChartTexture::get_gfx_pie_chart_name);

   OV_BIND_METHOD(GFXPieChartTexture::set_slices_array, { "new_slices" });
}

GFXPieChartTexture::GFXPieChartTexture() : gfx_pie_chart { nullptr }, total_weight { 0.0f } {}

Ref<GFXPieChartTexture> GFXPieChartTexture::make_gfx_pie_chart_texture(GFX::PieChart const* gfx_pie_chart) {
   Ref<GFXPieChartTexture> pie_chart_texture;
   pie_chart_texture.instantiate();
   ERR_FAIL_NULL_V(pie_chart_texture, nullptr);
   ERR_FAIL_COND_V(pie_chart_texture->set_gfx_pie_chart(gfx_pie_chart) != OK, nullptr);
   return pie_chart_texture;
}

void GFXPieChartTexture::clear() {
   gfx_pie_chart = nullptr;
   slices.clear();
   total_weight = 0.0f;

   pie_chart_image.unref();
}

Error GFXPieChartTexture::set_gfx_pie_chart(GFX::PieChart const* new_gfx_pie_chart) {
   if (gfx_pie_chart == new_gfx_pie_chart) {
      return OK;
   }
   if (new_gfx_pie_chart == nullptr) {
      clear();
      return OK;
   }

   gfx_pie_chart = new_gfx_pie_chart;

   return _generate_pie_chart_image();
}

Error GFXPieChartTexture::set_gfx_pie_chart_name(String const& gfx_pie_chart_name) {
   if (gfx_pie_chart_name.is_empty()) {
      return set_gfx_pie_chart(nullptr);
   }
   GFX::Sprite const* sprite = UITools::get_gfx_sprite(gfx_pie_chart_name);
   ERR_FAIL_NULL_V(sprite, FAILED);
   GFX::PieChart const* new_pie_chart = sprite->cast_to<GFX::PieChart>();
   ERR_FAIL_NULL_V_MSG(
      new_pie_chart, FAILED, vformat(
         "Invalid type for GFX sprite %s: %s (expected %s)", gfx_pie_chart_name,
         Utilities::std_to_godot_string(sprite->get_type()),
         Utilities::std_to_godot_string(GFX::PieChart::get_type_static())
      )
   );
   return set_gfx_pie_chart(new_pie_chart);
}

String GFXPieChartTexture::get_gfx_pie_chart_name() const {
   return gfx_pie_chart != nullptr ? Utilities::std_to_godot_string(gfx_pie_chart->get_name()) : String {};
}