2018-01-21 10:31:38 +01:00
|
|
|
/*
|
2019-06-02 17:13:34 +02:00
|
|
|
Copyright (C) 2018-2019 Parallel Realities
|
2018-01-21 10:31:38 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "init.h"
|
|
|
|
|
2018-02-08 22:54:11 +01:00
|
|
|
static void loadConfig(void);
|
2018-02-06 23:26:05 +01:00
|
|
|
static void initJoypad(void);
|
2018-02-12 19:26:47 +01:00
|
|
|
static void showLoadingStep(float step, float maxSteps);
|
2018-02-06 23:26:05 +01:00
|
|
|
|
2018-02-03 14:07:56 +01:00
|
|
|
void init18N(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int languageId = -1;
|
|
|
|
|
|
|
|
setlocale(LC_NUMERIC, "");
|
|
|
|
|
|
|
|
for (i = 1 ; i < argc ; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(argv[i], "-language") == 0)
|
|
|
|
{
|
|
|
|
languageId = i + 1;
|
|
|
|
|
|
|
|
if (languageId >= argc)
|
|
|
|
{
|
2018-03-18 10:42:34 +01:00
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_WARN, "You must specify a language to use with -language. Using default.");
|
2018-02-03 14:07:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setLanguage("blobwarsAttrition", languageId == -1 ? NULL : argv[languageId]);
|
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "Numeric is %s", setlocale(LC_NUMERIC, "C"));
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "atof(2.75) is %f", atof("2.75"));
|
|
|
|
}
|
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
void initSDL(void)
|
|
|
|
{
|
|
|
|
int rendererFlags, windowFlags;
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
/* done in src/plat/ */
|
|
|
|
createSaveFolder();
|
2018-02-08 22:54:11 +01:00
|
|
|
|
|
|
|
loadConfig();
|
2018-01-21 10:31:38 +01:00
|
|
|
|
2018-02-03 00:01:51 +01:00
|
|
|
rendererFlags = SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC;
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
windowFlags = 0;
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-14 08:41:07 +01:00
|
|
|
if (app.config.fullscreen)
|
|
|
|
{
|
|
|
|
windowFlags |= SDL_WINDOW_FULLSCREEN;
|
|
|
|
}
|
2018-01-21 10:31:38 +01:00
|
|
|
|
2018-02-07 19:27:42 +01:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO|SDL_INIT_AUDIO|SDL_INIT_JOYSTICK) < 0)
|
2018-01-21 10:31:38 +01:00
|
|
|
{
|
|
|
|
printf("Couldn't initialize SDL: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Mix_OpenAudio(44100, MIX_DEFAULT_FORMAT, 2, 1024) == -1)
|
|
|
|
{
|
|
|
|
printf("Couldn't initialize SDL Mixer\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2018-02-25 18:29:44 +01:00
|
|
|
Mix_AllocateChannels(MAX_SND_CHANNELS);
|
2018-02-14 08:41:07 +01:00
|
|
|
|
2018-02-20 12:29:50 +01:00
|
|
|
Mix_Volume(-1, app.config.soundVolume);
|
|
|
|
Mix_VolumeMusic(app.config.musicVolume);
|
2018-01-21 10:31:38 +01:00
|
|
|
|
2018-02-27 22:54:52 +01:00
|
|
|
app.window = SDL_CreateWindow("Blob Wars : Attrition", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, app.config.winWidth, app.config.winHeight, windowFlags);
|
2018-01-21 10:31:38 +01:00
|
|
|
|
|
|
|
SDL_SetHint(SDL_HINT_RENDER_SCALE_QUALITY, "linear");
|
|
|
|
|
|
|
|
app.renderer = SDL_CreateRenderer(app.window, -1, rendererFlags);
|
|
|
|
|
|
|
|
IMG_Init(IMG_INIT_PNG | IMG_INIT_JPG);
|
|
|
|
|
|
|
|
if (TTF_Init() < 0)
|
|
|
|
{
|
|
|
|
printf("Couldn't initialize SDL TTF: %s\n", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
2018-02-06 23:26:05 +01:00
|
|
|
|
|
|
|
initJoypad();
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-12-22 22:53:19 +01:00
|
|
|
app.uiOffset.x = (app.config.winWidth / 2) - (UI_WIDTH / 2);
|
|
|
|
app.uiOffset.y = (app.config.winHeight / 2) - (UI_HEIGHT / 2);
|
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "UI offset: %d,%d\n", app.uiOffset.x, app.uiOffset.y);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-17 17:52:51 +01:00
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
2018-02-06 23:26:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void initJoypad(void)
|
|
|
|
{
|
|
|
|
int i, n;
|
|
|
|
|
|
|
|
n = SDL_NumJoysticks();
|
|
|
|
|
2018-02-07 19:27:42 +01:00
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "%d joysticks available", n);
|
2018-02-06 23:26:05 +01:00
|
|
|
|
|
|
|
for (i = 0 ; i < n ; i++)
|
|
|
|
{
|
2018-02-07 19:27:42 +01:00
|
|
|
app.joypad = SDL_JoystickOpen(i);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-07 19:27:42 +01:00
|
|
|
if (app.joypad)
|
|
|
|
{
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "Using joystick '%s'", SDL_JoystickNameForIndex(i));
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "\tAxes: %d", SDL_JoystickNumAxes(app.joypad));
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "\tButtons: %d", SDL_JoystickNumButtons(app.joypad));
|
|
|
|
return;
|
|
|
|
}
|
2018-02-06 23:26:05 +01:00
|
|
|
}
|
2018-01-21 10:31:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void initGameSystem(void)
|
|
|
|
{
|
|
|
|
int i, numInitFuns;
|
|
|
|
void (*initFuncs[]) (void) = {
|
2018-04-01 18:41:45 +02:00
|
|
|
initStrings,
|
2018-01-21 10:31:38 +01:00
|
|
|
initGraphics,
|
2018-03-30 20:23:57 +02:00
|
|
|
initTextures,
|
2018-02-18 15:22:45 +01:00
|
|
|
initBackground,
|
2018-01-28 13:01:39 +01:00
|
|
|
initFonts,
|
2018-01-28 13:31:06 +01:00
|
|
|
initAtlas,
|
2018-02-14 09:32:09 +01:00
|
|
|
initWidgets,
|
2018-02-15 22:38:26 +01:00
|
|
|
initGame,
|
2018-01-28 18:23:49 +01:00
|
|
|
initSounds,
|
2018-01-29 23:12:18 +01:00
|
|
|
initSprites,
|
2018-02-15 22:38:26 +01:00
|
|
|
initEntityFactory,
|
2018-02-19 09:28:42 +01:00
|
|
|
initStats,
|
2018-02-15 22:38:26 +01:00
|
|
|
initTrophies
|
2018-01-21 10:31:38 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
numInitFuns = sizeof(initFuncs) / sizeof(void*);
|
|
|
|
|
|
|
|
for (i = 0 ; i < numInitFuns ; i++)
|
|
|
|
{
|
2018-02-12 19:26:47 +01:00
|
|
|
showLoadingStep(i + 1, numInitFuns);
|
2018-01-21 10:31:38 +01:00
|
|
|
|
|
|
|
initFuncs[i]();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-12 19:26:47 +01:00
|
|
|
/*
|
|
|
|
* Just in case the initial loading takes a while on the target machine. The rest of the loading a pretty quick by comparison.
|
|
|
|
*/
|
|
|
|
static void showLoadingStep(float step, float maxSteps)
|
|
|
|
{
|
|
|
|
SDL_Rect r;
|
|
|
|
|
|
|
|
prepareScene();
|
|
|
|
|
2018-12-22 22:53:19 +01:00
|
|
|
r.w = 600;
|
|
|
|
r.h = 12;
|
|
|
|
r.x = (app.config.winWidth / 2) - r.w / 2;
|
|
|
|
r.y = (app.config.winHeight / 2) - r.h / 2;
|
2018-02-12 19:26:47 +01:00
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(app.renderer, 128, 128, 128, 255);
|
|
|
|
SDL_RenderDrawRect(app.renderer, &r);
|
|
|
|
|
|
|
|
r.w *= (step / maxSteps);
|
|
|
|
r.x += 2;
|
|
|
|
r.y += 2;
|
|
|
|
r.w -= 4;
|
|
|
|
r.h -= 4;
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(app.renderer, 128, 196, 255, 255);
|
|
|
|
SDL_RenderFillRect(app.renderer, &r);
|
|
|
|
|
|
|
|
presentScene();
|
|
|
|
|
|
|
|
SDL_Delay(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void initDefaultConfig(void)
|
|
|
|
{
|
|
|
|
int i;
|
2018-02-27 22:54:52 +01:00
|
|
|
|
|
|
|
app.config.winWidth = SCREEN_WIDTH;
|
|
|
|
app.config.winHeight = SCREEN_HEIGHT;
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-19 20:15:07 +01:00
|
|
|
app.config.inventory = 1;
|
2018-02-12 19:26:47 +01:00
|
|
|
app.config.blood = 1;
|
2018-02-19 20:15:07 +01:00
|
|
|
app.config.trophyAlert = 1;
|
2018-02-12 19:26:47 +01:00
|
|
|
|
2018-02-20 12:29:50 +01:00
|
|
|
app.config.musicVolume = 100;
|
|
|
|
app.config.soundVolume = 128;
|
2018-02-12 19:26:47 +01:00
|
|
|
|
|
|
|
app.config.keyControls[CONTROL_LEFT] = SDL_SCANCODE_A;
|
|
|
|
app.config.keyControls[CONTROL_RIGHT] = SDL_SCANCODE_D;
|
|
|
|
app.config.keyControls[CONTROL_UP] = SDL_SCANCODE_W;
|
|
|
|
app.config.keyControls[CONTROL_DOWN] = SDL_SCANCODE_S;
|
|
|
|
app.config.keyControls[CONTROL_JUMP] = SDL_SCANCODE_I;
|
|
|
|
app.config.keyControls[CONTROL_FIRE] = SDL_SCANCODE_J;
|
|
|
|
app.config.keyControls[CONTROL_JETPACK] = SDL_SCANCODE_L;
|
|
|
|
app.config.keyControls[CONTROL_MAP] = SDL_SCANCODE_TAB;
|
|
|
|
app.config.keyControls[CONTROL_PAUSE] = SDL_SCANCODE_P;
|
|
|
|
|
|
|
|
/* can't use memset here, as it doesn't work */
|
|
|
|
for (i = 0 ; i < CONTROL_MAX ; i++)
|
|
|
|
{
|
|
|
|
app.config.joypadControls[i] = -1;
|
|
|
|
}
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-12 19:26:47 +01:00
|
|
|
app.config.joypadControls[CONTROL_JUMP] = 1;
|
|
|
|
app.config.joypadControls[CONTROL_FIRE] = 3;
|
|
|
|
app.config.joypadControls[CONTROL_JETPACK] = 2;
|
|
|
|
app.config.joypadControls[CONTROL_MAP] = 6;
|
|
|
|
app.config.joypadControls[CONTROL_PAUSE] = 7;
|
|
|
|
}
|
|
|
|
|
2018-02-08 22:54:11 +01:00
|
|
|
static void loadConfig(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
cJSON *root, *controlsJSON, *node;
|
2018-04-21 12:54:06 +02:00
|
|
|
char *text, *filename;
|
2018-02-08 22:54:11 +01:00
|
|
|
|
2018-02-12 19:26:47 +01:00
|
|
|
initDefaultConfig();
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-04-21 12:54:06 +02:00
|
|
|
filename = buildFormattedString("%s/%s", app.saveDir, CONFIG_FILENAME);
|
2018-02-12 19:26:47 +01:00
|
|
|
|
2018-03-18 10:42:34 +01:00
|
|
|
if (fileExists(filename))
|
2018-02-08 22:54:11 +01:00
|
|
|
{
|
2018-03-18 10:42:34 +01:00
|
|
|
text = readFile(filename);
|
2018-02-08 22:54:11 +01:00
|
|
|
|
|
|
|
root = cJSON_Parse(text);
|
|
|
|
|
|
|
|
app.config.fullscreen = cJSON_GetObjectItem(root, "fullscreen")->valueint;
|
2018-02-27 22:54:52 +01:00
|
|
|
app.config.winWidth = cJSON_GetObjectItem(root, "winWidth")->valueint;
|
|
|
|
app.config.winHeight = cJSON_GetObjectItem(root, "winHeight")->valueint;
|
|
|
|
|
2018-02-08 22:54:11 +01:00
|
|
|
app.config.musicVolume = cJSON_GetObjectItem(root, "musicVolume")->valueint;
|
|
|
|
app.config.soundVolume = cJSON_GetObjectItem(root, "soundVolume")->valueint;
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-19 20:15:07 +01:00
|
|
|
app.config.inventory = cJSON_GetObjectItem(root, "inventory")->valueint;
|
2018-02-14 08:14:11 +01:00
|
|
|
app.config.blood = cJSON_GetObjectItem(root, "blood")->valueint;
|
2018-02-19 20:15:07 +01:00
|
|
|
app.config.trophyAlert = cJSON_GetObjectItem(root, "trophyAlert")->valueint;
|
2018-02-08 22:54:11 +01:00
|
|
|
|
|
|
|
controlsJSON = cJSON_GetObjectItem(root, "controls");
|
|
|
|
if (controlsJSON)
|
|
|
|
{
|
|
|
|
node = cJSON_GetObjectItem(controlsJSON, "keys")->child;
|
|
|
|
while (node)
|
|
|
|
{
|
|
|
|
i = lookup(node->string);
|
|
|
|
|
|
|
|
app.config.keyControls[i] = node->valueint;
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
node = cJSON_GetObjectItem(controlsJSON, "joypad")->child;
|
|
|
|
while (node)
|
|
|
|
{
|
|
|
|
i = lookup(node->string);
|
|
|
|
|
|
|
|
app.config.joypadControls[i] = node->valueint;
|
|
|
|
|
|
|
|
node = node->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cJSON_Delete(root);
|
|
|
|
free(text);
|
|
|
|
}
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-12-22 23:46:38 +01:00
|
|
|
/* don't go higher than 8K or lower than 1280 x 720 */
|
|
|
|
app.config.winWidth = MIN(MAX(app.config.winWidth, 1280), 7680);
|
|
|
|
app.config.winHeight = MIN(MAX(app.config.winHeight, 720), 4320);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-04-21 12:54:06 +02:00
|
|
|
free(filename);
|
2018-02-08 22:54:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void saveConfig(void)
|
|
|
|
{
|
|
|
|
int i;
|
2018-04-21 12:54:06 +02:00
|
|
|
char *out, *filename;
|
2018-02-08 22:54:11 +01:00
|
|
|
cJSON *root, *controlsJSON, *keysJSON, *joypadJSON;
|
|
|
|
|
2018-04-21 12:54:06 +02:00
|
|
|
filename = buildFormattedString("%s/%s", app.saveDir, CONFIG_FILENAME);
|
2018-02-08 22:54:11 +01:00
|
|
|
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "Saving config ...");
|
|
|
|
|
|
|
|
root = cJSON_CreateObject();
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-08 22:54:11 +01:00
|
|
|
cJSON_AddNumberToObject(root, "fullscreen", app.config.fullscreen);
|
2018-02-27 22:54:52 +01:00
|
|
|
cJSON_AddNumberToObject(root, "winWidth", app.config.winWidth);
|
|
|
|
cJSON_AddNumberToObject(root, "winHeight", app.config.winHeight);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-08 22:54:11 +01:00
|
|
|
cJSON_AddNumberToObject(root, "musicVolume", app.config.musicVolume);
|
|
|
|
cJSON_AddNumberToObject(root, "soundVolume", app.config.soundVolume);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-02-14 08:14:11 +01:00
|
|
|
cJSON_AddNumberToObject(root, "blood", app.config.blood);
|
2018-02-19 20:15:07 +01:00
|
|
|
cJSON_AddNumberToObject(root, "inventory", app.config.inventory);
|
|
|
|
cJSON_AddNumberToObject(root, "trophyAlert", app.config.trophyAlert);
|
2018-02-08 22:54:11 +01:00
|
|
|
|
|
|
|
keysJSON = cJSON_CreateObject();
|
|
|
|
for (i = 0 ; i < CONTROL_MAX ; i++)
|
|
|
|
{
|
|
|
|
cJSON_AddNumberToObject(keysJSON, getLookupName("CONTROL_", i), app.config.keyControls[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
joypadJSON = cJSON_CreateObject();
|
|
|
|
for (i = 0 ; i < CONTROL_MAX ; i++)
|
|
|
|
{
|
|
|
|
cJSON_AddNumberToObject(joypadJSON, getLookupName("CONTROL_", i), app.config.joypadControls[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
controlsJSON = cJSON_CreateObject();
|
|
|
|
cJSON_AddItemToObject(controlsJSON, "keys", keysJSON);
|
|
|
|
cJSON_AddItemToObject(controlsJSON, "joypad", joypadJSON);
|
|
|
|
cJSON_AddItemToObject(root, "controls", controlsJSON);
|
|
|
|
|
|
|
|
out = cJSON_Print(root);
|
|
|
|
|
2018-03-18 10:42:34 +01:00
|
|
|
if (!writeFile(filename, out))
|
2018-02-08 22:54:11 +01:00
|
|
|
{
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_ERROR, "Failed to save config");
|
2018-03-18 10:42:34 +01:00
|
|
|
exit(1);
|
2018-02-08 22:54:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cJSON_Delete(root);
|
|
|
|
free(out);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-04-21 12:54:06 +02:00
|
|
|
free(filename);
|
2018-02-08 22:54:11 +01:00
|
|
|
}
|
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
void cleanup(void)
|
|
|
|
{
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "Cleaning up ...");
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
destroyLookups();
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
destroyTextures();
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
destroyGame();
|
2018-02-06 23:26:05 +01:00
|
|
|
|
2018-12-22 23:46:38 +01:00
|
|
|
if (app.joypad != NULL)
|
|
|
|
{
|
2018-02-07 19:27:42 +01:00
|
|
|
SDL_JoystickClose(app.joypad);
|
2018-02-06 23:26:05 +01:00
|
|
|
}
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
SDL_DestroyRenderer(app.renderer);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
SDL_DestroyWindow(app.window);
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
TTF_Quit();
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "Done.");
|
2019-06-02 17:13:34 +02:00
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
SDL_Quit();
|
|
|
|
}
|