|
OpenTTD Source
14.0-beta3
|
Base class for tile iterators. More...
#include <tilearea_type.h>
Public Member Functions | |
| virtual | ~TileIterator () |
| Some compilers really like this. | |
| operator TileIndex () const | |
| Get the tile we are currently at. More... | |
| TileIndex | operator* () const |
| Get the tile we are currently at. More... | |
| virtual TileIterator & | operator++ ()=0 |
| Move ourselves to the next tile in the rectangle on the map. | |
| virtual std::unique_ptr< TileIterator > | Clone () const =0 |
| Allocate a new iterator that is a copy of this one. | |
| bool | operator== (const TileIterator &rhs) const |
| Equality comparison. | |
| bool | operator!= (const TileIterator &rhs) const |
| Inequality comparison. | |
| bool | operator== (const TileIndex &rhs) const |
| Equality comparison. | |
| bool | operator!= (const TileIndex &rhs) const |
| Inequality comparison. | |
Static Public Member Functions | |
| static std::unique_ptr< TileIterator > | Create (TileIndex corner1, TileIndex corner2, bool diagonal) |
| Create either an OrthogonalTileIterator or DiagonalTileIterator given the diagonal parameter. More... | |
Protected Member Functions | |
| TileIterator (TileIndex tile=INVALID_TILE) | |
| Initialise the iterator starting at this tile. More... | |
Protected Attributes | |
| TileIndex | tile |
| The current tile we are at. | |
Base class for tile iterators.
Definition at line 105 of file tilearea_type.h.
|
inlineprotected |
Initialise the iterator starting at this tile.
| tile | The tile we start iterating from. |
Definition at line 113 of file tilearea_type.h.
|
static |
Create either an OrthogonalTileIterator or DiagonalTileIterator given the diagonal parameter.
| corner1 | Tile from where to begin iterating. |
| corner2 | Tile where to end the iterating. |
| diagonal | Whether to create a DiagonalTileIterator or OrthogonalTileIterator. |
Definition at line 291 of file tilearea.cpp.
Referenced by CmdBuildObjectArea(), CmdClearArea(), CmdConvertRail(), and CmdLevelLand().
|
inline |
Get the tile we are currently at.
Definition at line 127 of file tilearea_type.h.
References tile.
|
inline |
Get the tile we are currently at.
Definition at line 136 of file tilearea_type.h.
References tile.