RetroArch/console/rom_ext.c

76 lines
2.1 KiB
C
Raw Normal View History

2012-01-25 00:10:53 +00:00
/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes.
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
*
* Some code herein may be based on code found in BSNES.
*
* SSNES 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.
*
* SSNES 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 SSNES.
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "rom_ext.h"
#include "../boolean.h"
#include "../libsnes.hpp"
#include <string.h>
2012-02-25 16:05:52 +00:00
#include <ctype.h>
2012-01-25 00:10:53 +00:00
const char *ssnes_console_get_rom_ext(void)
{
const char *id = snes_library_id();
2012-01-29 20:44:37 +00:00
// SNES9x / bSNES
2012-01-25 00:10:53 +00:00
if (strstr(id, "SNES"))
2012-01-25 18:57:37 +00:00
return "smc|fig|sfc|gd3|gd7|dx2|bsx|swc|zip|SMC|FIG|SFC|BSX|GD3|GD7|DX2|SWC|ZIP";
2012-01-29 20:44:37 +00:00
// FCEU Next
else if (strstr(id, "FCEU"))
2012-01-25 18:57:37 +00:00
return "fds|FDS|zip|ZIP|nes|NES|unif|UNIF";
2012-01-29 20:44:37 +00:00
// VBA Next / Meteor
else if (strstr(id, "VBA") || strstr(id, "Meteor"))
2012-01-25 18:57:37 +00:00
return "gb|gbc|gba|GBA|GB|GBC|zip|ZIP";
2012-01-29 20:44:37 +00:00
// Gambatte
else if (strstr(id, "gambatte"))
2012-01-25 18:57:37 +00:00
return "gb|gbc|GB|GBC|zip|ZIP";
2012-01-29 20:44:37 +00:00
// FBA Next
else if (strstr(id, "FBA"))
2012-01-25 18:57:37 +00:00
return "zip|ZIP";
2012-01-29 20:44:37 +00:00
// Genesis Plus GX/Next
else if (strstr(id, "Genesis Plus GX"))
2012-01-25 18:57:37 +00:00
return "md|smd|bin|gen|zip|MD|SMD|bin|GEN|ZIP|sms|SMS|gg|GG|sg|SG";
2012-01-25 00:10:53 +00:00
return NULL;
}
2012-02-25 16:05:52 +00:00
void ssnes_console_name_from_id(char *name, size_t size)
{
if (size == 0)
return;
const char *id = snes_library_id();
if (!id || strlen(id) >= size)
{
name[0] = '\0';
return;
}
name[strlen(id)] = '\0';
for (size_t i = 0; i < size && id[i]; i++)
{
char c = id[i];
if (isspace(c) || isblank(c))
name[i] = '_';
else if (isupper(c))
name[i] = tolower(c);
else
name[i] = c;
}
}