summaryrefslogtreecommitdiff
path: root/navit/osd
diff options
context:
space:
mode:
authorsleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-11-22 22:34:19 +0000
committersleske <sleske@ffa7fe5e-494d-0410-b361-a75ebd5db220>2014-11-22 22:34:19 +0000
commit0a57b790871b27ea6fd3b1ba97474dddcce7845f (patch)
tree0ad46b248e42f96e93b54874aa3b073ad1273aa1 /navit/osd
parentcffcb036be4aa6097d064c5fb55f3de1a84b23d0 (diff)
downloadnavit-svn-0a57b790871b27ea6fd3b1ba97474dddcce7845f.tar.gz
Refactor:core:Introduce enum for debug levels, and use it everywhere.|First part of #1269.
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5960 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/osd')
-rw-r--r--navit/osd/core/osd_core.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/navit/osd/core/osd_core.c b/navit/osd/core/osd_core.c
index 9df20557..bc38282e 100644
--- a/navit/osd/core/osd_core.c
+++ b/navit/osd/core/osd_core.c
@@ -1454,7 +1454,7 @@ osd_button_draw(struct osd_priv_common *opc, struct navit *nav)
gra = navit_get_graphics(nav);
this->img = graphics_image_new(gra, this->src);
if (!this->img) {
- dbg(1, "failed to load '%s'\n", this->src);
+ dbg(lvl_warning, "failed to load '%s'\n", this->src);
return;
}
@@ -1479,10 +1479,10 @@ osd_button_init(struct osd_priv_common *opc, struct navit *nav)
struct osd_button *this = (struct osd_button *)opc->data;
struct graphics *gra = navit_get_graphics(nav);
- dbg(1, "enter\n");
+ dbg(lvl_warning, "enter\n");
this->img = graphics_image_new(gra, this->src);
if (!this->img) {
- dbg(1, "failed to load '%s'\n", this->src);
+ dbg(lvl_warning, "failed to load '%s'\n", this->src);
return;
}
if (!opc->osd_item.w)
@@ -1540,7 +1540,7 @@ osd_button_set_attr(struct osd_priv_common *opc, struct attr* attr)
gra = navit_get_graphics(nav);
this_->img = graphics_image_new(gra, this_->src);
if (!this_->img) {
- dbg(1, "failed to load '%s'\n", this_->src);
+ dbg(lvl_warning, "failed to load '%s'\n", this_->src);
return 0;
}
if (!opc->osd_item.w)
@@ -1581,7 +1581,7 @@ osd_button_new(struct navit *nav, struct osd_methods *meth,
osd_set_std_attr(attrs, &opc->osd_item, this->use_overlay ? 1:(1|16));
if (!opc->osd_item.command) {
- dbg(0, "no command\n");
+ dbg(lvl_error, "no command\n");
goto error;
}
attr = attr_search(attrs, NULL, attr_src_dir);
@@ -1591,7 +1591,7 @@ osd_button_new(struct navit *nav, struct osd_methods *meth,
this->src_dir=NULL;
attr = attr_search(attrs, NULL, attr_src);
if (!attr) {
- dbg(0, "no src\n");
+ dbg(lvl_error, "no src\n");
goto error;
}
@@ -1617,10 +1617,10 @@ osd_image_init(struct osd_priv_common *opc, struct navit *nav)
struct osd_button *this = (struct osd_button *)opc->data;
struct graphics *gra = navit_get_graphics(nav);
- dbg(1, "enter\n");
+ dbg(lvl_warning, "enter\n");
this->img = graphics_image_new(gra, this->src);
if (!this->img) {
- dbg(1, "failed to load '%s'\n", this->src);
+ dbg(lvl_warning, "failed to load '%s'\n", this->src);
return;
}
if (!opc->osd_item.w)
@@ -1668,7 +1668,7 @@ osd_image_new(struct navit *nav, struct osd_methods *meth,
this->use_overlay=attr->u.num;
attr = attr_search(attrs, NULL, attr_src);
if (!attr) {
- dbg(0, "no src\n");
+ dbg(lvl_error, "no src\n");
goto error;
}
@@ -1719,7 +1719,7 @@ osd_nav_next_turn_draw(struct osd_priv_common *opc, struct navit *navit,
&& (item->type == type_nav_position || item->type == type_nav_none || level-- > 0));
if (item) {
name = item_to_name(item->type);
- dbg(1, "name=%s\n", name);
+ dbg(lvl_warning, "name=%s\n", name);
if (this->active != 1 || this->last_name != name) {
this->active = 1;
this->last_name = name;
@@ -1738,13 +1738,13 @@ osd_nav_next_turn_draw(struct osd_priv_common *opc, struct navit *navit,
osd_std_draw(&opc->osd_item);
if (this->active) {
image = g_strdup_printf(this->icon_src, name);
- dbg(1, "image=%s\n", image);
+ dbg(lvl_warning, "image=%s\n", image);
gr_image =
graphics_image_new_scaled(opc->osd_item.gr,
image, this->icon_w,
this->icon_h);
if (!gr_image) {
- dbg(0,"failed to load %s in %dx%d\n",image,this->icon_w,this->icon_h);
+ dbg(lvl_error,"failed to load %s in %dx%d\n",image,this->icon_w,this->icon_h);
g_free(image);
image = graphics_icon_path("unknown.png");
gr_image =
@@ -1755,7 +1755,7 @@ osd_nav_next_turn_draw(struct osd_priv_common *opc, struct navit *navit,
this->
icon_h);
}
- dbg(1, "gr_image=%p\n", gr_image);
+ dbg(lvl_warning, "gr_image=%p\n", gr_image);
if (gr_image) {
p.x =
(opc->osd_item.w -
@@ -1888,7 +1888,7 @@ osd_nav_toggle_announcer_draw(struct osd_priv_common *opc, struct navit *navit,
gr_image = graphics_image_new_scaled(opc->osd_item.gr, path, this->icon_w, this->icon_h);
}
- dbg(1, "gr_image=%p\n", gr_image);
+ dbg(lvl_warning, "gr_image=%p\n", gr_image);
if (gr_image)
{
@@ -2777,8 +2777,8 @@ osd_text_draw(struct osd_priv_common *opc, struct navit *navit, struct vehicle *
}
if (item) {
- dbg(1,"name %s\n", item_to_name(item->type));
- dbg(1,"type %s\n", attr_to_name(oti->attr_typ));
+ dbg(lvl_warning,"name %s\n", item_to_name(item->type));
+ dbg(lvl_warning,"type %s\n", attr_to_name(oti->attr_typ));
if (item_attr_get(item, oti->attr_typ, &attr))
value=osd_text_format_attr(&attr, oti->format, imperial);
}
@@ -2891,7 +2891,7 @@ osd_text_draw(struct osd_priv_common *opc, struct navit *navit, struct vehicle *
last++;
}
- dbg(1,"this->align=%d\n", this->align);
+ dbg(lvl_warning,"this->align=%d\n", this->align);
switch (this->align & 51) {
case 1:
p.y=0;
@@ -3175,7 +3175,7 @@ osd_gps_status_draw(struct osd_priv_common *opc, struct navit *navit,
case 2:
strength=2;
if (vehicle_get_attr(vehicle_attr.u.vehicle, attr_position_sats_used, &attr, NULL)) {
- dbg(1,"num=%ld\n", attr.u.num);
+ dbg(lvl_warning,"num=%ld\n", attr.u.num);
if (attr.u.num >= 3)
strength=attr.u.num-1;
if (strength > 5)
@@ -3490,7 +3490,7 @@ osd_scale_init(struct osd_priv_common *opc, struct navit *nav)
struct color color_white={COLOR_WHITE_};
struct color color_black={COLOR_BLACK_};
struct graphics *gra = navit_get_graphics(nav);
- dbg(1, "enter\n");
+ dbg(lvl_warning, "enter\n");
if (this->use_overlay) {
osd_set_std_graphic(nav, &opc->osd_item, (struct osd_priv *)opc);
} else {
@@ -3564,7 +3564,7 @@ osd_auxmap_draw(struct osd_priv_common *opc)
memset(&sel, 0, sizeof(sel));
sel.u.p_rect.rl.x=opc->osd_item.w;
sel.u.p_rect.rl.y=opc->osd_item.h;
- dbg(1,"osd_auxmap_draw: sel.u.p_rect.rl=(%d, %d)\n", opc->osd_item.w, opc->osd_item.h);
+ dbg(lvl_warning,"osd_auxmap_draw: sel.u.p_rect.rl=(%d, %d)\n", opc->osd_item.w, opc->osd_item.h);
transform_set_screen_selection(this->trans, &sel);
graphics_set_rect(opc->osd_item.gr, &sel.u.p_rect);
}