|
@@ -3191,7 +3191,7 @@ static void PollInputEvents(void)
|
|
|
}
|
|
|
else currentGamepadState[i][j] = 0;
|
|
|
|
|
|
- //printf("Gamepad %d, button %d: Digital: %d, Analog: %g\n", gamepadState.index, j, gamepadState.digitalButton[j], gamepadState.analogButton[j]);
|
|
|
+ //TraceLog(LOG_DEBUG, "Gamepad %d, button %d: Digital: %d, Analog: %g", gamepadState.index, j, gamepadState.digitalButton[j], gamepadState.analogButton[j]);
|
|
|
}
|
|
|
|
|
|
// Register axis data for every connected gamepad
|
|
@@ -3792,14 +3792,14 @@ static EM_BOOL EmscriptenTouchCallback(int eventType, const EmscriptenTouchEvent
|
|
|
y = touchEvent->touches[i].canvasY;
|
|
|
}
|
|
|
|
|
|
- printf("%s, numTouches: %d %s%s%s%s\n", emscripten_event_type_to_string(eventType), event->numTouches,
|
|
|
+ TraceLog(LOG_DEBUG, "%s, numTouches: %d %s%s%s%s", emscripten_event_type_to_string(eventType), event->numTouches,
|
|
|
event->ctrlKey? " CTRL" : "", event->shiftKey? " SHIFT" : "", event->altKey? " ALT" : "", event->metaKey? " META" : "");
|
|
|
|
|
|
for (int i = 0; i < event->numTouches; ++i)
|
|
|
{
|
|
|
const EmscriptenTouchPoint *t = &event->touches[i];
|
|
|
|
|
|
- printf(" %ld: screen: (%ld,%ld), client: (%ld,%ld), page: (%ld,%ld), isChanged: %d, onTarget: %d, canvas: (%ld, %ld)\n",
|
|
|
+ TraceLog(LOG_DEBUG, " %ld: screen: (%ld,%ld), client: (%ld,%ld), page: (%ld,%ld), isChanged: %d, onTarget: %d, canvas: (%ld, %ld)",
|
|
|
t->identifier, t->screenX, t->screenY, t->clientX, t->clientY, t->pageX, t->pageY, t->isChanged, t->onTarget, t->canvasX, t->canvasY);
|
|
|
}
|
|
|
*/
|
|
@@ -3858,12 +3858,12 @@ static EM_BOOL EmscriptenTouchCallback(int eventType, const EmscriptenTouchEvent
|
|
|
static EM_BOOL EmscriptenGamepadCallback(int eventType, const EmscriptenGamepadEvent *gamepadEvent, void *userData)
|
|
|
{
|
|
|
/*
|
|
|
- printf("%s: timeStamp: %g, connected: %d, index: %ld, numAxes: %d, numButtons: %d, id: \"%s\", mapping: \"%s\"\n",
|
|
|
+ TraceLog(LOG_DEBUG, "%s: timeStamp: %g, connected: %d, index: %ld, numAxes: %d, numButtons: %d, id: \"%s\", mapping: \"%s\"",
|
|
|
eventType != 0? emscripten_event_type_to_string(eventType) : "Gamepad state",
|
|
|
gamepadEvent->timestamp, gamepadEvent->connected, gamepadEvent->index, gamepadEvent->numAxes, gamepadEvent->numButtons, gamepadEvent->id, gamepadEvent->mapping);
|
|
|
|
|
|
- for(int i = 0; i < gamepadEvent->numAxes; ++i) printf("Axis %d: %g\n", i, gamepadEvent->axis[i]);
|
|
|
- for(int i = 0; i < gamepadEvent->numButtons; ++i) printf("Button %d: Digital: %d, Analog: %g\n", i, gamepadEvent->digitalButton[i], gamepadEvent->analogButton[i]);
|
|
|
+ for(int i = 0; i < gamepadEvent->numAxes; ++i) TraceLog(LOG_DEBUG, "Axis %d: %g", i, gamepadEvent->axis[i]);
|
|
|
+ for(int i = 0; i < gamepadEvent->numButtons; ++i) TraceLog(LOG_DEBUG, "Button %d: Digital: %d, Analog: %g", i, gamepadEvent->digitalButton[i], gamepadEvent->analogButton[i]);
|
|
|
*/
|
|
|
|
|
|
if ((gamepadEvent->connected) && (gamepadEvent->index < MAX_GAMEPADS)) gamepadReady[gamepadEvent->index] = true;
|
|
@@ -3939,17 +3939,13 @@ static void ProcessKeyboard(void)
|
|
|
for (int i = 0; i < 512; i++) currentKeyState[i] = 0;
|
|
|
|
|
|
// Check keys from event input workers (This is the new keyboard reading method)
|
|
|
- for (int i = 0; i < 512; i++)currentKeyState[i] = currentKeyStateEvdev[i];
|
|
|
+ for (int i = 0; i < 512; i++) currentKeyState[i] = currentKeyStateEvdev[i];
|
|
|
|
|
|
// Fill all read bytes (looking for keys)
|
|
|
for (int i = 0; i < bufferByteCount; i++)
|
|
|
{
|
|
|
TraceLog(LOG_DEBUG, "Bytes on keysBuffer: %i", bufferByteCount);
|
|
|
|
|
|
- //printf("Key(s) bytes: ");
|
|
|
- //for (int i = 0; i < bufferByteCount; i++) printf("0x%02x ", keysBuffer[i]);
|
|
|
- //printf("\n");
|
|
|
-
|
|
|
// NOTE: If (key == 0x1b), depending on next key, it could be a special keymap code!
|
|
|
// Up -> 1b 5b 41 / Left -> 1b 5b 44 / Right -> 1b 5b 43 / Down -> 1b 5b 42
|
|
|
if (keysBuffer[i] == 0x1b)
|