inputmanager.c 8.6 KB
Newer Older
1
#include "inputmanager.h"
2 3

#include "convert.h"
4
#include "lockutil.h"
R
Romain Vimont 已提交
5
#include "log.h"
6

R
Romain Vimont 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Convert window coordinates (as provided by SDL_GetMouseState() to renderer coordinates (as provided in SDL mouse events)
//
// See my question:
// <https://stackoverflow.com/questions/49111054/how-to-get-mouse-position-on-mouse-wheel-event>
static void convert_to_renderer_coordinates(SDL_Renderer *renderer, int *x, int *y) {
    SDL_Rect viewport;
    float scale_x, scale_y;
    SDL_RenderGetViewport(renderer, &viewport);
    SDL_RenderGetScale(renderer, &scale_x, &scale_y);
    *x = (int) (*x / scale_x) - viewport.x;
    *y = (int) (*y / scale_y) - viewport.y;
}

static struct point get_mouse_point(struct screen *screen) {
21 22 23
    int x;
    int y;
    SDL_GetMouseState(&x, &y);
R
Romain Vimont 已提交
24
    convert_to_renderer_coordinates(screen->renderer, &x, &y);
25 26 27 28 29 30 31 32 33 34 35 36 37 38
    SDL_assert_release(x >= 0 && x < 0x10000 && y >= 0 && y < 0x10000);
    return (struct point) {
        .x = (Uint16) x,
        .y = (Uint16) y,
    };
}

static SDL_bool is_ctrl_down(void) {
    const Uint8 *state = SDL_GetKeyboardState(NULL);
    return state[SDL_SCANCODE_LCTRL] || state[SDL_SCANCODE_RCTRL];
}

static void send_keycode(struct controller *controller, enum android_keycode keycode, const char *name) {
    // send DOWN event
R
Romain Vimont 已提交
39 40 41 42 43
    struct control_event control_event;
    control_event.type = CONTROL_EVENT_TYPE_KEYCODE;
    control_event.keycode_event.action = AKEY_EVENT_ACTION_DOWN;
    control_event.keycode_event.keycode = keycode;
    control_event.keycode_event.metastate = 0;
44 45

    if (!controller_push_event(controller, &control_event)) {
R
Romain Vimont 已提交
46
        LOGW("Cannot send %s (DOWN)", name);
47 48 49 50 51 52
        return;
    }

    // send UP event
    control_event.keycode_event.action = AKEY_EVENT_ACTION_UP;
    if (!controller_push_event(controller, &control_event)) {
R
Romain Vimont 已提交
53
        LOGW("Cannot send %s (UP)", name);
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
    }
}

static inline void action_home(struct controller *controller) {
    send_keycode(controller, AKEYCODE_HOME, "HOME");
}

static inline void action_back(struct controller *controller) {
    send_keycode(controller, AKEYCODE_BACK, "BACK");
}

static inline void action_app_switch(struct controller *controller) {
    send_keycode(controller, AKEYCODE_APP_SWITCH, "APP_SWITCH");
}

static inline void action_power(struct controller *controller) {
    send_keycode(controller, AKEYCODE_POWER, "POWER");
}

static inline void action_volume_up(struct controller *controller) {
    send_keycode(controller, AKEYCODE_VOLUME_UP, "VOLUME_UP");
}

static inline void action_volume_down(struct controller *controller) {
    send_keycode(controller, AKEYCODE_VOLUME_DOWN, "VOLUME_DOWN");
}

81 82
// turn the screen on if it was off, press BACK otherwise
static void press_back_or_turn_screen_on(struct controller *controller) {
R
Romain Vimont 已提交
83 84
    struct control_event control_event;
    control_event.type = CONTROL_EVENT_TYPE_COMMAND;
85
    control_event.command_event.action = CONTROL_EVENT_COMMAND_BACK_OR_SCREEN_ON;
R
Romain Vimont 已提交
86

87
    if (!controller_push_event(controller, &control_event)) {
R
Romain Vimont 已提交
88
        LOGW("Cannot turn screen on");
89 90 91
    }
}

92 93 94 95 96 97 98 99 100 101 102 103
static void switch_fps_counter_state(struct frames *frames) {
    mutex_lock(frames->mutex);
    if (frames->fps_counter.started) {
        LOGI("FPS counter stopped");
        fps_counter_stop(&frames->fps_counter);
    } else {
        LOGI("FPS counter started");
        fps_counter_start(&frames->fps_counter);
    }
    mutex_unlock(frames->mutex);
}

R
Romain Vimont 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
static void clipboard_paste(struct controller *controller) {
    char *text = SDL_GetClipboardText();
    if (!text) {
        LOGW("Cannot get clipboard text: %s", SDL_GetError());
        return;
    }
    if (!*text) {
        // empty text
        SDL_free(text);
        return;
    }

    struct control_event control_event;
    control_event.type = CONTROL_EVENT_TYPE_TEXT;
    control_event.text_event.text = text;
    if (!controller_push_event(controller, &control_event)) {
        SDL_free(text);
        LOGW("Cannot send clipboard paste event");
    }
}

125 126
void input_manager_process_text_input(struct input_manager *input_manager,
                                      const SDL_TextInputEvent *event) {
127 128 129
    if (is_ctrl_down()) {
        switch (event->text[0]) {
            case '+':
130
                action_volume_up(input_manager->controller);
131 132
                break;
            case '-':
133
                action_volume_down(input_manager->controller);
134 135 136 137 138 139 140
                break;
        }
        return;
    }

    struct control_event control_event;
    control_event.type = CONTROL_EVENT_TYPE_TEXT;
R
Romain Vimont 已提交
141 142 143 144 145
    control_event.text_event.text = SDL_strdup(event->text);
    if (!control_event.text_event.text) {
        LOGW("Cannot strdup input text");
        return;
    }
146
    if (!controller_push_event(input_manager->controller, &control_event)) {
R
Romain Vimont 已提交
147
        LOGW("Cannot send text event");
148 149 150
    }
}

151 152
void input_manager_process_key(struct input_manager *input_manager,
                               const SDL_KeyboardEvent *event) {
153 154 155 156
    SDL_bool ctrl = event->keysym.mod & (KMOD_LCTRL | KMOD_RCTRL);

    // capture all Ctrl events
    if (ctrl) {
157 158
        SDL_bool repeat = event->repeat;

159 160 161 162 163
        // only consider keydown events, and ignore repeated events
        if (repeat || event->type != SDL_KEYDOWN) {
            return;
        }

164
        SDL_bool shift = event->keysym.mod & (KMOD_LSHIFT | KMOD_RSHIFT);
165 166 167 168 169
        if (shift) {
            // currently, there is no shortcut implying SHIFT
            return;
        }

170
        SDL_Keycode keycode = event->keysym.sym;
171 172
        switch (keycode) {
            case SDLK_h:
173
                action_home(input_manager->controller);
174 175 176
                return;
            case SDLK_b: // fall-through
            case SDLK_BACKSPACE:
177
                action_back(input_manager->controller);
178 179
                return;
            case SDLK_m:
180
                action_app_switch(input_manager->controller);
181 182
                return;
            case SDLK_p:
183
                action_power(input_manager->controller);
184
                return;
R
Romain Vimont 已提交
185 186 187
            case SDLK_v:
                clipboard_paste(input_manager->controller);
                return;
188
            case SDLK_f:
189
                screen_switch_fullscreen(input_manager->screen);
190 191
                return;
            case SDLK_x:
192
                screen_resize_to_fit(input_manager->screen);
193 194
                return;
            case SDLK_g:
195
                screen_resize_to_pixel_perfect(input_manager->screen);
196
                return;
197 198 199
            case SDLK_i:
                switch_fps_counter_state(input_manager->frames);
                return;
200 201 202 203 204 205 206
        }

        return;
    }

    struct control_event control_event;
    if (input_key_from_sdl_to_android(event, &control_event)) {
207
        if (!controller_push_event(input_manager->controller, &control_event)) {
R
Romain Vimont 已提交
208
            LOGW("Cannot send control event");
209 210 211 212
        }
    }
}

213 214
void input_manager_process_mouse_motion(struct input_manager *input_manager,
                                        const SDL_MouseMotionEvent *event) {
215 216 217 218 219
    if (!event->state) {
        // do not send motion events when no button is pressed
        return;
    }
    struct control_event control_event;
220 221
    if (mouse_motion_from_sdl_to_android(event, input_manager->screen->frame_size, &control_event)) {
        if (!controller_push_event(input_manager->controller, &control_event)) {
R
Romain Vimont 已提交
222
            LOGW("Cannot send mouse motion event");
223 224 225 226
        }
    }
}

227 228
void input_manager_process_mouse_button(struct input_manager *input_manager,
                                        const SDL_MouseButtonEvent *event) {
R
Romain Vimont 已提交
229 230 231 232 233 234 235 236 237
    if (event->type == SDL_MOUSEBUTTONDOWN) {
        if (event->button == SDL_BUTTON_RIGHT) {
            press_back_or_turn_screen_on(input_manager->controller);
            return;
        }
        if (event->button == SDL_BUTTON_MIDDLE) {
            action_home(input_manager->controller);
            return;
        }
238 239
    };
    struct control_event control_event;
240 241
    if (mouse_button_from_sdl_to_android(event, input_manager->screen->frame_size, &control_event)) {
        if (!controller_push_event(input_manager->controller, &control_event)) {
R
Romain Vimont 已提交
242
            LOGW("Cannot send mouse button event");
243 244 245 246
        }
    }
}

247 248
void input_manager_process_mouse_wheel(struct input_manager *input_manager,
                                       const SDL_MouseWheelEvent *event) {
249
    struct position position = {
250
        .screen_size = input_manager->screen->frame_size,
R
Romain Vimont 已提交
251
        .point = get_mouse_point(input_manager->screen),
252 253 254
    };
    struct control_event control_event;
    if (mouse_wheel_from_sdl_to_android(event, position, &control_event)) {
255
        if (!controller_push_event(input_manager->controller, &control_event)) {
R
Romain Vimont 已提交
256
            LOGW("Cannot send wheel button event");
257 258 259
        }
    }
}