OpenTTD Source  1.11.0-beta2
progress.cpp File Reference
#include "stdafx.h"
#include "progress.h"
#include "safeguards.h"

Go to the source code of this file.

Functions

void SetModalProgress (bool state)
 Set the modal progress state. More...
 
bool IsFirstModalProgressLoop ()
 Check whether this is the first modal progress loop. More...
 

Variables

bool _in_modal_progress = false
 Are we in a modal progress or not?
 
bool _first_in_modal_loop = false
 
bool _use_threaded_modal_progress = true
 Threading usable for modal progress?
 
std::mutex _modal_progress_work_mutex
 Rights for the performing work.
 
std::mutex _modal_progress_paint_mutex
 Rights for the painting.
 

Detailed Description

Functions for modal progress windows.

Definition in file progress.cpp.

Function Documentation

◆ IsFirstModalProgressLoop()

bool IsFirstModalProgressLoop ( )

Check whether this is the first modal progress loop.

Note
Set by SetModalProgress, unset by calling this method.
Returns
True if this is the first loop.

Definition at line 41 of file progress.cpp.

◆ SetModalProgress()

void SetModalProgress ( bool  state)

Set the modal progress state.

Note
Makes IsFirstModalProgressLoop return true for the next call.
Parameters
stateThe new state; are we modal or not?

Definition at line 30 of file progress.cpp.

References _in_modal_progress.

Referenced by DoScanNewGRFFiles(), GenerateWorld(), and ScanNewGRFFiles().