OpenTTD Source  20240919-master-gdf0233f4c2
yapf_node_ship.hpp
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 #ifndef YAPF_NODE_SHIP_HPP
11 #define YAPF_NODE_SHIP_HPP
12 
14 template <class Tkey_>
15 struct CYapfShipNodeT : CYapfNodeT<Tkey_, CYapfShipNodeT<Tkey_> > {
17 
18  TileIndex m_segment_last_tile;
19  Trackdir m_segment_last_td;
20 
21  void Set(CYapfShipNodeT *parent, TileIndex tile, Trackdir td, bool is_choice)
22  {
23  base::Set(parent, tile, td, is_choice);
24  m_segment_last_tile = tile;
25  m_segment_last_td = td;
26  }
27 };
28 
29 /* now define two major node types (that differ by key type) */
32 
33 /* Default NodeList types */
36 
37 #endif /* YAPF_NODE_SHIP_HPP */
StrongType::Typedef< uint32_t, struct TileIndexTag, StrongType::Compare, StrongType::Integer, StrongType::Compatible< int32_t >, StrongType::Compatible< int64_t > >
CNodeList_HashTableT
Hash table based node list multi-container class.
Definition: nodelist.hpp:22
CYapfNodeT
Yapf Node base.
Definition: yapf_node.hpp:59
Trackdir
Trackdir
Enumeration for tracks and directions.
Definition: track_type.h:67
CYapfShipNodeT
Yapf Node for ships.
Definition: yapf_node_ship.hpp:15