2020-09-21 17:17:34 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-21 12:25:28 +00:00
|
|
|
//
|
2020-09-21 17:17:34 +00:00
|
|
|
// EmulationStation Desktop Edition
|
2020-06-25 17:52:38 +00:00
|
|
|
// PlatformId.cpp
|
2020-06-21 12:25:28 +00:00
|
|
|
//
|
2020-06-23 18:07:00 +00:00
|
|
|
// Index of all supported systems/platforms.
|
2020-06-21 12:25:28 +00:00
|
|
|
//
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "PlatformId.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
#include <string.h>
|
2020-12-16 22:59:00 +00:00
|
|
|
#include <vector>
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
namespace PlatformIds
|
|
|
|
{
|
2021-07-07 18:03:42 +00:00
|
|
|
// clang-format off
|
2021-02-07 14:28:23 +00:00
|
|
|
std::vector<std::string> platformNames = {
|
2020-06-21 12:25:28 +00:00
|
|
|
"unknown", // Nothing set.
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2021-02-06 13:20:45 +00:00
|
|
|
"3do", // 3DO
|
2021-02-07 23:17:01 +00:00
|
|
|
"ags", // Adventure Game Studio game engine
|
2021-02-06 13:20:45 +00:00
|
|
|
"amiga", // Commodore Amiga
|
|
|
|
"amigacd32", // Commodore Amiga CD32
|
|
|
|
"amstradcpc", // Amstrad CPC
|
2021-11-03 20:19:38 +00:00
|
|
|
"android", // Google Android
|
2021-02-06 13:20:45 +00:00
|
|
|
"apple2", // Apple II
|
|
|
|
"apple2gs", // Apple IIGS
|
|
|
|
"arcade", // Arcade
|
|
|
|
"astrocade", // Bally Astrocade
|
|
|
|
"atari2600", // Atari 2600
|
|
|
|
"atari5200", // Atari 5200
|
|
|
|
"atari7800", // Atari 7800
|
|
|
|
"atari800", // Atari 800
|
|
|
|
"atarijaguar", // Atari Jaguar
|
|
|
|
"atarijaguarcd", // Atari Jaguar CD
|
|
|
|
"atarilynx", // Atari Lynx
|
|
|
|
"atarist", // Atari ST/STE/Falcon
|
|
|
|
"atarixe", // Atari XE
|
|
|
|
"atomiswave", // Atomiswave
|
|
|
|
"bbcmicro", // BBC Micro
|
|
|
|
"c64", // Commodore 64
|
|
|
|
"cavestory", // Cave Story (NXEngine)
|
2021-11-03 17:51:38 +00:00
|
|
|
"cdimono1", // Philips CD-i
|
2021-02-06 13:20:45 +00:00
|
|
|
"cdtv", // Commodore CDTV
|
|
|
|
"channelf", // Fairchild Channel F
|
|
|
|
"coco", // Tandy Color Computer
|
|
|
|
"colecovision", // ColecoVision
|
|
|
|
"daphne", // Daphne Arcade Laserdisc Emulator
|
|
|
|
"dos", // DOS (PC)
|
|
|
|
"dragon32", // Dragon 32
|
|
|
|
"dreamcast", // Sega Dreamcast
|
|
|
|
"famicom", // Nintendo Family Computer
|
|
|
|
"fds", // Nintendo Famicom Disk System
|
|
|
|
"gameandwatch", // Nintendo Game and Watch
|
|
|
|
"gamegear", // Sega Game Gear
|
|
|
|
"gb", // Nintendo Game Boy
|
|
|
|
"gba", // Nintendo Game Boy Advance
|
|
|
|
"gbc", // Nintendo Game Boy Color
|
2021-02-07 14:28:23 +00:00
|
|
|
"gc", // Nintendo GameCube
|
2021-02-06 13:20:45 +00:00
|
|
|
"genesis", // Sega Genesis
|
|
|
|
"gx4000", // Amstrad GX4000
|
|
|
|
"intellivision", // Mattel Electronics Intellivision
|
|
|
|
"love", // ChaiLove game engine
|
|
|
|
"lutro", // Lutro game engine
|
|
|
|
"macintosh", // Apple Macintosh
|
|
|
|
"mastersystem", // Sega Master System
|
|
|
|
"megadrive", // Sega Mega Drive
|
|
|
|
"mess", // Multi Emulator Super System
|
|
|
|
"moonlight", // Moonlight game streaming
|
|
|
|
"moto", // Thomson MO/TO series
|
|
|
|
"msx", // MSX
|
2021-02-07 21:35:34 +00:00
|
|
|
"msx2", // MSX2
|
|
|
|
"msxturbor", // MSX Turbo R
|
2021-02-06 13:20:45 +00:00
|
|
|
"n3ds", // Nintendo 3DS
|
|
|
|
"n64", // Nintendo 64
|
|
|
|
"naomi", // Sega NAOMI
|
|
|
|
"nds", // Nintendo DS
|
|
|
|
"neogeo", // SNK Neo Geo
|
|
|
|
"neogeocd", // SNK Neo Geo CD
|
|
|
|
"nes", // Nintendo Entertainment System
|
|
|
|
"ngp", // SNK Neo Geo Pocket
|
|
|
|
"ngpc", // SNK Neo Geo Pocket Color
|
|
|
|
"odyssey2", // Magnavox Odyssey2
|
|
|
|
"openbor", // OpenBOR game engine
|
|
|
|
"oric", // Tangerine Computer Systems Oric
|
|
|
|
"palm", // Palm OS
|
|
|
|
"pc", // IBM PC
|
2021-02-07 20:36:33 +00:00
|
|
|
"pc88", // NEC PC-8800 series
|
|
|
|
"pc98", // NEC PC-9800 series
|
2021-07-17 08:37:36 +00:00
|
|
|
"pcengine", // NEC PC Engine / TurboGrafx-16
|
|
|
|
"pcenginecd", // NEC PC Engine CD / TurboGrafx-CD
|
2021-02-06 13:20:45 +00:00
|
|
|
"pcfx", // NEC PC-FX
|
|
|
|
"pokemini", // Nintendo Pokémon Mini
|
|
|
|
"ps2", // Sony PlayStation 2
|
|
|
|
"ps3", // Sony PlayStation 3
|
|
|
|
"ps4", // Sony PlayStation 4
|
|
|
|
"psp", // Sony PlayStation Portable
|
|
|
|
"psvita", // Sony PlayStation Vita
|
|
|
|
"psx", // Sony PlayStation 1
|
|
|
|
"residualvm", // ResidualVM game engine
|
|
|
|
"samcoupe", // SAM Coupé
|
|
|
|
"satellaview", // Nintendo Satellaview
|
|
|
|
"saturn", // Sega Saturn
|
|
|
|
"scummvm", // ScummVM game engine
|
|
|
|
"sega32x", // Sega Mega Drive 32X
|
|
|
|
"segacd", // Sega CD
|
|
|
|
"sg-1000", // Sega SG-1000
|
|
|
|
"snes", // Nintendo SNES (Super Nintendo)
|
|
|
|
"solarus", // Solarus game engine
|
|
|
|
"spectravideo", // Spectravideo
|
2021-03-24 18:44:36 +00:00
|
|
|
"steam", // Valve Steam
|
2021-02-06 13:20:45 +00:00
|
|
|
"stratagus", // Stratagus game engine
|
|
|
|
"sufami", // Bandai SuFami Turbo
|
|
|
|
"supergrafx", // NEC SuperGrafx
|
2021-06-23 15:52:33 +00:00
|
|
|
"switch", // Nintendo Switch
|
2021-02-06 13:20:45 +00:00
|
|
|
"ti99", // Texas Instruments TI-99
|
2021-02-07 22:44:13 +00:00
|
|
|
"tic80", // TIC-80 game engine
|
2021-02-06 13:20:45 +00:00
|
|
|
"trs-80", // Tandy TRS-80
|
|
|
|
"uzebox", // Uzebox
|
|
|
|
"vectrex", // Vectrex
|
2021-11-03 17:11:41 +00:00
|
|
|
"vic20", // Commodore VIC-20
|
2021-02-06 13:20:45 +00:00
|
|
|
"videopac", // Philips Videopac G7000 (Magnavox Odyssey2)
|
|
|
|
"virtualboy", // Nintendo Virtual Boy
|
|
|
|
"wii", // Nintendo Wii
|
|
|
|
"wiiu", // Nintendo Wii U
|
|
|
|
"wonderswan", // Bandai WonderSwan
|
|
|
|
"wonderswancolor", // Bandai WonderSwan Color
|
|
|
|
"x1", // Sharp X1
|
|
|
|
"x68000", // Sharp X68000
|
|
|
|
"xbox", // Microsoft Xbox
|
|
|
|
"xbox360", // Microsoft Xbox 360
|
|
|
|
"zmachine", // Infocom Z-machine
|
|
|
|
"zx81", // Sinclair ZX81
|
|
|
|
"zxspectrum", // Sinclair ZX Spectrum
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
"ignore", // Do not allow scraping for this system.
|
|
|
|
"invalid"
|
|
|
|
};
|
2021-07-07 18:03:42 +00:00
|
|
|
// clang-format on
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-12-16 22:59:00 +00:00
|
|
|
PlatformId getPlatformId(const std::string& str)
|
2020-06-21 12:25:28 +00:00
|
|
|
{
|
2020-12-16 22:59:00 +00:00
|
|
|
if (str == "")
|
2020-06-21 12:25:28 +00:00
|
|
|
return PLATFORM_UNKNOWN;
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
for (unsigned int i = 1; i < PLATFORM_COUNT; i++) {
|
2021-02-07 14:28:23 +00:00
|
|
|
if (platformNames[i] == str)
|
2020-06-21 12:25:28 +00:00
|
|
|
return (PlatformId)i;
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
return PLATFORM_UNKNOWN;
|
|
|
|
}
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-12-16 22:59:00 +00:00
|
|
|
const std::string getPlatformName(PlatformId id)
|
2020-06-21 12:25:28 +00:00
|
|
|
{
|
2021-07-07 18:03:42 +00:00
|
|
|
// Return the platform name.
|
2021-02-07 14:28:23 +00:00
|
|
|
return platformNames[id];
|
2020-06-21 12:25:28 +00:00
|
|
|
}
|
2021-07-07 18:03:42 +00:00
|
|
|
|
|
|
|
} // namespace PlatformIds
|