forked from TouchScript/TouchScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTuioInput.cs
More file actions
402 lines (334 loc) · 11.4 KB
/
TuioInput.cs
File metadata and controls
402 lines (334 loc) · 11.4 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
/*
* @author Valentin Simonov / http://va.lent.in/
*/
using System;
using System.Collections.Generic;
using TUIOsharp;
using TUIOsharp.DataProcessors;
using TUIOsharp.Entities;
using UnityEngine;
namespace TouchScript.InputSources
{
/// <summary>
/// Processes TUIO 1.1 input.
/// </summary>
[AddComponentMenu("TouchScript/Input Sources/TUIO Input")]
public sealed class TuioInput : InputSource
{
#region Constants
/// <summary>
/// Type of TUIO input object.
/// </summary>
[Flags]
public enum InputType
{
/// <summary>
/// Touch/pointer.
/// </summary>
Cursors = 1 << 0,
/// <summary>
/// Shape.
/// </summary>
Blobs = 1 << 1,
/// <summary>
/// Tagged object.
/// </summary>
Objects = 1 << 2
}
#endregion
#region Public properties
/// <summary>
/// Port to listen to.
/// </summary>
public int TuioPort
{
get { return tuioPort; }
set
{
if (tuioPort == value) return;
tuioPort = value;
connect();
}
}
/// <summary>
/// What input types should the input source listen to.
/// </summary>
public InputType SupportedInputs
{
get { return supportedInputs; }
set
{
if (supportedInputs == value) return;
supportedInputs = value;
updateInputs();
}
}
/// <summary>
/// List of TUIO object ids to tag mappings.
/// </summary>
public IList<TuioObjectMapping> TuioObjectMappings
{
get { return tuioObjectMappings; }
}
/// <summary>
/// Tags for new cursors.
/// </summary>
public Tags CursorTags
{
get { return cursorTags; }
}
/// <summary>
/// Tags for new blobs.
/// </summary>
public Tags BlobTags
{
get { return blobTags; }
}
/// <summary>
/// Tags for new objects.
/// </summary>
public Tags ObjectTags
{
get { return objectTags; }
}
#endregion
#region Private variables
[SerializeField]
private int tuioPort = 3333;
[SerializeField]
private InputType supportedInputs = InputType.Cursors | InputType.Blobs | InputType.Objects;
[SerializeField]
private List<TuioObjectMapping> tuioObjectMappings = new List<TuioObjectMapping>();
[SerializeField]
private Tags cursorTags = new Tags(new List<string>() {Tags.SOURCE_TUIO, Tags.INPUT_TOUCH});
[SerializeField]
private Tags blobTags = new Tags(new List<string>() {Tags.SOURCE_TUIO, Tags.INPUT_TOUCH});
[SerializeField]
private Tags objectTags = new Tags(new List<string>() {Tags.SOURCE_TUIO, Tags.INPUT_OBJECT});
private TuioServer server;
private CursorProcessor cursorProcessor;
private ObjectProcessor objectProcessor;
private BlobProcessor blobProcessor;
private Dictionary<TuioCursor, ITouch> cursorToInternalId = new Dictionary<TuioCursor, ITouch>();
private Dictionary<TuioBlob, ITouch> blobToInternalId = new Dictionary<TuioBlob, ITouch>();
private Dictionary<TuioObject, ITouch> objectToInternalId = new Dictionary<TuioObject, ITouch>();
private int screenWidth;
private int screenHeight;
#endregion
#region Unity
/// <inheritdoc />
protected override void OnEnable()
{
base.OnEnable();
cursorProcessor = new CursorProcessor();
cursorProcessor.CursorAdded += OnCursorAdded;
cursorProcessor.CursorUpdated += OnCursorUpdated;
cursorProcessor.CursorRemoved += OnCursorRemoved;
blobProcessor = new BlobProcessor();
blobProcessor.BlobAdded += OnBlobAdded;
blobProcessor.BlobUpdated += OnBlobUpdated;
blobProcessor.BlobRemoved += OnBlobRemoved;
objectProcessor = new ObjectProcessor();
objectProcessor.ObjectAdded += OnObjectAdded;
objectProcessor.ObjectUpdated += OnObjectUpdated;
objectProcessor.ObjectRemoved += OnObjectRemoved;
connect();
}
/// <inheritdoc />
protected override void Update()
{
base.Update();
screenWidth = Screen.width;
screenHeight = Screen.height;
}
/// <inheritdoc />
protected override void OnDisable()
{
disconnect();
base.OnDisable();
}
#endregion
#region Private functions
private void connect()
{
if (!Application.isPlaying) return;
if (server != null) disconnect();
server = new TuioServer(TuioPort);
server.Connect();
updateInputs();
}
private void disconnect()
{
if (server != null)
{
server.RemoveAllDataProcessors();
server.Disconnect();
server = null;
}
foreach (var i in cursorToInternalId)
{
cancelTouch(i.Value.Id);
}
}
private void updateInputs()
{
if (server == null) return;
if ((supportedInputs & InputType.Cursors) != 0) server.AddDataProcessor(cursorProcessor);
else server.RemoveDataProcessor(cursorProcessor);
if ((supportedInputs & InputType.Blobs) != 0) server.AddDataProcessor(blobProcessor);
else server.RemoveDataProcessor(blobProcessor);
if ((supportedInputs & InputType.Objects) != 0) server.AddDataProcessor(objectProcessor);
else server.RemoveDataProcessor(objectProcessor);
}
private void updateBlobProperties(ITouch touch, TuioBlob blob)
{
var props = touch.Properties;
props["Angle"] = blob.Angle;
props["Width"] = blob.Width;
props["Height"] = blob.Height;
props["Area"] = blob.Area;
props["RotationVelocity"] = blob.RotationVelocity;
props["RotationAcceleration"] = blob.RotationAcceleration;
}
private void updateObjectProperties(ITouch touch, TuioObject obj)
{
var props = touch.Properties;
props["Angle"] = obj.Angle;
props["ObjectId"] = obj.ClassId;
props["RotationVelocity"] = obj.RotationVelocity;
props["RotationAcceleration"] = obj.RotationAcceleration;
}
private string getTagById(int id)
{
foreach (var tuioObjectMapping in tuioObjectMappings)
{
if (tuioObjectMapping.Id == id) return tuioObjectMapping.Tag;
}
return null;
}
#endregion
#region Event handlers
private void OnCursorAdded(object sender, TuioCursorEventArgs e)
{
var entity = e.Cursor;
lock (this)
{
var x = entity.X * screenWidth;
var y = (1 - entity.Y) * screenHeight;
cursorToInternalId.Add(entity, beginTouch(new Vector2(x, y), new Tags(CursorTags)));
}
}
private void OnCursorUpdated(object sender, TuioCursorEventArgs e)
{
var entity = e.Cursor;
lock (this)
{
ITouch touch;
if (!cursorToInternalId.TryGetValue(entity, out touch)) return;
var x = entity.X * screenWidth;
var y = (1 - entity.Y) * screenHeight;
moveTouch(touch.Id, new Vector2(x, y));
}
}
private void OnCursorRemoved(object sender, TuioCursorEventArgs e)
{
var entity = e.Cursor;
lock (this)
{
ITouch touch;
if (!cursorToInternalId.TryGetValue(entity, out touch)) return;
cursorToInternalId.Remove(entity);
endTouch(touch.Id);
}
}
private void OnBlobAdded(object sender, TuioBlobEventArgs e)
{
var entity = e.Blob;
lock (this)
{
var x = entity.X * screenWidth;
var y = (1 - entity.Y) * screenHeight;
var touch = beginTouch(new Vector2(x, y), new Tags(BlobTags));
updateBlobProperties(touch, entity);
blobToInternalId.Add(entity, touch);
}
}
private void OnBlobUpdated(object sender, TuioBlobEventArgs e)
{
var entity = e.Blob;
lock (this)
{
ITouch touch;
if (!blobToInternalId.TryGetValue(entity, out touch)) return;
var x = entity.X * screenWidth;
var y = (1 - entity.Y) * screenHeight;
moveTouch(touch.Id, new Vector2(x, y));
updateBlobProperties(touch, entity);
}
}
private void OnBlobRemoved(object sender, TuioBlobEventArgs e)
{
var entity = e.Blob;
lock (this)
{
ITouch touch;
if (!blobToInternalId.TryGetValue(entity, out touch)) return;
blobToInternalId.Remove(entity);
endTouch(touch.Id);
}
}
private void OnObjectAdded(object sender, TuioObjectEventArgs e)
{
var entity = e.Object;
lock (this)
{
var x = entity.X * screenWidth;
var y = (1 - entity.Y) * screenHeight;
var touch = beginTouch(new Vector2(x, y), new Tags(ObjectTags));
updateObjectProperties(touch, entity);
objectToInternalId.Add(entity, touch);
touch.Tags.AddTag(getTagById(entity.ClassId));
}
}
private void OnObjectUpdated(object sender, TuioObjectEventArgs e)
{
var entity = e.Object;
lock (this)
{
ITouch touch;
if (!objectToInternalId.TryGetValue(entity, out touch)) return;
var x = entity.X * screenWidth;
var y = (1 - entity.Y) * screenHeight;
moveTouch(touch.Id, new Vector2(x, y));
updateObjectProperties(touch, entity);
}
}
private void OnObjectRemoved(object sender, TuioObjectEventArgs e)
{
var entity = e.Object;
lock (this)
{
ITouch touch;
if (!objectToInternalId.TryGetValue(entity, out touch)) return;
objectToInternalId.Remove(entity);
endTouch(touch.Id);
}
}
#endregion
}
/// <summary>
/// TUIO object id to tag mapping value object.
/// </summary>
[Serializable]
public class TuioObjectMapping
{
/// <summary>
/// TUIO object id.
/// </summary>
public int Id;
/// <summary>
/// Tag to attach to this object.
/// </summary>
public string Tag;
}
}