4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file yapf_node.hpp Node in the pathfinder's graph. */
15 /** Yapf Node Key that evaluates hash from (and compares) tile & exit dir. */
16 struct CYapfNodeKeyExitDir
{
19 DiagDirection m_exitdir
;
21 inline void Set(TileIndex tile
, Trackdir td
)
25 m_exitdir
= (m_td
== INVALID_TRACKDIR
) ? INVALID_DIAGDIR
: TrackdirToExitdir(m_td
);
28 inline int CalcHash() const
30 return m_exitdir
| (m_tile
<< 2);
33 inline bool operator==(const CYapfNodeKeyExitDir
&other
) const
35 return m_tile
== other
.m_tile
&& m_exitdir
== other
.m_exitdir
;
38 void Dump(DumpTarget
&dmp
) const
40 dmp
.WriteTile("m_tile", m_tile
);
41 dmp
.WriteEnumT("m_td", m_td
);
42 dmp
.WriteEnumT("m_exitdir", m_exitdir
);
46 struct CYapfNodeKeyTrackDir
: public CYapfNodeKeyExitDir
48 inline int CalcHash() const
50 return m_td
| (m_tile
<< 4);
53 inline bool operator==(const CYapfNodeKeyTrackDir
&other
) const
55 return m_tile
== other
.m_tile
&& m_td
== other
.m_td
;
60 template <class Tkey_
, class Tnode
>
71 inline void Set(Node
*parent
, TileIndex tile
, Trackdir td
, bool is_choice
)
80 inline Node
*GetHashNext()
85 inline void SetHashNext(Node
*pNext
)
90 inline TileIndex
GetTile() const
95 inline Trackdir
GetTrackdir() const
100 inline const Tkey_
& GetKey() const
105 inline int GetCost() const
110 inline int GetCostEstimate() const
115 inline bool operator<(const Node
&other
) const
117 return m_estimate
< other
.m_estimate
;
120 void Dump(DumpTarget
&dmp
) const
122 dmp
.WriteStructT("m_key", &m_key
);
123 dmp
.WriteStructT("m_parent", m_parent
);
124 dmp
.WriteLine("m_cost = %d", m_cost
);
125 dmp
.WriteLine("m_estimate = %d", m_estimate
);
129 #endif /* YAPF_NODE_HPP */