16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 17:09:19 +02:00

loading time fix

This commit is contained in:
maj00r
2026-05-19 19:04:46 +02:00
parent df5a8a897f
commit 2dfee2a322
11 changed files with 1722 additions and 157 deletions

View File

@@ -625,7 +625,31 @@ bool global_settings::ConfigParseSimulation(cParser& Parser, const std::string&
if (token == "file.binary.terrain")
{
ParseOne(Parser, file_binary_terrain, 1, false);
// ParseOne(Parser, file_binary_terrain, 1, false);
return true;
}
if (token == "scenario.fileexists.cache")
{
ParseOne(Parser, ScenarioFileExistsCache, 1, false);
return true;
}
if (token == "scenario.parser.filecache")
{
ParseOne(Parser, ScenarioParserFileCache, 1, false);
return true;
}
if (token == "scenario.parser.fastgeometry")
{
ParseOne(Parser, ScenarioParserFastGeometry, 1, false);
return true;
}
if (token == "scenario.parser.fastskip")
{
ParseOne(Parser, ScenarioParserFastSkip, 1, false);
return true;
}
@@ -1578,6 +1602,10 @@ global_settings::export_as_text( std::ostream &Output ) const {
export_as_text( Output, "latitude", fLatitudeDeg );
export_as_text( Output, "convertmodels", iConvertModels );
export_as_text( Output, "file.binary.terrain", file_binary_terrain );
export_as_text( Output, "scenario.fileexists.cache", ScenarioFileExistsCache );
export_as_text( Output, "scenario.parser.filecache", ScenarioParserFileCache );
export_as_text( Output, "scenario.parser.fastgeometry", ScenarioParserFastGeometry );
export_as_text( Output, "scenario.parser.fastskip", ScenarioParserFastSkip );
export_as_text( Output, "inactivepause", bInactivePause );
export_as_text( Output, "slowmotion", iSlowMotionMask );
export_as_text( Output, "hideconsole", bHideConsole );