trezor-core/embed/unix/touch.c

59 lines
1.6 KiB
C
Raw Normal View History

2017-03-16 11:14:12 -07:00
/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
2017-03-16 11:40:20 -07:00
#include <stdint.h>
#ifndef TREZOR_NOUI
2017-03-16 11:14:12 -07:00
#include <SDL2/SDL.h>
2017-03-16 11:40:20 -07:00
#endif
2017-03-16 11:14:12 -07:00
#include "options.h"
2017-10-26 07:23:04 -07:00
#include "embed/trezorhal/touch.h"
2017-03-16 11:14:12 -07:00
void __shutdown(void);
2017-03-16 11:14:12 -07:00
uint32_t touch_read(void)
{
2017-03-16 11:40:20 -07:00
#ifndef TREZOR_NOUI
2017-03-16 11:14:12 -07:00
SDL_Event event;
int x, y;
SDL_PumpEvents();
if (SDL_PollEvent(&event) > 0) {
switch (event.type) {
case SDL_MOUSEBUTTONDOWN:
case SDL_MOUSEMOTION:
case SDL_MOUSEBUTTONUP:
x = event.button.x - DISPLAY_BORDER;
y = event.button.y - DISPLAY_BORDER;
if (x < 0 || y < 0 || x >= DISPLAY_RESX || y >= DISPLAY_RESY) break;
switch (event.type) {
case SDL_MOUSEBUTTONDOWN:
2017-10-26 07:23:04 -07:00
return TOUCH_START | (x << 12) | y;
2017-03-16 11:14:12 -07:00
case SDL_MOUSEMOTION:
// remove other SDL_MOUSEMOTION events from queue
SDL_FlushEvent(SDL_MOUSEMOTION);
if (event.motion.state) {
2017-10-26 07:23:04 -07:00
return TOUCH_MOVE | (x << 12) | y;
2017-03-16 11:14:12 -07:00
}
break;
case SDL_MOUSEBUTTONUP:
2017-10-26 07:23:04 -07:00
return TOUCH_END | (x << 12) | y;
2017-03-16 11:14:12 -07:00
}
break;
case SDL_KEYUP:
if (event.key.keysym.sym == SDLK_ESCAPE) {
__shutdown();
2017-03-16 11:14:12 -07:00
}
break;
case SDL_QUIT:
__shutdown();
2017-03-16 11:14:12 -07:00
break;
}
}
2017-03-16 11:40:20 -07:00
#endif
2017-03-16 11:14:12 -07:00
return 0;
}