-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathalt-indicator.c
131 lines (113 loc) · 3.55 KB
/
alt-indicator.c
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* SPDX-FileCopyrightText: 2021 Samuel Cuella <[email protected]>
*
* This file is part of SoFIS - an open source EFIS
*
* SPDX-License-Identifier: GPL-2.0-only
*/
#include <stdio.h>
#include <stdlib.h>
#include "alt-indicator.h"
#include "alt-ladder-page-descriptor.h"
#include "resource-manager.h"
#include "sdl-colors.h"
#include "misc.h"
#include "tape-gauge.h"
static BaseGaugeOps alt_indicator_ops = {
.render = (RenderFunc)NULL,
.update_state = (StateUpdateFunc)NULL,
.dispose = (DisposeFunc)NULL
};
AltIndicator *alt_indicator_new(void)
{
AltIndicator *self;
self = calloc(1, sizeof(AltIndicator));
if(self){
if(!alt_indicator_init(self)){
return base_gauge_free(BASE_GAUGE(self));
}
}
return self;
}
AltIndicator *alt_indicator_init(AltIndicator *self)
{
PCF_Font *fnt;
base_gauge_init(BASE_GAUGE(self), &alt_indicator_ops, 68, 240+20);
/*TODO: Change size to size - 20, when size becomes a parameter !
* temporary fixed in the rendering function by drawing the ladder first
* and then drawing on it
* */
fnt = resource_manager_get_font(TERMINUS_18);
DigitBarrel *db = digit_barrel_new(fnt, 0, 9.999, 1);
DigitBarrel *db2 = digit_barrel_new(fnt, 0, 99, 10);
self->tape = tape_gauge_new(
(LadderPageDescriptor*)alt_ladder_page_descriptor_new(),
AlignRight, 0, 4,
-1, db2,
-2, db,
-2, db,
-2, db
);
base_gauge_add_child(BASE_GAUGE(self), BASE_GAUGE(self->tape), 0, 19);
self->talt_txt = text_gauge_new(NULL, true, 68, 20);
self->talt_txt->alignment = HALIGN_CENTER | VALIGN_MIDDLE;
text_gauge_set_static_font(self->talt_txt,
resource_manager_get_static_font(TERMINUS_16,
&SDL_WHITE,
1, PCF_DIGITS
)
);
base_gauge_add_child(BASE_GAUGE(self), BASE_GAUGE(self->talt_txt), 0, 0);
text_gauge_set_color(self->talt_txt, SDL_BLACK, BACKGROUND_COLOR);
text_gauge_set_value(self->talt_txt, "0");
self->qnh_txt = text_gauge_new(NULL, true, 68, 22);
self->qnh_txt->alignment = HALIGN_CENTER | VALIGN_MIDDLE;
text_gauge_set_static_font(self->qnh_txt,
resource_manager_get_static_font(TERMINUS_16,
&SDL_WHITE,
1, PCF_DIGITS
)
);
base_gauge_add_child(BASE_GAUGE(self), BASE_GAUGE(self->qnh_txt),
0,
base_gauge_h(BASE_GAUGE(self)) - 20 - 2
);
text_gauge_set_color(self->qnh_txt, SDL_BLACK, BACKGROUND_COLOR);
alt_indicator_set_alt_src(self, ALT_SRC_GPS);
return self;
}
bool alt_indicator_set_value(AltIndicator *self, float value, bool animated)
{
return tape_gauge_set_value(self->tape, value, animated);
}
/*HPa*/
void alt_indicator_set_qnh(AltIndicator *self, float value)
{
int ivalue;
ivalue = round(value);
if(self->qnh != ivalue){
self->qnh = ivalue;
text_gauge_set_value_formatn(self->qnh_txt,
4, /*4 digits*/
"%04d", self->qnh
);
}
}
void alt_indicator_set_alt_src(AltIndicator *self, AltSource source)
{
if(source == ALT_SRC_GPS){
text_gauge_set_font(self->qnh_txt,
resource_manager_get_font(TERMINUS_16)
);
text_gauge_set_color(self->qnh_txt, SDL_RED, TEXT_COLOR);
text_gauge_set_value(self->qnh_txt, "GPS");
}else{
text_gauge_set_static_font(self->qnh_txt,
resource_manager_get_static_font(TERMINUS_16,
&SDL_WHITE,
1, PCF_DIGITS
)
);
alt_indicator_set_qnh(self, 1013.25);
}
}