mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[client] added input state debugging
This commit is contained in:
parent
68212b8609
commit
3173564b4d
@ -47,6 +47,11 @@ struct KVMGFXState
|
|||||||
SDL_sem * cpySem;
|
SDL_sem * cpySem;
|
||||||
SDL_Thread * cpyThreads[COPY_THREADS];
|
SDL_Thread * cpyThreads[COPY_THREADS];
|
||||||
CopyJob cpyJobs [COPY_THREADS];
|
CopyJob cpyJobs [COPY_THREADS];
|
||||||
|
|
||||||
|
#ifdef DEBUG_INPUT_STATE
|
||||||
|
uint8_t kb[(SDL_NUM_SCANCODES / sizeof(uint8_t))+1];
|
||||||
|
bool mouse[10];
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
struct KVMGFXState state;
|
struct KVMGFXState state;
|
||||||
@ -438,6 +443,23 @@ int eventThread(void * arg)
|
|||||||
serverMode = !serverMode;
|
serverMode = !serverMode;
|
||||||
spice_mouse_mode(serverMode);
|
spice_mouse_mode(serverMode);
|
||||||
SDL_SetRelativeMouseMode(serverMode);
|
SDL_SetRelativeMouseMode(serverMode);
|
||||||
|
|
||||||
|
#ifdef DEBUG_INPUT_STATE
|
||||||
|
DEBUG_INFO("mouse state:");
|
||||||
|
for (unsigned int i = 0; i < sizeof(state.mouse) / sizeof(bool); ++i)
|
||||||
|
{
|
||||||
|
if (state.mouse[i])
|
||||||
|
DEBUG_INFO("0x%02x", i);
|
||||||
|
}
|
||||||
|
|
||||||
|
DEBUG_INFO("keyboard state:");
|
||||||
|
for (unsigned int i = 0; i < SDL_NUM_SCANCODES; ++i)
|
||||||
|
{
|
||||||
|
unsigned int block = i / 8;
|
||||||
|
if (state.kb[block] & (1 << (i - block * 8)))
|
||||||
|
DEBUG_INFO("0x%02x", i);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -445,6 +467,11 @@ int eventThread(void * arg)
|
|||||||
if (scancode == 0)
|
if (scancode == 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef DEBUG_INPUT_STATE
|
||||||
|
uint16_t block = scancode / 8;
|
||||||
|
state.kb[block] |= 1 << (scancode - block * 8);
|
||||||
|
#endif
|
||||||
|
|
||||||
spice_key_down(scancode);
|
spice_key_down(scancode);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -460,6 +487,11 @@ int eventThread(void * arg)
|
|||||||
if (scancode == 0)
|
if (scancode == 0)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef DEBUG_INPUT_STATE
|
||||||
|
uint16_t block = scancode / 8;
|
||||||
|
state.kb[block] &= ~(1 << (scancode - block * 8));
|
||||||
|
#endif
|
||||||
|
|
||||||
spice_key_up(scancode);
|
spice_key_up(scancode);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -483,11 +515,17 @@ int eventThread(void * arg)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_MOUSEBUTTONDOWN:
|
case SDL_MOUSEBUTTONDOWN:
|
||||||
|
#ifdef DEBUG_INPUT_STATE
|
||||||
|
state.mouse[event.button.button] = true;
|
||||||
|
#endif
|
||||||
spice_mouse_position(event.button.x, event.button.y);
|
spice_mouse_position(event.button.x, event.button.y);
|
||||||
spice_mouse_press(event.button.button);
|
spice_mouse_press(event.button.button);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SDL_MOUSEBUTTONUP:
|
case SDL_MOUSEBUTTONUP:
|
||||||
|
#ifdef DEBUG_INPUT_STATE
|
||||||
|
state.mouse[event.button.button] = false;
|
||||||
|
#endif
|
||||||
spice_mouse_position(event.button.x, event.button.y);
|
spice_mouse_position(event.button.x, event.button.y);
|
||||||
spice_mouse_release(event.button.button);
|
spice_mouse_release(event.button.button);
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user