OpenTTD Source 20241224-master-gee860a5c8e
Backup< T > Struct Template Reference

Class to backup a specific variable and restore it later. More...

#include <backup_type.hpp>

Public Member Functions

 Backup (T &original, const std::source_location location=std::source_location::current())
 Backup variable.
 
template<typename U >
 Backup (T &original, const U &new_value, const std::source_location location=std::source_location::current())
 Backup variable and switch to new value.
 
 ~Backup ()
 Check whether the variable was restored on object destruction.
 
bool IsValid () const
 Checks whether the variable was already restored.
 
const T & GetOriginalValue () const
 Returns the backupped value.
 
template<typename U >
void Change (const U &new_value)
 Change the value of the variable.
 
void Revert ()
 Revert the variable to its original value, but do not mark it as restored.
 
void Trash ()
 Trash the backup.
 
void Restore ()
 Restore the variable.
 
void Update ()
 Update the backup.
 
bool Verify () const
 Check whether the variable is currently equals the backup.
 

Private Attributes

T & original
 
bool valid
 
original_value
 
const std::source_location location
 

Detailed Description

template<typename T>
struct Backup< T >

Class to backup a specific variable and restore it later.

The variable is not restored automatically, but assertions make sure it is restored. You have to call either Trash() or Restore() exactly once.

Definition at line 21 of file backup_type.hpp.

Constructor & Destructor Documentation

◆ Backup() [1/2]

template<typename T >
Backup< T >::Backup ( T &  original,
const std::source_location  location = std::source_location::current() 
)
inline

Backup variable.

Parameters
originalVariable to backup.
locationSource location for debug output.

Definition at line 27 of file backup_type.hpp.

◆ Backup() [2/2]

template<typename T >
template<typename U >
Backup< T >::Backup ( T &  original,
const U &  new_value,
const std::source_location  location = std::source_location::current() 
)
inline

Backup variable and switch to new value.

Parameters
originalVariable to backup.
new_valueNew value for variable.
locationSource location for debug output.

Definition at line 36 of file backup_type.hpp.

◆ ~Backup()

template<typename T >
Backup< T >::~Backup ( )
inline

Check whether the variable was restored on object destruction.

Definition at line 45 of file backup_type.hpp.

References Debug, and Backup< T >::Restore().

Member Function Documentation

◆ Change()

template<typename T >
template<typename U >
void Backup< T >::Change ( const U &  new_value)
inline

Change the value of the variable.

While this does not touch the backup at all, it ensures that the variable is only modified while backupped.

Parameters
new_valueNew value for variable.

Definition at line 82 of file backup_type.hpp.

Referenced by CmdTerraformLand(), CompaniesGenStatistics(), CompaniesPayInterest(), AI::GameLoop(), Game::GameLoop(), CommandHelperBase::InternalExecutePrepTest(), and Game::StartNew().

◆ GetOriginalValue()

template<typename T >
const T & Backup< T >::GetOriginalValue ( ) const
inline

Returns the backupped value.

Returns
value from the backup.

Definition at line 70 of file backup_type.hpp.

Referenced by CmdBuildIndustry().

◆ IsValid()

template<typename T >
bool Backup< T >::IsValid ( ) const
inline

Checks whether the variable was already restored.

Returns
true if variable has already been restored.

Definition at line 61 of file backup_type.hpp.

Referenced by _GenerateWorld().

◆ Restore()

◆ Revert()

template<typename T >
void Backup< T >::Revert ( )
inline

Revert the variable to its original value, but do not mark it as restored.

Definition at line 92 of file backup_type.hpp.

Referenced by Backup< T >::Restore().

◆ Trash()

template<typename T >
void Backup< T >::Trash ( )
inline

Trash the backup.

The variable shall not be restored anymore.

Definition at line 101 of file backup_type.hpp.

Referenced by _GenerateWorld(), CommandHelperBase::InternalExecuteProcessResult(), and Backup< T >::Restore().

◆ Update()

template<typename T >
void Backup< T >::Update ( )
inline

Update the backup.

That is trash the old value and make the current value of the variable the value to be restored later.

Definition at line 120 of file backup_type.hpp.

◆ Verify()

template<typename T >
bool Backup< T >::Verify ( ) const
inline

Check whether the variable is currently equals the backup.

Returns
true if equal

Definition at line 130 of file backup_type.hpp.

Referenced by CommandHelperBase::InternalExecuteProcessResult().

Field Documentation

◆ location

template<typename T >
const std::source_location Backup< T >::location
private

Definition at line 141 of file backup_type.hpp.

◆ original

template<typename T >
T& Backup< T >::original
private

Definition at line 137 of file backup_type.hpp.

◆ original_value

template<typename T >
T Backup< T >::original_value
private

Definition at line 139 of file backup_type.hpp.

◆ valid

template<typename T >
bool Backup< T >::valid
private

Definition at line 138 of file backup_type.hpp.


The documentation for this struct was generated from the following file: