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
|
// -----------------------------------------------------------------------------
// File: touch_input.ss
// Description: touch input plugin (Debug Mode)
// Author: Alexandre Martins <http://opensurge2d.org>
// License: MIT
// -----------------------------------------------------------------------------
/*
This plugin handles Touch Input in the Debug Mode. You should use this plugin
whenever you need to accept touch input. Use it as in this example:
object "Debug Mode - My Touch Input Test" is "debug-mode-plugin"
{
fun onLoad(debugMode)
{
touchInput = debugMode.plugin("Debug Mode - Touch Input");
touchInput.subscribe(this);
}
fun onUnload(debugMode)
{
touchInput = debugMode.plugin("Debug Mode - Touch Input");
touchInput.unsubscribe(this);
}
fun onTouchBegin(touch)
{
Console.print("TOUCH BEGIN");
print(touch);
}
fun onTouchEnd(touch)
{
Console.print("TOUCH END");
print(touch);
}
fun onTouchMove(touch)
{
Console.print("TOUCH MOVE");
print(touch);
}
fun onTouchStationary(touch)
{
Console.print("TOUCH STATIONARY");
print(touch);
}
fun print(touch)
{
Console.print("");
Console.print("id: " + touch.id); // a number that identifies the touch / finger
Console.print("phase: " + touch.phase); // began | moved | stationary | ended
Console.print("position: " + touch.position); // given in screen space
Console.print("initialPosition: " + touch.initialPosition); // given in screen space
Console.print("deltaPosition: " + touch.deltaPosition); // given in screen space
Console.print("deltaTime: " + touch.deltaTime); // given in seconds
}
}
You can also query the touch input directly, without subscribing to it:
object "Debug Mode - My Touch Input Test 2" is "debug-mode-plugin"
{
touchInput = null;
state "main"
{
for(i = 0; i < touchInput.count; i++) {
touch = touchInput.get(i);
print(touch);
}
// you may optionally enable/disable touch input as follows:
// touchInput.enabled = true;
// touchInput.enabled = false;
}
fun onLoad(debugMode)
{
touchInput = debugMode.plugin("Debug Mode - Touch Input");
}
fun onUnload(debugMode)
{
}
fun print(touch)
{
Console.print("");
Console.print("id: " + touch.id); // a number that identifies the touch / finger
Console.print("phase: " + touch.phase); // "began" | "moved" | "stationary" | "ended"
Console.print("position: " + touch.position); // Vector2 given in screen space
Console.print("initialPosition: " + touch.initialPosition); // Vector2 given in screen space
Console.print("deltaPosition: " + touch.deltaPosition); // Vector2 given in screen space
Console.print("deltaTime: " + touch.deltaTime); // number (seconds)
}
}
Note: this is a temporary implementation that uses the Mouse, because actual
touch input is yet to be implemented in the SurgeScript API. This plugin will
be adapted to actual touch input in the future.
*/
using SurgeEngine.Input.Mouse;
using SurgeEngine.Vector2;
object "Debug Mode - Touch Input" is "debug-mode-plugin", "debug-mode-observable"
{
touchArray = [];
observable = spawn("Debug Mode - Observable");
//movementThreshold = 0.0; // generates tapping issues on some Samsung devices
movementThreshold = 0.9;
state "main"
{
if(Mouse.buttonDown("left")) {
touch = Touch("began", Mouse.position, Mouse.position, Mouse.position);
touchArray.push(touch);
observable.notify(touch);
state = "touching";
}
}
state "touching"
{
if(Mouse.buttonDown("left")) {
moved = (Mouse.position.distanceTo(touchArray[0].position) > movementThreshold);
phase = moved ? "moved" : "stationary";
touch = Touch(phase, Mouse.position, touchArray[0].position, touchArray[0].initialPosition);
touchArray[0] = touch;
observable.notify(touch);
}
else {
touch = Touch("ended", Mouse.position, touchArray[0].position, touchArray[0].initialPosition);
touchArray[0] = touch;
observable.notify(touch);
state = "cleared";
}
}
state "cleared"
{
touchArray.clear();
state = "main";
}
state "disabled"
{
touchArray.clear();
}
fun get(touchId)
{
if(touchId >= 0 && touchId < touchArray.length)
return touchArray[touchId];
return null;
}
fun get_count()
{
return touchArray.length;
}
fun get_enabled()
{
return state != "disabled";
}
fun set_enabled(enabled)
{
if(enabled) {
if(state == "disabled")
state = "main";
}
else {
state = "disabled";
}
}
fun subscribe(observer)
{
observable.subscribe(observer);
}
fun unsubscribe(observer)
{
observable.unsubscribe(observer);
}
fun onNotifyObserver(observer, touch)
{
if(touch.phase == "moved") {
if(observer.hasFunction("onTouchMove"))
observer.onTouchMove(touch);
}
else if(touch.phase == "began") {
if(observer.hasFunction("onTouchBegin"))
observer.onTouchBegin(touch);
}
else if(touch.phase == "ended") {
if(observer.hasFunction("onTouchEnd"))
observer.onTouchEnd(touch);
}
else if(touch.phase == "stationary") {
if(observer.hasFunction("onTouchStationary"))
observer.onTouchStationary(touch);
}
}
fun Touch(phase, position, previousPosition, initialPosition)
{
return spawn("Debug Mode - Touch").init(phase, position, previousPosition, initialPosition);
}
}
object "Debug Mode - Touch"
{
id = 0;
phase = "began"; // "began" | "moved" | "stationary" | "ended"
initialPosition = Vector2.zero;
previousPosition = Vector2.zero;
currentPosition = Vector2.zero;
deltaPosition = null;
deltaTime = 0.0;
fun get_id()
{
return id;
}
fun get_phase()
{
return phase;
}
fun get_position()
{
return currentPosition;
}
fun get_initialPosition()
{
return initialPosition;
}
fun get_deltaPosition()
{
return deltaPosition || (deltaPosition = currentPosition.minus(previousPosition));
}
fun get_deltaTime()
{
return deltaTime;
}
fun init(currPhase, currPos, prevPos, initialPos)
{
id = 0;
deltaPosition = null;
deltaTime = Time.delta;
phase = currPhase;
currentPosition = currPos.scaledBy(1); // immutable
previousPosition = prevPos.scaledBy(1);
initialPosition = initialPos.scaledBy(1);
return this;
}
}
|