2022-02-20 13:09:39 +01:00
|
|
|
package juloo.keyboard2;
|
|
|
|
|
|
|
|
import android.os.Handler;
|
|
|
|
import android.os.Message;
|
|
|
|
import java.util.ArrayList;
|
2024-01-26 00:17:51 +01:00
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.Iterator;
|
|
|
|
import java.util.NoSuchElementException;
|
2022-02-20 13:09:39 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Manage pointers (fingers) on the screen and long presses.
|
|
|
|
* Call back to IPointerEventHandler.
|
|
|
|
*/
|
|
|
|
public final class Pointers implements Handler.Callback
|
|
|
|
{
|
|
|
|
private Handler _keyrepeat_handler;
|
|
|
|
private ArrayList<Pointer> _ptrs = new ArrayList<Pointer>();
|
|
|
|
private IPointerEventHandler _handler;
|
|
|
|
private Config _config;
|
|
|
|
|
|
|
|
public Pointers(IPointerEventHandler h, Config c)
|
|
|
|
{
|
|
|
|
_keyrepeat_handler = new Handler(this);
|
|
|
|
_handler = h;
|
|
|
|
_config = c;
|
|
|
|
}
|
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
/** Return the list of modifiers currently activated. */
|
|
|
|
public Modifiers getModifiers()
|
2022-04-30 23:36:17 +02:00
|
|
|
{
|
2022-06-05 01:38:42 +02:00
|
|
|
return getModifiers(false);
|
2022-04-30 23:36:17 +02:00
|
|
|
}
|
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
/** When [skip_latched] is true, don't take flags of latched keys into account. */
|
|
|
|
private Modifiers getModifiers(boolean skip_latched)
|
2022-02-20 13:09:39 +01:00
|
|
|
{
|
2022-06-05 19:30:53 +02:00
|
|
|
int n_ptrs = _ptrs.size();
|
|
|
|
KeyValue.Modifier[] mods = new KeyValue.Modifier[n_ptrs];
|
|
|
|
int n_mods = 0;
|
|
|
|
for (int i = 0; i < n_ptrs; i++)
|
2022-04-30 23:36:17 +02:00
|
|
|
{
|
2022-06-05 01:38:42 +02:00
|
|
|
Pointer p = _ptrs.get(i);
|
2022-06-05 19:30:53 +02:00
|
|
|
if (p.value != null && p.value.getKind() == KeyValue.Kind.Modifier
|
|
|
|
&& !(skip_latched && p.pointerId == -1
|
|
|
|
&& (p.flags & KeyValue.FLAG_LOCKED) == 0))
|
|
|
|
mods[n_mods++] = p.value.getModifier();
|
2022-04-30 23:36:17 +02:00
|
|
|
}
|
2022-06-05 19:30:53 +02:00
|
|
|
return Modifiers.ofArray(mods, n_mods);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void clear()
|
|
|
|
{
|
2022-12-04 18:21:59 +01:00
|
|
|
for (Pointer p : _ptrs)
|
|
|
|
stopKeyRepeat(p);
|
2022-02-20 13:09:39 +01:00
|
|
|
_ptrs.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isKeyDown(KeyboardData.Key k)
|
|
|
|
{
|
|
|
|
for (Pointer p : _ptrs)
|
|
|
|
if (p.key == k)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* These flags can be different:
|
|
|
|
* FLAG_LOCK Removed when the key is locked
|
|
|
|
* FLAG_LOCKED Added when the key is locked
|
|
|
|
* FLAG_LATCH Removed when the key is latched (released but not consumed yet)
|
|
|
|
* Returns [-1] if not found.
|
|
|
|
*/
|
|
|
|
public int getKeyFlags(KeyValue kv)
|
|
|
|
{
|
|
|
|
for (Pointer p : _ptrs)
|
2022-06-06 00:23:45 +02:00
|
|
|
if (p.value != null && p.value.equals(kv))
|
2022-02-20 13:09:39 +01:00
|
|
|
return p.flags;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2023-03-02 11:40:22 +01:00
|
|
|
public int getKeyFlags(KeyboardData.Key key, KeyValue kv)
|
|
|
|
{
|
|
|
|
Pointer ptr = getLatched(key, kv);
|
|
|
|
if (ptr == null) return -1;
|
|
|
|
return ptr.flags;
|
|
|
|
}
|
|
|
|
|
2022-07-24 20:02:48 +02:00
|
|
|
/** Fake pointers are latched and not lockable. */
|
2022-10-23 21:34:05 +02:00
|
|
|
public void add_fake_pointer(KeyValue kv, KeyboardData.Key key, boolean locked)
|
2022-07-24 20:02:48 +02:00
|
|
|
{
|
2023-03-02 11:40:22 +01:00
|
|
|
Pointer ptr = getLatched(key, kv);
|
|
|
|
if (ptr != null)
|
|
|
|
removePtr(ptr); // Already latched, replace pointer.
|
|
|
|
ptr = new Pointer(-1, key, kv, 0.f, 0.f, Modifiers.EMPTY);
|
2022-11-26 17:22:31 +01:00
|
|
|
ptr.flags &= ~(KeyValue.FLAG_LATCH | KeyValue.FLAG_LOCK);
|
|
|
|
ptr.flags |= KeyValue.FLAG_FAKE_PTR;
|
2022-10-23 21:34:05 +02:00
|
|
|
if (locked)
|
2022-11-26 17:22:31 +01:00
|
|
|
ptr.flags |= KeyValue.FLAG_LOCKED;
|
2022-07-24 20:02:48 +02:00
|
|
|
_ptrs.add(ptr);
|
2024-01-26 00:17:51 +01:00
|
|
|
_handler.onPointerFlagsChanged(false);
|
2022-07-24 20:02:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void remove_fake_pointer(KeyValue kv, KeyboardData.Key key)
|
|
|
|
{
|
|
|
|
Pointer ptr = getLatched(key, kv);
|
2022-07-30 18:14:05 +02:00
|
|
|
if (ptr != null && (ptr.flags & KeyValue.FLAG_FAKE_PTR) != 0)
|
2022-07-24 20:02:48 +02:00
|
|
|
removePtr(ptr);
|
2024-01-26 00:17:51 +01:00
|
|
|
_handler.onPointerFlagsChanged(false);
|
2022-07-24 20:02:48 +02:00
|
|
|
}
|
|
|
|
|
2022-02-20 13:09:39 +01:00
|
|
|
// Receiving events
|
|
|
|
|
|
|
|
public void onTouchUp(int pointerId)
|
|
|
|
{
|
|
|
|
Pointer ptr = getPtr(pointerId);
|
|
|
|
if (ptr == null)
|
|
|
|
return;
|
2023-01-29 18:49:44 +01:00
|
|
|
if (ptr.sliding)
|
|
|
|
{
|
2023-04-08 20:10:41 +02:00
|
|
|
clearLatched();
|
2023-01-29 18:49:44 +01:00
|
|
|
onTouchUp_sliding(ptr);
|
|
|
|
return;
|
|
|
|
}
|
2022-02-20 13:09:39 +01:00
|
|
|
stopKeyRepeat(ptr);
|
2022-03-19 15:39:20 +01:00
|
|
|
Pointer latched = getLatched(ptr);
|
2022-02-20 13:09:39 +01:00
|
|
|
if (latched != null) // Already latched
|
|
|
|
{
|
|
|
|
removePtr(ptr); // Remove dupplicate
|
2022-07-24 23:55:00 +02:00
|
|
|
if ((latched.flags & KeyValue.FLAG_LOCK) != 0) // Toggle lockable key
|
|
|
|
lockPointer(latched, false);
|
2022-02-20 13:09:39 +01:00
|
|
|
else // Otherwise, unlatch
|
|
|
|
{
|
|
|
|
removePtr(latched);
|
2022-06-05 01:38:42 +02:00
|
|
|
_handler.onPointerUp(ptr.value, ptr.modifiers);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((ptr.flags & KeyValue.FLAG_LATCH) != 0)
|
|
|
|
{
|
|
|
|
ptr.flags &= ~KeyValue.FLAG_LATCH;
|
|
|
|
ptr.pointerId = -1; // Latch
|
2022-07-24 23:55:00 +02:00
|
|
|
_handler.onPointerFlagsChanged(false);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clearLatched();
|
|
|
|
removePtr(ptr);
|
2022-06-05 01:38:42 +02:00
|
|
|
_handler.onPointerUp(ptr.value, ptr.modifiers);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-04 18:21:59 +01:00
|
|
|
public void onTouchCancel()
|
2022-03-15 20:44:02 +01:00
|
|
|
{
|
2022-12-04 18:21:59 +01:00
|
|
|
clear();
|
2022-07-24 23:55:00 +02:00
|
|
|
_handler.onPointerFlagsChanged(true);
|
2022-03-15 20:44:02 +01:00
|
|
|
}
|
|
|
|
|
2022-04-30 23:36:17 +02:00
|
|
|
/* Whether an other pointer is down on a non-special key. */
|
|
|
|
private boolean isOtherPointerDown()
|
|
|
|
{
|
|
|
|
for (Pointer p : _ptrs)
|
|
|
|
if (p.pointerId != -1 && (p.flags & KeyValue.FLAG_SPECIAL) == 0)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-20 13:09:39 +01:00
|
|
|
public void onTouchDown(float x, float y, int pointerId, KeyboardData.Key key)
|
|
|
|
{
|
2023-01-22 23:03:30 +01:00
|
|
|
// Ignore new presses while a sliding key is active. On some devices, ghost
|
|
|
|
// touch events can happen while the pointer travels on top of other keys.
|
|
|
|
if (isSliding())
|
|
|
|
return;
|
2022-06-05 01:38:42 +02:00
|
|
|
// Don't take latched modifiers into account if an other key is pressed.
|
|
|
|
// The other key already "own" the latched modifiers and will clear them.
|
|
|
|
Modifiers mods = getModifiers(isOtherPointerDown());
|
2023-03-05 23:08:35 +01:00
|
|
|
KeyValue value = _handler.modifyKey(key.keys[0], mods);
|
2022-06-05 01:38:42 +02:00
|
|
|
Pointer ptr = new Pointer(pointerId, key, value, x, y, mods);
|
2022-02-20 13:09:39 +01:00
|
|
|
_ptrs.add(ptr);
|
2022-07-24 23:55:00 +02:00
|
|
|
startKeyRepeat(ptr);
|
2023-08-26 23:37:22 +02:00
|
|
|
_handler.onPointerDown(value, false);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
|
2023-03-03 19:44:05 +01:00
|
|
|
static final int[] DIRECTION_TO_INDEX = new int[]{
|
|
|
|
7, 2, 2, 6, 6, 4, 4, 8, 8, 3, 3, 5, 5, 1, 1, 7
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [direction] is an int between [0] and [15] that represent 16 sections of a
|
|
|
|
* circle, clockwise, starting at the top.
|
|
|
|
*/
|
|
|
|
KeyValue getKeyAtDirection(KeyboardData.Key k, int direction)
|
|
|
|
{
|
2023-03-05 23:08:35 +01:00
|
|
|
return k.keys[DIRECTION_TO_INDEX[direction]];
|
2023-03-03 19:44:05 +01:00
|
|
|
}
|
|
|
|
|
2022-05-08 16:38:44 +02:00
|
|
|
/*
|
2023-03-03 19:44:05 +01:00
|
|
|
* Get the KeyValue at the given direction. In case of swipe (direction !=
|
|
|
|
* null), get the nearest KeyValue that is not key0.
|
2022-05-08 16:38:44 +02:00
|
|
|
* Take care of applying [_handler.onPointerSwipe] to the selected key, this
|
|
|
|
* must be done at the same time to be sure to treat removed keys correctly.
|
|
|
|
* Return [null] if no key could be found in the given direction or if the
|
|
|
|
* selected key didn't change.
|
|
|
|
*/
|
2023-03-03 19:44:05 +01:00
|
|
|
private KeyValue getNearestKeyAtDirection(Pointer ptr, Integer direction)
|
2022-05-08 16:38:44 +02:00
|
|
|
{
|
2023-03-03 19:44:05 +01:00
|
|
|
if (direction == null)
|
2023-03-05 23:08:35 +01:00
|
|
|
return _handler.modifyKey(ptr.key.keys[0], ptr.modifiers);
|
2022-05-08 16:38:44 +02:00
|
|
|
KeyValue k;
|
2023-03-03 19:44:05 +01:00
|
|
|
// [i] is [0, -1, 1, -2, 2, ...]
|
|
|
|
for (int i = 0; i > -4; i = (~i>>31) - i)
|
2022-05-08 16:38:44 +02:00
|
|
|
{
|
2023-03-13 03:06:43 +01:00
|
|
|
int d = (direction + i + 16) % 16;
|
2022-05-08 16:38:44 +02:00
|
|
|
// Don't make the difference between a key that doesn't exist and a key
|
|
|
|
// that is removed by [_handler]. Triggers side effects.
|
2023-03-03 19:44:05 +01:00
|
|
|
k = _handler.modifyKey(getKeyAtDirection(ptr.key, d), ptr.modifiers);
|
2022-05-08 16:38:44 +02:00
|
|
|
if (k != null)
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-02-20 13:09:39 +01:00
|
|
|
public void onTouchMove(float x, float y, int pointerId)
|
|
|
|
{
|
|
|
|
Pointer ptr = getPtr(pointerId);
|
|
|
|
if (ptr == null)
|
|
|
|
return;
|
2022-05-06 18:38:43 +02:00
|
|
|
|
|
|
|
// The position in a IME windows is clampled to view.
|
|
|
|
// For a better up swipe behaviour, set the y position to a negative value when clamped.
|
|
|
|
if (y == 0.0) y = -400;
|
2022-02-20 13:09:39 +01:00
|
|
|
float dx = x - ptr.downX;
|
|
|
|
float dy = y - ptr.downY;
|
2022-05-07 00:08:20 +02:00
|
|
|
|
2023-01-22 23:03:30 +01:00
|
|
|
if (ptr.sliding)
|
|
|
|
{
|
|
|
|
onTouchMove_sliding(ptr, dx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
float dist = Math.abs(dx) + Math.abs(dy);
|
2023-03-03 19:44:05 +01:00
|
|
|
Integer direction;
|
2022-02-20 13:09:39 +01:00
|
|
|
if (dist < _config.swipe_dist_px)
|
|
|
|
{
|
2023-03-03 19:44:05 +01:00
|
|
|
direction = null;
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
2022-05-07 00:08:20 +02:00
|
|
|
else
|
|
|
|
{
|
2023-03-03 19:44:05 +01:00
|
|
|
// See [getKeyAtDirection()] for the meaning. The starting point on the
|
|
|
|
// circle is the top direction.
|
2023-03-13 03:06:43 +01:00
|
|
|
double a = Math.atan2(dy, dx) + Math.PI;
|
|
|
|
// a is between 0 and 2pi, 0 is pointing to the left
|
|
|
|
// add 12 to align 0 to the top
|
|
|
|
direction = ((int)(a * 8 / Math.PI) + 12) % 16;
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
2022-05-07 00:08:20 +02:00
|
|
|
|
2022-05-08 16:38:44 +02:00
|
|
|
if (direction != ptr.selected_direction)
|
2022-02-20 13:09:39 +01:00
|
|
|
{
|
2022-05-08 16:38:44 +02:00
|
|
|
ptr.selected_direction = direction;
|
2023-03-03 19:44:05 +01:00
|
|
|
KeyValue newValue = getNearestKeyAtDirection(ptr, direction);
|
|
|
|
if (newValue != null && !newValue.equals(ptr.value))
|
2022-02-21 00:24:57 +01:00
|
|
|
{
|
2022-03-19 15:39:20 +01:00
|
|
|
ptr.value = newValue;
|
2022-06-05 17:26:34 +02:00
|
|
|
ptr.flags = newValue.getFlags();
|
2023-03-03 19:44:05 +01:00
|
|
|
// Sliding mode is entered when key5 or key6 is down on a slider key.
|
|
|
|
if (ptr.key.slider &&
|
2023-03-05 23:08:35 +01:00
|
|
|
(newValue.equals(ptr.key.getKeyValue(5))
|
|
|
|
|| newValue.equals(ptr.key.getKeyValue(6))))
|
2023-01-22 23:03:30 +01:00
|
|
|
{
|
2023-03-03 19:44:05 +01:00
|
|
|
startSliding(ptr, dy);
|
2023-01-22 23:03:30 +01:00
|
|
|
}
|
2023-08-26 23:37:22 +02:00
|
|
|
_handler.onPointerDown(newValue, true);
|
2022-02-21 00:24:57 +01:00
|
|
|
}
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pointers management
|
|
|
|
|
|
|
|
private Pointer getPtr(int pointerId)
|
|
|
|
{
|
|
|
|
for (Pointer p : _ptrs)
|
|
|
|
if (p.pointerId == pointerId)
|
|
|
|
return p;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void removePtr(Pointer ptr)
|
|
|
|
{
|
|
|
|
_ptrs.remove(ptr);
|
|
|
|
}
|
|
|
|
|
2022-03-19 15:39:20 +01:00
|
|
|
private Pointer getLatched(Pointer target)
|
2022-02-20 13:09:39 +01:00
|
|
|
{
|
2022-07-24 20:02:48 +02:00
|
|
|
return getLatched(target.key, target.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Pointer getLatched(KeyboardData.Key k, KeyValue v)
|
|
|
|
{
|
2022-05-01 00:11:52 +02:00
|
|
|
if (v == null)
|
|
|
|
return null;
|
2022-02-20 13:09:39 +01:00
|
|
|
for (Pointer p : _ptrs)
|
2022-06-06 00:23:45 +02:00
|
|
|
if (p.key == k && p.pointerId == -1 && p.value != null && p.value.equals(v))
|
2022-02-20 13:09:39 +01:00
|
|
|
return p;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void clearLatched()
|
|
|
|
{
|
|
|
|
for (int i = _ptrs.size() - 1; i >= 0; i--)
|
|
|
|
{
|
|
|
|
Pointer ptr = _ptrs.get(i);
|
|
|
|
// Latched and not locked, remove
|
|
|
|
if (ptr.pointerId == -1 && (ptr.flags & KeyValue.FLAG_LOCKED) == 0)
|
|
|
|
_ptrs.remove(i);
|
2022-07-24 23:55:00 +02:00
|
|
|
// Not latched but pressed, don't latch once released and stop long press.
|
2022-02-20 13:09:39 +01:00
|
|
|
else if ((ptr.flags & KeyValue.FLAG_LATCH) != 0)
|
|
|
|
ptr.flags &= ~KeyValue.FLAG_LATCH;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-24 23:55:00 +02:00
|
|
|
/** Make a pointer into the locked state. */
|
|
|
|
private void lockPointer(Pointer ptr, boolean shouldVibrate)
|
|
|
|
{
|
|
|
|
ptr.flags = (ptr.flags & ~KeyValue.FLAG_LOCK) | KeyValue.FLAG_LOCKED;
|
|
|
|
_handler.onPointerFlagsChanged(shouldVibrate);
|
|
|
|
}
|
|
|
|
|
2023-01-22 23:03:30 +01:00
|
|
|
boolean isSliding()
|
|
|
|
{
|
|
|
|
for (Pointer ptr : _ptrs)
|
|
|
|
if (ptr.sliding)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-20 13:09:39 +01:00
|
|
|
// Key repeat
|
|
|
|
|
|
|
|
/** Message from [_keyrepeat_handler]. */
|
|
|
|
@Override
|
|
|
|
public boolean handleMessage(Message msg)
|
|
|
|
{
|
|
|
|
for (Pointer ptr : _ptrs)
|
|
|
|
{
|
|
|
|
if (ptr.timeoutWhat == msg.what)
|
|
|
|
{
|
2022-07-24 23:55:00 +02:00
|
|
|
if (handleKeyRepeat(ptr))
|
2023-01-22 23:13:30 +01:00
|
|
|
_keyrepeat_handler.sendEmptyMessageDelayed(msg.what,
|
|
|
|
_config.longPressInterval);
|
2022-07-24 23:55:00 +02:00
|
|
|
else
|
|
|
|
ptr.timeoutWhat = -1;
|
|
|
|
return true;
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
}
|
2022-07-24 23:55:00 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-20 13:09:39 +01:00
|
|
|
private static int uniqueTimeoutWhat = 0;
|
|
|
|
|
|
|
|
private void startKeyRepeat(Pointer ptr)
|
|
|
|
{
|
|
|
|
int what = (uniqueTimeoutWhat++);
|
|
|
|
ptr.timeoutWhat = what;
|
2023-01-22 23:13:30 +01:00
|
|
|
_keyrepeat_handler.sendEmptyMessageDelayed(what, _config.longPressTimeout);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private void stopKeyRepeat(Pointer ptr)
|
|
|
|
{
|
|
|
|
if (ptr.timeoutWhat != -1)
|
|
|
|
{
|
|
|
|
_keyrepeat_handler.removeMessages(ptr.timeoutWhat);
|
|
|
|
ptr.timeoutWhat = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-24 23:55:00 +02:00
|
|
|
/** A pointer is repeating. Returns [true] if repeat should continue. */
|
|
|
|
private boolean handleKeyRepeat(Pointer ptr)
|
|
|
|
{
|
|
|
|
// Long press toggle lock on modifiers
|
|
|
|
if ((ptr.flags & KeyValue.FLAG_LATCH) != 0)
|
|
|
|
{
|
|
|
|
lockPointer(ptr, true);
|
|
|
|
return false;
|
|
|
|
}
|
2023-02-12 23:14:57 +01:00
|
|
|
// Stop repeating: Latched key, no key
|
|
|
|
if (ptr.pointerId == -1 || ptr.value == null)
|
2022-07-24 23:55:00 +02:00
|
|
|
return false;
|
2023-02-12 23:14:57 +01:00
|
|
|
KeyValue kv = KeyModifier.modify_long_press(ptr.value);
|
|
|
|
if (!kv.equals(ptr.value))
|
|
|
|
{
|
|
|
|
ptr.value = kv;
|
|
|
|
ptr.flags = kv.getFlags();
|
2023-08-26 23:37:22 +02:00
|
|
|
_handler.onPointerDown(kv, true);
|
2023-02-12 23:14:57 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Stop repeating: Special keys
|
2024-02-17 19:31:52 +01:00
|
|
|
if (kv.hasFlagsAny(KeyValue.FLAG_SPECIAL))
|
2023-02-12 23:14:57 +01:00
|
|
|
return false;
|
|
|
|
_handler.onPointerHold(kv, ptr.modifiers);
|
2022-07-24 23:55:00 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-22 23:03:30 +01:00
|
|
|
// Sliding
|
|
|
|
|
|
|
|
void startSliding(Pointer ptr, float initial_dy)
|
|
|
|
{
|
|
|
|
stopKeyRepeat(ptr);
|
|
|
|
ptr.sliding = true;
|
|
|
|
ptr.sliding_count = (int)(initial_dy / _config.slide_step_px);
|
|
|
|
}
|
|
|
|
|
2023-01-29 18:49:44 +01:00
|
|
|
/** Handle a sliding pointer going up. Latched modifiers are not cleared to
|
|
|
|
allow easy adjustments to the cursors. The pointer is cancelled. */
|
|
|
|
void onTouchUp_sliding(Pointer ptr)
|
|
|
|
{
|
|
|
|
removePtr(ptr);
|
|
|
|
_handler.onPointerFlagsChanged(false);
|
|
|
|
}
|
|
|
|
|
2023-01-22 23:03:30 +01:00
|
|
|
/** Handle move events for sliding pointers. [dx] is distance travelled from
|
|
|
|
[downX]. */
|
|
|
|
void onTouchMove_sliding(Pointer ptr, float dx)
|
|
|
|
{
|
|
|
|
int count = (int)(dx / _config.slide_step_px);
|
|
|
|
if (count == ptr.sliding_count)
|
|
|
|
return;
|
2023-03-03 19:44:05 +01:00
|
|
|
int key_index = (count < ptr.sliding_count) ? 5 : 6;
|
2023-03-05 23:08:35 +01:00
|
|
|
KeyValue newValue = _handler.modifyKey(ptr.key.keys[key_index], ptr.modifiers);
|
2023-01-22 23:03:30 +01:00
|
|
|
ptr.sliding_count = count;
|
|
|
|
ptr.value = newValue;
|
|
|
|
if (newValue != null)
|
|
|
|
_handler.onPointerHold(newValue, ptr.modifiers);
|
|
|
|
}
|
2022-02-21 00:24:57 +01:00
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
private static final class Pointer
|
2022-02-20 13:09:39 +01:00
|
|
|
{
|
|
|
|
/** -1 when latched. */
|
|
|
|
public int pointerId;
|
2022-05-07 00:08:20 +02:00
|
|
|
/** The Key pressed by this Pointer */
|
2022-03-19 15:39:20 +01:00
|
|
|
public final KeyboardData.Key key;
|
2023-03-03 19:44:05 +01:00
|
|
|
/** Current direction. [null] means not swiping. */
|
|
|
|
public Integer selected_direction;
|
2022-06-05 01:38:42 +02:00
|
|
|
/** Selected value with [modifiers] applied. */
|
2022-02-20 13:09:39 +01:00
|
|
|
public KeyValue value;
|
|
|
|
public float downX;
|
|
|
|
public float downY;
|
2022-04-30 23:17:20 +02:00
|
|
|
/** Modifier flags at the time the key was pressed. */
|
2022-06-05 01:38:42 +02:00
|
|
|
public Modifiers modifiers;
|
2022-04-30 23:17:20 +02:00
|
|
|
/** Flags of the value. Latch, lock and locked flags are updated. */
|
2022-02-20 13:09:39 +01:00
|
|
|
public int flags;
|
|
|
|
/** Identify timeout messages. */
|
|
|
|
public int timeoutWhat;
|
2023-01-22 23:03:30 +01:00
|
|
|
/** Whether the pointer is "sliding" laterally on a key. */
|
|
|
|
public boolean sliding;
|
|
|
|
/** Number of event already caused by sliding. */
|
|
|
|
public int sliding_count;
|
2022-02-20 13:09:39 +01:00
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
public Pointer(int p, KeyboardData.Key k, KeyValue v, float x, float y, Modifiers m)
|
2022-02-20 13:09:39 +01:00
|
|
|
{
|
|
|
|
pointerId = p;
|
|
|
|
key = k;
|
2023-03-03 19:44:05 +01:00
|
|
|
selected_direction = null;
|
2022-02-20 13:09:39 +01:00
|
|
|
value = v;
|
|
|
|
downX = x;
|
|
|
|
downY = y;
|
2022-06-05 01:38:42 +02:00
|
|
|
modifiers = m;
|
2022-06-05 17:26:34 +02:00
|
|
|
flags = (v == null) ? 0 : v.getFlags();
|
2022-02-20 13:09:39 +01:00
|
|
|
timeoutWhat = -1;
|
2023-01-22 23:03:30 +01:00
|
|
|
sliding = false;
|
|
|
|
sliding_count = 0;
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
/** Represent modifiers currently activated.
|
|
|
|
Sorted in the order they should be evaluated. */
|
|
|
|
public static final class Modifiers
|
|
|
|
{
|
2022-06-05 19:30:53 +02:00
|
|
|
private final KeyValue.Modifier[] _mods;
|
2022-06-05 01:38:42 +02:00
|
|
|
private final int _size;
|
|
|
|
|
2022-06-05 19:30:53 +02:00
|
|
|
private Modifiers(KeyValue.Modifier[] m, int s)
|
|
|
|
{
|
|
|
|
_mods = m; _size = s;
|
|
|
|
}
|
2022-06-05 01:38:42 +02:00
|
|
|
|
2022-06-05 19:30:53 +02:00
|
|
|
public KeyValue.Modifier get(int i) { return _mods[_size - 1 - i]; }
|
2022-06-05 01:38:42 +02:00
|
|
|
public int size() { return _size; }
|
2023-06-03 09:37:59 +02:00
|
|
|
public boolean has(KeyValue.Modifier m)
|
|
|
|
{
|
|
|
|
return (Arrays.binarySearch(_mods, 0, _size, m) >= 0);
|
|
|
|
}
|
2022-06-05 01:38:42 +02:00
|
|
|
|
2024-01-26 00:17:51 +01:00
|
|
|
/** Returns the activated modifiers that are not in [m2]. */
|
|
|
|
public Iterator<KeyValue.Modifier> diff(Modifiers m2)
|
|
|
|
{
|
|
|
|
return new ModifiersDiffIterator(this, m2);
|
|
|
|
}
|
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
@Override
|
|
|
|
public int hashCode() { return Arrays.hashCode(_mods); }
|
|
|
|
@Override
|
|
|
|
public boolean equals(Object obj)
|
|
|
|
{
|
|
|
|
return Arrays.equals(_mods, ((Modifiers)obj)._mods);
|
|
|
|
}
|
|
|
|
|
2022-06-05 19:30:53 +02:00
|
|
|
public static final Modifiers EMPTY =
|
|
|
|
new Modifiers(new KeyValue.Modifier[0], 0);
|
2022-06-05 01:38:42 +02:00
|
|
|
|
2022-06-05 19:30:53 +02:00
|
|
|
protected static Modifiers ofArray(KeyValue.Modifier[] mods, int size)
|
2022-06-05 01:38:42 +02:00
|
|
|
{
|
2022-06-05 19:30:53 +02:00
|
|
|
// Sort and remove duplicates and nulls.
|
2022-06-05 01:38:42 +02:00
|
|
|
if (size > 1)
|
|
|
|
{
|
2022-06-05 19:30:53 +02:00
|
|
|
Arrays.sort(mods, 0, size);
|
2022-06-05 01:38:42 +02:00
|
|
|
int j = 0;
|
|
|
|
for (int i = 0; i < size; i++)
|
|
|
|
{
|
2022-06-05 19:30:53 +02:00
|
|
|
KeyValue.Modifier m = mods[i];
|
|
|
|
if (m != null && (i + 1 >= size || m != mods[i + 1]))
|
2022-06-05 01:38:42 +02:00
|
|
|
{
|
|
|
|
mods[j] = m;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
size = j;
|
|
|
|
}
|
|
|
|
return new Modifiers(mods, size);
|
|
|
|
}
|
2024-01-26 00:17:51 +01:00
|
|
|
|
|
|
|
/** Returns modifiers that are in [m1_] but not in [m2_]. */
|
|
|
|
static final class ModifiersDiffIterator
|
|
|
|
implements Iterator<KeyValue.Modifier>
|
|
|
|
{
|
|
|
|
Modifiers m1;
|
|
|
|
int i1 = 0;
|
|
|
|
Modifiers m2;
|
|
|
|
int i2 = 0;
|
|
|
|
|
|
|
|
public ModifiersDiffIterator(Modifiers m1_, Modifiers m2_)
|
|
|
|
{
|
|
|
|
m1 = m1_;
|
|
|
|
m2 = m2_;
|
|
|
|
advance();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasNext()
|
|
|
|
{
|
|
|
|
return i1 < m1._size;
|
|
|
|
}
|
|
|
|
|
|
|
|
public KeyValue.Modifier next()
|
|
|
|
{
|
|
|
|
if (i1 >= m1._size)
|
|
|
|
throw new NoSuchElementException();
|
|
|
|
KeyValue.Modifier m = m1._mods[i1];
|
|
|
|
i1++;
|
|
|
|
advance();
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Advance to the next element if [i1] is not a valid element. The end
|
|
|
|
is reached when [i1 = m1.size()]. */
|
|
|
|
void advance()
|
|
|
|
{
|
|
|
|
while (i1 < m1.size())
|
|
|
|
{
|
|
|
|
KeyValue.Modifier m = m1._mods[i1];
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
if (i2 >= m2._size)
|
|
|
|
return;
|
|
|
|
int d = m.compareTo(m2._mods[i2]);
|
|
|
|
if (d < 0)
|
|
|
|
return;
|
|
|
|
i2++;
|
|
|
|
if (d == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
i1++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-06-05 01:38:42 +02:00
|
|
|
}
|
|
|
|
|
2022-02-20 13:09:39 +01:00
|
|
|
public interface IPointerEventHandler
|
|
|
|
{
|
2022-05-08 16:53:33 +02:00
|
|
|
/** Key can be modified or removed by returning [null]. */
|
2022-06-05 01:38:42 +02:00
|
|
|
public KeyValue modifyKey(KeyValue k, Modifiers flags);
|
2022-03-19 15:39:20 +01:00
|
|
|
|
2022-06-05 01:38:42 +02:00
|
|
|
/** A key is pressed. [getModifiers()] is uptodate. Might be called after a
|
2023-08-26 23:37:22 +02:00
|
|
|
press or a swipe to a different value. Down events are not paired with
|
|
|
|
up events. */
|
|
|
|
public void onPointerDown(KeyValue k, boolean isSwipe);
|
2022-03-19 15:39:20 +01:00
|
|
|
|
2022-05-08 16:53:33 +02:00
|
|
|
/** Key is released. [k] is the key that was returned by
|
|
|
|
[modifySelectedKey] or [modifySelectedKey]. */
|
2022-06-05 01:38:42 +02:00
|
|
|
public void onPointerUp(KeyValue k, Modifiers flags);
|
2022-03-19 15:39:20 +01:00
|
|
|
|
|
|
|
/** Flags changed because latched or locked keys or cancelled pointers. */
|
2022-07-24 23:55:00 +02:00
|
|
|
public void onPointerFlagsChanged(boolean shouldVibrate);
|
2022-03-19 15:39:20 +01:00
|
|
|
|
|
|
|
/** Key is repeating. */
|
2022-06-05 01:38:42 +02:00
|
|
|
public void onPointerHold(KeyValue k, Modifiers flags);
|
2022-02-20 13:09:39 +01:00
|
|
|
}
|
|
|
|
}
|