Merge pull request #22 from AttorneyOnline/fix/area-sort
Fix areas being sorted lexicographically by storing a numerical position in the area name and sorting numerically
This commit is contained in:
commit
eba21d9108
@ -1,10 +1,10 @@
|
|||||||
[Basement]
|
[0:Basement]
|
||||||
background=gs4
|
background=gs4
|
||||||
protected_area=true
|
protected_area=true
|
||||||
iniswap_allowed=false
|
iniswap_allowed=false
|
||||||
evidence_mod=cm
|
evidence_mod=cm
|
||||||
|
|
||||||
[Courtroom 1]
|
[1:Courtroom 1]
|
||||||
background=gs4
|
background=gs4
|
||||||
protected_area=false
|
protected_area=false
|
||||||
iniswap_allowed=true
|
iniswap_allowed=true
|
||||||
|
@ -79,7 +79,16 @@ void Server::start()
|
|||||||
bg_file.close();
|
bg_file.close();
|
||||||
|
|
||||||
QSettings areas_ini("config/areas.ini", QSettings::IniFormat);
|
QSettings areas_ini("config/areas.ini", QSettings::IniFormat);
|
||||||
area_names = areas_ini.childGroups();
|
area_names = areas_ini.childGroups(); // invisibly does a lexicographical sort, because Qt is great like that
|
||||||
|
std::sort(area_names.begin(), area_names.end(), [] (const QString &a, const QString &b) {return a.split(":")[0].toInt() < b.split(":")[0].toInt();});
|
||||||
|
QStringList sanitized_area_names;
|
||||||
|
for (QString area_name : area_names) {
|
||||||
|
QStringList name_split = area_name.split(":");
|
||||||
|
name_split.removeFirst();
|
||||||
|
QString area_name_sanitized = name_split.join(":");
|
||||||
|
sanitized_area_names.append(area_name_sanitized);
|
||||||
|
}
|
||||||
|
area_names = sanitized_area_names;
|
||||||
for (int i = 0; i < area_names.length(); i++) {
|
for (int i = 0; i < area_names.length(); i++) {
|
||||||
QString area_name = area_names[i];
|
QString area_name = area_names[i];
|
||||||
areas.insert(i, new AreaData(characters, area_name, i));
|
areas.insert(i, new AreaData(characters, area_name, i));
|
||||||
|
Loading…
Reference in New Issue
Block a user