2014-03-28 02:50:40 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using DS4Library;
|
|
|
|
|
namespace DS4Control
|
|
|
|
|
{
|
|
|
|
|
class TPadModeSwitcher
|
|
|
|
|
{
|
|
|
|
|
List<ITouchpadBehaviour> modes = new List<ITouchpadBehaviour>();
|
|
|
|
|
public event EventHandler<DebugEventArgs> Debug = null;
|
|
|
|
|
private DS4Device device;
|
|
|
|
|
Int32 currentTypeInd = 0;
|
|
|
|
|
public TPadModeSwitcher(DS4Device device, int deviceID)
|
|
|
|
|
{
|
|
|
|
|
this.device = device;
|
2014-04-27 21:32:09 +02:00
|
|
|
|
//modes.Add(TouchpadDisabled.singleton);
|
|
|
|
|
modes.Add(new Mouse(deviceID, device));
|
|
|
|
|
//modes.Add(new ButtonMouse(deviceID, device));
|
|
|
|
|
//modes.Add(new MouseCursorOnly(deviceID));
|
|
|
|
|
//modes.Add(new DragMouse(deviceID));
|
2014-03-28 02:50:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void switchMode(int ind)
|
|
|
|
|
{
|
|
|
|
|
ITouchpadBehaviour currentMode = modes.ElementAt(currentTypeInd);
|
|
|
|
|
device.Touchpad.TouchButtonDown -= currentMode.touchButtonDown;
|
|
|
|
|
device.Touchpad.TouchButtonUp -= currentMode.touchButtonUp;
|
|
|
|
|
device.Touchpad.TouchesBegan -= currentMode.touchesBegan;
|
|
|
|
|
device.Touchpad.TouchesMoved -= currentMode.touchesMoved;
|
|
|
|
|
device.Touchpad.TouchesEnded -= currentMode.touchesEnded;
|
2014-03-29 06:29:08 +01:00
|
|
|
|
device.Touchpad.TouchUnchanged -= currentMode.touchUnchanged;
|
2014-03-28 02:50:40 +01:00
|
|
|
|
setMode(ind);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMode(int ind)
|
|
|
|
|
{
|
2014-04-27 21:32:09 +02:00
|
|
|
|
ITouchpadBehaviour tmode = modes.ElementAt(ind % modes.Count);
|
2014-03-28 02:50:40 +01:00
|
|
|
|
device.Touchpad.TouchButtonDown += tmode.touchButtonDown;
|
|
|
|
|
device.Touchpad.TouchButtonUp += tmode.touchButtonUp;
|
|
|
|
|
device.Touchpad.TouchesBegan += tmode.touchesBegan;
|
|
|
|
|
device.Touchpad.TouchesMoved += tmode.touchesMoved;
|
|
|
|
|
device.Touchpad.TouchesEnded += tmode.touchesEnded;
|
2014-03-29 06:29:08 +01:00
|
|
|
|
device.Touchpad.TouchUnchanged += tmode.touchUnchanged;
|
2014-03-28 02:50:40 +01:00
|
|
|
|
currentTypeInd = ind;
|
|
|
|
|
LogDebug("Touchpad mode for " + device.MacAddress + " is now " + tmode.ToString());
|
|
|
|
|
Log.LogToTray("Touchpad mode for " + device.MacAddress + " is now " + tmode.ToString());
|
2014-03-29 06:29:08 +01:00
|
|
|
|
Global.ControllerStatusChanged(this);
|
2014-03-28 02:50:40 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return modes.ElementAt(currentTypeInd).ToString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void previousMode()
|
|
|
|
|
{
|
|
|
|
|
int i = currentTypeInd - 1;
|
|
|
|
|
if (i == -1)
|
|
|
|
|
i = modes.Count - 1;
|
|
|
|
|
switchMode(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void nextMode()
|
|
|
|
|
{
|
|
|
|
|
int i = currentTypeInd + 1;
|
|
|
|
|
if (i == modes.Count)
|
|
|
|
|
i = 0;
|
|
|
|
|
switchMode(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LogDebug(string data)
|
|
|
|
|
{
|
|
|
|
|
if (Debug != null)
|
|
|
|
|
Debug(this, new DebugEventArgs(data));
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 21:32:09 +02:00
|
|
|
|
/*public ITouchpadBehaviour getCurrentMode()
|
2014-03-28 02:50:40 +01:00
|
|
|
|
{
|
|
|
|
|
return modes.ElementAt(currentTypeInd);
|
2014-04-27 21:32:09 +02:00
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
public ITouchpadBehaviour[] getAvailableModes()
|
|
|
|
|
{
|
|
|
|
|
return modes.ToArray();
|
2014-03-28 02:50:40 +01:00
|
|
|
|
}
|
2014-03-31 08:43:21 +02:00
|
|
|
|
|
|
|
|
|
public int getCurrentModeInt()
|
|
|
|
|
{
|
|
|
|
|
return currentTypeInd;
|
|
|
|
|
}
|
2014-03-28 02:50:40 +01:00
|
|
|
|
}
|
|
|
|
|
}
|