import android.graphics.Point;
import android.util.Log;
import android.view.MotionEvent;
import processing.core.PApplet;
/**
* PROCESSING AndroidMode 長押し検知 Sample
* @author MSLABO
* @version 1.1 2018/02
*/
public class Sketch extends PApplet {
private ManyPointInfo manyPointInfo;
/**
* Tapされた場所と時間を管理するクラス
*/
class PointInfo{
private int tId; //Tapインデックス
private Point tPoint; //Tap座標
private long tMillsLong; //Tap時間
private long tMillsStart; //Tap開始時間
private boolean longTapFlg; //長押しFLG
PointInfo(){
Clear();
}
void Clear(){
tId = -1;
tPoint = null;
tMillsStart = 0;
tMillsLong = 0;
longTapFlg = false;
}
void Copy(PointInfo _info){
tId = _info.tId;
if( _info.tPoint != null ){
tPoint = new Point(_info.tPoint.x, _info.tPoint.y);
} else {
tPoint = null;
}
tMillsStart = _info.tMillsStart;
tMillsLong = _info.tMillsLong;
longTapFlg = _info.longTapFlg;
}
void Set(int _index, float _x, float _y){
tId = _index;
tPoint = new Point((int)_x, (int)_y);
tMillsStart = System.currentTimeMillis();
tMillsLong = 0;
longTapFlg = false;
}
}
/**
* Tapされた場所を複数管理するクラス
*/
class ManyPointInfo {
final int MAX_POINT = 2; //マルチタップ対応指数
final long FIRE_MILLS = 600; //長押し閾値
final Object lock; //排他オブジェクト
PointInfo InfoList[] = new PointInfo[MAX_POINT];
ManyPointInfo(){
lock = new Object();
int i = 0;
//MAX_POINT 数の管理領域を作成する
while (i < MAX_POINT) {
InfoList[i] = new PointInfo();
i++;
}
}
void SetTapInfo(int _id, float _x, float _y ){
synchronized(lock) {
//空き領域を見つけたら、Tap開始情報をセットする
for (PointInfo info : InfoList) {
if (info.tId < 0) {
info.Set(_id, _x, _y);
break;
}
}
}
}
PointInfo GetTapInfo(int _index){
//指定位置のTap情報を複写して戻す
PointInfo retInfo = new PointInfo();
synchronized(lock) {
retInfo.Copy(InfoList[_index]);
}
return retInfo;
}
void ClearTapInfo(int _index){
//指定位置のTap情報を初期化する
synchronized(lock){
InfoList[_index].Clear();
}
}
int GetCount(){
//管理しているTap情報数を戻す
return InfoList.length;
}
//長押し判定関数
void CheckFire(int _id){
synchronized(lock){
for (PointInfo info : InfoList) {
if (info.tId == _id) {
//所定より長い時間Tapされていた場合、長押しとみなす
long NowTime = System.currentTimeMillis();
long TapTime = NowTime - info.tMillsStart;
if (TapTime > FIRE_MILLS) {
Log.d("AMTEST",
"LongTap Done ID=" + _id
+ " Time=" + TapTime);
info.longTapFlg = true;
info.tMillsLong = TapTime;
break;
}
//長押しではなかった指が離れた情報は初期化
info.Clear();
}
}
}
}
}
@Override
public void settings() {
//フルスクリーン
fullScreen();
}
@Override
public void setup() {
//文字描画準備
textAlign(LEFT,TOP);
textSize(12 * displayDensity);
//マルチタップで長押しを管理するためのクラス生成
manyPointInfo = new ManyPointInfo();
background( 200 );
}
@Override
public void draw() {
//長押しされた位置を描画する
for ( int i = 0; i < manyPointInfo.GetCount(); i++ ) {
PointInfo tapP = manyPointInfo.GetTapInfo(i);
if( tapP.longTapFlg){
fill(color(100,100,255));
ellipse(tapP.tPoint.x, tapP.tPoint.y, 30, 30);
fill(0);
text( tapP.tMillsLong,
tapP.tPoint.x + 10, tapP.tPoint.y + 10);
manyPointInfo.ClearTapInfo(i);
}
}
}
@Override
public boolean surfaceTouchEvent(MotionEvent motionEvent) {
int Action = motionEvent.getActionMasked();
int tIndex = motionEvent.getActionIndex();
int tId = motionEvent.getPointerId(tIndex);
if( Action == MotionEvent.ACTION_DOWN ||
Action == MotionEvent.ACTION_POINTER_DOWN){
//タッチ開始時、座標を記録する
manyPointInfo.SetTapInfo(tId,
motionEvent.getX(tIndex), motionEvent.getY(tIndex));
}
if( Action == MotionEvent.ACTION_POINTER_UP ||
Action == MotionEvent.ACTION_UP){
//タッチ終了時、長押しされたか判定する
manyPointInfo.CheckFire(tId);
}
return super.surfaceTouchEvent(motionEvent);
}
}