aboutsummaryrefslogtreecommitdiff
path: root/ViewController.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ViewController.cpp')
-rw-r--r--ViewController.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ViewController.cpp b/ViewController.cpp
index ec0315d..67fd77c 100644
--- a/ViewController.cpp
+++ b/ViewController.cpp
@@ -66,24 +66,24 @@ void ViewController::update_artists() {
}
}
-void ViewController::draw_pathfinding_dot(unsigned int x, unsigned int y, const Color & c) {
+void ViewController::draw_pathfinding_dot(pair<unsigned int, unsigned int> point, const Color & color) {
this->view.fill_rect(center({
- .x = static_cast<float>(x * scale),
- .y = static_cast<float>(y * scale),
+ .x = static_cast<float>(point.first * scale),
+ .y = static_cast<float>(point.second * scale),
.width = static_cast<float>(pathfinding_size),
.height = static_cast<float>(pathfinding_size),
- }), c);
+ }), color);
}
void ViewController::update_pathfinding() {
PathfindingContext & ctx = this->museum.pathfinding;
- this->draw_pathfinding_dot(ctx.get_end().first, ctx.get_end().second, {
+ this->draw_pathfinding_dot(ctx.get_end(), {
.red = 0x00,
.green = 0x00,
.blue = 0xdd,
});
- this->draw_pathfinding_dot(ctx.get_start().first, ctx.get_start().second, {
+ this->draw_pathfinding_dot(ctx.get_start(), {
.red = 0xff,
.green = 0xff,
.blue = 0xff,