OpenTTD Source  20240915-master-g3784a3d3d6
waypoint.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * 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.
4  * 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.
5  * 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/>.
6  */
7 
10 #include "stdafx.h"
11 
12 #include "order_func.h"
13 #include "window_func.h"
14 #include "newgrf_station.h"
15 #include "waypoint_base.h"
16 #include "viewport_kdtree.h"
17 
18 #include "safeguards.h"
19 
28 void DrawWaypointSprite(int x, int y, StationClassID station_class, uint16_t station_type, RailType railtype)
29 {
30  if (!DrawStationTile(x, y, railtype, AXIS_X, station_class, station_type)) {
31  StationPickerDrawSprite(x, y, STATION_WAYPOINT, railtype, INVALID_ROADTYPE, AXIS_X);
32  }
33 }
34 
36 {
37  switch (type) {
38  case STATION_WAYPOINT:
39  *ta = this->train_station;
40  return;
41 
42  case STATION_ROADWAYPOINT:
43  *ta = this->road_waypoint_area;
44  return;
45 
46  case STATION_BUOY:
47  ta->tile = this->xy;
48  ta->w = 1;
49  ta->h = 1;
50  break;
51 
52  default: NOT_REACHED();
53  }
54 }
55 
56 Waypoint::~Waypoint()
57 {
58  if (CleaningPool()) return;
60  RemoveOrderFromAllVehicles(OT_GOTO_WAYPOINT, this->index);
61  if (this->sign.kdtree_valid) _viewport_sign_kdtree.Remove(ViewportSignKdtreeItem::MakeWaypoint(this->index));
62 }
newgrf_station.h
StationClassID
StationClassID
Definition: newgrf_station.h:86
CloseWindowById
void CloseWindowById(WindowClass cls, WindowNumber number, bool force, int data)
Close a window by its class and window number (if it is open).
Definition: window.cpp:1140
RailType
RailType
Enumeration for all possible railtypes.
Definition: rail_type.h:27
Pool::PoolItem<&_station_pool >::index
Tindex index
Index of this pool item.
Definition: pool_type.hpp:238
DrawWaypointSprite
void DrawWaypointSprite(int x, int y, StationClassID station_class, uint16_t station_type, RailType railtype)
Draw a waypoint.
Definition: waypoint.cpp:28
Waypoint::GetTileArea
void GetTileArea(TileArea *ta, StationType type) const override
Get the tile area for a given station type.
Definition: waypoint.cpp:35
OrthogonalTileArea::h
uint16_t h
The height of the area.
Definition: tilearea_type.h:21
StationType
StationType
Station types.
Definition: station_type.h:31
Kdtree::Remove
void Remove(const T &element)
Remove a single element from the tree, if it exists.
Definition: kdtree.hpp:417
BaseStation::sign
TrackedViewportSign sign
NOSAVE: Dimensions of sign.
Definition: base_station_base.h:61
BaseStation::train_station
TileArea train_station
Tile area the train 'station' part covers.
Definition: base_station_base.h:84
OrthogonalTileArea
Represents the covered area of e.g.
Definition: tilearea_type.h:18
safeguards.h
WC_WAYPOINT_VIEW
@ WC_WAYPOINT_VIEW
Waypoint view; Window numbers:
Definition: window_type.h:357
INVALID_ROADTYPE
@ INVALID_ROADTYPE
flag for invalid roadtype
Definition: road_type.h:30
stdafx.h
AXIS_X
@ AXIS_X
The X axis.
Definition: direction_type.h:117
OrthogonalTileArea::tile
TileIndex tile
The base tile of the area.
Definition: tilearea_type.h:19
RemoveOrderFromAllVehicles
void RemoveOrderFromAllVehicles(OrderType type, DestinationID destination, bool hangar)
Removes an order from all vehicles.
Definition: order_cmd.cpp:1787
Pool::PoolItem<&_station_pool >::CleaningPool
static bool CleaningPool()
Returns current state of pool cleaning - yes or no.
Definition: pool_type.hpp:318
waypoint_base.h
TrackedViewportSign::kdtree_valid
bool kdtree_valid
Are the sign data valid for use with the _viewport_sign_kdtree?
Definition: viewport_type.h:52
BaseStation::xy
TileIndex xy
Base tile of the station.
Definition: base_station_base.h:60
Waypoint::road_waypoint_area
TileArea road_waypoint_area
Tile area the road waypoint part covers.
Definition: waypoint_base.h:26
OrthogonalTileArea::w
uint16_t w
The width of the area.
Definition: tilearea_type.h:20
window_func.h
DrawStationTile
bool DrawStationTile(int x, int y, RailType railtype, Axis axis, StationClassID sclass, uint station)
Draw representation of a station tile for GUI purposes.
Definition: newgrf_station.cpp:775
order_func.h