aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Prykhodko2019-08-20 13:12:12 +0300
committerFilippos Karapetis2019-08-20 13:53:01 +0300
commitc2054682f0f20ad284582b0717d0298df401a228 (patch)
treeeb0d62fdf2d0bd8fd218abd3a208c18ec18bf285
parent1dd915ccdf361fa16161ebff859e17f459f0c617 (diff)
downloadscummvm-rg350-c2054682f0f20ad284582b0717d0298df401a228.tar.gz
scummvm-rg350-c2054682f0f20ad284582b0717d0298df401a228.tar.bz2
scummvm-rg350-c2054682f0f20ad284582b0717d0298df401a228.zip
COMMON: added support for ini files with non english characters
-rw-r--r--common/ini-file.cpp12
-rw-r--r--common/ini-file.h5
2 files changed, 15 insertions, 2 deletions
diff --git a/common/ini-file.cpp b/common/ini-file.cpp
index 90d40b7c7d..4c4acc9e60 100644
--- a/common/ini-file.cpp
+++ b/common/ini-file.cpp
@@ -29,12 +29,18 @@
namespace Common {
bool INIFile::isValidName(const String &name) const {
+ if (_allowNonEnglishCharacters)
+ return true;
const char *p = name.c_str();
while (*p && (isAlnum(*p) || *p == '-' || *p == '_' || *p == '.' || *p == ' '))
p++;
return *p == 0;
}
+INIFile::INIFile() {
+ _allowNonEnglishCharacters = false;
+}
+
void INIFile::clear() {
_sections.clear();
}
@@ -102,7 +108,7 @@ bool INIFile::loadFromStream(SeekableReadStream &stream) {
// is, verify that it only consists of alphanumerics,
// periods, dashes and underscores). Mohawk Living Books games
// can have periods in their section names.
- while (*p && (isAlnum(*p) || *p == '-' || *p == '_' || *p == '.' || *p == ' '))
+ while (*p && ((_allowNonEnglishCharacters && *p != ']') || isAlnum(*p) || *p == '-' || *p == '_' || *p == '.' || *p == ' '))
p++;
if (*p == '\0')
@@ -435,4 +441,8 @@ void INIFile::Section::removeKey(const String &key) {
}
}
+void INIFile::allowNonEnglishCharacters() {
+ _allowNonEnglishCharacters = true;
+}
+
} // End of namespace Common
diff --git a/common/ini-file.h b/common/ini-file.h
index 98be1e08bb..5d72f23bb9 100644
--- a/common/ini-file.h
+++ b/common/ini-file.h
@@ -77,7 +77,7 @@ public:
typedef List<Section> SectionList;
public:
- INIFile() {}
+ INIFile();
~INIFile() {}
// TODO: Maybe add a copy constructor etc.?
@@ -115,8 +115,11 @@ public:
void listKeyValues(StringMap &kv);
+ void allowNonEnglishCharacters();
+
private:
SectionList _sections;
+ bool _allowNonEnglishCharacters;
Section *getSection(const String &section);
const Section *getSection(const String &section) const;