OpenXcom Forum
OpenXcom Forks => OpenXcom Extended (OXCE) => OXCE Suggestions DONE => Topic started by: Delian on September 14, 2024, 10:58:58 pm
-
Whenever you save your game (after passing a bit of time), the "discovered" section (string list of discovered research topics) gets randomly shuffled, making it impractical when trying to compare differences of two save files.
It would make my life easier if this shuffling didn't occur. Either by sorting this list on game save, or if the newly researched topics were always added to the bottom of the list and then remained in the order they were added.
-
Just FYI, we don't shuffle it randomly, there's no reason to do that.
The list is ordered by internal ID to allow binary search.
-
Hmm. I'm checking the code, but I can't find where this internal ID is.
In the SavedGame.cpp
it's calling sortReserchVector(_discovered);,
which calls std::sort(vec.begin(), vec.end(), researchLess); where researchLess is the element comparator function,
which compares the two elements by calling std::less<const RuleResearch *>{}(a, b);
I don't understand this. The RuleResearch class doesn't overload the < operator, so how exactly are two RuleResearch objects compared?
-
They are compared by the numeric value of the pointer to the object.
I used the word ID because I didn't want to explain all this.
-
numeric value of the pointer
Oof... but, that numeric value is inherently random because that's how memory allocation works. Every time you re-launch the game, the raw memory address values of objects get randomized (technically they should also get reversed because the last added element has the lowest address on the heap, which would give it the first place on the list).
Yeah, it would be nice if this was changed to something more stable.
-
It's not going to change, because that's exactly what we need.
For the purpose of saving (only), I can do something different.
-
Done.
In options.cfg, set `oxceSortDiscoveredVectorByName: true`
-
Why does it have to be a setting? The order doesn't affect compatibility...
-
Saving is slow enough already, no need to make it any slower.
-
??
It takes 0.01ms to sort an array of 1000 20-random-character strings.
-
Then I saved 0.01ms.
Job well done.
-
True, saving 0.01ms is a great achievement, great job. Say, wanna make saving the game even faster? Then why not use a std::set instead of a std::vector for SavedGame->_discovered? ;)
-
Sure, if you'll prove to me it will make standard saving even faster, I'll consider it.
-
Ok ok, I was lying, I admit it. It wouldn't be faster, it would be the same speed, because traversing a set and a vector is the same. The only difference is that set itself is always sorted.
-
(https://i.postimg.cc/jjYtfm9j/welcomesurprise.png)
Maybe, after this, we'll be able to afford 1ms to always have "discovered" and "autoSales" vectors sorted in the sav files. It's been super annoying testing round trips due to randomization of those two sections on every save.
Done:
https://github.com/MeridianOXC/OpenXcom/commit/2ff38c92ccdac58d53dc529a4ceafbf496cf15c8
https://github.com/MeridianOXC/OpenXcom/commit/b5b5efbc57414baa355eed564a55baedda2fb005
PS: I don't know why autosale items write item's name into the save file instead of item's type, doesn't make any sense to me...
-
Thanks.
Probably a bug. When the game is loaded, the auto sales list is restored by searching for item types. This will fail for items that have _name different than _type.
To begin with, I don't know why items have a _type and a _name. 99% of the time the two have the same value. Perhaps if a modder wanted multiple items to have the same name, but then, they could simply paste the same string into the localizations, or, use yaml references. These duplicate values only make the game load slower and consume more RAM hehe.
-
OK, fixed here: https://github.com/MeridianOXC/OpenXcom/commit/ad977a424114ff914cad48e094af976d58d042c7