middleware/src/Tracking/Events/SwipeEventListener.cs
author bastiena
Thu, 15 Mar 2012 13:33:21 +0100
changeset 3 92f19af39024
parent 0 6fefd4afe506
permissions -rw-r--r--
Middleware : Swipe & Push & Jump(Experimental) Detectors ant events added Server modified for gesture detection TUIO Server C# Modified : Hand cursors redirected to /TUIO/3DCur channel New kind of OSC message created (TuioString) for gesture detection, using /TUIO/_siP channel. TUIO Processing Java Modified : Hand cursors redirected to /TUIO/3DCur channel New kind of OSC message created (TuioString) for gesture detection, using /TUIO/_siP channel. Front Processing : Mask added and modifications in the drawing process New front for gesture detection (just showing a text message in the mask for the moment)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace Trakers.Tracking.Events
{
    public class SwipeEventListener
    {
        /*
        * Méthode appelée lorsque on a l'événement : L'utilisateur a effectué un swipe.
        */
        public void ShowOnScreen(object o, SwipeEventArgs e)
        {
            //On l'indique dans le debug.
            e.debug.showSwipe();
            //e.debug.ExceptionLbl.Content = "SWIPE";
            //On notifie le serveur TUIO.
            //e.server.LeftHandQuit(o, e);
        }
    }
}