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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/**
* Navit, a modular navigation system.
* Copyright (C) 2005-2008 Navit Team
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program 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 this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef __cplusplus
extern "C" {
#endif
enum maxspeed_handling {
maxspeed_enforce = 0, /*!< Always enforce maxspeed of segment */
maxspeed_restrict = 1, /*!< Enforce maxspeed of segment only if it restricts the speed */
maxspeed_ignore = 2, /*!< Ignore maxspeed of segment, always use {@code route_weight} of road profile */
};
struct vehicleprofile {
NAVIT_OBJECT
int mode; /**< 0 = Auto, 1 = On-Road, 2 = Off-Road */
int flags_forward_mask; /**< Flags mask for moving in positive direction */
int flags_reverse_mask; /**< Flags mask for moving in reverse direction */
int flags; /**< Required flags to move through a segment */
int maxspeed_handling; /**< How to handle maxspeed of segment, see {@code enum maxspeed_handling} */
int static_speed; /**< Maximum speed of vehicle to consider it stationary */
int static_distance; /**< Maximum distance of previous position of vehicle to consider it stationary */
char *name; /**< the vehicle profile name */
char *route_depth; /**< the route depth attribute */
int width; /**< Width of the vehicle in cm */
int height; /**< Height of the vehicle in cm */
int length; /**< Length of the vehicle in cm */
int weight; /**< Weight of the vehicle in kg */
int axle_weight; /**< Axle Weight of the vehicle in kg */
int dangerous_goods; /**< Flags of dangerous goods present */
int through_traffic_penalty; /**< Penalty when driving on a through traffic limited road */
GHashTable *roadprofile_hash;
struct attr active_callback;
int turn_around_penalty; /**< Penalty when turning around */
int turn_around_penalty2; /**< Penalty when turning around, for planned turn arounds */
};
struct vehicleprofile * vehicleprofile_new(struct attr *parent, struct attr **attrs);
struct attr_iter *vehicleprofile_attr_iter_new(void);
void vehicleprofile_attr_iter_destroy(struct attr_iter *iter);
int vehicleprofile_get_attr(struct vehicleprofile *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter);
int vehicleprofile_set_attr(struct vehicleprofile *this_, struct attr *attr);
int vehicleprofile_add_attr(struct vehicleprofile *this_, struct attr *attr);
int vehicleprofile_remove_attr(struct vehicleprofile *this_, struct attr *attr);
struct roadprofile * vehicleprofile_get_roadprofile(struct vehicleprofile *this_, enum item_type type);
//! Returns the vehicle profile's name.
char * vehicleprofile_get_name(struct vehicleprofile *this_);
#ifdef __cplusplus
}
#endif
|