Skip to content

Commit

Permalink
WMR/Rift bind release reset fix and space fix undo disable (#142)
Browse files Browse the repository at this point in the history
* Test removal of HideWorkingSetPreview for issue #133

* Update WorkingSetPreview on apply reset data for issue #133

* fixed bug to apply floor fix offsets properly

* updated version to 3.0.1

* format

* Prevent space offsets effect on fix floor measurement

* Reorder chaperone commit timing on reset

This is an attempt to smooth apparent ~0.1sec lag on first movement after using a reset.

* Fix space fix tab (todo: reimplement undo button)
  • Loading branch information
Kung-vr authored and ykeara committed Mar 30, 2019
1 parent f57347a commit bcdf87b
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build_scripts/win/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#Const globals
#Version string must be bumped every release.
#TODO: See developer documentation.
VERSION_STRING = "3-0-0"
VERSION_STRING = "3-0-1"

EXIT_CODE_SUCCESS = 0
EXIT_CODE_FAILURE_BUILD_APP = 1
Expand Down
2 changes: 1 addition & 1 deletion installer/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
!define THIRDDIR "..\third-party"
!define PACKAGEDIR "..\src\package_files"
!define PROJECTDIR "..\"
!define VERSION_STRING "3-0-0"
!define VERSION_STRING "3-0-1"


;Installer icon
Expand Down
4 changes: 4 additions & 0 deletions src/overlaycontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -855,6 +855,7 @@ void OverlayController::AddOffsetToUniverseCenter(
{
if ( commit )
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
}
vr::HmdMatrix34_t curPos;
Expand Down Expand Up @@ -907,6 +908,7 @@ void OverlayController::RotateUniverseCenter(
{
if ( commit )
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
}
vr::HmdMatrix34_t curPos;
Expand Down Expand Up @@ -969,6 +971,7 @@ void OverlayController::AddOffsetToCollisionBounds( float offset[3],
// y-coordinates reset to the defaults.
if ( commit )
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
}
unsigned collisionBoundsCount = 0;
Expand Down Expand Up @@ -1012,6 +1015,7 @@ void OverlayController::RotateCollisionBounds( float angle, bool commit )
{
if ( commit )
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
}
unsigned collisionBoundsCount = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/overlaycontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ constexpr auto applicationOrganizationName = "AdvancedSettings-Team";
constexpr auto applicationName = "OpenVRAdvancedSettings";
constexpr const char* applicationKey = "OVRAS-Team.AdvancedSettings";
constexpr const char* applicationDisplayName = "Advanced Settings";
constexpr const char* applicationVersionString = "v3.0.0";
constexpr const char* applicationVersionString = "v3.0.1";
} // namespace application_strings

// application namespace
Expand Down
10 changes: 7 additions & 3 deletions src/res/qml/FixFloorPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ MyStackViewPage {
MyPushButton {
id: undoFixButton
enabled: false
// TODO re-enable undo and remove visible: false
visible: false
Layout.fillWidth: true
text: "Undo Fix"
onClicked: {
Expand All @@ -90,7 +92,7 @@ MyStackViewPage {

Component.onCompleted: {
statusMessageText.text = ""
undoFixButton.enabled = FixFloorTabController.canUndo
//undoFixButton.enabled = FixFloorTabController.canUndo
fixButton.enabled = true
}

Expand Down Expand Up @@ -118,10 +120,12 @@ MyStackViewPage {
}
onMeasureEndSignal: {
fixButton.enabled = true
undoFixButton.enabled = FixFloorTabController.canUndo
// undoFixButton.enabled = FixFloorTabController.canUndo
}
onCanUndoChanged: {
undoFixButton.enabled = FixFloorTabController.canUndo
//undoFixButton.enabled = FixFloorTabController.canUndo
// revert below to this -^
undoFixButton.enabled = false
}
}

Expand Down
10 changes: 7 additions & 3 deletions src/tabcontrollers/ChaperoneTabController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,8 @@ void ChaperoneTabController::setHeight( float value, bool notify )
if ( m_height != value )
{
m_height = value;
vr::VRChaperoneSetup()->RevertWorkingCopy();
// TODO revert?
// vr::VRChaperoneSetup()->RevertWorkingCopy();
unsigned collisionBoundsCount = 0;
vr::VRChaperoneSetup()->GetWorkingCollisionBoundsInfo(
nullptr, &collisionBoundsCount );
Expand All @@ -831,8 +832,9 @@ void ChaperoneTabController::setHeight( float value, bool notify )
}
vr::VRChaperoneSetup()->SetWorkingCollisionBoundsInfo(
collisionBounds, collisionBoundsCount );
vr::VRChaperoneSetup()->CommitWorkingCopy(
vr::EChaperoneConfigFile_Live );
// TODO revert?
// vr::VRChaperoneSetup()->CommitWorkingCopy(
// vr::EChaperoneConfigFile_Live );
delete[] collisionBounds;
}
if ( notify )
Expand Down Expand Up @@ -1358,6 +1360,7 @@ void ChaperoneTabController::addChaperoneProfile(
profile->includesChaperoneGeometry = includeGeometry;
if ( includeGeometry )
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
uint32_t quadCount = 0;
vr::VRChaperoneSetup()->GetLiveCollisionBoundsInfo( nullptr,
Expand Down Expand Up @@ -1505,6 +1508,7 @@ void ChaperoneTabController::applyChaperoneProfile( unsigned index )
if ( profile.includesChaperoneGeometry )
{
parent->m_moveCenterTabController.reset();
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
vr::VRChaperoneSetup()->SetWorkingCollisionBoundsInfo(
profile.chaperoneGeometryQuads.get(),
Expand Down
13 changes: 10 additions & 3 deletions src/tabcontrollers/FixFloorTabController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,10 @@ void FixFloorTabController::eventLoopTick(
floorOffsetY;
*/
}
floorOffsetY = static_cast<float>( tempOffsetY );
else
{
floorOffsetY = static_cast<float>( tempOffsetY );
}
}
else
{
Expand All @@ -188,7 +191,10 @@ void FixFloorTabController::eventLoopTick(
floorOffsetY;
*/
}
floorOffsetY = static_cast<float>( tempOffsetY );
else
{
floorOffsetY = static_cast<float>( tempOffsetY );
}
}

floorOffsetX = static_cast<float>( tempOffsetX );
Expand All @@ -205,7 +211,6 @@ void FixFloorTabController::eventLoopTick(
offset[0] = floorOffsetX;
offset[2] = floorOffsetZ;
}
parent->m_moveCenterTabController.reset();
parent->AddOffsetToUniverseCenter(
vr::TrackingUniverseStanding, offset, true );
statusMessage
Expand Down Expand Up @@ -291,6 +296,7 @@ void FixFloorTabController::setCanUndo( bool value, bool notify )

void FixFloorTabController::fixFloorClicked()
{
parent->m_moveCenterTabController.reset();
statusMessage = "Fixing ...";
statusMessageTimeout = 1.0;
emit statusMessageSignal();
Expand All @@ -301,6 +307,7 @@ void FixFloorTabController::fixFloorClicked()

void FixFloorTabController::recenterClicked()
{
parent->m_moveCenterTabController.reset();
statusMessage = "Fixing ...";
statusMessageTimeout = 1.0;
emit statusMessageSignal();
Expand Down
10 changes: 9 additions & 1 deletion src/tabcontrollers/MoveCenterTabController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,7 @@ void MoveCenterTabController::clampVelocity( double* velocity )

void MoveCenterTabController::updateChaperoneResetData()
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
unsigned currentQuadCount = 0;
vr::VRChaperoneSetup()->GetWorkingCollisionBoundsInfo( nullptr,
Expand Down Expand Up @@ -768,16 +769,22 @@ void MoveCenterTabController::updateChaperoneResetData()
-universeCenterForResetYaw );
}
}
// update the working set preview for potential Oculus and WMR issues
vr::VRChaperoneSetup()->ShowWorkingSetPreview();
}

void MoveCenterTabController::applyChaperoneResetData()
{
vr::VRChaperoneSetup()->HideWorkingSetPreview();
vr::VRChaperoneSetup()->RevertWorkingCopy();
vr::VRChaperoneSetup()->SetWorkingCollisionBoundsInfo(
m_collisionBoundsForReset, m_collisionBoundsCountForReset );
vr::VRChaperoneSetup()->SetWorkingStandingZeroPoseToRawTrackingPose(
&m_universeCenterForReset );
vr::VRChaperoneSetup()->CommitWorkingCopy( vr::EChaperoneConfigFile_Live );
// update the working set preview otherwise Oculus and WMR users may not see
// results of the reset
vr::VRChaperoneSetup()->ShowWorkingSetPreview();
}

// START of drag bindings:
Expand Down Expand Up @@ -1487,7 +1494,8 @@ void MoveCenterTabController::saveUncommittedChaperone()
{
vr::VRChaperoneSetup()->CommitWorkingCopy(
vr::EChaperoneConfigFile_Live );
vr::VRChaperoneSetup()->HideWorkingSetPreview();
// test removal for oculus and WMR users
// vr::VRChaperoneSetup()->HideWorkingSetPreview();
m_chaperoneCommitted = true;
}
}
Expand Down

0 comments on commit bcdf87b

Please sign in to comment.