diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-03 21:41:44 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-04-04 00:16:57 +0200 |
commit | 9bb683fe25e6c7cdaa50276433628dc0e1073f9f (patch) | |
tree | 639125819afef89f3c4d72bd3bb5f174d544828a /editor | |
parent | de99a85a63aa5cb85a4f5e67f8d5b1e7f3671c47 (diff) |
editor: move duplicated code to pixel_to_point()
Diffstat (limited to 'editor')
-rw-r--r-- | editor/camera.cpp | 32 | ||||
-rw-r--r-- | editor/draw.cpp | 17 |
2 files changed, 11 insertions, 38 deletions
diff --git a/editor/camera.cpp b/editor/camera.cpp index 4bd316e1..3fa8d9d3 100644 --- a/editor/camera.cpp +++ b/editor/camera.cpp @@ -71,22 +71,15 @@ object_id app::get_object_colliding_with_cursor() auto& shader = M->shader(); using rtree_type = std::decay_t<decltype(*world[chunk_coords_{}].rtree())>; - using rect_type = typename rtree_type::Rect; + using rect_type = rtree_type::Rect; if (cursor.pixel) { auto pos = tile_shader::project(Vector3d{0., 0., -_z_level*dTILE_SIZE[2]}); - auto pixel = Vector2d{*cursor.pixel} + pos; - auto coord = M->pixel_to_tile(pixel); - auto tile = global_coords{coord.chunk(), coord.local(), 0}; - - constexpr auto eps = 1e-6f; - constexpr auto m = TILE_SIZE2 * Vector2(1- eps, 1- eps); - const auto tile_ = Vector2(M->pixel_to_tile_(Vector2d(pixel))); + const auto [tile, subpixelʹ] = M->pixel_to_point(Vector2d{*cursor.pixel} + pos); const auto curchunk = Vector2(tile.chunk()), curtile = Vector2(tile.local()); - const auto subpixelʹ = Math::fmod(tile_, 1.f); - const auto subpixel = m * Vector2(curchunk[0] < 0 ? 1 + subpixelʹ[0] : subpixelʹ[0], - curchunk[1] < 0 ? 1 + subpixelʹ[1] : subpixelʹ[1]); + const auto subpixel = Vector2(subpixelʹ); + for (int16_t y = miny; y <= maxy; y++) for (int16_t x = minx; x <= maxx; x++) { @@ -99,10 +92,9 @@ object_id app::get_object_colliding_with_cursor() const with_shifted_camera_offset o{shader, c_pos, {minx, miny}, {maxx, maxy}}; if (floormat_main::check_chunk_visible(shader.camera_offset(), sz)) { - constexpr auto half_tile = TILE_SIZE2/2; constexpr auto chunk_size = TILE_SIZE2 * TILE_MAX_DIM; auto chunk_dist = (curchunk - Vector2(c_pos.x, c_pos.y))*chunk_size; - auto t0 = chunk_dist + curtile*TILE_SIZE2 + subpixel - half_tile; + auto t0 = chunk_dist + curtile*TILE_SIZE2 + subpixel; auto t1 = t0+Vector2(1e-4f); const auto* rtree = c.rtree(); object_id ret = 0; @@ -136,19 +128,9 @@ void app::update_cursor_tile(const Optional<Vector2i>& pixel) // assert_invariant !!cursor.tile == !!cursor.subpixel; if (pixel) { - auto coord = M->pixel_to_tile(Vector2d{*pixel}); - auto tile = global_coords{coord.chunk(), coord.local(), _z_level}; + auto [tile, subpixel] = M->pixel_to_point(Vector2d(*pixel), _z_level); cursor.tile = tile; - - const auto tile_ = Vector2(M->pixel_to_tile_(Vector2d(*pixel))); - const auto curchunk = Vector2(tile.chunk()); - const auto subpixelʹ = Math::fmod(tile_, 1.f); - auto subpixel = TILE_SIZE2 * Vector2(curchunk.x() < 0 ? 1 + subpixelʹ.x() : subpixelʹ.x(), - curchunk.y() < 0 ? 1 + subpixelʹ.y() : subpixelʹ.y()); - constexpr auto half_tile = Vector2(iTILE_SIZE2/2); - subpixel -= half_tile; - subpixel = Math::clamp(Math::round(subpixel), -half_tile, half_tile-Vector2{1.f}); - cursor.subpixel = Vector2b(subpixel); + cursor.subpixel = subpixel; } else { diff --git a/editor/draw.cpp b/editor/draw.cpp index 590c2ff1..f0d642bc 100644 --- a/editor/draw.cpp +++ b/editor/draw.cpp @@ -155,17 +155,9 @@ void app::draw_collision_boxes() { auto pos = tile_shader::project(Vector3d{0., 0., -_z_level*dTILE_SIZE[2]}); auto pixel = Vector2d{*cursor.pixel} + pos; - auto coord = M->pixel_to_tile(pixel); - auto tile = global_coords{coord.chunk(), coord.local(), 0}; - - constexpr auto eps = 1e-6f; - constexpr auto m = TILE_SIZE2 * Vector2(1- eps, 1- eps); - const auto tile_ = Vector2(M->pixel_to_tile_(Vector2d(pixel))); - const auto curchunk = Vector2(tile.chunk()), curtile = Vector2(tile.local()); - const auto subpixelʹ = Math::fmod(tile_, 1.f); - // todo use this formula for dragging objs - const auto subpixel = m * Vector2(curchunk[0] < 0 ? 1 + subpixelʹ[0] : subpixelʹ[0], - curchunk[1] < 0 ? 1 + subpixelʹ[1] : subpixelʹ[1]); + const auto [coord, subpixelʹ] = M->pixel_to_point(Vector2d(pixel)); + const auto curchunk = Vector2(coord.chunk()), curtile = Vector2(coord.local()); + const auto subpixel = Vector2(subpixelʹ); for (int16_t y = miny; y <= maxy; y++) for (int16_t x = minx; x <= maxx; x++) { @@ -178,10 +170,9 @@ void app::draw_collision_boxes() const with_shifted_camera_offset o{shader, c_pos, {minx, miny}, {maxx, maxy}}; if (floormat_main::check_chunk_visible(shader.camera_offset(), sz)) { - constexpr auto half_tile = TILE_SIZE2/2; constexpr auto chunk_size = TILE_SIZE2 * TILE_MAX_DIM; auto chunk_dist = (curchunk - Vector2(c_pos.x, c_pos.y))*chunk_size; - auto t0 = chunk_dist + curtile*TILE_SIZE2 + subpixel - half_tile; + auto t0 = chunk_dist + curtile*TILE_SIZE2 + subpixel; auto t1 = t0+Vector2(1e-4f); const auto* rtree = c.rtree(); rtree->Search(t0.data(), t1.data(), [&](uint64_t data, const rect_type& rect) { |