123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- using System.Collections.Generic;
- using UnityEngine;
- using Kinect = Windows.Kinect;
- public class BodySourceView : MonoBehaviour
- {
- public Transform[] joints;
- public GameObject BodySourceManager;
- public Transform cam;
- public PlayerReplay playerReplay;
- public ModeController modeController;
- public GameObject body;
- public bool wristLeftLate;
- public bool wristRightLate;
- private Dictionary<ulong, GameObject> _Bodies = new Dictionary<ulong, GameObject>();
- private BodySourceManager _BodyManager;
- private Dictionary<Kinect.JointType, Kinect.JointType> _BoneMap = new Dictionary<Kinect.JointType, Kinect.JointType>()
- {
- { Kinect.JointType.FootLeft, Kinect.JointType.AnkleLeft },
- { Kinect.JointType.AnkleLeft, Kinect.JointType.KneeLeft },
- { Kinect.JointType.KneeLeft, Kinect.JointType.HipLeft },
- { Kinect.JointType.HipLeft, Kinect.JointType.SpineBase },
- { Kinect.JointType.FootRight, Kinect.JointType.AnkleRight },
- { Kinect.JointType.AnkleRight, Kinect.JointType.KneeRight },
- { Kinect.JointType.KneeRight, Kinect.JointType.HipRight },
- { Kinect.JointType.HipRight, Kinect.JointType.SpineBase },
- { Kinect.JointType.HandTipLeft, Kinect.JointType.HandLeft },
- { Kinect.JointType.ThumbLeft, Kinect.JointType.HandLeft },
- { Kinect.JointType.HandLeft, Kinect.JointType.WristLeft },
- { Kinect.JointType.WristLeft, Kinect.JointType.ElbowLeft },
- { Kinect.JointType.ElbowLeft, Kinect.JointType.ShoulderLeft },
- { Kinect.JointType.ShoulderLeft, Kinect.JointType.SpineShoulder },
- { Kinect.JointType.HandTipRight, Kinect.JointType.HandRight },
- { Kinect.JointType.ThumbRight, Kinect.JointType.HandRight },
- { Kinect.JointType.HandRight, Kinect.JointType.WristRight },
- { Kinect.JointType.WristRight, Kinect.JointType.ElbowRight },
- { Kinect.JointType.ElbowRight, Kinect.JointType.ShoulderRight },
- { Kinect.JointType.ShoulderRight, Kinect.JointType.SpineShoulder },
- { Kinect.JointType.SpineBase, Kinect.JointType.SpineMid },
- { Kinect.JointType.SpineMid, Kinect.JointType.SpineShoulder },
- { Kinect.JointType.SpineShoulder, Kinect.JointType.Neck },
- { Kinect.JointType.Neck, Kinect.JointType.Head },
- };
- void Update()
- {
- if (BodySourceManager == null)
- {
- return;
- }
- _BodyManager = BodySourceManager.GetComponent<BodySourceManager>();
- if (_BodyManager == null)
- {
- return;
- }
- Kinect.Body[] data = _BodyManager.GetData();
- if (data == null)
- {
- return;
- }
- List<ulong> trackedIds = new List<ulong>();
- foreach (var body in data)
- {
- if (body == null)
- {
- continue;
- }
- if (body.IsTracked)
- {
- trackedIds.Add(body.TrackingId);
- }
- }
- List<ulong> knownIds = new List<ulong>(_Bodies.Keys);
- // First delete untracked bodies
- foreach (ulong trackingId in knownIds)
- {
- if (!trackedIds.Contains(trackingId))
- {
- Destroy(_Bodies[trackingId]);
- _Bodies.Remove(trackingId);
- }
- }
- foreach (var body in data)
- {
- if (body == null)
- {
- continue;
- }
- if (body.IsTracked)
- {
- if (!_Bodies.ContainsKey(body.TrackingId))
- {
- _Bodies[body.TrackingId] = CreateBodyObject(body.TrackingId);
- }
- RefreshBodyObject(body, _Bodies[body.TrackingId]);
- }
- }
- }
- private GameObject CreateBodyObject(ulong id)
- {
- body = new GameObject("Body:" + id);
- body.transform.parent = gameObject.transform;
- for (Kinect.JointType jt = Kinect.JointType.SpineBase; jt <= Kinect.JointType.ThumbRight; jt++)
- {
- GameObject jointObj = GameObject.CreatePrimitive(PrimitiveType.Cube);
- // Give WristLeft and WristRight rigidbody
- if (jt == Kinect.JointType.WristLeft)
- {
- jointObj.tag = "WristLeft";
- Rigidbody rb = jointObj.AddComponent<Rigidbody>();
- rb.useGravity = false;
- rb.isKinematic = true;
- }
- else if (jt == Kinect.JointType.WristRight)
- {
- jointObj.tag = "WristRight";
- Rigidbody rb = jointObj.AddComponent<Rigidbody>();
- rb.useGravity = false;
- rb.isKinematic = true;
- }
- LineRenderer lr = jointObj.AddComponent<LineRenderer>();
- //lr.SetVertexCount(2);
- lr.positionCount = 2;
- //lr.SetWidth(0.05f, 0.05f);
- lr.startWidth = 0.05f;
- lr.endWidth = 0.05f;
- Material whiteDiffuseMat = new Material(Shader.Find("Sprites/Default"));
- whiteDiffuseMat.color = new Color(1, 1, 1, 0.5f);
- lr.material = whiteDiffuseMat;
- jointObj.transform.localScale = new Vector3(0.05f, 0.05f, 0.05f);
- jointObj.name = jt.ToString();
- jointObj.transform.parent = body.transform;
- }
- return body;
- }
- private void RefreshBodyObject(Kinect.Body body, GameObject bodyObject)
- {
- Vector3[] initJoints = new Vector3[25];
- for (Kinect.JointType jt = Kinect.JointType.SpineBase; jt <= Kinect.JointType.ThumbRight; jt++)
- {
- Kinect.Joint sourceJoint = body.Joints[jt];
- initJoints[(int)jt] = GetVector3FromJoint(sourceJoint);
- }
- HelperScript.SetPlayerJoints(initJoints);
- Vector3[] rescaledJoints = HelperScript.RescaleJoints(initJoints);
- for (Kinect.JointType jt = Kinect.JointType.SpineBase; jt <= Kinect.JointType.ThumbRight; jt++)
- {
- Kinect.Joint sourceJoint = body.Joints[jt];
- Kinect.Joint? targetJoint = null;
- if (_BoneMap.ContainsKey(jt))
- {
- targetJoint = body.Joints[_BoneMap[jt]];
- }
- Transform jointObj = bodyObject.transform.Find(jt.ToString());
- //jointObj.localPosition = GetVector3FromJoint(sourceJoint);
- jointObj.localPosition = rescaledJoints[(int)jt];
- if (jt == Kinect.JointType.Head)
- {
- // Make head joint invisible
- jointObj.GetComponent<Renderer>().enabled = false;
- }
- if (jt == Kinect.JointType.Neck)
- {
- if (modeController.perspective == ModeController.Perspective.FirstPersonPerspective)
- {
- cam.position = new Vector3(jointObj.position.x, jointObj.position.y + 0.05f, jointObj.position.z - 0.05f);
- jointObj.GetComponent<Renderer>().enabled = false;
- }
- else
- {
- cam.position = new Vector3(jointObj.position.x, jointObj.position.y + 0.1f, jointObj.position.z + 0.7f);
- }
- }
- // Make these joints invisible
- if (jt == Kinect.JointType.ThumbLeft || jt == Kinect.JointType.ThumbRight
- || jt == Kinect.JointType.HandLeft || jt == Kinect.JointType.HandRight
- || jt == Kinect.JointType.HandTipLeft || jt == Kinect.JointType.HandTipRight)
- {
- jointObj.GetComponent<Renderer>().enabled = false;
- }
- LineRenderer lr = jointObj.GetComponent<LineRenderer>();
- if (targetJoint.HasValue && jt != Kinect.JointType.Neck && jt != Kinect.JointType.ThumbLeft && jt != Kinect.JointType.ThumbRight
- && jt != Kinect.JointType.HandLeft && jt != Kinect.JointType.HandRight
- && jt != Kinect.JointType.HandTipLeft && jt != Kinect.JointType.HandTipRight) // Do not make LineRenderer for these joints
- {
- lr.SetPosition(0, jointObj.localPosition);
- //lr.SetPosition(1, GetVector3FromJoint(targetJoint.Value));
- lr.SetPosition(1, rescaledJoints[(int)_BoneMap[jt]]);
- // Coloring the line renderer
- //lr.SetColors(GetColorForState(sourceJoint.TrackingState), GetColorForState(targetJoint.Value.TrackingState));
- //lr.startColor = GetColorForState(sourceJoint.TrackingState);
- //lr.endColor = GetColorForState(targetJoint.Value.TrackingState);
- }
- else
- {
- lr.enabled = false;
- }
- if (modeController.perspective == ModeController.Perspective.FirstPersonPerspective && jt == Kinect.JointType.SpineShoulder)
- {
- lr.enabled = false;
- }
- // Record joints to PlayerReplay.cs
- playerReplay.joints[(int)jt] = jointObj;
- }
- }
- private static Color GetColorForState(Kinect.TrackingState state)
- {
- switch (state)
- {
- case Kinect.TrackingState.Tracked:
- return Color.green;
- case Kinect.TrackingState.Inferred:
- return Color.red;
- default:
- return Color.black;
- }
- }
- private Vector3 GetVector3FromJoint(Kinect.Joint joint)
- {
- //return new Vector3(joint.Position.X * -10, joint.Position.Y * 10, joint.Position.Z * 10);
- return new Vector3(joint.Position.X * -1, joint.Position.Y, joint.Position.Z);
- }
- private Quaternion ConvertKinectOrientationToUnity(Kinect.Vector4 orientation)
- {
- Quaternion orientationUnity;
- orientationUnity.x = -orientation.X;
- orientationUnity.y = orientation.Y;
- orientationUnity.z = orientation.Z;
- orientationUnity.w = orientation.W;
- return orientationUnity;
- }
- }
|