OpenTTD Source 20241224-master-gee860a5c8e
|
Struct about league table elements. More...
#include <league_base.h>
Public Member Functions | |
LeagueTableElement () | |
We need an (empty) constructor so struct isn't zeroed (as C++ standard states) | |
~LeagueTableElement () | |
(Empty) destructor has to be defined else operator delete might be called with nullptr parameter | |
Public Member Functions inherited from Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_league_table_element_pool > | |
void * | operator new (size_t size) |
Allocates space for new Titem. | |
void * | operator new (size_t size, size_t index) |
Allocates space for new Titem with given index. | |
void * | operator new (size_t, void *ptr) |
Allocates space for new Titem at given memory address. | |
void | operator delete (void *p) |
Marks Titem as free. | |
Data Fields | |
LeagueTableID | table |
Id of the table which this element belongs to. | |
int64_t | rating |
Value that determines ordering of elements in the table (higher=better) | |
CompanyID | company |
Company Id to show the color blob for or INVALID_COMPANY. | |
std::string | text |
Text of the element. | |
std::string | score |
String representation of the score associated with the element. | |
Link | link |
What opens when element is clicked. | |
Data Fields inherited from Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_league_table_element_pool > | |
Tindex | index |
Index of this pool item. | |
Additional Inherited Members | |
Public Types inherited from Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_league_table_element_pool > | |
typedef struct Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero > | Pool |
Type of the pool this item is going to be part of. | |
Static Public Member Functions inherited from Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_league_table_element_pool > | |
static bool | CanAllocateItem (size_t n=1) |
Helper functions so we can use PoolItem::Function() instead of _poolitem_pool.Function() | |
static bool | CleaningPool () |
Returns current state of pool cleaning - yes or no. | |
static bool | IsValidID (size_t index) |
Tests whether given index can be used to get valid (non-nullptr) Titem. | |
static Titem * | Get (size_t index) |
Returns Titem with given index. | |
static Titem * | GetIfValid (size_t index) |
Returns Titem with given index. | |
static size_t | GetPoolSize () |
Returns first unused index. | |
static size_t | GetNumItems () |
Returns number of valid items in the pool. | |
static void | PostDestructor (size_t index) |
Dummy function called after destructor of each member. | |
static Pool::IterateWrapper< Titem > | Iterate (size_t from=0) |
Returns an iterable ensemble of all valid Titem. | |
Struct about league table elements.
Each LeagueTable is composed of one or more elements. Elements are sorted by their rating (higher=better).
Definition at line 31 of file league_base.h.
|
inline |
We need an (empty) constructor so struct isn't zeroed (as C++ standard states)
Definition at line 42 of file league_base.h.
|
inline |
(Empty) destructor has to be defined else operator delete might be called with nullptr parameter
Definition at line 47 of file league_base.h.
CompanyID LeagueTableElement::company |
Company Id to show the color blob for or INVALID_COMPANY.
Definition at line 34 of file league_base.h.
Referenced by CmdCreateLeagueTableElement().
Link LeagueTableElement::link |
What opens when element is clicked.
Definition at line 37 of file league_base.h.
Referenced by CmdCreateLeagueTableElement().
int64_t LeagueTableElement::rating |
Value that determines ordering of elements in the table (higher=better)
Definition at line 33 of file league_base.h.
Referenced by CmdCreateLeagueTableElement().
std::string LeagueTableElement::score |
String representation of the score associated with the element.
Definition at line 36 of file league_base.h.
Referenced by CmdCreateLeagueTableElement().
LeagueTableID LeagueTableElement::table |
Id of the table which this element belongs to.
Definition at line 32 of file league_base.h.
Referenced by CmdCreateLeagueTableElement().
std::string LeagueTableElement::text |
Text of the element.
Definition at line 35 of file league_base.h.
Referenced by CmdCreateLeagueTableElement().