/************************************************************************************
Copyright : Copyright 2014 Oculus VR, LLC. All Rights reserved.
Licensed under the Oculus VR Rift SDK License Version 3.2 (the "License");
you may not use the Oculus VR Rift SDK except in compliance with the License,
which is provided at the time of installation or download, or which
otherwise accompanies this software in either electronic or hard copy form.
You may obtain a copy of the License at
http://www.oculusvr.com/licenses/LICENSE-3.2
Unless required by applicable law or agreed to in writing, the Oculus VR SDK
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
************************************************************************************/
using UnityEngine;
using System.Collections.Generic;
/// <summary>
/// Controls the player's movement in virtual reality.
/// </summary>
[RequireComponent(typeof(CharacterController))]
public class SamplePlayerController : OVRPlayerController
{
public OVRInput.Button runButton = OVRInput.Button.One;
public OVRInput.Button alternateRunButton = OVRInput.Button.PrimaryThumbstick;
public bool rotationSnap = false;
float PendingRotation = 0;
float SimulationRate_ = 60f;
private bool prevHatLeft_;
private bool prevHatRight_;
private OVRPose? InitialPose_;
private Vector3 MoveThrottle_ = Vector3.zero;
private float FallSpeed_ = 0.0f;
private float InitialYRotation_ = 0.0f;
public float axisDeadZone = 0.1f;
float rotationAnimation = 0;
float targetYaw = 0;
// float animationStartAngle;
bool animating;
void Awake()
{
Controller = gameObject.GetComponent<CharacterController>();
if (Controller == null)
Debug.LogWarning("OVRPlayerController: No CharacterController attached.");
// We use OVRCameraRig to set rotations to cameras,
// and to be influenced by rotation
List<OVRCameraRig> cameraRigs = new List<OVRCameraRig>();
foreach (Transform child in transform)
{
OVRCameraRig childCameraRig = child.gameObject.GetComponent<OVRCameraRig>();
if (childCameraRig != null)
{
cameraRigs.Add(childCameraRig);
}
}
if (cameraRigs.Count == 0)
Debug.LogWarning("OVRPlayerController: No OVRCameraRig attached.");
else if (cameraRigs.Count > 1)
Debug.LogWarning("OVRPlayerController: More then 1 OVRCameraRig attached.");
else
CameraRig = cameraRigs[0];
InitialYRotation_ = transform.rotation.eulerAngles.y;
}
protected new void Update()
{
if (useProfileData)
{
if (InitialPose_ == null)
{
InitialPose_ = new OVRPose()
{
position = CameraRig.transform.localPosition,
orientation = CameraRig.transform.localRotation
};
}
var p = CameraRig.transform.localPosition;
p.y = OVRManager.profile.eyeHeight - 0.5f * Controller.height;
p.z = OVRManager.profile.eyeDepth;
CameraRig.transform.localPosition = p;
}
else if (InitialPose_ != null)
{
CameraRig.transform.localPosition = InitialPose_.Value.position;
CameraRig.transform.localRotation = InitialPose_.Value.orientation;
InitialPose_ = null;
}
UpdateMovement();
Vector3 moveDirection = Vector3.zero;
float motorDamp = (1.0f + (Damping * SimulationRate_ * Time.deltaTime));
MoveThrottle_.x /= motorDamp;
MoveThrottle_.y = (MoveThrottle_.y > 0.0f) ? (MoveThrottle_.y / motorDamp) : MoveThrottle_.y;
MoveThrottle_.z /= motorDamp;
moveDirection += MoveThrottle_ * SimulationRate_ * Time.deltaTime;
// Gravity
if (Controller.isGrounded && FallSpeed_ <= 0)
FallSpeed_ = ((Physics.gravity.y * (GravityModifier * 0.002f)));
else
FallSpeed_ += ((Physics.gravity.y * (GravityModifier * 0.002f)) * SimulationRate_ * Time.deltaTime);
moveDirection.y += FallSpeed_ * SimulationRate_ * Time.deltaTime;
// Offset correction for uneven ground
float bumpUpOffset = 0.0f;
if (Controller.isGrounded && MoveThrottle_.y <= 0.001f)
{
bumpUpOffset = Mathf.Max(Controller.stepOffset, new Vector3(moveDirection.x, 0, moveDirection.z).magnitude);
moveDirection -= bumpUpOffset * Vector3.up;
}
Vector3 predictedXZ = Vector3.Scale((Controller.transform.localPosition + moveDirection), new Vector3(1, 0, 1));
// Move contoller
Controller.Move(moveDirection);
Vector3 actualXZ = Vector3.Scale(Controller.transform.localPosition, new Vector3(1, 0, 1));
if (predictedXZ != actualXZ)
MoveThrottle_ += (actualXZ - predictedXZ) / (SimulationRate_ * Time.deltaTime);
}
void OnEnable()
{
}
void OnDisable()
{
}
float AngleDifference(float a, float b)
{
float diff = (360 + a - b) % 360;
if (diff > 180)
diff -= 360;
return diff;
}
public override void UpdateMovement()
{
bool HaltUpdateMovement = false;
GetHaltUpdateMovement(ref HaltUpdateMovement);
if (HaltUpdateMovement)
return;
float MoveScaleMultiplier = 1;
GetMoveScaleMultiplier(ref MoveScaleMultiplier);
float RotationScaleMultiplier = 1;
GetRotationScaleMultiplier(ref RotationScaleMultiplier);
bool SkipMouseRotation = false;
GetSkipMouseRotation(ref SkipMouseRotation);
float MoveScale = 1.0f;
// No positional movement if we are in the air
if (!Controller.isGrounded)
MoveScale = 0.0f;
MoveScale *= SimulationRate_ * Time.deltaTime;
Quaternion playerDirection = ((HmdRotatesY) ? CameraRig.centerEyeAnchor.rotation : transform.rotation);
//remove any pitch + yaw components
playerDirection = Quaternion.Euler(0, playerDirection.eulerAngles.y, 0);
Vector3 euler = transform.rotation.eulerAngles;
Vector2 touchDir = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad);
bool stepLeft = false;
bool stepRight = false;
stepLeft = OVRInput.GetDown(OVRInput.Button.PrimaryShoulder) || Input.GetKeyDown(KeyCode.Q);
stepRight = OVRInput.GetDown(OVRInput.Button.SecondaryShoulder) || Input.GetKeyDown(KeyCode.E);
OVRInput.Controller activeController = OVRInput.GetActiveController();
if ((activeController == OVRInput.Controller.Touchpad)
|| (activeController == OVRInput.Controller.Remote))
{
stepLeft |= OVRInput.GetDown(OVRInput.Button.DpadLeft);
stepRight |= OVRInput.GetDown(OVRInput.Button.DpadRight);
}
else if ((activeController == OVRInput.Controller.LTrackedRemote)
|| (activeController == OVRInput.Controller.RTrackedRemote))
{
if (OVRInput.GetDown(OVRInput.Button.PrimaryTouchpad))
{
if ((touchDir.magnitude > 0.3f)
&& (Mathf.Abs(touchDir.x) > Mathf.Abs(touchDir.y)))
{
stepLeft |= (touchDir.x < 0.0f);
stepRight |= (touchDir.x > 0.0f);
}
}
}
float rotateInfluence = SimulationRate_ * Time.deltaTime * RotationAmount * RotationScaleMultiplier;
#if !UNITY_ANDROID
if (!SkipMouseRotation)
{
PendingRotation += Input.GetAxis("Mouse X") * rotateInfluence * 3.25f;
}
#endif
float rightAxisX = OVRInput.Get(OVRInput.Axis2D.SecondaryThumbstick).x;
if (Mathf.Abs(rightAxisX) < axisDeadZone)
rightAxisX = 0;
PendingRotation += rightAxisX * rotateInfluence;
if (rotationSnap)
{
if (Mathf.Abs(PendingRotation) > RotationRatchet)
{
if (PendingRotation > 0)
stepRight = true;
else
stepLeft = true;
PendingRotation -= Mathf.Sign(PendingRotation) * RotationRatchet;
}
}
else
{
euler.y += PendingRotation;
PendingRotation = 0;
}
if (rotationAnimation > 0 && animating)
{
float speed = Mathf.Max(rotationAnimation, 3);
float diff = AngleDifference(targetYaw, euler.y);
// float done = AngleDifference(euler.y, animationStartAngle);
euler.y += Mathf.Sign(diff) * speed * Time.deltaTime;
if ((AngleDifference(targetYaw, euler.y) < 0) != (diff < 0))
{
animating = false;
euler.y = targetYaw;
}
}
if (stepLeft ^ stepRight)
{
float change = stepRight ? RotationRatchet : - RotationRatchet;
if (rotationAnimation > 0)
{
targetYaw = (euler.y + change)60;
animating = true;
// animationStartAngle = euler.y;
}
else
{
euler.y += change;
}
}
float moveInfluence = SimulationRate_ * Time.deltaTime * Acceleration * 0.1f * MoveScale * MoveScaleMultiplier;
// Run!
if (OVRInput.Get(runButton) || OVRInput.Get(alternateRunButton) || Input.GetKey(KeyCode.LeftShift))
moveInfluence *= 2.0f;
float leftAxisX = OVRInput.Get(OVRInput.Axis2D.PrimaryThumbstick).x;
float leftAxisY = OVRInput.Get(OVRInput.Axis2D.PrimaryThumbstick).y;
if (activeController == OVRInput.Controller.Touchpad)
{
leftAxisY = OVRInput.Get(OVRInput.Axis2D.PrimaryTouchpad).y;
}
else if ((activeController == OVRInput.Controller.LTrackedRemote)
|| (activeController == OVRInput.Controller.RTrackedRemote))
{
if (OVRInput.Get(OVRInput.Button.PrimaryTouchpad))
{
if ((touchDir.magnitude > 0.3f)
&& (Mathf.Abs(touchDir.y) > Mathf.Abs(touchDir.x)))
{
leftAxisY = (touchDir.y > 0.0f) ? 1 : -1;
}
}
}
if (Mathf.Abs(leftAxisX) < axisDeadZone)
leftAxisX = 0;
if (Mathf.Abs(leftAxisY) < axisDeadZone)
leftAxisY = 0;
if (Input.GetKey(KeyCode.W) || Input.GetKey(KeyCode.UpArrow))
leftAxisY = 1;
if (Input.GetKey(KeyCode.A) || Input.GetKey(KeyCode.LeftArrow))
leftAxisX = -1;
if (Input.GetKey(KeyCode.D) || Input.GetKey(KeyCode.RightArrow))
leftAxisX = 1;
if (Input.GetKey(KeyCode.S) || Input.GetKey(KeyCode.DownArrow))
leftAxisY = -1;
if (activeController == OVRInput.Controller.Remote)
{
if (OVRInput.Get(OVRInput.Button.DpadUp))
leftAxisY = 1;
else if (OVRInput.Get(OVRInput.Button.DpadDown))
leftAxisY = -1;
}
if (leftAxisY > 0.0f)
MoveThrottle_ += leftAxisY
* (playerDirection * (Vector3.forward * moveInfluence));
if (leftAxisY < 0.0f)
MoveThrottle_ += Mathf.Abs(leftAxisY)
* (playerDirection * (Vector3.back * moveInfluence));
if (leftAxisX < 0.0f)
MoveThrottle_ += Mathf.Abs(leftAxisX)
* (playerDirection * (Vector3.left * moveInfluence));
if (leftAxisX > 0.0f)
MoveThrottle_ += leftAxisX
* (playerDirection * (Vector3.right * moveInfluence));
transform.rotation = Quaternion.Euler(euler);
}
public void SetRotationSnap(bool value)
{
rotationSnap = value;
PendingRotation = 0;
}
public void SetRotationAnimation(float value)
{
rotationAnimation = value;
PendingRotation = 0;
}
/// <summary>
/// Resets the player look rotation when the device orientation is reset.
/// </summary>
public new void ResetOrientation()
{
if (HmdResetsY)
{
Vector3 euler = transform.rotation.eulerAngles;
euler.y = InitialYRotation_;
transform.rotation = Quaternion.Euler(euler);
}
}
void Reset()
{
// Prefer to not reset Y when HMD position reset
HmdResetsY = false;
}
}
예시로 이게 VR 캐릭터 예제로 나와있는 코드인데 대략 350줄 되는데 이정도도 분석하려니 머리가 터지려한다..
그냥 평생 백수로 살아야하는건가?
주석을 한글로 바꿔보셈
별거 없는뎁;;
공부하자
님은 노력하면 된다라는 믿음을 가지는게 먼저일듯
그런식으로 절망하면 뭘해도 안돼요...
아하 그렇구마만!!! 공부하자!!! 오늘부터 공부할거니간 말리지 마세요
주석 달아가면서 추적하다보면 됨