1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-02 22:05:43 +02:00

Don't send loading updates too frequently

This commit is contained in:
nordsoft 2023-08-23 15:45:00 +04:00
parent 937935ce8c
commit cda4ae84aa

View File

@ -282,14 +282,19 @@ bool CVCMIServer::prepareToStartGame()
Load::ProgressAccumulator progressTracking; Load::ProgressAccumulator progressTracking;
Load::Progress current(1); Load::Progress current(1);
progressTracking.include(current); progressTracking.include(current);
Load::Type currentProgress = std::numeric_limits<Load::Type>::max();
auto progressTrackingThread = boost::thread([this, &progressTracking]() auto progressTrackingThread = boost::thread([this, &progressTracking, &currentProgress]()
{ {
while(!progressTracking.finished()) while(!progressTracking.finished())
{ {
std::unique_ptr<LobbyLoadProgress> loadProgress(new LobbyLoadProgress); if(progressTracking.get() != currentProgress)
loadProgress->progress = progressTracking.get(); {
addToAnnounceQueue(std::move(loadProgress)); currentProgress = progressTracking.get();
std::unique_ptr<LobbyLoadProgress> loadProgress(new LobbyLoadProgress);
loadProgress->progress = currentProgress;
addToAnnounceQueue(std::move(loadProgress));
}
boost::this_thread::sleep(boost::posix_time::milliseconds(50)); boost::this_thread::sleep(boost::posix_time::milliseconds(50));
} }
}); });