RetroArch/content.c

628 lines
16 KiB
C
Raw Normal View History

/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2015-01-07 16:46:50 +00:00
* 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 "content.h"
2014-10-21 21:53:09 +00:00
#include "file_ops.h"
2014-10-21 22:23:06 +00:00
#include <file/file_path.h>
#include "general.h"
#include <stdlib.h>
#include <boolean.h>
#include <string.h>
#include <time.h>
#include "dynamic.h"
#include "movie.h"
#include "patch.h"
#include "compat/strl.h"
#include "hash.h"
#include <file/file_extract.h>
2013-04-11 20:35:15 +00:00
#ifdef _WIN32
#ifdef _XBOX
#include <xtl.h>
#define setmode _setmode
#define INVALID_FILE_ATTRIBUTES -1
2013-04-11 20:35:15 +00:00
#else
#include <io.h>
#include <fcntl.h>
#include <windows.h>
#endif
#endif
2015-01-08 02:58:14 +00:00
/**
* read_content_file:
* @path : buffer of the content file.
* @buf : size of the content file.
2015-02-16 02:31:37 +00:00
* @length : size of the content file that has been read from.
2015-01-08 02:58:14 +00:00
*
2015-03-18 03:54:34 +00:00
* Read the content file. If read into memory, also performs soft patching
2015-01-08 02:58:14 +00:00
* (see patch_content function) in case soft patching has not been
* blocked by the enduser.
*
2015-02-16 02:31:37 +00:00
* Returns: true if successful, false on error.
2015-01-08 02:58:14 +00:00
**/
2015-03-18 03:54:34 +00:00
static bool read_content_file(unsigned i, const char *path, void **buf,
2015-02-16 02:46:27 +00:00
ssize_t *length)
{
uint8_t *ret_buf = NULL;
2015-03-21 03:43:18 +00:00
global_t *global = global_get_ptr();
RARCH_LOG("Loading content file: %s.\n", path);
2015-02-16 02:31:37 +00:00
if (!read_file(path, (void**) &ret_buf, length))
return false;
2014-09-02 15:05:15 +00:00
2015-02-16 02:31:37 +00:00
if (*length <= 0)
return false;
2015-03-18 03:54:34 +00:00
if (i != 0)
return true;
2014-09-02 03:10:54 +00:00
/* Attempt to apply a patch. */
2015-03-21 03:43:18 +00:00
if (!global->block_patch)
2015-02-16 02:31:37 +00:00
patch_content(&ret_buf, length);
global->content_crc = zlib_crc32_calculate(ret_buf, *length);
2014-09-02 03:10:54 +00:00
2015-03-21 03:43:18 +00:00
RARCH_LOG("CRC32: 0x%x .\n", (unsigned)global->content_crc);
*buf = ret_buf;
2015-02-16 02:31:37 +00:00
return true;
}
2015-01-09 14:33:58 +00:00
/**
* dump_to_file_desperate:
* @data : pointer to data buffer.
* @size : size of @data.
* @type : type of file to be saved.
*
* Attempt to save valuable RAM data somewhere.
**/
2014-09-02 03:10:54 +00:00
static void dump_to_file_desperate(const void *data,
size_t size, unsigned type)
{
char path[PATH_MAX_LENGTH], timebuf[PATH_MAX_LENGTH];
time_t time_;
#if defined(_WIN32) && !defined(_XBOX)
const char *base = getenv("APPDATA");
#elif defined(__CELLOS_LV2__) || defined(_XBOX)
const char *base = NULL;
#else
const char *base = getenv("HOME");
#endif
if (!base)
goto error;
2014-04-04 12:58:42 +00:00
snprintf(path, sizeof(path), "%s/RetroArch-recovery-%u", base, type);
time(&time_);
strftime(timebuf, sizeof(timebuf), "%Y-%m-%d-%H-%M-%S", localtime(&time_));
strlcat(path, timebuf, sizeof(path));
2013-01-21 22:51:56 +00:00
if (write_file(path, data, size))
RARCH_WARN("Succeeded in saving RAM data to \"%s\".\n", path);
else
goto error;
return;
error:
RARCH_WARN("Failed ... Cannot recover save file.\n");
}
2015-01-08 02:58:14 +00:00
struct sram_block
{
unsigned type;
void *data;
size_t size;
};
/**
* save_state:
* @path : path of saved state that shall be written to.
2015-01-08 02:58:14 +00:00
*
* Save a state from memory to disk.
*
* Returns: true if successful, false otherwise.
**/
bool save_state(const char *path)
{
bool ret = false;
void *data = NULL;
2015-01-08 02:58:14 +00:00
size_t size = pretro_serialize_size();
RARCH_LOG("Saving state: \"%s\".\n", path);
if (size == 0)
return false;
data = malloc(size);
if (!data)
{
RARCH_ERR("Failed to allocate memory for save state buffer.\n");
return false;
}
RARCH_LOG("State size: %d bytes.\n", (int)size);
ret = pretro_serialize(data, size);
if (ret)
2013-01-21 22:51:56 +00:00
ret = write_file(path, data, size);
if (!ret)
RARCH_ERR("Failed to save state to \"%s\".\n", path);
free(data);
return ret;
}
2015-01-08 02:58:14 +00:00
/**
* load_state:
2015-01-08 02:59:10 +00:00
* @path : path that state will be loaded from.
2015-01-08 02:58:14 +00:00
*
* Load a state from disk to memory.
*
* Returns: true if successful, false otherwise.
**/
bool load_state(const char *path)
{
unsigned i;
2015-03-20 19:43:22 +00:00
ssize_t size;
2015-03-22 06:37:25 +00:00
unsigned num_blocks = 0;
void *buf = NULL;
struct sram_block *blocks = NULL;
2015-03-22 06:37:25 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
bool ret = read_file(path, &buf, &size);
RARCH_LOG("Loading state: \"%s\".\n", path);
2015-02-16 02:31:37 +00:00
if (!ret || size < 0)
{
RARCH_ERR("Failed to load state from \"%s\".\n", path);
return false;
}
RARCH_LOG("State size: %u bytes.\n", (unsigned)size);
2015-03-21 03:43:18 +00:00
if (settings->block_sram_overwrite && global->savefiles
&& global->savefiles->size)
{
RARCH_LOG("Blocking SRAM overwrite.\n");
2014-09-02 03:10:54 +00:00
blocks = (struct sram_block*)
2015-03-21 03:43:18 +00:00
calloc(global->savefiles->size, sizeof(*blocks));
2014-09-02 03:10:54 +00:00
2014-04-04 13:35:46 +00:00
if (blocks)
{
2015-03-21 03:43:18 +00:00
num_blocks = global->savefiles->size;
2014-04-04 13:35:46 +00:00
for (i = 0; i < num_blocks; i++)
2015-03-21 03:43:18 +00:00
blocks[i].type = global->savefiles->elems[i].attr.i;
}
}
2014-04-04 13:35:46 +00:00
for (i = 0; i < num_blocks; i++)
blocks[i].size = pretro_get_memory_size(blocks[i].type);
2014-04-04 13:35:46 +00:00
for (i = 0; i < num_blocks; i++)
if (blocks[i].size)
blocks[i].data = malloc(blocks[i].size);
2014-09-02 03:10:54 +00:00
/* Backup current SRAM which is overwritten by unserialize. */
2014-04-04 13:35:46 +00:00
for (i = 0; i < num_blocks; i++)
{
2014-04-04 13:35:46 +00:00
if (blocks[i].data)
{
2014-04-04 13:35:46 +00:00
const void *ptr = pretro_get_memory_data(blocks[i].type);
if (ptr)
2014-04-04 13:35:46 +00:00
memcpy(blocks[i].data, ptr, blocks[i].size);
}
}
ret = pretro_unserialize(buf, size);
2014-09-02 03:10:54 +00:00
/* Flush back. */
2014-04-04 13:35:46 +00:00
for (i = 0; i < num_blocks; i++)
{
2014-04-04 13:35:46 +00:00
if (blocks[i].data)
{
2014-04-04 13:35:46 +00:00
void *ptr = pretro_get_memory_data(blocks[i].type);
if (ptr)
2014-04-04 13:35:46 +00:00
memcpy(ptr, blocks[i].data, blocks[i].size);
}
}
2014-04-04 13:35:46 +00:00
for (i = 0; i < num_blocks; i++)
free(blocks[i].data);
free(blocks);
2014-10-13 17:48:50 +00:00
free(buf);
return ret;
}
/**
* load_ram_file:
* @path : path of RAM state that will be loaded from.
* @type : type of memory
*
* Load a RAM state from disk to memory.
*/
void load_ram_file(const char *path, int type)
{
2015-02-16 02:46:27 +00:00
ssize_t rc;
2015-03-22 06:37:25 +00:00
bool ret = false;
2015-01-09 14:33:58 +00:00
void *buf = NULL;
size_t size = pretro_get_memory_size(type);
void *data = pretro_get_memory_data(type);
if (size == 0 || !data)
return;
2015-02-16 02:31:37 +00:00
ret = read_file(path, &buf, &rc);
if (!ret)
return;
if (rc > 0)
{
if (rc > (ssize_t)size)
{
2013-10-13 16:53:12 +00:00
RARCH_WARN("SRAM is larger than implementation expects, doing partial load (truncating %u bytes to %u).\n",
(unsigned)rc, (unsigned)size);
rc = size;
}
memcpy(data, buf, rc);
}
if (buf)
free(buf);
}
/**
* save_ram_file:
* @path : path of RAM state that shall be written to.
* @type : type of memory
*
* Save a RAM state from memory to disk.
*
* In case the file could not be written to, a fallback function
* 'dump_to_file_desperate' will be called.
*/
void save_ram_file(const char *path, int type)
{
size_t size = pretro_get_memory_size(type);
2015-01-09 14:33:58 +00:00
void *data = pretro_get_memory_data(type);
if (!data)
return;
if (size <= 0)
return;
2015-01-16 01:01:05 +00:00
if (!write_file(path, data, size))
{
2015-01-16 01:01:05 +00:00
RARCH_ERR("Failed to save SRAM.\n");
RARCH_WARN("Attempting to recover ...\n");
dump_to_file_desperate(data, size, type);
return;
}
2015-01-16 01:01:05 +00:00
RARCH_LOG("Saved successfully to \"%s\".\n", path);
}
2015-02-16 05:44:29 +00:00
static bool load_content_dont_need_fullpath(
struct retro_game_info *info, unsigned i, const char *path)
{
ssize_t len;
/* Load the content into memory. */
/* First content file is significant, attempt to do patching,
* CRC checking, etc. */
2015-03-18 03:54:34 +00:00
bool ret = read_content_file(i, path, (void**)&info->data, &len);
2015-02-16 05:44:29 +00:00
if (!ret || len < 0)
{
RARCH_ERR("Could not read content file \"%s\".\n", path);
return false;
}
info->size = len;
return true;
}
static bool load_content_need_fullpath(
struct retro_game_info *info, unsigned i,
struct string_list* additional_path_allocs,
bool need_fullpath, const char *path)
{
#ifdef HAVE_COMPRESSION
char new_path[PATH_MAX_LENGTH], new_basedir[PATH_MAX_LENGTH];
ssize_t len;
union string_list_elem_attr attributes;
2015-03-22 06:37:25 +00:00
bool ret = false;
2015-03-21 03:43:18 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2015-02-16 05:44:29 +00:00
2015-03-21 03:43:18 +00:00
if (global->system.info.block_extract)
2015-02-16 05:44:29 +00:00
return true;
if (!need_fullpath)
return true;
if (!path_contains_compressed_file(path))
return true;
RARCH_LOG("Compressed file in case of need_fullpath."
"Now extracting to temporary directory.\n");
2015-03-20 19:43:22 +00:00
strlcpy(new_basedir, settings->extraction_directory,
2015-02-16 05:44:29 +00:00
sizeof(new_basedir));
if ((!strcmp(new_basedir, "")) ||
!path_is_directory(new_basedir))
{
RARCH_WARN("Tried extracting to extraction directory, but "
"extraction directory was not set or found. "
"Setting extraction directory to directory "
"derived by basename...\n");
fill_pathname_basedir(new_basedir, path,
sizeof(new_basedir));
}
attributes.i = 0;
fill_pathname_join(new_path, new_basedir,
path_basename(path), sizeof(new_path));
ret = read_compressed_file(path,NULL,new_path, &len);
if (!ret || len < 0)
{
RARCH_ERR("Could not read content file \"%s\".\n", path);
return false;
}
string_list_append(additional_path_allocs,new_path, attributes);
info[i].path =
additional_path_allocs->elems
[additional_path_allocs->size -1 ].data;
2015-03-21 03:43:18 +00:00
/* global->temporary_content is initialized in init_content_file
2015-02-16 05:44:29 +00:00
* The following part takes care of cleanup of the unzipped files
* after exit.
*/
2015-03-21 03:43:18 +00:00
rarch_assert(global->temporary_content != NULL);
string_list_append(global->temporary_content,
2015-02-16 05:44:29 +00:00
new_path, attributes);
#endif
2015-02-16 15:49:05 +00:00
return true;
2015-02-16 05:44:29 +00:00
}
2015-01-08 02:58:14 +00:00
/**
* load_content:
* @special : subsystem of content to be loaded. Can be NULL.
* content :
*
* Load content file (for libretro core).
*
* Returns : true if successful, otherwise false.
**/
2014-09-02 03:10:54 +00:00
static bool load_content(const struct retro_subsystem_info *special,
const struct string_list *content)
{
2014-04-04 12:58:42 +00:00
unsigned i;
bool ret = true;
struct string_list* additional_path_allocs = string_list_new();
2014-09-02 03:10:54 +00:00
struct retro_game_info *info = (struct retro_game_info*)
calloc(content->size, sizeof(*info));
2014-04-04 12:58:42 +00:00
if (!info)
{
string_list_free(additional_path_allocs);
return false;
}
2014-07-28 17:45:00 +00:00
for (i = 0; i < content->size; i++)
2014-04-04 12:58:42 +00:00
{
2015-03-22 06:37:25 +00:00
const char *path = content->elems[i].data;
int attr = content->elems[i].attr.i;
bool need_fullpath = attr & 2;
2014-08-13 06:52:13 +00:00
bool require_content = attr & 4;
2013-01-21 20:01:12 +00:00
2014-08-13 06:52:13 +00:00
if (require_content && !*path)
{
2014-07-28 18:08:37 +00:00
RARCH_LOG("libretro core requires content, but nothing was provided.\n");
2013-01-21 20:01:12 +00:00
ret = false;
goto end;
}
2015-02-16 05:44:29 +00:00
info[i].path = NULL;
if (*path)
info[i].path = path;
2014-09-02 03:10:54 +00:00
if (!need_fullpath && *path)
{
2015-02-16 05:44:29 +00:00
if (!load_content_dont_need_fullpath(&info[i], i, path))
2014-04-04 12:58:42 +00:00
goto end;
}
2014-04-04 12:58:42 +00:00
else
{
2015-02-16 15:49:05 +00:00
RARCH_LOG("Content loading skipped. Implementation will"
" load it on its own.\n");
if (!load_content_need_fullpath(&info[i], i,
additional_path_allocs, need_fullpath, path))
2015-02-16 05:44:29 +00:00
goto end;
}
}
2014-04-04 12:58:42 +00:00
if (special)
2014-07-28 17:45:00 +00:00
ret = pretro_load_game_special(special->id, info, content->size);
else
2014-07-28 17:45:00 +00:00
ret = pretro_load_game(*content->elems[0].data ? info : NULL);
if (!ret)
2015-01-12 23:37:43 +00:00
RARCH_ERR("Failed to load content.\n");
end:
2014-07-28 17:45:00 +00:00
for (i = 0; i < content->size; i++)
2014-04-04 12:58:42 +00:00
free((void*)info[i].data);
string_list_free(additional_path_allocs);
if (info)
free(info);
return ret;
}
/**
* init_content_file:
*
* Initializes and loads a content file for the currently
* selected libretro core.
*
2015-03-21 03:43:18 +00:00
* global->content_is_init will be set to the return value
* on exit.
*
* Returns : true if successful, otherwise false.
**/
2014-08-13 06:52:13 +00:00
bool init_content_file(void)
{
2014-04-04 12:58:42 +00:00
unsigned i;
union string_list_elem_attr attr;
2015-03-22 06:37:25 +00:00
bool ret = false;
struct string_list *content = NULL;
const struct retro_subsystem_info *special = NULL;
2015-03-22 06:37:25 +00:00
settings_t *settings = config_get_ptr();
global_t *global = global_get_ptr();
2015-03-22 06:37:25 +00:00
global->temporary_content = string_list_new();
2015-03-21 03:43:18 +00:00
if (!global->temporary_content)
goto error;
2015-03-21 03:43:18 +00:00
if (*global->subsystem)
2014-04-04 12:58:42 +00:00
{
2015-03-21 03:43:18 +00:00
special = libretro_find_subsystem_info(global->system.special,
global->system.num_special, global->subsystem);
2014-04-04 12:58:42 +00:00
if (!special)
{
2014-09-02 03:10:54 +00:00
RARCH_ERR(
"Failed to find subsystem \"%s\" in libretro implementation.\n",
2015-03-21 03:43:18 +00:00
global->subsystem);
goto error;
2014-04-04 12:58:42 +00:00
}
2015-03-21 03:43:18 +00:00
if (special->num_roms && !global->subsystem_fullpaths)
2014-04-04 12:58:42 +00:00
{
2014-07-28 18:01:27 +00:00
RARCH_ERR("libretro core requires special content, but none were provided.\n");
goto error;
2014-04-04 12:58:42 +00:00
}
else if (special->num_roms && special->num_roms
2015-03-21 03:43:18 +00:00
!= global->subsystem_fullpaths->size)
2014-04-04 12:58:42 +00:00
{
2014-09-02 03:10:54 +00:00
RARCH_ERR("libretro core requires %u content files for subsystem \"%s\", but %u content files were provided.\n",
special->num_roms, special->desc,
2015-03-21 03:43:18 +00:00
(unsigned)global->subsystem_fullpaths->size);
goto error;
2014-04-04 12:58:42 +00:00
}
2015-03-21 03:43:18 +00:00
else if (!special->num_roms && global->subsystem_fullpaths
&& global->subsystem_fullpaths->size)
2014-04-04 12:58:42 +00:00
{
2014-09-02 03:10:54 +00:00
RARCH_ERR("libretro core takes no content for subsystem \"%s\", but %u content files were provided.\n",
special->desc,
2015-03-21 03:43:18 +00:00
(unsigned)global->subsystem_fullpaths->size);
goto error;
2014-04-04 12:58:42 +00:00
}
}
content = string_list_new();
2014-12-15 16:13:08 +00:00
2014-04-14 10:09:04 +00:00
attr.i = 0;
2014-07-28 17:45:00 +00:00
if (!content)
goto error;
2015-03-21 03:43:18 +00:00
if (*global->subsystem)
2013-01-21 22:51:56 +00:00
{
2015-03-21 03:43:18 +00:00
for (i = 0; i < global->subsystem_fullpaths->size; i++)
2013-01-21 22:51:56 +00:00
{
2014-04-04 12:58:42 +00:00
attr.i = special->roms[i].block_extract;
attr.i |= special->roms[i].need_fullpath << 1;
attr.i |= special->roms[i].required << 2;
2014-09-02 03:10:54 +00:00
string_list_append(content,
2015-03-21 03:43:18 +00:00
global->subsystem_fullpaths->elems[i].data, attr);
2013-01-21 22:51:56 +00:00
}
}
2014-04-04 12:58:42 +00:00
else
{
2015-03-21 03:43:18 +00:00
attr.i = global->system.info.block_extract;
attr.i |= global->system.info.need_fullpath << 1;
attr.i |= (!global->system.no_content) << 2;
2014-09-02 03:10:54 +00:00
string_list_append(content,
2015-03-21 03:43:18 +00:00
global->libretro_no_content ? "" : global->fullpath, attr);
2014-04-04 12:58:42 +00:00
}
2013-01-21 22:51:56 +00:00
2014-04-04 12:58:42 +00:00
#ifdef HAVE_ZLIB
2014-09-02 03:10:54 +00:00
/* Try to extract all content we're going to load if appropriate. */
2014-07-28 17:45:00 +00:00
for (i = 0; i < content->size; i++)
{
2015-03-22 06:37:25 +00:00
const char *ext = NULL;
2015-01-09 14:33:58 +00:00
const char *valid_ext = NULL;
2014-09-02 03:10:54 +00:00
/* Block extract check. */
2014-07-28 17:45:00 +00:00
if (content->elems[i].attr.i & 1)
2014-04-04 12:58:42 +00:00
continue;
2015-01-16 01:01:05 +00:00
ext = path_get_extension(content->elems[i].data);
2015-01-09 14:33:58 +00:00
valid_ext = special ? special->roms[i].valid_extensions :
2015-03-21 03:43:18 +00:00
global->system.info.valid_extensions;
if (ext && !strcasecmp(ext, "zip"))
2014-04-04 12:58:42 +00:00
{
char temporary_content[PATH_MAX_LENGTH];
2015-01-09 14:33:58 +00:00
2014-09-02 03:10:54 +00:00
strlcpy(temporary_content, content->elems[i].data,
sizeof(temporary_content));
if (!zlib_extract_first_content_file(temporary_content,
sizeof(temporary_content), valid_ext,
2015-03-20 19:43:22 +00:00
*settings->extraction_directory ?
settings->extraction_directory : NULL))
2014-04-04 12:58:42 +00:00
{
2014-09-02 03:10:54 +00:00
RARCH_ERR("Failed to extract content from zipped file: %s.\n",
temporary_content);
goto error;
2014-04-04 12:58:42 +00:00
}
string_list_set(content, i, temporary_content);
2015-03-21 03:43:18 +00:00
string_list_append(global->temporary_content,
2014-09-02 03:10:54 +00:00
temporary_content, attr);
2014-04-04 12:58:42 +00:00
}
}
2014-04-04 12:58:42 +00:00
#endif
2014-09-02 03:10:54 +00:00
/* Set attr to need_fullpath as appropriate. */
ret = load_content(special, content);
error:
2015-03-21 03:43:18 +00:00
global->content_is_init = (ret) ? true : false;
if (content)
string_list_free(content);
2014-04-04 12:58:42 +00:00
return ret;
}