2015-06-21 09:33:46 -06:00
|
|
|
/*
|
2023-01-09 10:41:41 -07:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Simple program to test the SDL joystick routines */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL.h>
|
2022-12-14 21:58:20 -07:00
|
|
|
#include <SDL3/SDL_main.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
2022-11-25 17:00:06 -07:00
|
|
|
#ifdef __IOS__
|
2022-11-30 13:51:59 -07:00
|
|
|
#define SCREEN_WIDTH 320
|
|
|
|
#define SCREEN_HEIGHT 480
|
2015-06-21 09:33:46 -06:00
|
|
|
#else
|
2022-11-30 13:51:59 -07:00
|
|
|
#define SCREEN_WIDTH 640
|
|
|
|
#define SCREEN_HEIGHT 480
|
2015-06-21 09:33:46 -06:00
|
|
|
#endif
|
|
|
|
|
2020-04-18 22:41:37 -06:00
|
|
|
static SDL_Window *window = NULL;
|
|
|
|
static SDL_Renderer *screen = NULL;
|
|
|
|
static SDL_Joystick *joystick = NULL;
|
|
|
|
static SDL_bool done = SDL_FALSE;
|
|
|
|
|
|
|
|
static void
|
2021-11-23 05:10:50 -07:00
|
|
|
PrintJoystick(SDL_Joystick *joy)
|
2020-04-18 22:41:37 -06:00
|
|
|
{
|
|
|
|
const char *type;
|
|
|
|
char guid[64];
|
|
|
|
|
2022-12-27 06:50:46 -07:00
|
|
|
SDL_assert(SDL_GetJoystickFromInstanceID(SDL_GetJoystickInstanceID(joy)) == joy);
|
|
|
|
SDL_GetJoystickGUIDString(SDL_GetJoystickGUID(joy), guid, sizeof(guid));
|
|
|
|
switch (SDL_GetJoystickType(joy)) {
|
2022-12-27 12:31:54 -07:00
|
|
|
case SDL_JOYSTICK_TYPE_GAMEPAD:
|
2020-04-18 22:41:37 -06:00
|
|
|
type = "Game Controller";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_WHEEL:
|
|
|
|
type = "Wheel";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_ARCADE_STICK:
|
|
|
|
type = "Arcade Stick";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_FLIGHT_STICK:
|
|
|
|
type = "Flight Stick";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_DANCE_PAD:
|
|
|
|
type = "Dance Pad";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_GUITAR:
|
|
|
|
type = "Guitar";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_DRUM_KIT:
|
|
|
|
type = "Drum Kit";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_ARCADE_PAD:
|
|
|
|
type = "Arcade Pad";
|
|
|
|
break;
|
|
|
|
case SDL_JOYSTICK_TYPE_THROTTLE:
|
|
|
|
type = "Throttle";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
type = "Unknown";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
SDL_Log("Joystick\n");
|
2022-12-27 06:50:46 -07:00
|
|
|
SDL_Log(" name: %s\n", SDL_GetJoystickName(joy));
|
2021-11-11 14:53:11 -07:00
|
|
|
SDL_Log(" type: %s\n", type);
|
2021-11-23 05:10:50 -07:00
|
|
|
SDL_Log(" LED: %s\n", SDL_JoystickHasLED(joy) ? "yes" : "no");
|
|
|
|
SDL_Log(" rumble: %s\n", SDL_JoystickHasRumble(joy) ? "yes" : "no");
|
|
|
|
SDL_Log("trigger rumble: %s\n", SDL_JoystickHasRumbleTriggers(joy) ? "yes" : "no");
|
2022-12-27 06:50:46 -07:00
|
|
|
SDL_Log(" axes: %d\n", SDL_GetNumJoystickAxes(joy));
|
|
|
|
SDL_Log(" hats: %d\n", SDL_GetNumJoystickHats(joy));
|
|
|
|
SDL_Log(" buttons: %d\n", SDL_GetNumJoystickButtons(joy));
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log(" instance id: %" SDL_PRIu32 "\n", SDL_GetJoystickInstanceID(joy));
|
2021-11-11 14:53:11 -07:00
|
|
|
SDL_Log(" guid: %s\n", guid);
|
2022-12-27 06:50:46 -07:00
|
|
|
SDL_Log(" VID/PID: 0x%.4x/0x%.4x\n", SDL_GetJoystickVendor(joy), SDL_GetJoystickProduct(joy));
|
2020-04-18 22:41:37 -06:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
static void
|
|
|
|
DrawRect(SDL_Renderer *r, const int x, const int y, const int w, const int h)
|
|
|
|
{
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_FRect area;
|
|
|
|
area.x = (float)x;
|
|
|
|
area.y = (float)y;
|
|
|
|
area.w = (float)w;
|
|
|
|
area.h = (float)h;
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_RenderFillRect(r, &area);
|
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void loop(void *arg)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
int i;
|
|
|
|
|
2020-04-18 22:41:37 -06:00
|
|
|
/* blank screen, set up for drawing this frame. */
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_SetRenderDrawColor(screen, 0x0, 0x0, 0x0, SDL_ALPHA_OPAQUE);
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_RenderClear(screen);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2020-04-18 22:41:37 -06:00
|
|
|
while (SDL_PollEvent(&event)) {
|
|
|
|
switch (event.type) {
|
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_JOYSTICK_ADDED:
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log("Joystick device %" SDL_PRIu32 " added.\n", event.jdevice.which);
|
2022-11-27 09:38:43 -07:00
|
|
|
if (joystick == NULL) {
|
2022-12-27 06:50:46 -07:00
|
|
|
joystick = SDL_OpenJoystick(event.jdevice.which);
|
2020-04-18 22:41:37 -06:00
|
|
|
if (joystick) {
|
|
|
|
PrintJoystick(joystick);
|
|
|
|
} else {
|
|
|
|
SDL_Log("Couldn't open joystick: %s\n", SDL_GetError());
|
2018-08-09 17:00:17 -06:00
|
|
|
}
|
2020-04-18 22:41:37 -06:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_JOYSTICK_REMOVED:
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log("Joystick device %" SDL_PRIu32 " removed.\n", event.jdevice.which);
|
2022-12-27 06:50:46 -07:00
|
|
|
if (event.jdevice.which == SDL_GetJoystickInstanceID(joystick)) {
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_JoystickID *joysticks;
|
|
|
|
|
2022-12-27 06:50:46 -07:00
|
|
|
SDL_CloseJoystick(joystick);
|
2022-12-27 19:10:06 -07:00
|
|
|
joystick = NULL;
|
|
|
|
|
|
|
|
joysticks = SDL_GetJoysticks(NULL);
|
|
|
|
if (joysticks) {
|
|
|
|
if (joysticks[0]) {
|
|
|
|
joystick = SDL_OpenJoystick(joysticks[0]);
|
|
|
|
if (joystick) {
|
|
|
|
PrintJoystick(joystick);
|
|
|
|
} else {
|
|
|
|
SDL_Log("Couldn't open joystick: %s\n", SDL_GetError());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SDL_free(joysticks);
|
|
|
|
}
|
2020-04-18 22:41:37 -06:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_JOYSTICK_AXIS_MOTION:
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log("Joystick %" SDL_PRIu32 " axis %d value: %d\n",
|
2022-10-09 23:31:14 -06:00
|
|
|
event.jaxis.which,
|
|
|
|
event.jaxis.axis, event.jaxis.value);
|
2020-04-18 22:41:37 -06:00
|
|
|
break;
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_JOYSTICK_HAT_MOTION:
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log("Joystick %" SDL_PRIu32 " hat %d value:",
|
2022-10-09 23:31:14 -06:00
|
|
|
event.jhat.which, event.jhat.hat);
|
2022-11-27 09:38:43 -07:00
|
|
|
if (event.jhat.value == SDL_HAT_CENTERED) {
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_Log(" centered");
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if (event.jhat.value & SDL_HAT_UP) {
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_Log(" up");
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if (event.jhat.value & SDL_HAT_RIGHT) {
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_Log(" right");
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if (event.jhat.value & SDL_HAT_DOWN) {
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_Log(" down");
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if (event.jhat.value & SDL_HAT_LEFT) {
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_Log(" left");
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_Log("\n");
|
|
|
|
break;
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_JOYSTICK_BUTTON_DOWN:
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log("Joystick %" SDL_PRIu32 " button %d down\n",
|
2022-10-09 23:31:14 -06:00
|
|
|
event.jbutton.which, event.jbutton.button);
|
2020-04-18 22:41:37 -06:00
|
|
|
/* First button triggers a 0.5 second full strength rumble */
|
|
|
|
if (event.jbutton.button == 0) {
|
2022-12-27 06:50:46 -07:00
|
|
|
SDL_RumbleJoystick(joystick, 0xFFFF, 0xFFFF, 500);
|
2020-04-18 22:41:37 -06:00
|
|
|
}
|
|
|
|
break;
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_JOYSTICK_BUTTON_UP:
|
2022-12-27 19:10:06 -07:00
|
|
|
SDL_Log("Joystick %" SDL_PRIu32 " button %d up\n",
|
2022-10-09 23:31:14 -06:00
|
|
|
event.jbutton.which, event.jbutton.button);
|
2020-04-18 22:41:37 -06:00
|
|
|
break;
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_KEY_DOWN:
|
2020-06-28 14:23:05 -06:00
|
|
|
/* Press the L key to lag for 3 seconds, to see what happens
|
|
|
|
when SDL doesn't service the event loop quickly. */
|
|
|
|
if (event.key.keysym.sym == SDLK_l) {
|
|
|
|
SDL_Log("Lagging for 3 seconds...\n");
|
|
|
|
SDL_Delay(3000);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-04-18 22:41:37 -06:00
|
|
|
if ((event.key.keysym.sym != SDLK_ESCAPE) &&
|
|
|
|
(event.key.keysym.sym != SDLK_AC_BACK)) {
|
2015-06-21 09:33:46 -06:00
|
|
|
break;
|
|
|
|
}
|
Add and use `SDL_FALLTHROUGH` for fallthroughs
Case fallthrough warnings can be suppressed using the __fallthrough__
compiler attribute. Unfortunately, not all compilers have this
attribute, or even have __has_attribute to check if they have the
__fallthrough__ attribute. [[fallthrough]] is also available in C++17
and the next C2x, but not everyone uses C++17 or C2x.
So define the SDL_FALLTHROUGH macro to deal with those problems - if we
are using C++17 or C2x, it expands to [[fallthrough]]; else if the
compiler has __has_attribute and has the __fallthrough__ attribute, then
it expands to __attribute__((__fallthrough__)); else it expands to an
empty statement, with a /* fallthrough */ comment (it's a do {} while
(0) statement, because users of this macro need to use a semicolon,
because [[fallthrough]] and __attribute__((__fallthrough__)) require a
semicolon).
Clang before Clang 10 and GCC before GCC 7 have problems with using
__attribute__ as a sole statement and warn about a "declaration not
declaring anything", so fall back to using the /* fallthrough */ comment
if we are using those older compiler versions.
Applications using SDL are also free to use this macro (because it is
defined in begin_code.h).
All existing /* fallthrough */ comments have been replaced with this
macro. Some of them were unnecessary because they were the last case in
a switch; using SDL_FALLTHROUGH in those cases would result in a compile
error on compilers that support __fallthrough__, for having a
__attribute__((__fallthrough__)) statement that didn't immediately
precede a case label.
2021-09-27 15:38:12 -06:00
|
|
|
SDL_FALLTHROUGH;
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_FINGER_DOWN:
|
2023-01-29 20:06:08 -07:00
|
|
|
case SDL_EVENT_MOUSE_BUTTON_DOWN:
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_QUIT:
|
2020-04-18 22:41:37 -06:00
|
|
|
done = SDL_TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
2020-04-18 22:41:37 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (joystick) {
|
2022-10-02 10:08:39 -06:00
|
|
|
const int BUTTONS_PER_LINE = ((SCREEN_WIDTH - 4) / 34);
|
|
|
|
int x, y;
|
2020-04-18 22:41:37 -06:00
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Update visual joystick state */
|
|
|
|
SDL_SetRenderDrawColor(screen, 0x00, 0xFF, 0x00, SDL_ALPHA_OPAQUE);
|
2022-12-27 06:50:46 -07:00
|
|
|
y = SCREEN_HEIGHT - ((((SDL_GetNumJoystickButtons(joystick) + (BUTTONS_PER_LINE - 1)) / BUTTONS_PER_LINE) + 1) * 34);
|
|
|
|
for (i = 0; i < SDL_GetNumJoystickButtons(joystick); ++i) {
|
2022-10-02 10:08:39 -06:00
|
|
|
if ((i % BUTTONS_PER_LINE) == 0) {
|
|
|
|
y += 34;
|
|
|
|
}
|
2022-12-27 06:50:46 -07:00
|
|
|
if (SDL_GetJoystickButton(joystick, i) == SDL_PRESSED) {
|
2022-10-02 10:08:39 -06:00
|
|
|
x = 2 + (i % BUTTONS_PER_LINE) * 34;
|
|
|
|
DrawRect(screen, x, y, 32, 32);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(screen, 0xFF, 0x00, 0x00, SDL_ALPHA_OPAQUE);
|
2022-12-27 06:50:46 -07:00
|
|
|
for (i = 0; i < SDL_GetNumJoystickAxes(joystick); ++i) {
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Draw the X/Y axis */
|
2022-12-27 06:50:46 -07:00
|
|
|
x = (((int)SDL_GetJoystickAxis(joystick, i)) + 32768);
|
2015-06-21 09:33:46 -06:00
|
|
|
x *= SCREEN_WIDTH;
|
|
|
|
x /= 65535;
|
|
|
|
if (x < 0) {
|
|
|
|
x = 0;
|
|
|
|
} else if (x > (SCREEN_WIDTH - 16)) {
|
|
|
|
x = SCREEN_WIDTH - 16;
|
|
|
|
}
|
|
|
|
++i;
|
2022-12-27 06:50:46 -07:00
|
|
|
if (i < SDL_GetNumJoystickAxes(joystick)) {
|
|
|
|
y = (((int)SDL_GetJoystickAxis(joystick, i)) + 32768);
|
2015-06-21 09:33:46 -06:00
|
|
|
} else {
|
|
|
|
y = 32768;
|
|
|
|
}
|
|
|
|
y *= SCREEN_HEIGHT;
|
|
|
|
y /= 65535;
|
|
|
|
if (y < 0) {
|
|
|
|
y = 0;
|
|
|
|
} else if (y > (SCREEN_HEIGHT - 16)) {
|
|
|
|
y = SCREEN_HEIGHT - 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawRect(screen, x, y, 16, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0xFF, SDL_ALPHA_OPAQUE);
|
2022-12-27 06:50:46 -07:00
|
|
|
for (i = 0; i < SDL_GetNumJoystickHats(joystick); ++i) {
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Derive the new position */
|
2022-12-27 06:50:46 -07:00
|
|
|
const Uint8 hat_pos = SDL_GetJoystickHat(joystick, i);
|
2022-11-30 13:51:59 -07:00
|
|
|
x = SCREEN_WIDTH / 2;
|
|
|
|
y = SCREEN_HEIGHT / 2;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
if (hat_pos & SDL_HAT_UP) {
|
|
|
|
y = 0;
|
|
|
|
} else if (hat_pos & SDL_HAT_DOWN) {
|
2022-11-30 13:51:59 -07:00
|
|
|
y = SCREEN_HEIGHT - 8;
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hat_pos & SDL_HAT_LEFT) {
|
|
|
|
x = 0;
|
|
|
|
} else if (hat_pos & SDL_HAT_RIGHT) {
|
2022-11-30 13:51:59 -07:00
|
|
|
x = SCREEN_WIDTH - 8;
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
DrawRect(screen, x, y, 8, 8);
|
|
|
|
}
|
2020-04-18 22:41:37 -06:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-09-02 16:06:49 -06:00
|
|
|
SDL_Delay(16);
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_RenderPresent(screen);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
if (done) {
|
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2020-04-18 22:41:37 -06:00
|
|
|
SDL_SetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK, "0");
|
|
|
|
|
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2020-04-18 22:41:37 -06:00
|
|
|
/* Initialize SDL (Note: video is required to start event loop) */
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Create a window to display joystick axis position */
|
2023-03-05 15:44:38 -07:00
|
|
|
window = SDL_CreateWindow("Joystick Test", SCREEN_WIDTH, SCREEN_HEIGHT, 0);
|
2015-06-21 09:33:46 -06:00
|
|
|
if (window == NULL) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create window: %s\n", SDL_GetError());
|
|
|
|
return SDL_FALSE;
|
|
|
|
}
|
|
|
|
|
2022-12-13 21:26:49 -07:00
|
|
|
screen = SDL_CreateRenderer(window, NULL, 0);
|
2015-06-21 09:33:46 -06:00
|
|
|
if (screen == NULL) {
|
|
|
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't create renderer: %s\n", SDL_GetError());
|
|
|
|
SDL_DestroyWindow(window);
|
|
|
|
return SDL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(screen, 0x00, 0x00, 0x00, SDL_ALPHA_OPAQUE);
|
|
|
|
SDL_RenderClear(screen);
|
|
|
|
SDL_RenderPresent(screen);
|
|
|
|
|
|
|
|
/* Loop, getting joystick events! */
|
|
|
|
#ifdef __EMSCRIPTEN__
|
2020-04-18 22:41:37 -06:00
|
|
|
emscripten_set_main_loop_arg(loop, NULL, 0, 1);
|
2015-06-21 09:33:46 -06:00
|
|
|
#else
|
|
|
|
while (!done) {
|
2020-04-18 22:41:37 -06:00
|
|
|
loop(NULL);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
SDL_DestroyRenderer(screen);
|
|
|
|
SDL_DestroyWindow(window);
|
|
|
|
|
|
|
|
SDL_QuitSubSystem(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|