summaryrefslogtreecommitdiff
path: root/src/cargodest_type.h
blob: fb18af0eaa5f53a7452692b7c030a62eb6480df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* $Id$ */

/*
 * This file is part of OpenTTD.
 * 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.
 * 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.
 * 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/>.
 */

/** @file cargodest_type.h Type definitions for cargo destinations. */

#ifndef CARGODEST_TYPE_H
#define CARGODEST_TYPE_H

/** Flags specifying the demand mode for cargo. */
enum CargoRoutingMode {
	CRM_OFF,             ///< No routing, original behaviour
	CRM_FIXED_DEST,      ///< Fixed destinations
};

/** Flags specifying how cargo should be routed. */
enum RoutingFlags {
	RF_WANT_FAST,    ///< Cargo wants to travel as fast as possible.
	RF_WANT_CHEAP,   ///< Cargo wants to travel as cheap as possible.
};

/** Unique identifier for a routing link. */
typedef uint32 RouteLinkID;
struct RouteLink;

#endif /* CARGODEST_TYPE_H */