mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
COMMON: Get accessor methods to the platform and language lists
This commit is contained in:
parent
b65e00a6ef
commit
30f3e0eceb
@ -22,6 +22,7 @@
|
||||
#include "common/language.h"
|
||||
#include "common/gui_options.h"
|
||||
#include "common/str.h"
|
||||
#include "common/algorithm.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
@ -178,4 +179,15 @@ const String getGameGUIOptionsDescriptionLanguage(Language lang) {
|
||||
return String("lang_") + getLanguageDescription(lang);
|
||||
}
|
||||
|
||||
List<String> getLanguageList() {
|
||||
List<String> list;
|
||||
|
||||
for (const LanguageDescription *l = g_languages; l->code; ++l)
|
||||
list.push_back(l->code);
|
||||
|
||||
Common::sort(list.begin(), list.end());
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
} // End of namespace Common
|
||||
|
@ -23,6 +23,7 @@
|
||||
#define COMMON_LANGUAGE_H
|
||||
|
||||
#include "common/scummsys.h"
|
||||
#include "common/list.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
@ -105,6 +106,8 @@ const String getGameGUIOptionsDescriptionLanguage(Common::Language lang);
|
||||
// TODO: Document this GUIO related function
|
||||
bool checkGameGUIOptionLanguage(Common::Language lang, const String &str);
|
||||
|
||||
List<String> getLanguageList();
|
||||
|
||||
/** @} */
|
||||
|
||||
} // End of namespace Common
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
#include "common/platform.h"
|
||||
#include "common/str.h"
|
||||
#include "common/algorithm.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
@ -120,4 +121,15 @@ const char *getPlatformDescription(Platform id) {
|
||||
return l->description;
|
||||
}
|
||||
|
||||
List<String> getPlatformList() {
|
||||
List<String> list;
|
||||
|
||||
for (const PlatformDescription *l = g_platforms; l->code; ++l)
|
||||
list.push_back(l->code2);
|
||||
|
||||
Common::sort(list.begin(), list.end());
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
} // End of namespace Common
|
||||
|
@ -23,6 +23,7 @@
|
||||
#define COMMON_PLATFORM_H
|
||||
|
||||
#include "common/scummsys.h"
|
||||
#include "common/list.h"
|
||||
|
||||
namespace Common {
|
||||
|
||||
@ -99,6 +100,8 @@ extern const char *getPlatformCode(Platform id);
|
||||
extern const char *getPlatformAbbrev(Platform id);
|
||||
extern const char *getPlatformDescription(Platform id);
|
||||
|
||||
List<String> getPlatformList();
|
||||
|
||||
/** @} */
|
||||
|
||||
} // End of namespace Common
|
||||
|
Loading…
x
Reference in New Issue
Block a user