|
OpenTTD Source 15.0-beta1
|
Public Member Functions | |
| Sign (Owner owner=INVALID_OWNER) | |
| Creates a new sign. | |
| ~Sign () | |
| Destroy the sign. | |
| void | UpdateVirtCoord () |
| Update the coordinate of one sign. | |
Public Member Functions inherited from Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_sign_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 | |
| std::string | name |
| TrackedViewportSign | sign |
| int32_t | x |
| int32_t | y |
| int32_t | z |
| Owner | owner |
Data Fields inherited from Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_sign_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<&_sign_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<&_sign_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. | |
Definition at line 21 of file signs_base.h.
| Sign::Sign | ( | Owner | owner = INVALID_OWNER | ) |
| Sign::~Sign | ( | ) |
Destroy the sign.
Definition at line 36 of file signs.cpp.
References Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_sign_pool >::CleaningPool(), DeleteRenameSignWindow(), and Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_sign_pool >::index.
| void Sign::UpdateVirtCoord | ( | ) |
Update the coordinate of one sign.
Definition at line 46 of file signs.cpp.
References Pool< Titem, Tindex, Tgrowth_step, Tmax_size, Tpool_type, Tcache, Tzero >::PoolItem<&_sign_pool >::index, Kdtree< T, TxyFunc, CoordT, DistT >::Insert(), TrackedViewportSign::kdtree_valid, RemapCoords(), Kdtree< T, TxyFunc, CoordT, DistT >::Remove(), SetDParam(), and TrackedViewportSign::UpdatePosition().
Referenced by CmdPlaceSign(), and CmdRenameSign().
| std::string Sign::name |
Definition at line 22 of file signs_base.h.
| Owner Sign::owner |
Definition at line 27 of file signs_base.h.
| TrackedViewportSign Sign::sign |
Definition at line 23 of file signs_base.h.
| int32_t Sign::x |
Definition at line 24 of file signs_base.h.
| int32_t Sign::y |
Definition at line 25 of file signs_base.h.
| int32_t Sign::z |
Definition at line 26 of file signs_base.h.