7b159d45f6d966c92a5a7d67b8fd5df2ca4def5d
[navit-package] / navit / attr.h
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef NAVIT_ATTR_H
21 #define NAVIT_ATTR_H
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 #include "projection.h"
28
29 enum item_type;
30
31 enum attr_type {
32 #define ATTR2(x,y) attr_##y=x,
33 #define ATTR(x) attr_##x,
34 #include "attr_def.h"
35 #undef ATTR2
36 #undef ATTR
37 };
38
39 #define AF_ONEWAY               (1<<0)
40 #define AF_ONEWAYREV            (1<<1)
41 #define AF_NOPASS               (AF_ONEWAY|AF_ONEWAYREV)
42 #define AF_ONEWAYMASK           (AF_ONEWAY|AF_ONEWAYREV)
43 #define AF_SEGMENTED            (1<<2)
44 #define AF_ROUNDABOUT           (1<<3)
45 #define AF_ROUNDABOUT_VALID     (1<<4)
46 #define AF_ONEWAY_EXCEPTION     (1<<5)
47 #define AF_SPEED_LIMIT          (1<<6)
48 #define AF_TRUCK_SPEED_LIMIT    (1<<7)
49 #define AF_SIZE_OR_WEIGHT_LIMIT (1<<8)
50 #define AF_THROUGH_TRAFFIC      (1<<9)
51 #define AF_TOLL                 (1<<10)
52 #define AF_SEASONAL             (1<<11)
53 #define AF_UNPAVED              (1<<12)
54 #define AF_DANGEROUS_GOODS      (1<<19)
55 #define AF_EMERGENCY_VEHICLES   (1<<20)
56 #define AF_TRANSPORT_TRUCK      (1<<21)
57 #define AF_DELIVERY_TRUCK       (1<<22)
58 #define AF_PUBLIC_BUS           (1<<23)
59 #define AF_TAXI                 (1<<24) 
60 #define AF_HIGH_OCCUPANCY_CAR   (1<<25) 
61 #define AF_CAR                  (1<<26) 
62 #define AF_MOTORCYCLE           (1<<27) 
63 #define AF_MOPED                (1<<28) 
64 #define AF_HORSE                (1<<29) 
65 #define AF_BIKE                 (1<<30) 
66 #define AF_PEDESTRIAN           (1<<31) 
67
68 /* Values for attributes that could carry relative values */
69 #define ATTR_REL_MAXABS                 0x40000000
70 #define ATTR_REL_RELSHIFT               0x60000000
71
72 enum attr_position_valid {
73         attr_position_valid_invalid,
74         attr_position_valid_static,
75         attr_position_valid_extrapolated_time,
76         attr_position_valid_extrapolated_spatial,
77         attr_position_valid_valid,
78 };
79
80 struct attr {
81         enum attr_type type;
82         union {
83                 char *str;
84                 void *data;
85                 int num;
86                 struct item *item;
87                 enum item_type item_type;
88                 enum projection projection;
89                 double * numd;
90                 struct color *color;
91                 struct coord_geo *coord_geo;
92                 struct navit *navit;
93                 struct callback *callback;
94                 struct callback_list *callback_list;
95                 struct vehicle *vehicle;
96                 struct layout *layout;
97                 struct layer *layer;
98                 struct map *map;
99                 struct mapset *mapset;
100                 struct log *log;
101                 struct route *route;
102                 struct navigation *navigation;
103                 struct coord *coord;
104                 struct pcoord *pcoord;
105                 struct gui *gui;
106                 struct graphics *graphics;
107                 struct tracking *tracking;
108                 struct itemgra *itemgra;
109                 struct plugin *plugin;
110                 struct plugins *plugins;
111                 struct polygon *polygon;
112                 struct polyline *polyline;
113                 struct circle *circle;
114                 struct text *text;
115                 struct icon *icon;
116                 struct image *image;
117                 struct arrows *arrows;
118                 struct element *element;
119                 struct speech *speech;
120                 struct cursor *cursor;
121                 struct displaylist *displaylist;
122                 struct transformation *transformation;
123                 struct vehicleprofile *vehicleprofile;
124                 struct roadprofile *roadprofile;
125                 struct range {
126                         short min, max;
127                 } range;
128                 int *dash;
129                 enum item_type *item_types;
130                 enum attr_type *attr_types;
131                 long long *num64;
132         } u;
133 };
134
135 struct attr_iter;
136 /* prototypes */
137 enum attr_type attr_from_name(const char *name);
138 char *attr_to_name(enum attr_type attr);
139 struct attr *attr_new_from_text(const char *name, const char *value);
140 char *attr_to_text(struct attr *attr, struct map *map, int pretty);
141 struct attr *attr_search(struct attr **attrs, struct attr *last, enum attr_type attr);
142 int attr_generic_get_attr(struct attr **attrs, struct attr **def_attrs, enum attr_type type, struct attr *attr, struct attr_iter *iter);
143 struct attr **attr_generic_set_attr(struct attr **attrs, struct attr *attr);
144 struct attr **attr_generic_add_attr(struct attr **attrs, struct attr *attr);
145 struct attr **attr_generic_remove_attr(struct attr **attrs, struct attr *attr);
146 enum attr_type attr_type_begin(enum attr_type type);
147 int attr_data_size(struct attr *attr);
148 void *attr_data_get(struct attr *attr);
149 void attr_data_set(struct attr *attr, void *data);
150 void attr_data_set_le(struct attr *attr, void *data);
151 void attr_free(struct attr *attr);
152 struct attr *attr_dup(struct attr *attr);
153 void attr_list_free(struct attr **attrs);
154 struct attr **attr_list_dup(struct attr **attrs);
155 int attr_from_line(char *line, char *name, int *pos, char *val_ret, char *name_ret);
156 int attr_types_contains(enum attr_type *types, enum attr_type type);
157 int attr_types_contains_default(enum attr_type *types, enum attr_type type, int deflt);
158 /* end of prototypes */
159 #ifdef __cplusplus
160 }
161 #endif
162
163 #endif