jumping and hovering works with dynamic controller

This commit is contained in:
Andrew Meadows 2015-04-07 15:07:46 -07:00
parent e2ea940249
commit b5f0c57dd1
4 changed files with 206 additions and 98 deletions

View file

@ -1116,7 +1116,7 @@ void MyAvatar::updateOrientation(float deltaTime) {
} }
glm::vec3 MyAvatar::applyKeyboardMotor(float deltaTime, const glm::vec3& localVelocity, bool hasFloor) { glm::vec3 MyAvatar::applyKeyboardMotor(float deltaTime, const glm::vec3& localVelocity, bool isHovering) {
if (! (_motionBehaviors & AVATAR_MOTION_KEYBOARD_MOTOR_ENABLED)) { if (! (_motionBehaviors & AVATAR_MOTION_KEYBOARD_MOTOR_ENABLED)) {
return localVelocity; return localVelocity;
} }
@ -1137,7 +1137,7 @@ glm::vec3 MyAvatar::applyKeyboardMotor(float deltaTime, const glm::vec3& localVe
if (_isPushing || isThrust || if (_isPushing || isThrust ||
(_scriptedMotorTimescale < MAX_KEYBOARD_MOTOR_TIMESCALE && (_scriptedMotorTimescale < MAX_KEYBOARD_MOTOR_TIMESCALE &&
_motionBehaviors | AVATAR_MOTION_SCRIPTED_MOTOR_ENABLED)) { _motionBehaviors | AVATAR_MOTION_SCRIPTED_MOTOR_ENABLED)) {
// we don't want to break if anything is pushing the avatar around // we don't want to brake if something is pushing the avatar around
timescale = _keyboardMotorTimescale; timescale = _keyboardMotorTimescale;
_isBraking = false; _isBraking = false;
} else { } else {
@ -1168,14 +1168,8 @@ glm::vec3 MyAvatar::applyKeyboardMotor(float deltaTime, const glm::vec3& localVe
if (directionLength > EPSILON) { if (directionLength > EPSILON) {
direction /= directionLength; direction /= directionLength;
if (hasFloor) { if (isHovering) {
// we're walking --> simple exponential decay toward target walk speed // we're flying --> complex acceleration curve with high max speed
const float WALK_ACCELERATION_TIMESCALE = 0.7f; // seconds to decrease delta to 1/e
_keyboardMotorVelocity = MAX_WALKING_SPEED * direction;
motorEfficiency = glm::clamp(deltaTime / WALK_ACCELERATION_TIMESCALE, 0.0f, 1.0f);
} else {
// we're flying --> more complex curve
float motorSpeed = glm::length(_keyboardMotorVelocity); float motorSpeed = glm::length(_keyboardMotorVelocity);
float finalMaxMotorSpeed = _scale * MAX_KEYBOARD_MOTOR_SPEED; float finalMaxMotorSpeed = _scale * MAX_KEYBOARD_MOTOR_SPEED;
float speedGrowthTimescale = 2.0f; float speedGrowthTimescale = 2.0f;
@ -1191,6 +1185,12 @@ glm::vec3 MyAvatar::applyKeyboardMotor(float deltaTime, const glm::vec3& localVe
motorSpeed = finalMaxMotorSpeed; motorSpeed = finalMaxMotorSpeed;
} }
_keyboardMotorVelocity = motorSpeed * direction; _keyboardMotorVelocity = motorSpeed * direction;
} else {
// we're using a floor --> simple exponential decay toward target walk speed
const float WALK_ACCELERATION_TIMESCALE = 0.7f; // seconds to decrease delta to 1/e
_keyboardMotorVelocity = MAX_WALKING_SPEED * direction;
motorEfficiency = glm::clamp(deltaTime / WALK_ACCELERATION_TIMESCALE, 0.0f, 1.0f);
} }
_isPushing = true; _isPushing = true;
} }
@ -1198,7 +1198,7 @@ glm::vec3 MyAvatar::applyKeyboardMotor(float deltaTime, const glm::vec3& localVe
} else { } else {
_keyboardMotorVelocity = glm::vec3(0.0f); _keyboardMotorVelocity = glm::vec3(0.0f);
newLocalVelocity = (1.0f - motorEfficiency) * localVelocity; newLocalVelocity = (1.0f - motorEfficiency) * localVelocity;
if (hasFloor && !_wasPushing) { if (!isHovering && !_wasPushing) {
float speed = glm::length(newLocalVelocity); float speed = glm::length(newLocalVelocity);
if (speed > MIN_AVATAR_SPEED) { if (speed > MIN_AVATAR_SPEED) {
// add small constant friction to help avatar drift to a stop sooner at low speeds // add small constant friction to help avatar drift to a stop sooner at low speeds
@ -1238,8 +1238,8 @@ void MyAvatar::updatePosition(float deltaTime) {
glm::quat rotation = getHead()->getCameraOrientation(); glm::quat rotation = getHead()->getCameraOrientation();
glm::vec3 localVelocity = glm::inverse(rotation) * _velocity; glm::vec3 localVelocity = glm::inverse(rotation) * _velocity;
bool isOnGround = _characterController.onGround(); bool isHovering = _characterController.isHovering();
glm::vec3 newLocalVelocity = applyKeyboardMotor(deltaTime, localVelocity, isOnGround); glm::vec3 newLocalVelocity = applyKeyboardMotor(deltaTime, localVelocity, isHovering);
newLocalVelocity = applyScriptedMotor(deltaTime, newLocalVelocity); newLocalVelocity = applyScriptedMotor(deltaTime, newLocalVelocity);
// rotate back into world-frame // rotate back into world-frame

View file

@ -224,7 +224,7 @@ private:
// private methods // private methods
void updateOrientation(float deltaTime); void updateOrientation(float deltaTime);
glm::vec3 applyKeyboardMotor(float deltaTime, const glm::vec3& velocity, bool walkingOnFloor); glm::vec3 applyKeyboardMotor(float deltaTime, const glm::vec3& velocity, bool isHovering);
glm::vec3 applyScriptedMotor(float deltaTime, const glm::vec3& velocity); glm::vec3 applyScriptedMotor(float deltaTime, const glm::vec3& velocity);
void updatePosition(float deltaTime); void updatePosition(float deltaTime);
void updateCollisionSound(const glm::vec3& penetration, float deltaTime, float frequency); void updateCollisionSound(const glm::vec3& penetration, float deltaTime, float frequency);

View file

@ -7,18 +7,41 @@
#include "DynamicCharacterController.h" #include "DynamicCharacterController.h"
const btVector3 LOCAL_UP_AXIS(0.0f, 1.0f, 0.0f); const btVector3 LOCAL_UP_AXIS(0.0f, 1.0f, 0.0f);
const float DEFAULT_GRAVITY = 5.0f; const float DEFAULT_GRAVITY = -5.0f;
const float TERMINAL_VELOCITY = 55.0f; const float TERMINAL_VELOCITY = 55.0f;
const float JUMP_SPEED = 3.5f; const float JUMP_SPEED = 3.5f;
const float MAX_FALL_HEIGHT = 20.0f;
const float MIN_HOVER_HEIGHT = 3.0f;
const uint32_t PENDING_FLAG_ADD_TO_SIMULATION = 1U << 0; const uint32_t PENDING_FLAG_ADD_TO_SIMULATION = 1U << 0;
const uint32_t PENDING_FLAG_REMOVE_FROM_SIMULATION = 1U << 1; const uint32_t PENDING_FLAG_REMOVE_FROM_SIMULATION = 1U << 1;
const uint32_t PENDING_FLAG_UPDATE_SHAPE = 1U << 2; const uint32_t PENDING_FLAG_UPDATE_SHAPE = 1U << 2;
const uint32_t PENDING_FLAG_JUMP = 1U << 3; const uint32_t PENDING_FLAG_JUMP = 1U << 3;
// TODO: improve walking up steps
// TODO: make avatars able to walk up and down steps/slopes
// TODO: make avatars stand on steep slope
// TODO: make avatars not snag on low ceilings
// helper class for simple ray-traces from character
class ClosestNotMe : public btCollisionWorld::ClosestRayResultCallback {
public:
ClosestNotMe(btRigidBody* me) : btCollisionWorld::ClosestRayResultCallback(btVector3(0.0f, 0.0f, 0.0f), btVector3(0.0f, 0.0f, 0.0f)) {
_me = me;
}
virtual btScalar addSingleResult(btCollisionWorld::LocalRayResult& rayResult,bool normalInWorldSpace) {
if (rayResult.m_collisionObject == _me) {
return 1.0f;
}
return ClosestRayResultCallback::addSingleResult(rayResult, normalInWorldSpace
);
}
protected:
btRigidBody* _me;
};
DynamicCharacterController::DynamicCharacterController(AvatarData* avatarData) { DynamicCharacterController::DynamicCharacterController(AvatarData* avatarData) {
_rayLambda[0] = 1.0f;
_rayLambda[1] = 1.0f;
_halfHeight = 1.0f; _halfHeight = 1.0f;
_shape = NULL; _shape = NULL;
_rigidBody = NULL; _rigidBody = NULL;
@ -28,11 +51,15 @@ DynamicCharacterController::DynamicCharacterController(AvatarData* avatarData) {
_enabled = false; _enabled = false;
_floorDistance = MAX_FALL_HEIGHT;
_walkVelocity.setValue(0.0f,0.0f,0.0f); _walkVelocity.setValue(0.0f,0.0f,0.0f);
_jumpSpeed = JUMP_SPEED; _jumpSpeed = JUMP_SPEED;
_isOnGround = false; _isOnGround = false;
_isJumping = false; _isJumping = false;
_isFalling = false;
_isHovering = true; _isHovering = true;
_jumpToHoverStart = 0;
_pendingFlags = PENDING_FLAG_UPDATE_SHAPE; _pendingFlags = PENDING_FLAG_UPDATE_SHAPE;
updateShapeIfNecessary(); updateShapeIfNecessary();
@ -43,100 +70,127 @@ DynamicCharacterController::~DynamicCharacterController() {
// virtual // virtual
void DynamicCharacterController::setWalkDirection(const btVector3& walkDirection) { void DynamicCharacterController::setWalkDirection(const btVector3& walkDirection) {
_walkVelocity = walkDirection; // do nothing -- walkVelocity is upated in preSimulation()
//_walkVelocity = walkDirection;
} }
void DynamicCharacterController::preStep(btCollisionWorld* collisionWorld) { void DynamicCharacterController::preStep(btCollisionWorld* collisionWorld) {
const btTransform& xform = _rigidBody->getCenterOfMassTransform(); // trace a ray straight down to see if we're standing on the ground
const btTransform& xform = _rigidBody->getWorldTransform();
btVector3 down = -xform.getBasis()[1]; // rayStart is at center of bottom sphere
btVector3 forward = xform.getBasis()[2]; btVector3 rayStart = xform.getOrigin() - _halfHeight * _currentUp;
down.normalize();
forward.normalize();
_raySource[0] = xform.getOrigin(); // rayEnd is some short distance outside bottom sphere
_raySource[1] = xform.getOrigin(); const btScalar FLOOR_PROXIMITY_THRESHOLD = 0.3f * _radius;
btScalar rayLength = _radius + FLOOR_PROXIMITY_THRESHOLD;
_rayTarget[0] = _raySource[0] + down * _halfHeight * btScalar(1.1f); btVector3 rayEnd = rayStart - rayLength * _currentUp;
_rayTarget[1] = _raySource[1] + forward * _halfHeight * btScalar(1.1f);
class ClosestNotMe : public btCollisionWorld::ClosestRayResultCallback {
public:
ClosestNotMe(btRigidBody* me) : btCollisionWorld::ClosestRayResultCallback(btVector3(0.0f, 0.0f, 0.0f), btVector3(0.0f, 0.0f, 0.0f)) {
_me = me;
}
virtual btScalar addSingleResult(btCollisionWorld::LocalRayResult& rayResult,bool normalInWorldSpace) {
if (rayResult.m_collisionObject == _me)
return 1.0f;
return ClosestRayResultCallback::addSingleResult(rayResult, normalInWorldSpace
);
}
protected:
btRigidBody* _me;
};
// scan down for nearby floor
ClosestNotMe rayCallback(_rigidBody); ClosestNotMe rayCallback(_rigidBody);
rayCallback.m_closestHitFraction = 1.0f;
int i = 0; collisionWorld->rayTest(rayStart, rayEnd, rayCallback);
for (i = 0; i < 2; i++) { if (rayCallback.hasHit()) {
rayCallback.m_closestHitFraction = 1.0f; _floorDistance = rayLength * rayCallback.m_closestHitFraction - _radius;
collisionWorld->rayTest(_raySource[i], _rayTarget[i], rayCallback);
if (rayCallback.hasHit()) {
_rayLambda[i] = rayCallback.m_closestHitFraction;
} else {
_rayLambda[i] = 1.0f;
}
} }
} }
void DynamicCharacterController::playerStep(btCollisionWorld* dynaWorld,btScalar dt) { void DynamicCharacterController::playerStep(btCollisionWorld* dynaWorld,btScalar dt) {
btVector3 currentVelocity = _rigidBody->getLinearVelocity(); btVector3 actualVelocity = _rigidBody->getLinearVelocity();
btScalar currentSpeed = currentVelocity.length(); btScalar actualSpeed = actualVelocity.length();
btVector3 desiredVelocity = _walkVelocity; btVector3 desiredVelocity = _walkVelocity;
btScalar desiredSpeed = desiredVelocity.length(); btScalar desiredSpeed = desiredVelocity.length();
const btScalar MIN_SPEED = 0.001f; const btScalar MIN_SPEED = 0.001f;
if (desiredSpeed < MIN_SPEED) {
if (currentSpeed < MIN_SPEED) { if (_isHovering) {
_rigidBody->setLinearVelocity(btVector3(0.0f, 0.0f, 0.0f)); if (desiredSpeed < MIN_SPEED) {
if (actualSpeed < MIN_SPEED) {
_rigidBody->setLinearVelocity(btVector3(0.0f, 0.0f, 0.0f));
} else {
const btScalar HOVER_BRAKING_TIMESCALE = 0.1f;
btScalar tau = glm::max(dt / HOVER_BRAKING_TIMESCALE, 1.0f);
_rigidBody->setLinearVelocity((1.0f - tau) * actualVelocity);
}
} else { } else {
const btScalar BRAKING_TIMESCALE = 0.2f; const btScalar HOVER_ACCELERATION_TIMESCALE = 0.1f;
btScalar tau = dt / BRAKING_TIMESCALE; btScalar tau = dt / HOVER_ACCELERATION_TIMESCALE;
_rigidBody->setLinearVelocity((1.0f - tau) * currentVelocity); _rigidBody->setLinearVelocity(actualVelocity - tau * (actualVelocity - desiredVelocity));
} }
} else { } else {
const btScalar WALKING_TIMESCALE = 0.5f;
btScalar tau = dt / WALKING_TIMESCALE;
if (onGround()) { if (onGround()) {
// walking on ground
if (desiredSpeed < MIN_SPEED) {
if (actualSpeed < MIN_SPEED) {
_rigidBody->setLinearVelocity(btVector3(0.0f, 0.0f, 0.0f));
} else {
const btScalar HOVER_BRAKING_TIMESCALE = 0.1f;
btScalar tau = dt / HOVER_BRAKING_TIMESCALE;
_rigidBody->setLinearVelocity((1.0f - tau) * actualVelocity);
}
} else {
// TODO: modify desiredVelocity using floor normal
const btScalar WALK_ACCELERATION_TIMESCALE = 0.1f;
btScalar tau = dt / WALK_ACCELERATION_TIMESCALE;
btVector3 velocityCorrection = tau * (desiredVelocity - actualVelocity);
// subtract vertical component
velocityCorrection -= velocityCorrection.dot(_currentUp) * _currentUp;
_rigidBody->setLinearVelocity(actualVelocity + velocityCorrection);
}
} else {
// falling or jumping
const btScalar FALL_ACCELERATION_TIMESCALE = 2.0f;
btScalar tau = dt / FALL_ACCELERATION_TIMESCALE;
btVector3 velocityCorrection = tau * (desiredVelocity - actualVelocity);
// subtract vertical component // subtract vertical component
desiredVelocity = desiredVelocity - desiredVelocity.dot(_currentUp) * _currentUp; velocityCorrection -= velocityCorrection.dot(_currentUp) * _currentUp;
} _rigidBody->setLinearVelocity(actualVelocity + velocityCorrection);
_rigidBody->setLinearVelocity(currentVelocity - tau * (currentVelocity - desiredVelocity)); }
} }
} }
bool DynamicCharacterController::canJump() const { bool DynamicCharacterController::canJump() const {
return onGround(); return onGround() && !_isJumping;
} }
void DynamicCharacterController::jump() { void DynamicCharacterController::jump() {
/* _pendingFlags |= PENDING_FLAG_JUMP;
if (!canJump()) {
return;
}
btTransform xform = _rigidBody->getCenterOfMassTransform(); // check for case where user is holding down "jump" key...
btVector3 up = xform.getBasis()[1]; // we'll eventually tansition to "hover"
up.normalize(); if (!_isHovering) {
btScalar magnitude = (btScalar(1.0)/_rigidBody->getInvMass()) * btScalar(8.0); if (!_isJumping) {
_rigidBody->applyCentralImpulse(up * magnitude); _jumpToHoverStart = usecTimestampNow();
*/ } else {
quint64 now = usecTimestampNow();
const quint64 JUMP_TO_HOVER_PERIOD = USECS_PER_SECOND;
if (now - _jumpToHoverStart > JUMP_TO_HOVER_PERIOD) {
_isHovering = true;
}
}
}
} }
bool DynamicCharacterController::onGround() const { bool DynamicCharacterController::onGround() const {
return _rayLambda[0] < btScalar(1.0); const btScalar FLOOR_PROXIMITY_THRESHOLD = 0.3f * _radius;
return _floorDistance < FLOOR_PROXIMITY_THRESHOLD;
}
void DynamicCharacterController::setHovering(bool hover) {
if (hover != _isHovering) {
_isHovering = hover;
_isJumping = false;
if (_rigidBody) {
if (hover) {
_rigidBody->setGravity(btVector3(0.0f, 0.0f, 0.0f));
} else {
_rigidBody->setGravity(DEFAULT_GRAVITY * _currentUp);
}
btVector3 g = _rigidBody->getGravity();
}
}
} }
void DynamicCharacterController::setLocalBoundingBox(const glm::vec3& corner, const glm::vec3& scale) { void DynamicCharacterController::setLocalBoundingBox(const glm::vec3& corner, const glm::vec3& scale) {
@ -186,7 +240,7 @@ void DynamicCharacterController::setEnabled(bool enabled) {
// Don't bother clearing REMOVE bit since it might be paired with an UPDATE_SHAPE bit. // Don't bother clearing REMOVE bit since it might be paired with an UPDATE_SHAPE bit.
// Setting the ADD bit here works for all cases so we don't even bother checking other bits. // Setting the ADD bit here works for all cases so we don't even bother checking other bits.
_pendingFlags |= PENDING_FLAG_ADD_TO_SIMULATION; _pendingFlags |= PENDING_FLAG_ADD_TO_SIMULATION;
_isHovering = true; setHovering(true);
} else { } else {
if (_dynamicsWorld) { if (_dynamicsWorld) {
_pendingFlags |= PENDING_FLAG_REMOVE_FROM_SIMULATION; _pendingFlags |= PENDING_FLAG_REMOVE_FROM_SIMULATION;
@ -262,6 +316,11 @@ void DynamicCharacterController::updateShapeIfNecessary() {
_rigidBody->setAngularFactor (0.0f); _rigidBody->setAngularFactor (0.0f);
_rigidBody->setWorldTransform(btTransform(glmToBullet(_avatarData->getOrientation()), _rigidBody->setWorldTransform(btTransform(glmToBullet(_avatarData->getOrientation()),
glmToBullet(_avatarData->getPosition()))); glmToBullet(_avatarData->getPosition())));
if (_isHovering) {
_rigidBody->setGravity(btVector3(0.0f, 0.0f, 0.0f));
} else {
_rigidBody->setGravity(DEFAULT_GRAVITY * _currentUp);
}
//_rigidBody->setCollisionFlags(btCollisionObject::CF_CHARACTER_OBJECT); //_rigidBody->setCollisionFlags(btCollisionObject::CF_CHARACTER_OBJECT);
} else { } else {
// TODO: handle this failure case // TODO: handle this failure case
@ -269,36 +328,78 @@ void DynamicCharacterController::updateShapeIfNecessary() {
} }
} }
void DynamicCharacterController::updateUpAxis(const glm::quat& rotation) {
btVector3 oldUp = _currentUp;
_currentUp = quatRotate(glmToBullet(rotation), LOCAL_UP_AXIS);
if (!_isHovering) {
const btScalar MIN_UP_ERROR = 0.01f;
if (oldUp.distance(_currentUp) > MIN_UP_ERROR) {
_rigidBody->setGravity(DEFAULT_GRAVITY * _currentUp);
}
}
}
void DynamicCharacterController::preSimulation(btScalar timeStep) { void DynamicCharacterController::preSimulation(btScalar timeStep) {
if (_enabled && _dynamicsWorld) { if (_enabled && _dynamicsWorld) {
glm::quat rotation = _avatarData->getOrientation(); glm::quat rotation = _avatarData->getOrientation();
_currentUp = quatRotate(glmToBullet(rotation), LOCAL_UP_AXIS);
// TODO: update gravity if up has changed
updateUpAxis(rotation);
glm::vec3 position = _avatarData->getPosition() + rotation * _shapeLocalOffset; glm::vec3 position = _avatarData->getPosition() + rotation * _shapeLocalOffset;
// TODO: get intended WALK velocity from _avatarData, not its actual velocity
btVector3 walkVelocity = glmToBullet(_avatarData->getVelocity());
_rigidBody->setWorldTransform(btTransform(glmToBullet(rotation), glmToBullet(position))); _rigidBody->setWorldTransform(btTransform(glmToBullet(rotation), glmToBullet(position)));
_rigidBody->setLinearVelocity(walkVelocity);
// the rotation is dictated by AvatarData
btTransform xform = _rigidBody->getWorldTransform();
xform.setRotation(glmToBullet(rotation));
_rigidBody->setWorldTransform(xform);
// scan for distant floor
// rayStart is at center of bottom sphere
btVector3 rayStart = xform.getOrigin() - _halfHeight * _currentUp;
// rayEnd is straight down MAX_FALL_HEIGHT
btScalar rayLength = _radius + MAX_FALL_HEIGHT;
btVector3 rayEnd = rayStart - rayLength * _currentUp;
ClosestNotMe rayCallback(_rigidBody);
rayCallback.m_closestHitFraction = 1.0f;
_dynamicsWorld->rayTest(rayStart, rayEnd, rayCallback);
if (rayCallback.hasHit()) {
_floorDistance = rayLength * rayCallback.m_closestHitFraction - _radius;
const btScalar MIN_HOVER_HEIGHT = 3.0f;
if (_isHovering && _floorDistance < MIN_HOVER_HEIGHT) {
setHovering(false);
}
// TODO: use collision events rather than ray-trace test to disable jumping
const btScalar JUMP_PROXIMITY_THRESHOLD = 0.1f * _radius;
if (_floorDistance < JUMP_PROXIMITY_THRESHOLD) {
_isJumping = false;
}
} else {
_floorDistance = FLT_MAX;
setHovering(true);
}
_walkVelocity = glmToBullet(_avatarData->getVelocity());
if (_pendingFlags & PENDING_FLAG_JUMP) { if (_pendingFlags & PENDING_FLAG_JUMP) {
_pendingFlags &= ~ PENDING_FLAG_JUMP; _pendingFlags &= ~ PENDING_FLAG_JUMP;
if (canJump()) { if (canJump()) {
// TODO: make jump work // TODO: make jump work
//_verticalVelocity = _jumpSpeed; //_verticalVelocity = _jumpSpeed;
_isJumping = true; _isJumping = true;
btVector3 velocity = _rigidBody->getLinearVelocity();
velocity += _jumpSpeed * _currentUp;
_rigidBody->setLinearVelocity(velocity);
} }
} }
// the rotation is determined by AvatarData
btTransform xform = _rigidBody->getCenterOfMassTransform();
xform.setRotation(glmToBullet(rotation));
_rigidBody->setCenterOfMassTransform(xform);
} }
} }
void DynamicCharacterController::postSimulation() { void DynamicCharacterController::postSimulation() {
if (_enabled && _rigidBody) { if (_enabled && _rigidBody) {
const btTransform& avatarTransform = _rigidBody->getCenterOfMassTransform(); const btTransform& avatarTransform = _rigidBody->getWorldTransform();
glm::quat rotation = bulletToGLM(avatarTransform.getRotation()); glm::quat rotation = bulletToGLM(avatarTransform.getRotation());
glm::vec3 position = bulletToGLM(avatarTransform.getOrigin()); glm::vec3 position = bulletToGLM(avatarTransform.getOrigin());

View file

@ -10,6 +10,8 @@ class btCollisionShape;
class btRigidBody; class btRigidBody;
class btCollisionWorld; class btCollisionWorld;
const int NUM_CHARACTER_CONTROLLER_RAYS = 2;
///DynamicCharacterController is obsolete/unsupported at the moment ///DynamicCharacterController is obsolete/unsupported at the moment
class DynamicCharacterController : public btCharacterControllerInterface class DynamicCharacterController : public btCharacterControllerInterface
{ {
@ -20,13 +22,11 @@ protected:
btRigidBody* _rigidBody; btRigidBody* _rigidBody;
btVector3 _currentUp; btVector3 _currentUp;
btVector3 _raySource[2];
btVector3 _rayTarget[2]; btScalar _floorDistance;
btScalar _rayLambda[2];
btVector3 _rayNormal[2];
btVector3 _walkVelocity; btVector3 _walkVelocity;
//btScalar _turnVelocity; btScalar _gravity;
glm::vec3 _shapeLocalOffset; glm::vec3 _shapeLocalOffset;
glm::vec3 _boxScale; // used to compute capsule shape glm::vec3 _boxScale; // used to compute capsule shape
@ -35,7 +35,9 @@ protected:
bool _enabled; bool _enabled;
bool _isOnGround; bool _isOnGround;
bool _isJumping; bool _isJumping;
bool _isFalling;
bool _isHovering; bool _isHovering;
quint64 _jumpToHoverStart;
uint32_t _pendingFlags; uint32_t _pendingFlags;
btDynamicsWorld* _dynamicsWorld = NULL; btDynamicsWorld* _dynamicsWorld = NULL;
@ -69,6 +71,8 @@ public:
virtual bool canJump() const; virtual bool canJump() const;
virtual void jump(); virtual void jump();
virtual bool onGround() const; virtual bool onGround() const;
bool isHovering() const { return _isHovering; }
void setHovering(bool enabled);
bool needsRemoval() const; bool needsRemoval() const;
bool needsAddition() const; bool needsAddition() const;
@ -82,6 +86,9 @@ public:
void preSimulation(btScalar timeStep); void preSimulation(btScalar timeStep);
void postSimulation(); void postSimulation();
protected:
void updateUpAxis(const glm::quat& rotation);
}; };
#endif // hifi_DynamicCharacterController_h #endif // hifi_DynamicCharacterController_h