123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- using BBIWARG.Input.InputHandling;
- using BBIWARG.Recognition.PalmRecognition;
- using BBIWARG.Recognition.TouchRecognition;
- using BBIWARG.Utility;
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Net;
- using System.Net.Sockets;
- using TUIO;
- namespace BBIWARG.TUIO
- {
-
-
-
- internal class TuioCommunicator
- {
-
-
-
- private TuioServer server;
-
-
-
- private Dictionary<int, TuioCursor> tcursors;
-
-
-
- private Dictionary<int, List<TuioObject>> tobjects;
-
-
-
-
-
- public TuioCommunicator(string host, int port)
- {
- server = new TuioServer(host, port);
- tcursors = new Dictionary<int, TuioCursor>();
- tobjects = new Dictionary<int, List<TuioObject>>();
- }
-
-
-
-
-
-
- public static bool tryParseIPAddress(String ipIn, out String ipOut)
- {
- IPAddress ipAddress;
- bool result = IPAddress.TryParse(ipIn, out ipAddress) && ipAddress.AddressFamily == AddressFamily.InterNetwork;
- if (result)
- ipOut = ipAddress.ToString();
- else
- ipOut = null;
- return result;
- }
-
-
-
-
-
-
- public static bool tryParsePort(String portIn, out Int16 portOut)
- {
- return Int16.TryParse(portIn, out portOut);
- }
-
-
-
- public void close()
- {
- server.close();
- }
-
-
-
-
-
- public void handleNewFrameData(object sender, NewProcessedFrameEventArgs e)
- {
- server.initFrame();
- FrameData frameData = e.FrameData;
- lock (frameData)
- {
- if (frameData.ResetFlag)
- reset();
- foreach (TouchEvent te in frameData.TouchEvents)
- {
- switch (te.Type)
- {
- case TouchEventType.Down:
- TuioCursor tcur = server.addTuioCursor(te.Touch.RelativePosition.X, te.Touch.RelativePosition.Y);
- tcursors.Add(te.Touch.TrackID, tcur);
- break;
- case TouchEventType.Move:
- server.updateTuioCursor(tcursors[te.Touch.TrackID], te.Touch.RelativePosition.X, te.Touch.RelativePosition.Y);
- break;
- case TouchEventType.Up:
- server.removeTuioCursor(tcursors[te.Touch.TrackID]);
- tcursors.Remove(te.Touch.TrackID);
- break;
- }
- }
- }
- server.commitFrame();
- }
-
-
-
- public void reset()
- {
- foreach (int id in tcursors.Keys)
- server.removeTuioCursor(tcursors[id]);
- tcursors.Clear();
- foreach (int id in tobjects.Keys)
- foreach (TuioObject tobj in tobjects[id])
- server.removeTuioObject(tobj);
- tobjects.Clear();
- }
- }
- }
|