-
Notifications
You must be signed in to change notification settings - Fork 214
/
Copy pathARKitFaceTrackingRemoteConnection.cs
215 lines (166 loc) · 6.24 KB
/
ARKitFaceTrackingRemoteConnection.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
using UnityEngine;
using UnityEngine.Networking.PlayerConnection;
using System.Text;
using UnityEngine.XR.iOS.Utils;
#if UNITY_EDITOR
using UnityEditor.Networking.PlayerConnection;
namespace UnityEngine.XR.iOS
{
public class ARKitFaceTrackingRemoteConnection : MonoBehaviour
{
[Header("AR FaceTracking Config Options")]
public bool enableLightEstimation = true;
[Header("Run Options")]
public bool resetTracking = true;
public bool removeExistingAnchors = true;
EditorConnection editorConnection ;
int currentPlayerID = -1;
string guimessage = "none";
Texture2D remoteScreenYTex;
Texture2D remoteScreenUVTex;
bool bTexturesInitialized;
// Use this for initialization
void Start () {
bTexturesInitialized = false;
editorConnection = EditorConnection.instance;
editorConnection.Initialize ();
editorConnection.RegisterConnection (PlayerConnected);
editorConnection.RegisterDisconnection (PlayerDisconnected);
editorConnection.Register (ConnectionMessageIds.updateCameraFrameMsgId, UpdateCameraFrame);
editorConnection.Register (ConnectionMessageIds.addFaceAnchorMsgeId, AddFaceAnchor);
editorConnection.Register (ConnectionMessageIds.updateFaceAnchorMsgeId, UpdateFaceAnchor);
editorConnection.Register (ConnectionMessageIds.removePlaneAnchorMsgeId, RemoveFaceAnchor);
editorConnection.Register (ConnectionMessageIds.screenCaptureYMsgId, ReceiveRemoteScreenYTex);
editorConnection.Register (ConnectionMessageIds.screenCaptureUVMsgId, ReceiveRemoteScreenUVTex);
}
void PlayerConnected(int playerID)
{
currentPlayerID = playerID;
}
void OnGUI()
{
if (!bTexturesInitialized)
{
if (currentPlayerID != -1) {
guimessage = "Connected to ARKit Remote device : " + currentPlayerID.ToString ();
if (GUI.Button (new Rect ((Screen.width / 2) - 200, (Screen.height / 2) - 200, 400, 100), "Start Remote ARKit FaceTracking Session"))
{
SendInitToPlayer ();
}
}
else
{
guimessage = "Please connect to player in the console menu";
}
GUI.Box (new Rect ((Screen.width / 2) - 200, (Screen.height / 2) + 100, 400, 50), guimessage);
}
}
void PlayerDisconnected(int playerID)
{
if (currentPlayerID == playerID) {
currentPlayerID = -1;
}
}
void OnDestroy()
{
#if UNITY_2017_1_OR_NEWER
if(editorConnection != null) {
editorConnection.DisconnectAll ();
}
#endif
}
void InitializeTextures(UnityARCamera camera)
{
int yWidth = camera.videoParams.yWidth;
int yHeight = camera.videoParams.yHeight;
int uvWidth = yWidth / 2;
int uvHeight = yHeight / 2;
if (remoteScreenYTex == null || remoteScreenYTex.width != yWidth || remoteScreenYTex.height != yHeight) {
if (remoteScreenYTex) {
Destroy (remoteScreenYTex);
}
remoteScreenYTex = new Texture2D (yWidth, yHeight, TextureFormat.R8, false, true);
}
if (remoteScreenUVTex == null || remoteScreenUVTex.width != uvWidth || remoteScreenUVTex.height != uvHeight) {
if (remoteScreenUVTex) {
Destroy (remoteScreenUVTex);
}
remoteScreenUVTex = new Texture2D (uvWidth, uvHeight, TextureFormat.RG16, false, true);
}
bTexturesInitialized = true;
}
void UpdateCameraFrame(MessageEventArgs mea)
{
serializableUnityARCamera serCamera = mea.data.Deserialize<serializableUnityARCamera> ();
UnityARCamera scamera = new UnityARCamera ();
scamera = serCamera;
InitializeTextures (scamera);
UnityARSessionNativeInterface.SetStaticCamera (scamera);
UnityARSessionNativeInterface.RunFrameUpdateCallbacks ();
}
void AddFaceAnchor(MessageEventArgs mea)
{
serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize<serializableUnityARFaceAnchor> ();
ARFaceAnchor arFaceAnchor = serFaceAnchor;
UnityARSessionNativeInterface.RunAddAnchorCallbacks (arFaceAnchor);
}
void UpdateFaceAnchor(MessageEventArgs mea)
{
serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize<serializableUnityARFaceAnchor> ();
ARFaceAnchor arFaceAnchor = serFaceAnchor;
UnityARSessionNativeInterface.RunUpdateAnchorCallbacks (arFaceAnchor);
}
void RemoveFaceAnchor(MessageEventArgs mea)
{
serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize<serializableUnityARFaceAnchor> ();
ARFaceAnchor arFaceAnchor = serFaceAnchor;
UnityARSessionNativeInterface.RunRemoveAnchorCallbacks (arFaceAnchor);
}
void ReceiveRemoteScreenYTex(MessageEventArgs mea)
{
if (!bTexturesInitialized)
return;
remoteScreenYTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data));
remoteScreenYTex.Apply ();
UnityARVideo arVideo = Camera.main.GetComponent<UnityARVideo>();
if (arVideo) {
arVideo.SetYTexure(remoteScreenYTex);
}
}
void ReceiveRemoteScreenUVTex(MessageEventArgs mea)
{
if (!bTexturesInitialized)
return;
remoteScreenUVTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data));
remoteScreenUVTex.Apply ();
UnityARVideo arVideo = Camera.main.GetComponent<UnityARVideo>();
if (arVideo) {
arVideo.SetUVTexure(remoteScreenUVTex);
}
}
void SendInitToPlayer()
{
//we're going to reuse ARSessionConfiguration and only use its lightestimation field.
serializableFromEditorMessage sfem = new serializableFromEditorMessage ();
sfem.subMessageId = SubMessageIds.editorInitARKitFaceTracking;
serializableARSessionConfiguration ssc = new serializableARSessionConfiguration (UnityARAlignment.UnityARAlignmentCamera, UnityARPlaneDetection.None, false, enableLightEstimation, true);
UnityARSessionRunOption roTracking = resetTracking ? UnityARSessionRunOption.ARSessionRunOptionResetTracking : 0;
UnityARSessionRunOption roAnchors = removeExistingAnchors ? UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors : 0;
sfem.arkitConfigMsg = new serializableARKitInit (ssc, roTracking | roAnchors);
SendToPlayer (ConnectionMessageIds.fromEditorARKitSessionMsgId, sfem);
}
void SendToPlayer(System.Guid msgId, byte[] data)
{
editorConnection.Send (msgId, data);
}
public void SendToPlayer(System.Guid msgId, object serializableObject)
{
byte[] arrayToSend = serializableObject.SerializeToByteArray ();
SendToPlayer (msgId, arrayToSend);
}
// Update is called once per frame
void Update () {
}
}
}
#endif