OpenTTD Source 20241224-master-gf74b0cf984
linkgraph_type.h
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 LINKGRAPH_TYPE_H
11#define LINKGRAPH_TYPE_H
12
13typedef uint16_t LinkGraphID;
14static const LinkGraphID INVALID_LINK_GRAPH = UINT16_MAX;
15
16typedef uint16_t LinkGraphJobID;
17static const LinkGraphJobID INVALID_LINK_GRAPH_JOB = UINT16_MAX;
18
19typedef uint16_t NodeID;
20static const NodeID INVALID_NODE = UINT16_MAX;
21
22enum DistributionType : uint8_t {
23 DT_BEGIN = 0,
24 DT_MIN = 0,
29 DT_MAX = 2,
30 DT_NUM = 3,
31 DT_END = 3
32};
33
53
55
56#endif /* LINKGRAPH_TYPE_H */
#define DECLARE_ENUM_AS_BIT_SET(enum_type)
Operators to allow to work with enum as with type safe bit set in C++.
Definition enum_type.hpp:35
DistributionType
@ DT_MANUAL
Manual distribution. No link graph calculations are run.
@ DT_ASYMMETRIC
Asymmetric distribution. Usually cargo will only travel in one direction.
@ DT_SYMMETRIC
Symmetric distribution. The same amount of cargo travels in each direction between each pair of nodes...
@ DT_MAX_NONSYMMETRIC
Maximum non-symmetric distribution.
EdgeUpdateMode
Special modes for updating links.
@ EUM_REFRESH
Refresh capacity.
@ EUM_INCREASE
Increase capacity.
@ EUM_RESTRICTED
Use restricted link.
@ EUM_UNRESTRICTED
Use unrestricted link.