1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

Create system.c

This commit is contained in:
twinaphex 2015-06-25 14:25:21 +02:00
parent 7bf6d1e5bb
commit b9479576e8
4 changed files with 55 additions and 37 deletions

View File

@ -101,6 +101,7 @@ OBJ += frontend/frontend.o \
ui/drivers/ui_null.o \
libretro_version_1.o \
retroarch.o \
system.o \
retroarch_info.o \
command_event.o \
runloop.o \

View File

@ -664,6 +664,7 @@ RETROARCH
#include "../retroarch_info.c"
#include "../runloop.c"
#include "../runloop_data.c"
#include "../system.c"
/*============================================================

View File

@ -317,43 +317,6 @@ static void set_special_paths(char **argv, unsigned num_content)
sizeof(settings->system_directory));
}
static rarch_system_info_t *g_system;
static rarch_system_info_t *rarch_system_info_new(void)
{
return (rarch_system_info_t*)calloc(1, sizeof(rarch_system_info_t));
}
rarch_system_info_t *rarch_system_info_get_ptr(void)
{
if (!g_system)
g_system = rarch_system_info_new();
return g_system;
}
void rarch_system_info_free(void)
{
if (!g_system)
return;
if (g_system->core_options)
{
core_option_flush(g_system->core_options);
core_option_free(g_system->core_options);
}
/* No longer valid. */
if (g_system->special)
free(g_system->special);
g_system->special = NULL;
if (g_system->ports)
free(g_system->ports);
g_system->ports = NULL;
free(g_system);
g_system = NULL;
}
void set_paths_redirect(const char *path)
{
global_t *global = global_get_ptr();

53
system.c Normal file
View File

@ -0,0 +1,53 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2011-2015 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "system.h"
static rarch_system_info_t *g_system;
static rarch_system_info_t *rarch_system_info_new(void)
{
return (rarch_system_info_t*)calloc(1, sizeof(rarch_system_info_t));
}
rarch_system_info_t *rarch_system_info_get_ptr(void)
{
if (!g_system)
g_system = rarch_system_info_new();
return g_system;
}
void rarch_system_info_free(void)
{
if (!g_system)
return;
if (g_system->core_options)
{
core_option_flush(g_system->core_options);
core_option_free(g_system->core_options);
}
/* No longer valid. */
if (g_system->special)
free(g_system->special);
g_system->special = NULL;
if (g_system->ports)
free(g_system->ports);
g_system->ports = NULL;
free(g_system);
g_system = NULL;
}