Skip to content

Commit

Permalink
Simulate tilt multitouch event by pressing Alt
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrathmann committed Dec 13, 2023
1 parent cbce423 commit 663eeab
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 10 deletions.
41 changes: 33 additions & 8 deletions app/src/input_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ sc_input_manager_init(struct sc_input_manager *im,
im->sdl_shortcut_mods.count = shortcut_mods->count;

im->vfinger_down = false;
im->vfinger_invert_x = false;
im->vfinger_invert_y = false;

im->last_keycode = SDLK_UNKNOWN;
im->last_mod = 0;
Expand Down Expand Up @@ -347,9 +349,14 @@ simulate_virtual_finger(struct sc_input_manager *im,
}

static struct sc_point
inverse_point(struct sc_point point, struct sc_size size) {
point.x = size.width - point.x;
point.y = size.height - point.y;
inverse_point(struct sc_point point, struct sc_size size,
bool invert_x, bool invert_y) {
if (invert_x) {
point.x = size.width - point.x;
}
if (invert_y) {
point.y = size.height - point.y;
}
return point;
}

Expand Down Expand Up @@ -605,7 +612,9 @@ sc_input_manager_process_mouse_motion(struct sc_input_manager *im,
struct sc_point mouse =
sc_screen_convert_window_to_frame_coords(im->screen, event->x,
event->y);
struct sc_point vfinger = inverse_point(mouse, im->screen->frame_size);
struct sc_point vfinger = inverse_point(mouse, im->screen->frame_size,
im->vfinger_invert_x,
im->vfinger_invert_y);
simulate_virtual_finger(im, AMOTION_EVENT_ACTION_MOVE, vfinger);
}
}
Expand Down Expand Up @@ -726,7 +735,7 @@ sc_input_manager_process_mouse_button(struct sc_input_manager *im,
return;
}

// Pinch-to-zoom simulation.
// Pinch-to-zoom, rotate and tilt simulation.
//
// If Ctrl is hold when the left-click button is pressed, then
// pinch-to-zoom mode is enabled: on every mouse event until the left-click
Expand All @@ -735,14 +744,30 @@ sc_input_manager_process_mouse_button(struct sc_input_manager *im,
//
// In other words, the center of the rotation/scaling is the center of the
// screen.
#define CTRL_PRESSED (SDL_GetModState() & (KMOD_LCTRL | KMOD_RCTRL))
//
// To simulate a tilt gesture Alt can be used instead of Ctrl. The "virtual
// finger" has the x coordinate inverted through the center of the screen
// while the y coordinate is unchanged.
//
// To invert the y coordinate and keep x unchanged, Shift can be used.
const SDL_Keymod keymod = SDL_GetModState();
const bool ctrl_pressed = keymod & KMOD_CTRL;
const bool alt_pressed = keymod & KMOD_ALT;
const bool shift_pressed = keymod & KMOD_SHIFT;
if (event->button == SDL_BUTTON_LEFT &&
((down && !im->vfinger_down && CTRL_PRESSED) ||
((down && !im->vfinger_down &&
(ctrl_pressed || alt_pressed || shift_pressed)) ||
(!down && im->vfinger_down))) {
struct sc_point mouse =
sc_screen_convert_window_to_frame_coords(im->screen, event->x,
event->y);
struct sc_point vfinger = inverse_point(mouse, im->screen->frame_size);
if (down) {
im->vfinger_invert_x = ctrl_pressed || alt_pressed;
im->vfinger_invert_y = ctrl_pressed || shift_pressed;
}
struct sc_point vfinger = inverse_point(mouse, im->screen->frame_size,
im->vfinger_invert_x,
im->vfinger_invert_y);
enum android_motionevent_action action = down
? AMOTION_EVENT_ACTION_DOWN
: AMOTION_EVENT_ACTION_UP;
Expand Down
2 changes: 2 additions & 0 deletions app/src/input_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ struct sc_input_manager {
} sdl_shortcut_mods;

bool vfinger_down;
bool vfinger_invert_x;
bool vfinger_invert_y;

// Tracks the number of identical consecutive shortcut key down events.
// Not to be confused with event->repeat, which counts the number of
Expand Down
8 changes: 6 additions & 2 deletions doc/control.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,20 @@ way as <kbd>MOD</kbd>+<kbd>Shift</kbd>+<kbd>v</kbd>).
To disable automatic clipboard synchronization, use
`--no-clipboard-autosync`.

## Pinch-to-zoom
## Pinch-to-zoom, rotate and tilt simulation

To simulate "pinch-to-zoom": <kbd>Ctrl</kbd>+_click-and-move_.

More precisely, hold down <kbd>Ctrl</kbd> while pressing the left-click button.
Until the left-click button is released, all mouse movements scale and rotate
the content (if supported by the app) relative to the center of the screen.

To simulate a tilt gesture: <kbd>Alt</kbd>+_click-and-move-up-or-down_.

Technically, _scrcpy_ generates additional touch events from a "virtual finger"
at a location inverted through the center of the screen.
at a location inverted through the center of the screen. When pressing
<kbd>Ctrl</kbd> the x and y coordinates are inverted. Using <kbd>Alt</kbd>
only inverts x and using <kbd>Shift</kbd> only inverts y.


## Key repeat
Expand Down

0 comments on commit 663eeab

Please sign in to comment.