OpenTTD
progress.cpp
Go to the documentation of this file.
1 /* $Id$ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8  */
9 
12 #include "stdafx.h"
13 #include "progress.h"
14 
15 #include "safeguards.h"
16 
18 bool _in_modal_progress = false;
19 bool _first_in_modal_loop = false;
26 
32 void SetModalProgress(bool state)
33 {
34  _in_modal_progress = state;
35  _first_in_modal_loop = true;
36 }
37 
44 {
45  bool ret = _first_in_modal_loop;
46  _first_in_modal_loop = false;
47  return ret;
48 }
std::mutex _modal_progress_work_mutex
Rights for the performing work.
Definition: progress.cpp:23
bool IsFirstModalProgressLoop()
Check whether this is the first modal progress loop.
Definition: progress.cpp:43
Functions related to modal progress.
Definition of base types and functions in a cross-platform compatible way.
A number of safeguards to prevent using unsafe methods.
bool _use_threaded_modal_progress
Threading usable for modal progress?
Definition: progress.cpp:21
bool _in_modal_progress
Are we in a modal progress or not?
Definition: progress.cpp:18
void SetModalProgress(bool state)
Set the modal progress state.
Definition: progress.cpp:32
std::mutex _modal_progress_paint_mutex
Rights for the painting.
Definition: progress.cpp:25