mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 07:09:47 +02:00
Merge branch 'master' of github.com:highfidelity/hifi into near-grab-via-parenting
This commit is contained in:
commit
a5d37bed60
5 changed files with 45 additions and 29 deletions
|
@ -157,7 +157,7 @@ void Avatar::animateScaleChanges(float deltaTime) {
|
||||||
|
|
||||||
// snap to the end when we get close enough
|
// snap to the end when we get close enough
|
||||||
const float MIN_RELATIVE_SCALE_ERROR = 0.03f;
|
const float MIN_RELATIVE_SCALE_ERROR = 0.03f;
|
||||||
if (fabsf(_targetScale - currentScale) / _targetScale < 0.03f) {
|
if (fabsf(_targetScale - currentScale) / _targetScale < MIN_RELATIVE_SCALE_ERROR) {
|
||||||
animatedScale = _targetScale;
|
animatedScale = _targetScale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,38 +48,46 @@ void AvatarActionHold::prepareForPhysicsSimulation() {
|
||||||
auto avatarManager = DependencyManager::get<AvatarManager>();
|
auto avatarManager = DependencyManager::get<AvatarManager>();
|
||||||
auto holdingAvatar = std::static_pointer_cast<Avatar>(avatarManager->getAvatarBySessionID(_holderID));
|
auto holdingAvatar = std::static_pointer_cast<Avatar>(avatarManager->getAvatarBySessionID(_holderID));
|
||||||
|
|
||||||
if (!holdingAvatar) {
|
if (!holdingAvatar || !holdingAvatar->isMyAvatar()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
withWriteLock([&]{
|
withWriteLock([&]{
|
||||||
if (_ignoreIK && holdingAvatar->isMyAvatar()) {
|
if (_ignoreIK) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (holdingAvatar->isMyAvatar()) {
|
|
||||||
glm::vec3 palmPosition;
|
|
||||||
glm::quat palmRotation;
|
|
||||||
if (_hand == "right") {
|
|
||||||
palmPosition = holdingAvatar->getRightPalmPosition();
|
|
||||||
palmRotation = holdingAvatar->getRightPalmRotation();
|
|
||||||
} else {
|
|
||||||
palmPosition = holdingAvatar->getLeftPalmPosition();
|
|
||||||
palmRotation = holdingAvatar->getLeftPalmRotation();
|
|
||||||
}
|
|
||||||
|
|
||||||
glm::vec3 avatarRigidBodyPosition;
|
glm::vec3 palmPosition;
|
||||||
glm::quat avatarRigidBodyRotation;
|
glm::quat palmRotation;
|
||||||
getAvatarRigidBodyLocation(avatarRigidBodyPosition, avatarRigidBodyRotation);
|
if (_hand == "right") {
|
||||||
|
palmPosition = holdingAvatar->getRightPalmPosition();
|
||||||
// determine the difference in translation and rotation between the avatar's
|
palmRotation = holdingAvatar->getRightPalmRotation();
|
||||||
// rigid body and the palm position. The avatar's rigid body will be moved by bullet
|
} else {
|
||||||
// between this call and the call to getTarget, below. A call to get*PalmPosition in
|
palmPosition = holdingAvatar->getLeftPalmPosition();
|
||||||
// getTarget would get the palm position of the previous location of the avatar (because
|
palmRotation = holdingAvatar->getLeftPalmRotation();
|
||||||
// bullet has moved the av's rigid body but the rigid body's location has not yet been
|
|
||||||
// copied out into the Avatar class.
|
|
||||||
_palmOffsetFromRigidBody = palmPosition - avatarRigidBodyPosition;
|
|
||||||
_palmRotationFromRigidBody = glm::inverse(avatarRigidBodyRotation) * palmRotation;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
glm::vec3 avatarRigidBodyPosition;
|
||||||
|
glm::quat avatarRigidBodyRotation;
|
||||||
|
getAvatarRigidBodyLocation(avatarRigidBodyPosition, avatarRigidBodyRotation);
|
||||||
|
|
||||||
|
// determine the difference in translation and rotation between the avatar's
|
||||||
|
// rigid body and the palm position. The avatar's rigid body will be moved by bullet
|
||||||
|
// between this call and the call to getTarget, below. A call to get*PalmPosition in
|
||||||
|
// getTarget would get the palm position of the previous location of the avatar (because
|
||||||
|
// bullet has moved the av's rigid body but the rigid body's location has not yet been
|
||||||
|
// copied out into the Avatar class.
|
||||||
|
//glm::quat avatarRotationInverse = glm::inverse(avatarRigidBodyRotation);
|
||||||
|
|
||||||
|
// the offset should be in the frame of the avatar, but something about the order
|
||||||
|
// things are updated makes this wrong:
|
||||||
|
// _palmOffsetFromRigidBody = avatarRotationInverse * (palmPosition - avatarRigidBodyPosition);
|
||||||
|
// I'll leave it here as a comment in case avatar handling changes.
|
||||||
|
_palmOffsetFromRigidBody = palmPosition - avatarRigidBodyPosition;
|
||||||
|
|
||||||
|
// rotation should also be needed, but again, the order of updates makes this unneeded. leaving
|
||||||
|
// code here for future reference.
|
||||||
|
// _palmRotationFromRigidBody = avatarRotationInverse * palmRotation;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,8 +124,16 @@ std::shared_ptr<Avatar> AvatarActionHold::getTarget(glm::quat& rotation, glm::ve
|
||||||
// and the data in the Avatar class is stale. This means that the result of get*PalmPosition will
|
// and the data in the Avatar class is stale. This means that the result of get*PalmPosition will
|
||||||
// be stale. Instead, determine the current palm position with the current avatar's rigid body
|
// be stale. Instead, determine the current palm position with the current avatar's rigid body
|
||||||
// location and the saved offsets.
|
// location and the saved offsets.
|
||||||
|
|
||||||
|
// this line is more correct but breaks for the current way avatar data is updated.
|
||||||
|
// palmPosition = avatarRigidBodyPosition + avatarRigidBodyRotation * _palmOffsetFromRigidBody;
|
||||||
|
// instead, use this for now:
|
||||||
palmPosition = avatarRigidBodyPosition + _palmOffsetFromRigidBody;
|
palmPosition = avatarRigidBodyPosition + _palmOffsetFromRigidBody;
|
||||||
palmRotation = avatarRigidBodyRotation * _palmRotationFromRigidBody;
|
|
||||||
|
// the item jitters the least by getting the rotation based on the opinion of Avatar.h rather
|
||||||
|
// than that of the rigid body. leaving this next line here for future reference:
|
||||||
|
// palmRotation = avatarRigidBodyRotation * _palmRotationFromRigidBody;
|
||||||
|
|
||||||
if (isRightHand) {
|
if (isRightHand) {
|
||||||
palmRotation = holdingAvatar->getRightPalmRotation();
|
palmRotation = holdingAvatar->getRightPalmRotation();
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -61,7 +61,8 @@ private:
|
||||||
glm::vec3 _previousPositionalDelta;
|
glm::vec3 _previousPositionalDelta;
|
||||||
|
|
||||||
glm::vec3 _palmOffsetFromRigidBody;
|
glm::vec3 _palmOffsetFromRigidBody;
|
||||||
glm::quat _palmRotationFromRigidBody;
|
// leaving this here for future refernece.
|
||||||
|
// glm::quat _palmRotationFromRigidBody;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // hifi_AvatarActionHold_h
|
#endif // hifi_AvatarActionHold_h
|
||||||
|
|
|
@ -34,7 +34,6 @@
|
||||||
static const quint64 MSECS_TO_USECS = 1000ULL;
|
static const quint64 MSECS_TO_USECS = 1000ULL;
|
||||||
static const quint64 TOOLTIP_DELAY = 500 * MSECS_TO_USECS;
|
static const quint64 TOOLTIP_DELAY = 500 * MSECS_TO_USECS;
|
||||||
|
|
||||||
static const float RETICLE_COLOR[] = { 0.0f, 198.0f / 255.0f, 244.0f / 255.0f };
|
|
||||||
static const float reticleSize = TWO_PI / 100.0f;
|
static const float reticleSize = TWO_PI / 100.0f;
|
||||||
|
|
||||||
static const float CURSOR_PIXEL_SIZE = 32.0f;
|
static const float CURSOR_PIXEL_SIZE = 32.0f;
|
||||||
|
|
|
@ -91,7 +91,7 @@ Assignment::Assignment(ReceivedMessage& message) :
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
Assignment::Assignment(const Assignment& otherAssignment) {
|
Assignment::Assignment(const Assignment& otherAssignment) : QObject() {
|
||||||
_uuid = otherAssignment._uuid;
|
_uuid = otherAssignment._uuid;
|
||||||
_command = otherAssignment._command;
|
_command = otherAssignment._command;
|
||||||
_type = otherAssignment._type;
|
_type = otherAssignment._type;
|
||||||
|
|
Loading…
Reference in a new issue