diff options
Diffstat (limited to 'ViewController.cpp')
-rw-r--r-- | ViewController.cpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/ViewController.cpp b/ViewController.cpp index 52cdefc..74873e7 100644 --- a/ViewController.cpp +++ b/ViewController.cpp @@ -22,6 +22,8 @@ void ViewController::update() { this->update_size(); this->update_tiles(); if (this->draw_artists) this->update_artists(); + if (this->draw_pathfinding) this->update_pathfinding(); + if (this->draw_quadtree) this->update_quadtree(); } void ViewController::update_size() { @@ -41,7 +43,7 @@ void ViewController::update_tiles() { .width = scale - line_width, .height = scale - line_width, }; - this->view.draw_rect(rect, tile.color); + this->view.fill_rect(rect, tile.color); } } } @@ -56,10 +58,16 @@ void ViewController::update_artists() { .width = artist_size, .height = artist_size, }; - this->view.draw_rect(rect, artist->color); + this->view.fill_rect(rect, artist->color); } } +void ViewController::update_pathfinding() { +} + +void ViewController::update_quadtree() { +} + void ViewController::ev_keydown(KeyboardCode key) { try { switch (key) { @@ -98,7 +106,11 @@ void ViewController::ev_mousedown(MouseCode button) { try { switch (button) { case MOUSE_LEFT: { - TileDecayCommand(this->cmd_base).execute(get<0>(this->mouse_pos), get<1>(this->mouse_pos)); + // TODO: pathfinding start point + break; + } + case MOUSE_RIGHT: { + // TODO: pathfinding end point break; } default: break; |