From 9fb8b48027ac8c03628955da2b186de88745e348 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 18 Nov 2016 22:27:33 +0100 Subject: logic, gui: remove relative translation disable axis Only Z needs this. --- gui/options-dialog.cpp | 7 ---- gui/options-dialog.ui | 88 ++----------------------------------------------- logic/main-settings.hpp | 10 +----- logic/tracker.cpp | 16 +++------ 4 files changed, 8 insertions(+), 113 deletions(-) diff --git a/gui/options-dialog.cpp b/gui/options-dialog.cpp index bafddb57..2be39ac2 100644 --- a/gui/options-dialog.cpp +++ b/gui/options-dialog.cpp @@ -51,14 +51,8 @@ OptionsDialog::OptionsDialog(std::function pause_keybindings) : tie_setting(main.tcomp_p, ui.tcomp_enable); - tie_setting(main.tcomp_disable_tx, ui.tcomp_tx_disable); - tie_setting(main.tcomp_disable_ty, ui.tcomp_ty_disable); tie_setting(main.tcomp_disable_tz, ui.tcomp_tz_disable); - tie_setting(main.tcomp_disable_src_yaw, ui.tcomp_src_yaw_disable); - tie_setting(main.tcomp_disable_src_pitch, ui.tcomp_src_pitch_disable); - tie_setting(main.tcomp_disable_src_roll, ui.tcomp_src_roll_disable); - tie_setting(main.a_x.zero, ui.pos_tx); tie_setting(main.a_y.zero, ui.pos_ty); tie_setting(main.a_z.zero, ui.pos_tz); @@ -83,7 +77,6 @@ OptionsDialog::OptionsDialog(std::function pause_keybindings) : tie_setting(main.camera_yaw, ui.camera_yaw); tie_setting(main.camera_pitch, ui.camera_pitch); tie_setting(main.camera_roll, ui.camera_roll); - tie_setting(main.use_camera_offset_from_centering, ui.use_center_as_translation_camera_offset); tie_setting(main.center_method, ui.center_method); diff --git a/gui/options-dialog.ui b/gui/options-dialog.ui index f23dd63f..737bc581 100644 --- a/gui/options-dialog.ui +++ b/gui/options-dialog.ui @@ -7,7 +7,7 @@ 0 0 450 - 599 + 593 @@ -463,13 +463,6 @@ - - - Use camera center as translation offset - - - - @@ -494,7 +487,7 @@ - + QGroupBox @@ -943,38 +936,6 @@ 0 - - - - 3 - 0 - - - - - - - Disable for X - - - - - - - - 3 - 0 - - - - - - - Disable for Y - - - - @@ -990,45 +951,6 @@ - - - - - 2 - 0 - - - - Disable effect by yaw - - - - - - - - 2 - 0 - - - - Disable effect by pitch - - - - - - - - 2 - 0 - - - - Disable effect by roll - - - @@ -1583,7 +1505,6 @@ bind_tcomp_off_held trayp tray_start - use_center_as_translation_camera_offset camera_yaw camera_pitch camera_roll @@ -1608,12 +1529,7 @@ invert_z tracklogging_enabled tcomp_enable - tcomp_tx_disable - tcomp_ty_disable tcomp_tz_disable - tcomp_src_yaw_disable - tcomp_src_pitch_disable - tcomp_src_roll_disable diff --git a/logic/main-settings.hpp b/logic/main-settings.hpp index 53c5fae1..ecb7cd5c 100644 --- a/logic/main-settings.hpp +++ b/logic/main-settings.hpp @@ -67,11 +67,9 @@ struct main_settings { bundle b, b_map; axis_opts a_x, a_y, a_z, a_yaw, a_pitch, a_roll; - value tcomp_p, tcomp_disable_tx, tcomp_disable_ty, tcomp_disable_tz; - value tcomp_disable_src_yaw, tcomp_disable_src_pitch, tcomp_disable_src_roll; + value tcomp_p, tcomp_disable_tz; value tray_enabled, tray_start; value camera_yaw, camera_pitch, camera_roll; - value use_camera_offset_from_centering; value center_at_startup; value center_method; key_opts key_start_tracking, key_stop_tracking, key_toggle_tracking, key_restart_tracking; @@ -90,18 +88,12 @@ struct main_settings a_pitch(b, b_map, "pitch", Pitch), a_roll(b, b_map, "roll", Roll), tcomp_p(b, "compensate-translation", true), - tcomp_disable_tx(b, "compensate-translation-disable-x-axis", false), - tcomp_disable_ty(b, "compensate-translation-disable-y-axis", false), tcomp_disable_tz(b, "compensate-translation-disable-z-axis", false), - tcomp_disable_src_yaw(b, "compensate-translation-disable-source-yaw", false), - tcomp_disable_src_pitch(b, "compensate-translation-disable-source-pitch", false), - tcomp_disable_src_roll(b, "compensate-translation-disable-source-roll", false), tray_enabled(b, "use-system-tray", false), tray_start(b, "start-in-tray", false), camera_yaw(b, "camera-yaw", 0), camera_pitch(b, "camera-pitch", 0), camera_roll(b, "camera-roll", 0), - use_camera_offset_from_centering(b, "use-camera-offset-from-centering", false), center_at_startup(b, "center-at-startup", true), center_method(b, "centering-method", true), key_start_tracking(b, "start-tracking"), diff --git a/logic/tracker.cpp b/logic/tracker.cpp index a5892dd0..5733166a 100644 --- a/logic/tracker.cpp +++ b/logic/tracker.cpp @@ -300,21 +300,15 @@ void Tracker::logic() if (s.tcomp_p && !get(f_tcomp_disabled)) { - const double tcomp_c[] = - { - double(!s.tcomp_disable_src_yaw), - double(!s.tcomp_disable_src_pitch), - double(!s.tcomp_disable_src_roll), - }; euler_t value_(value(TX), value(TY), value(TZ)); t_compensate(euler_to_rmat( - euler_t(value(Yaw) * d2r * tcomp_c[0], - value(Pitch) * d2r * tcomp_c[1], - value(Roll) * d2r * tcomp_c[2])), + euler_t(value(Yaw) * d2r, + value(Pitch) * d2r, + value(Roll) * d2r)), value_, value_, - s.tcomp_disable_tx, - s.tcomp_disable_ty, + false, + false, s.tcomp_disable_tz); if (is_nan(value_)) nanp = true; -- cgit v1.2.3