Mercurial > public > ostc4
annotate Discovery/Src/t3.c @ 603:c56ed16dbd39
T3 profile view: Added visualization of deco data
author | Ideenmodellierer |
---|---|
date | Wed, 06 Jan 2021 19:41:43 +0100 |
parents | 2cb0a97a07ad |
children | ae7f8333c900 |
rev | line source |
---|---|
38 | 1 /////////////////////////////////////////////////////////////////////////////// |
2 /// -*- coding: UTF-8 -*- | |
3 /// | |
4 /// \file Discovery/Src/t3.c | |
5 /// \brief Main Template file for dive mode special scree t3 | |
6 /// \author Heinrichs Weikamp gmbh | |
7 /// \date 10-Nov-2014 | |
8 /// | |
9 /// \details | |
10 /// | |
11 /// $Id$ | |
12 /////////////////////////////////////////////////////////////////////////////// | |
13 /// \par Copyright (c) 2014-2018 Heinrichs Weikamp gmbh | |
14 /// | |
15 /// This program is free software: you can redistribute it and/or modify | |
16 /// it under the terms of the GNU General Public License as published by | |
17 /// the Free Software Foundation, either version 3 of the License, or | |
18 /// (at your option) any later version. | |
19 /// | |
20 /// This program is distributed in the hope that it will be useful, | |
21 /// but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 /// GNU General Public License for more details. | |
24 /// | |
25 /// You should have received a copy of the GNU General Public License | |
26 /// along with this program. If not, see <http://www.gnu.org/licenses/>. | |
27 ////////////////////////////////////////////////////////////////////////////// | |
28 | |
29 /* Includes ------------------------------------------------------------------*/ | |
30 #include "t3.h" | |
31 | |
32 #include "data_exchange_main.h" | |
33 #include "decom.h" | |
34 #include "gfx_fonts.h" | |
35 #include "math.h" | |
36 #include "tHome.h" | |
37 #include "timer.h" | |
38 #include "unit.h" | |
553 | 39 #include "motion.h" |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
40 #include "logbook_miniLive.h" |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
41 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
42 |
599 | 43 #define CV_PROFILE_WIDTH (600U) |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
44 |
237
ec16fd26e280
Bugfix: do not show NDL in bigscreen mode when zero
Jan Mulder <jlmulder@xs4all.nl>
parents:
214
diff
changeset
|
45 //* Imported function prototypes ---------------------------------------------*/ |
38 | 46 extern uint8_t write_gas(char *text, uint8_t oxygen, uint8_t helium); |
47 | |
48 /* Exported variables --------------------------------------------------------*/ | |
49 | |
50 const uint16_t BigFontSeperationLeftRight = 399; | |
51 const uint16_t BigFontSeperationTopBottom = 240; | |
52 | |
53 /* Private variables ---------------------------------------------------------*/ | |
54 GFX_DrawCfgScreen t3screen; | |
55 GFX_DrawCfgWindow t3l1; | |
56 GFX_DrawCfgWindow t3r1; | |
57 GFX_DrawCfgWindow t3c1; | |
58 GFX_DrawCfgWindow t3c2; | |
59 | |
529
0e1db77b2aca
Added skip condition in custom view selection:
Ideenmodellierer
parents:
527
diff
changeset
|
60 uint8_t t3_selection_customview = CVIEW_noneOrDebug; |
38 | 61 |
62 /* TEM HAS TO MOVE TO GLOBAL--------------------------------------------------*/ | |
63 | |
64 /* Private types -------------------------------------------------------------*/ | |
65 #define TEXTSIZE 16 | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
66 #define NUMBER_OF_VIEWS 7 /* number of views defined in the array below */ |
38 | 67 |
68 const uint8_t t3_customviewsStandard[] = | |
69 { | |
70 CVIEW_T3_Decostop, | |
71 CVIEW_sensors, | |
72 CVIEW_Compass, | |
73 CVIEW_T3_MaxDepth, | |
74 CVIEW_T3_StopWatch, | |
75 CVIEW_T3_TTS, | |
76 CVIEW_T3_ppO2andGas, | |
518 | 77 CVIEW_T3_GasList, |
511 | 78 CVIEW_T3_Navigation, |
79 CVIEW_T3_DepthData, | |
541
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
80 CVIEW_noneOrDebug, |
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
81 CVIEW_T3_DecoTTS, |
599 | 82 #ifdef ENABLE_T3_PROFILE_VIEW |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
83 CVIEW_T3_Profile, |
599 | 84 #endif |
38 | 85 CVIEW_T3_END |
86 }; | |
87 | |
88 /* Private function prototypes -----------------------------------------------*/ | |
89 void t3_refresh_divemode(void); | |
90 | |
91 uint8_t t3_test_customview_warnings(void); | |
92 void t3_refresh_customview(float depth); | |
496 | 93 void t3_basics_compass(GFX_DrawCfgScreen *tXscreen, point_t center, uint16_t ActualHeading, uint16_t UserSetHeading); |
38 | 94 |
95 /* Exported functions --------------------------------------------------------*/ | |
96 | |
97 void t3_init(void) | |
98 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
99 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
100 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
101 |
496 | 102 t3_selection_customview = t3_customviewsStandard[0]; |
38 | 103 |
104 t3screen.FBStartAdress = 0; | |
105 t3screen.ImageHeight = 480; | |
106 t3screen.ImageWidth = 800; | |
107 t3screen.LayerIndex = 1; | |
108 | |
109 t3l1.Image = &t3screen; | |
110 t3l1.WindowNumberOfTextLines = 2; | |
111 t3l1.WindowLineSpacing = 19; // Abstand von Y0 | |
112 t3l1.WindowTab = 100; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
113 |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
114 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
115 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
116 t3l1.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
117 t3l1.WindowX1 = BigFontSeperationLeftRight - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
118 t3l1.WindowY0 = BigFontSeperationTopBottom + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
119 t3l1.WindowY1 = 479; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
120 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
121 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
122 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
123 t3l1.WindowX0 = 800 - BigFontSeperationLeftRight + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
124 t3l1.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
125 t3l1.WindowY0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
126 t3l1.WindowY1 = 479 - BigFontSeperationTopBottom + 5 ; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
127 } |
38 | 128 |
129 t3r1.Image = &t3screen; | |
130 t3r1.WindowNumberOfTextLines = t3l1.WindowNumberOfTextLines; | |
131 t3r1.WindowLineSpacing = t3l1.WindowLineSpacing; | |
132 t3r1.WindowTab = t3l1.WindowTab; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
133 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
134 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
135 t3r1.WindowX0 = BigFontSeperationLeftRight + 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
136 t3r1.WindowX1 = 799; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
137 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
138 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
139 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
140 t3r1.WindowX0 = 0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
141 t3r1.WindowX1 = BigFontSeperationLeftRight - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
142 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
143 |
38 | 144 t3r1.WindowY0 = t3l1.WindowY0; |
145 t3r1.WindowY1 = t3l1.WindowY1; | |
146 | |
518 | 147 /* t3c1 is across the complete lower part of the display */ |
38 | 148 t3c1.Image = &t3screen; |
149 t3c1.WindowNumberOfTextLines = 2; | |
518 | 150 t3c1.WindowLineSpacing = 84 + 5; /* double font + spacing */ |
38 | 151 t3c1.WindowX0 = 0; |
152 t3c1.WindowX1 = 799; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
153 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
154 { |
511 | 155 t3c1.WindowY0 = 5; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
156 t3c1.WindowY1 = BigFontSeperationTopBottom - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
157 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
158 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
159 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
160 t3c1.WindowY0 = 480 - BigFontSeperationTopBottom + 5; |
511 | 161 t3c1.WindowY1 = 479 - 5; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
162 } |
38 | 163 |
518 | 164 /* t3c2 is just showing the lower right part of the display */ |
38 | 165 t3c2.Image = &t3screen; |
166 t3c2.WindowNumberOfTextLines = 3; | |
511 | 167 t3c2.WindowLineSpacing = t3c1.WindowLineSpacing ; |
38 | 168 t3c2.WindowX0 = 370; |
169 t3c2.WindowX1 = 799; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
170 t3c2.WindowY0 = t3c1.WindowY0; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
171 t3c2.WindowY1 = t3c1.WindowY1; |
38 | 172 t3c2.WindowTab = 600; |
173 } | |
174 | |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
175 void t3_select_customview(uint8_t selectedCustomview) |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
176 { |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
177 if(selectedCustomview < CVIEW_T3_END) |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
178 { |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
179 t3_selection_customview = selectedCustomview; |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
180 } |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
181 } |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
182 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
183 void t3_miniLiveLogProfile(void) |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
184 { |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
185 SWindowGimpStyle wintemp; |
602
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
186 uint16_t replayDataLength = 0; |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
187 uint16_t liveDataLength = 0; |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
188 uint16_t drawDataLength = 0; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
189 uint16_t* pReplayData; |
599 | 190 uint16_t max_depth = 10; |
191 char text[TEXTSIZE]; | |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
192 point_t start, stop; |
599 | 193 uint16_t diveMinutes = 0; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
194 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
195 wintemp.left = t3c1.WindowX0; |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
196 wintemp.right = t3c1.WindowX0 + CV_PROFILE_WIDTH; |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
197 wintemp.top = 480 - BigFontSeperationTopBottom + 5; |
599 | 198 wintemp.bottom = 479 - 5; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
199 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
200 start.x = CV_PROFILE_WIDTH + 2; |
599 | 201 start.y = t3c1.WindowY0; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
202 stop.x = start.x; |
599 | 203 stop.y = t3c1.WindowY1; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
204 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
205 GFX_draw_line(&t3screen, start, stop, CLUT_Font020); |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
206 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
207 if(getReplayOffset() != 0xFFFF) |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
208 { |
602
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
209 getReplayInfo(&pReplayData, &replayDataLength, &max_depth, &diveMinutes); |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
210 } |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
211 |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
212 if(max_depth < (uint16_t)(stateUsed->lifeData.max_depth_meter * 100)) |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
213 { |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
214 max_depth = (uint16_t)(stateUsed->lifeData.max_depth_meter * 100); |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
215 } |
602
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
216 |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
217 liveDataLength = getMiniLiveReplayLength(); |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
218 |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
219 if(replayDataLength > liveDataLength) |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
220 { |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
221 drawDataLength = replayDataLength; |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
222 } |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
223 else |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
224 { |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
225 drawDataLength = liveDataLength; |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
226 } |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
227 |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
228 if(drawDataLength < CV_PROFILE_WIDTH) |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
229 { |
602
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
230 drawDataLength = CV_PROFILE_WIDTH; |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
231 } |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
232 |
599 | 233 if(diveMinutes != 0) |
234 { | |
235 snprintf(text,TEXTSIZE,"\002%dmin",diveMinutes); | |
236 GFX_write_string(&FontT42,&t3c1,text,1); | |
237 } | |
238 | |
239 snprintf(text,TEXTSIZE,"\002%01.1fm", max_depth / 100.0); | |
240 GFX_write_string(&FontT42,&t3c1,text,0); | |
241 | |
602
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
242 if(replayDataLength != 0) |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
243 { |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
244 GFX_graph_print(&t3screen, &wintemp, 0,1,0, max_depth, pReplayData, drawDataLength, CLUT_Font031, NULL); |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
245 } |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
246 |
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
247 if(liveDataLength > 3) |
599 | 248 { |
603
c56ed16dbd39
T3 profile view: Added visualization of deco data
Ideenmodellierer
parents:
602
diff
changeset
|
249 GFX_graph_print(&t3screen,&wintemp,wintemp.top * -1,1,0,max_depth, getMiniLiveDecoPointerToData(),drawDataLength, CLUT_NiceGreen, NULL); |
602
2cb0a97a07ad
Added replay data scaling in case life data is longer than replay block
Ideenmodellierer
parents:
601
diff
changeset
|
250 GFX_graph_print(&t3screen, &wintemp, 0,1,0, max_depth, getMiniLiveReplayPointerToData(), drawDataLength, CLUT_Font030, NULL); |
599 | 251 } |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
252 } |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
253 |
38 | 254 |
255 void t3_refresh(void) | |
256 { | |
496 | 257 static uint8_t last_mode = MODE_SURFACE; |
258 | |
38 | 259 SStateList status; |
260 get_globalStateList(&status); | |
261 | |
262 if(stateUsed->mode != MODE_DIVE) | |
263 { | |
264 settingsGetPointer()->design = 7; | |
265 return; | |
266 } | |
267 | |
268 if(status.base != BaseHome) | |
269 return; | |
270 | |
541
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
271 if(last_mode != MODE_DIVE) /* Select custom view */ |
496 | 272 { |
273 if((settingsGetPointer()->tX_customViewTimeout == 0) && (settingsGetPointer()->showDebugInfo)) | |
274 { | |
275 t3_selection_customview = CVIEW_noneOrDebug; | |
276 } | |
277 else | |
278 { | |
541
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
279 t3_selection_customview = settingsGetPointer()->tX_customViewPrimaryBF; |
496 | 280 } |
281 t3_change_customview(ACTION_END); | |
282 } | |
38 | 283 t3screen.FBStartAdress = getFrame(24); |
284 t3_refresh_divemode(); | |
166
255eedad4155
cleanup: get rid of some compile warnings
Jan Mulder <jlmulder@xs4all.nl>
parents:
138
diff
changeset
|
285 GFX_SetFramesTopBottom(t3screen.FBStartAdress, 0,480); |
38 | 286 releaseAllFramesExcept(24,t3screen.FBStartAdress); |
496 | 287 last_mode = stateUsed->mode; |
38 | 288 } |
289 | |
541
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
290 void t3_set_customview_to_primary(void) |
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
291 { |
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
292 if(stateUsed->mode == MODE_DIVE) |
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
293 { |
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
294 t3_selection_customview = settingsGetPointer()->tX_customViewPrimaryBF; |
599 | 295 t3_change_customview(ACTION_END); |
541
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
296 } |
6fbf7cd391cb
Added default view selection and auto return to view to t3 visualization:
Ideenmodellierer
parents:
539
diff
changeset
|
297 } |
38 | 298 |
299 /* Private functions ---------------------------------------------------------*/ | |
300 | |
301 float t3_basics_lines_depth_and_divetime(GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXl1, GFX_DrawCfgWindow* tXr1, uint8_t mode) | |
302 { | |
518 | 303 char text[256]; |
304 uint8_t textPointer; | |
38 | 305 uint8_t color; |
306 uint8_t depthChangeRate; | |
307 uint8_t depthChangeAscent; | |
308 point_t start, stop, startZeroLine; | |
518 | 309 SDivetime Divetime = {0,0,0,0}; |
38 | 310 |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
311 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
312 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
313 |
38 | 314 start.x = 0; |
315 stop.x = 799; | |
316 stop.y = start.y = BigFontSeperationTopBottom; | |
553 | 317 if(viewInFocus()) |
318 { | |
319 GFX_draw_line(tXscreen, start, stop, CLUT_Font023); | |
320 } | |
321 else | |
322 { | |
323 GFX_draw_line(tXscreen, start, stop, CLUT_Font020); | |
324 } | |
325 | |
38 | 326 |
327 start.y = BigFontSeperationTopBottom; | |
328 stop.y = 479; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
329 |
38 | 330 stop.x = start.x = BigFontSeperationLeftRight; |
553 | 331 if(viewInFocus()) |
332 { | |
333 GFX_draw_line(tXscreen, start, stop, CLUT_Font023); | |
334 } | |
335 else | |
336 { | |
337 GFX_draw_line(tXscreen, start, stop, CLUT_Font020); | |
338 } | |
38 | 339 |
340 /* depth */ | |
174
ecb71521d004
Bugfix: make max depth move with current depth (part 2)
Jan Mulder <jlmulder@xs4all.nl>
parents:
166
diff
changeset
|
341 float depth = unit_depth_float(stateUsed->lifeData.depth_meter); |
38 | 342 |
343 if(depth <= 0.3f) | |
344 depth = 0; | |
345 | |
346 if(settingsGetPointer()->nonMetricalSystem) | |
347 snprintf(text,TEXTSIZE,"\032\f[feet]"); | |
348 else | |
349 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Depth); | |
350 GFX_write_string(&FontT42,tXl1,text,0); | |
351 | |
352 if( ((mode == DIVEMODE_Apnea) && ((stateUsed->lifeData.ascent_rate_meter_per_min > 4) || (stateUsed->lifeData.ascent_rate_meter_per_min < -4 ))) | |
353 || ((mode != DIVEMODE_Apnea) && ((stateUsed->lifeData.ascent_rate_meter_per_min > 8) || (stateUsed->lifeData.ascent_rate_meter_per_min < -10))) | |
354 ) | |
355 { | |
356 snprintf(text,TEXTSIZE,"\f\002%.0f %c%c/min " | |
357 , unit_depth_float(stateUsed->lifeData.ascent_rate_meter_per_min) | |
358 , unit_depth_char1() | |
359 , unit_depth_char2() | |
360 ); | |
361 GFX_write_string(&FontT42,tXl1,text,0); | |
362 } | |
363 | |
364 if( depth < 100) | |
365 snprintf(text,TEXTSIZE,"\020\003\016%01.1f",depth); | |
366 else | |
367 snprintf(text,TEXTSIZE,"\020\003\016%01.0f",depth); | |
368 | |
369 t3_basics_colorscheme_mod(text); | |
370 GFX_write_string(&FontT105,tXl1,text,1); | |
371 | |
372 | |
373 /* ascentrate graph */ | |
374 if(mode == DIVEMODE_Apnea) | |
375 { | |
376 /* ascentrate graph - apnea mode */ | |
377 if(stateUsed->lifeData.ascent_rate_meter_per_min > 0) | |
378 { | |
379 depthChangeAscent = 1; | |
380 if(stateUsed->lifeData.ascent_rate_meter_per_min < 200) | |
381 depthChangeRate = (uint8_t)stateUsed->lifeData.ascent_rate_meter_per_min; | |
382 else | |
383 depthChangeRate = 200; | |
384 } | |
385 else | |
386 { | |
387 depthChangeAscent = 0; | |
388 if(stateUsed->lifeData.ascent_rate_meter_per_min > -200) | |
389 depthChangeRate = (uint8_t)(0 - stateUsed->lifeData.ascent_rate_meter_per_min); | |
390 else | |
391 depthChangeRate = 200; | |
392 } | |
413 | 393 |
394 if(!pSettings->FlipDisplay) | |
395 { | |
396 start.y = tXl1->WindowY0 - 1; | |
397 } | |
398 else | |
399 { | |
400 start.y = tXl1->WindowY1 + 1; | |
401 } | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
402 startZeroLine.y = start.y; |
38 | 403 for(int i = 0; i<5;i++) |
404 { | |
405 start.y += 40; | |
406 stop.y = start.y; | |
413 | 407 if(!pSettings->FlipDisplay) |
408 { | |
409 start.x = tXl1->WindowX1 - 1; | |
410 } | |
411 else | |
412 { | |
413 start.x = tXr1->WindowX1 - 1; | |
414 } | |
38 | 415 stop.x = start.x - 17; |
416 | |
417 if(depthChangeRate <= 6) | |
418 { | |
419 if(i == 2) | |
420 { | |
421 startZeroLine.y = start.y; | |
422 stop.x = start.x - 34; | |
423 } | |
424 } | |
425 else | |
426 { | |
427 if(((i == 1) && depthChangeAscent) || ((i == 3) && !depthChangeAscent)) | |
428 { | |
429 startZeroLine.y = start.y; | |
430 stop.x = start.x - 34; | |
431 } | |
432 } | |
433 GFX_draw_line(tXscreen, start, stop, 0); | |
434 } | |
435 // new thick bar design Sept. 2015 | |
436 if((stateUsed->lifeData.ascent_rate_meter_per_min > 4) || (stateUsed->lifeData.ascent_rate_meter_per_min < -4)) | |
437 { | |
438 start.y = startZeroLine.y; | |
439 if(depthChangeAscent) | |
440 { | |
441 color = CLUT_EverythingOkayGreen; | |
442 start.y += 7; // starte etwas weiter oben | |
443 stop.y = start.y + (uint16_t)(depthChangeRate * 4) - 9; // - x; // wegen der Liniendicke | |
444 if(stop.y > 475) | |
445 stop.y = 475; | |
446 } | |
447 else | |
448 { | |
449 color = CLUT_Font023; | |
450 start.y -= 7; | |
451 stop.y = start.y - (uint16_t)(depthChangeRate * 4) + 9; | |
452 if(stop.y <= tXl1->WindowY0) | |
453 stop.y = tXl1->WindowY0 + 1; | |
454 } | |
413 | 455 if(!pSettings->FlipDisplay) |
456 { | |
457 start.x = tXl1->WindowX1 - 3 - 5; | |
458 } | |
459 else | |
460 { | |
461 start.x = tXr1->WindowX1 - 3 - 5; | |
462 } | |
463 | |
464 stop.x = start.x; | |
38 | 465 GFX_draw_thick_line(12,tXscreen, start, stop, color); |
466 } | |
467 } | |
468 else | |
469 { | |
470 /* ascentrate graph -standard mode */ | |
471 if(stateUsed->lifeData.ascent_rate_meter_per_min > 0) | |
472 { | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
473 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
474 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
475 start.y = tXl1->WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
476 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
477 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
478 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
479 start.y = tXl1->WindowY1 + 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
480 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
481 |
38 | 482 for(int i = 0; i<4;i++) |
483 { | |
484 start.y += 5*8; | |
485 stop.y = start.y; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
486 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
487 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
488 start.x = tXl1->WindowX1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
489 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
490 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
491 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
492 start.x = tXr1->WindowX1 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
493 } |
38 | 494 stop.x = start.x - 17; |
495 GFX_draw_line(tXscreen, start, stop, 0); | |
496 } | |
497 // new thick bar design Sept. 2015 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
498 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
499 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
500 start.x = tXl1->WindowX1 - 3 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
501 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
502 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
503 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
504 start.x = tXr1->WindowX1 - 3 - 5; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
505 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
506 |
38 | 507 stop.x = start.x; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
508 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
509 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
510 start.y = tXl1->WindowY0 - 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
511 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
512 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
513 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
514 start.y = tXl1->WindowY1 + 1; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
515 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
516 |
38 | 517 stop.y = start.y + (uint16_t)(stateUsed->lifeData.ascent_rate_meter_per_min * 8); |
518 stop.y -= 3; // wegen der Liniendicke von 12 anstelle von 9 | |
519 if(stop.y >= 470) | |
520 stop.y = 470; | |
521 start.y += 7; // starte etwas weiter oben | |
522 if(stateUsed->lifeData.ascent_rate_meter_per_min <= 10) | |
523 color = CLUT_EverythingOkayGreen; | |
524 else | |
525 if(stateUsed->lifeData.ascent_rate_meter_per_min <= 15) | |
526 color = CLUT_WarningYellow; | |
527 else | |
528 color = CLUT_WarningRed; | |
529 | |
530 GFX_draw_thick_line(12,tXscreen, start, stop, color); | |
531 } | |
532 } | |
533 | |
534 // divetime | |
535 if(mode == DIVEMODE_Apnea) | |
536 { | |
537 if(stateUsed->lifeData.counterSecondsShallowDepth) | |
538 { | |
539 SDivetime SurfaceBreakTime = {0,0,0,0}; | |
540 | |
541 SurfaceBreakTime.Total = stateUsed->lifeData.counterSecondsShallowDepth; | |
542 SurfaceBreakTime.Minutes = SurfaceBreakTime.Total / 60; | |
543 SurfaceBreakTime.Seconds = SurfaceBreakTime.Total - (SurfaceBreakTime.Minutes * 60); | |
544 | |
545 snprintf(text,TEXTSIZE,"\032\f\002%c%c", TXT_2BYTE,TXT2BYTE_ApneaSurface); | |
546 GFX_write_string(&FontT42,tXr1,text,0); | |
547 | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
548 snprintf(text,TEXTSIZE,"\020\003\002\016%u:%02u",SurfaceBreakTime.Minutes, SurfaceBreakTime.Seconds); |
38 | 549 } |
550 else | |
551 { | |
552 Divetime.Total = stateUsed->lifeData.dive_time_seconds; | |
553 Divetime.Minutes = Divetime.Total / 60; | |
554 Divetime.Seconds = Divetime.Total - ( Divetime.Minutes * 60 ); | |
555 | |
556 snprintf(text,TEXTSIZE,"\032\f\002%c",TXT_Divetime); | |
557 GFX_write_string(&FontT42,tXr1,text,0); | |
558 | |
559 if(Divetime.Minutes < 100) | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
560 snprintf(text,TEXTSIZE,"\020\003\002\016%u:%02u",Divetime.Minutes, Divetime.Seconds); |
38 | 561 else |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
562 snprintf(text,TEXTSIZE,"\020\003\002\016%u'",Divetime.Minutes); |
38 | 563 } |
518 | 564 t3_basics_colorscheme_mod(text); |
565 GFX_write_string(&FontT105,tXr1,text,1); | |
38 | 566 } |
567 else | |
568 { | |
518 | 569 switch(get_globalState()) |
570 { | |
571 case StDBEAR: snprintf(text,TEXTSIZE,"\a\003\001%c%c", TXT_2BYTE, TXT2BYTE_DiveBearingQ); | |
572 GFX_write_string_color(&FontT42,tXr1,text,1,CLUT_WarningYellow); | |
573 break; | |
574 case StDRAVG: snprintf(text,TEXTSIZE,"\a\003\001%c%c", TXT_2BYTE, TXT2BYTE_DiveResetAvgQ); | |
575 GFX_write_string_color(&FontT42,tXr1,text,1,CLUT_WarningYellow); | |
576 break; | |
38 | 577 |
518 | 578 case StDMGAS: |
579 textPointer = 0; | |
580 text[textPointer++] = '\a'; | |
581 text[textPointer++] = '\001'; | |
582 text[textPointer++] = ' '; | |
583 textPointer += tHome_gas_writer(stateUsed->diveSettings.gas[actualBetterGasId()].oxygen_percentage,stateUsed->diveSettings.gas[actualBetterGasId()].helium_percentage,&text[textPointer]); | |
584 text[textPointer++] = '?'; | |
585 text[textPointer++] = ' '; | |
586 text[textPointer++] = 0; | |
587 GFX_write_string_color(&FontT42,tXr1,text,1,CLUT_WarningYellow); | |
588 break; | |
589 default: /* show divetime */ | |
38 | 590 |
518 | 591 Divetime.Total = stateUsed->lifeData.dive_time_seconds_without_surface_time; |
592 Divetime.Minutes = Divetime.Total / 60; | |
593 Divetime.Seconds = Divetime.Total - ( Divetime.Minutes * 60 ); | |
594 | |
595 snprintf(text,TEXTSIZE,"\032\f\002%c",TXT_Divetime); | |
596 GFX_write_string(&FontT42,tXr1,text,0); | |
597 | |
598 if(Divetime.Minutes < 100) | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
599 snprintf(text,TEXTSIZE,"\020\003\002\016%u:%02u",Divetime.Minutes, Divetime.Seconds); |
518 | 600 else |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
601 snprintf(text,TEXTSIZE,"\020\003\002\016%u'",Divetime.Minutes); |
518 | 602 |
603 t3_basics_colorscheme_mod(text); | |
604 GFX_write_string(&FontT105,tXr1,text,1); | |
605 break; | |
606 } | |
38 | 607 } |
608 | |
609 return depth; | |
610 } | |
611 | |
612 | |
613 void t3_refresh_divemode(void) | |
614 { | |
615 uint8_t customview_warnings = 0; | |
616 float depth_meter = 0.0; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
617 |
38 | 618 // everything like lines, depth, ascent graph and divetime |
619 depth_meter = t3_basics_lines_depth_and_divetime(&t3screen, &t3l1, &t3r1, 0); // 0 could be stateUsed->diveSettings.diveMode for CCR specials | |
620 | |
621 // customview | |
622 if(stateUsed->warnings.numWarnings) | |
623 customview_warnings = t3_test_customview_warnings(); | |
624 | |
625 if(customview_warnings && warning_count_high_time) | |
626 t3_basics_show_customview_warnings(&t3c1); | |
627 else | |
628 t3_refresh_customview(depth_meter); | |
629 | |
630 if(stateUsed->warnings.lowBattery) | |
496 | 631 t3_basics_battery_low_customview_extra(&t3r1); //t3c1); |
38 | 632 } |
633 | |
634 | |
635 void t3_basics_battery_low_customview_extra(GFX_DrawCfgWindow* tXc1) | |
636 { | |
637 char TextC1[256]; | |
638 | |
496 | 639 TextC1[0] = ' ';//'\002'; |
38 | 640 TextC1[1] = '\f'; |
641 TextC1[2] = '\025'; | |
642 TextC1[3] = '3'; | |
643 TextC1[4] = '1'; | |
644 TextC1[5] = '1'; | |
645 TextC1[6] = '1'; | |
646 TextC1[7] = '1'; | |
647 TextC1[8] = '1'; | |
648 TextC1[9] = '1'; | |
649 TextC1[10] = '1'; | |
650 TextC1[11] = '1'; | |
651 TextC1[12] = '1'; | |
652 TextC1[13] = '1'; | |
653 TextC1[14] = '0'; | |
654 TextC1[15] = 0; | |
655 | |
656 if(!warning_count_high_time) | |
657 TextC1[4] = '2'; | |
658 | |
659 GFX_write_string(&Batt24,tXc1,TextC1,0); | |
660 } | |
661 | |
662 | |
663 | |
664 void t3_refresh_customview(float depth) | |
665 { | |
272
74a8296a2318
cleanup: simplify stateUsed usage
Jan Mulder <jlmulder@xs4all.nl>
parents:
237
diff
changeset
|
666 t3_basics_refresh_customview(depth, t3_selection_customview, &t3screen, &t3c1, &t3c2, stateUsedWrite->diveSettings.diveMode); |
38 | 667 } |
668 | |
669 | |
670 void t3_basics_refresh_apnoeRight(float depth, uint8_t tX_selection_customview, GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXc1, GFX_DrawCfgWindow* tXc2, uint8_t mode) | |
671 { | |
672 char text[512]; | |
673 uint16_t textpointer = 0; | |
674 | |
675 // CVIEW_T3_Temperature | |
676 float temperature; | |
413 | 677 SSettings* pSettings; |
678 pSettings = settingsGetPointer(); | |
38 | 679 |
680 SDivetime TotalDivetime = {0,0,0,0}; | |
681 SDivetime LastDivetime = {0,0,0,0}; | |
682 | |
683 uint16_t tempWinX0; | |
413 | 684 uint16_t tempWinX1; |
38 | 685 uint16_t tempWinY0; |
413 | 686 uint16_t tempWinY1; |
38 | 687 |
688 tempWinX0 = tXc1->WindowX0; | |
413 | 689 tempWinX1 = tXc1->WindowX1; |
38 | 690 tempWinY0 = tXc1->WindowY0; |
413 | 691 tempWinY1 = tXc1->WindowY1; |
38 | 692 |
693 tXc1->WindowX0 = 440; // rechte Seite | |
694 | |
695 switch(tX_selection_customview) | |
696 { | |
697 case CVIEW_T3_Temperature: | |
698 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Temperature); | |
699 GFX_write_string(&FontT42,tXc1,text,0); | |
700 | |
189
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
174
diff
changeset
|
701 temperature = unit_temperature_float(stateUsed->lifeData.temperature_celsius); |
38 | 702 textpointer = snprintf(text,TEXTSIZE,"\020\003\016%01.0f\016\016\140",temperature); // "\016\016%01.1f `" + C or F |
703 if(settingsGetPointer()->nonMetricalSystem == 0) | |
704 text[textpointer++] = 'C'; | |
705 else | |
706 text[textpointer++] = 'F'; | |
707 text[textpointer++] = 0; | |
708 t3_basics_colorscheme_mod(text); | |
709 GFX_write_string(&FontT105,tXc1,text,1); | |
710 break; | |
711 | |
712 case CVIEW_T3_ApnoeSurfaceInfo: | |
713 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Divetime); | |
714 GFX_write_string(&FontT42,tXc1,text,0); | |
715 | |
716 TotalDivetime.Total = stateUsed->lifeData.dive_time_seconds_without_surface_time; | |
717 TotalDivetime.Minutes = TotalDivetime.Total / 60; | |
718 TotalDivetime.Seconds = TotalDivetime.Total - ( TotalDivetime.Minutes * 60 ); | |
719 | |
720 LastDivetime.Total = stateUsed->lifeData.apnea_last_dive_time_seconds; | |
721 LastDivetime.Minutes = LastDivetime.Total / 60; | |
722 LastDivetime.Seconds = LastDivetime.Total - ( LastDivetime.Minutes * 60 ); | |
723 | |
413 | 724 // tXc1->WindowY0 = 100; // obere Zeile |
725 if(!pSettings->FlipDisplay) | |
726 { | |
727 tXc1->WindowY0 = 100; | |
728 } | |
729 else | |
730 { | |
731 tXc1->WindowY1 -= 100; /* jump to upper of two lines */ | |
732 } | |
38 | 733 |
734 snprintf(text,TEXTSIZE,"\020\016%u:%02u",LastDivetime.Minutes, LastDivetime.Seconds); | |
735 t3_basics_colorscheme_mod(text); | |
736 GFX_write_string(&FontT105,tXc1,text,0); | |
737 | |
413 | 738 if(pSettings->FlipDisplay) |
739 { | |
740 tXc1->WindowX0 = 0; | |
741 | |
742 } | |
38 | 743 snprintf(text,TEXTSIZE,"\032\002%c%c",TXT_2BYTE, TXT2BYTE_ApneaLast); |
744 GFX_write_string(&FontT42,tXc1,text,0); | |
745 | |
413 | 746 if(!pSettings->FlipDisplay) |
747 { | |
748 tXc1->WindowY0 = tempWinY0; | |
749 } | |
750 else | |
751 { | |
752 tXc1->WindowX1 = tempWinX1; | |
753 tXc1->WindowY1 = tempWinY1; /* jump to upper of two lines */ | |
754 } | |
38 | 755 |
756 snprintf(text,TEXTSIZE,"\020\016%u:%02u",TotalDivetime.Minutes, TotalDivetime.Seconds); | |
757 t3_basics_colorscheme_mod(text); | |
758 GFX_write_string(&FontT105,tXc1,text,0); | |
759 | |
760 snprintf(text,TEXTSIZE,"\032\002%c%c",TXT_2BYTE, TXT2BYTE_ApneaTotal); | |
413 | 761 if(pSettings->FlipDisplay) |
762 { | |
763 tXc1->WindowX0 = 0; | |
764 | |
765 } | |
38 | 766 GFX_write_string(&FontT42,tXc1,text,0); |
767 break; | |
768 } | |
769 | |
770 tXc1->WindowX0 = tempWinX0; | |
413 | 771 tXc1->WindowX1 = tempWinX1; |
38 | 772 tXc1->WindowY0 = tempWinY0; |
773 | |
774 } | |
775 | |
776 | |
777 void t3_basics_refresh_customview(float depth, uint8_t tX_selection_customview, GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXc1, GFX_DrawCfgWindow* tXc2, uint8_t mode) | |
778 { | |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
779 static uint8_t last_customview = CVIEW_END; |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
780 |
38 | 781 char text[512]; |
782 uint16_t textpointer = 0; | |
783 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
784 SSettings* pSettings; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
785 pSettings = settingsGetPointer(); |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
786 |
38 | 787 // CVIEW_T3_Decostop and CVIEW_T3_TTS |
788 const SDecoinfo * pDecoinfo; | |
789 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
790 pDecoinfo = &stateUsed->decolistBuehlmann; | |
791 else | |
792 pDecoinfo = &stateUsed->decolistVPM; | |
793 | |
794 // CVIEW_T3_Decostop | |
795 uint16_t nextstopLengthSeconds = 0; | |
796 uint8_t nextstopDepthMeter = 0; | |
797 SDivetime SafetyStopTime = {0,0,0,0}; | |
798 | |
799 // CVIEW_T3_ppO2andGas | |
800 uint8_t oxygen_percentage = 0; | |
801 | |
802 // CVIEW_T3_Temperature | |
803 float temperature; | |
804 | |
805 // CVIEW_T3_GasList | |
806 float fPpO2limitHigh, fPpO2limitLow, fPpO2ofGasAtThisDepth; | |
807 const SGasLine * pGasLine; | |
808 uint8_t oxygen, helium; | |
809 uint8_t lineNumber; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
810 uint8_t gasPosIdx; |
38 | 811 |
496 | 812 /* compass position */ |
813 point_t center; | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
814 uint16_t heading; |
496 | 815 |
38 | 816 // CVIEW_T3_StopWatch |
817 SDivetime Stopwatch = {0,0,0,0}; | |
818 float fAverageDepth, fAverageDepthAbsolute; | |
819 | |
820 uint16_t tempWinX0; | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
821 uint16_t tempWinX1; |
38 | 822 uint16_t tempWinY0; |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
823 uint16_t tempWinY1; |
38 | 824 uint16_t tempWinC2X0; |
413 | 825 uint16_t tempWinC2Y0; |
826 uint16_t tempWinC2X1; | |
827 uint16_t tempWinC2Y1; | |
38 | 828 uint16_t tempWinC2Tab; |
829 | |
830 tempWinX0 = tXc1->WindowX0; | |
831 tempWinY0 = tXc1->WindowY0; | |
496 | 832 tempWinX1 = tXc1->WindowX1; |
833 tempWinY1 = tXc1->WindowY1; | |
413 | 834 |
38 | 835 tempWinC2X0 = tXc2->WindowX0; |
413 | 836 tempWinC2Y0 = tXc2->WindowY0; |
837 tempWinC2X1 = tXc2->WindowX1; | |
838 tempWinC2Y1 = tXc2->WindowY1; | |
38 | 839 tempWinC2Tab = tXc2->WindowTab; |
840 | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
841 if(settingsGetPointer()->compassInertia) |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
842 { |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
843 heading = (uint16_t)compass_getCompensated(); |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
844 } |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
845 else |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
846 { |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
847 heading = (uint16_t)stateUsed->lifeData.compass_heading; |
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
848 } |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
849 if(last_customview != tX_selection_customview) /* check if current selection is disabled and should be skipped */ |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
850 { |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
851 if(t3_customview_disabled(tX_selection_customview)) |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
852 { |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
853 tX_selection_customview = t3_change_customview(ACTION_BUTTON_ENTER); |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
854 } |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
855 last_customview = tX_selection_customview; |
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
856 } |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
857 |
38 | 858 switch(tX_selection_customview) |
859 { | |
860 case CVIEW_T3_ApnoeSurfaceInfo: | |
861 snprintf(text,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
862 | |
413 | 863 if(!pSettings->FlipDisplay) |
864 { | |
865 GFX_write_string(&FontT42,tXc1,text,0); | |
866 tXc1->WindowY0 = 100; | |
867 } | |
868 else | |
869 { | |
870 GFX_write_string(&FontT42,tXc2,text,0); | |
871 tXc2->WindowY1 -= 100; /* jump to upper of two lines */ | |
872 } | |
38 | 873 |
874 snprintf(text,TEXTSIZE,"\020\016%01.1f",unit_depth_float(stateUsed->lifeData.apnea_last_max_depth_meter)); | |
875 t3_basics_colorscheme_mod(text); | |
413 | 876 |
877 if(!pSettings->FlipDisplay) | |
878 { | |
879 GFX_write_string(&FontT105,tXc1,text,0); | |
880 tXc1->WindowY0 = tempWinY0; | |
881 } | |
882 else | |
883 { | |
884 GFX_write_string(&FontT105,tXc2,text,0); | |
885 tXc2->WindowY1 = tempWinC2Y1; /* jump to upper of two lines */ | |
886 } | |
38 | 887 |
888 | |
889 snprintf(text,TEXTSIZE,"\020\016%01.1f",unit_depth_float(stateUsed->lifeData.apnea_total_max_depth_meter)); | |
890 t3_basics_colorscheme_mod(text); | |
413 | 891 if(!pSettings->FlipDisplay) |
892 { | |
893 GFX_write_string(&FontT105,tXc1,text,0); | |
894 } | |
895 else | |
896 { | |
897 GFX_write_string(&FontT105,tXc2,text,0); | |
898 } | |
38 | 899 break; |
900 | |
901 case CVIEW_T3_StopWatch: | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
902 |
38 | 903 Stopwatch.Total = timer_Stopwatch_GetTime(); |
904 Stopwatch.Minutes = Stopwatch.Total / 60; | |
905 Stopwatch.Seconds = Stopwatch.Total - ( Stopwatch.Minutes * 60 ); | |
906 fAverageDepth = timer_Stopwatch_GetAvarageDepth_Meter(); | |
907 fAverageDepthAbsolute = stateUsed->lifeData.average_depth_meter; | |
908 | |
909 snprintf(text,TEXTSIZE,"\032\f%c",TXT_AvgDepth); | |
910 GFX_write_string(&FontT42,tXc1,text,0); | |
911 snprintf(text,TEXTSIZE,"\030\003\016%01.1f",unit_depth_float(fAverageDepthAbsolute)); | |
912 GFX_write_string(&FontT105,tXc1,text,0); | |
913 | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
914 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
915 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
916 tXc1->WindowX0 = 480; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
917 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
918 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
919 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
920 tXc1->WindowX1 = 320; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
921 tXc1->WindowY0 = t3c1.WindowY0; /* select customer window */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
922 } |
38 | 923 // snprintf(text,TEXTSIZE,"\032\f%c%c - %c",TXT_2BYTE, TXT2BYTE_Clock, TXT_AvgDepth); |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
924 |
38 | 925 snprintf(text,TEXTSIZE,"\032\f%c", TXT_Stopwatch); |
926 GFX_write_string(&FontT42,tXc1,text,0); | |
927 snprintf(text,TEXTSIZE,"\030\016%01.1f",unit_depth_float(fAverageDepth)); | |
928 GFX_write_string(&FontT105,tXc1,text,0); | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
929 if(!pSettings->FlipDisplay) |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
930 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
931 tXc1->WindowY0 = 100; |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
932 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
933 else |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
934 { |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
935 tXc1->WindowY1 -= 100; /* jump to upper of two lines */ |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
936 } |
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
937 |
38 | 938 snprintf(text,TEXTSIZE,"\030%u:\016\016%02u",Stopwatch.Minutes, Stopwatch.Seconds); |
939 GFX_write_string(&FontT105,tXc1,text,0); | |
110
cc8e24374b83
Added option to handled mirrored display to existing functions
Ideenmodellierer
parents:
38
diff
changeset
|
940 |
496 | 941 break; |
38 | 942 |
943 case CVIEW_T3_GasList: | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
944 gasPosIdx = 0; |
38 | 945 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE, TXT2BYTE_Gaslist); |
946 GFX_write_string(&FontT42,tXc1,text,0); | |
947 | |
948 textpointer = 0; | |
949 tXc2->WindowX0 = 0; | |
518 | 950 tXc2->WindowTab = 800/3; // /2 |
38 | 951 |
413 | 952 if(pSettings->FlipDisplay) |
953 { | |
954 tXc2->WindowY1 = 0; | |
955 } | |
956 | |
38 | 957 pGasLine = settingsGetPointer()->gas; |
958 if(actualLeftMaxDepth(stateUsed)) | |
959 fPpO2limitHigh = (float)(settingsGetPointer()->ppO2_max_deco) / 100; | |
960 else | |
961 fPpO2limitHigh = (float)(settingsGetPointer()->ppO2_max_std) / 100; | |
962 fPpO2limitLow = (float)(settingsGetPointer()->ppO2_min) / 100; | |
963 for(int gasId=1;gasId<=NUM_GASES;gasId++) | |
964 { | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
965 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
966 if(!pGasLine[gasId].note.ub.off) |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
967 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
968 #endif |
38 | 969 textpointer = 0; |
518 | 970 text[textpointer++] = '\003'; |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
971 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
972 lineNumber = 1; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
973 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
974 switch(gasPosIdx) |
38 | 975 { |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
976 case 0: lineNumber = 0; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
977 case 1: |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
978 break; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
979 case 4: text[textpointer++] = '\001'; /* display centered */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
980 break; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
981 case 2: lineNumber = 0; |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
982 case 3: text[textpointer++] = '\002'; /* display right aligned */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
983 default: |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
984 break; |
38 | 985 } |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
986 gasPosIdx++; |
518 | 987 |
38 | 988 fPpO2ofGasAtThisDepth = (stateUsed->lifeData.pressure_ambient_bar - WATER_VAPOUR_PRESSURE) * pGasLine[gasId].oxygen_percentage / 100; |
989 if(pGasLine[gasId].note.ub.active == 0) | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
990 strcpy(&text[textpointer++],"\031"); |
518 | 991 else if(stateUsed->lifeData.actualGas.GasIdInSettings == gasId) /* actual selected gas */ |
992 { | |
993 strcpy(&text[textpointer++],"\030"); | |
994 } | |
38 | 995 else if((fPpO2ofGasAtThisDepth > fPpO2limitHigh) || (fPpO2ofGasAtThisDepth < fPpO2limitLow)) |
996 strcpy(&text[textpointer++],"\025"); | |
518 | 997 else if(actualBetterGasId() == gasId) |
998 { | |
999 strcpy(&text[textpointer++],"\026"); /* Highlight better gas */ | |
1000 } | |
38 | 1001 else |
518 | 1002 strcpy(&text[textpointer++],"\023"); /* Blue for travel or deco without special state */ |
38 | 1003 |
1004 text[textpointer++] = ' '; | |
1005 oxygen = pGasLine[gasId].oxygen_percentage; | |
1006 helium = pGasLine[gasId].helium_percentage; | |
1007 textpointer += write_gas(&text[textpointer], oxygen, helium); | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1008 |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1009 if((pGasLine[gasId].depth_meter) && (gasPosIdx < 5)) /* do not show for potential last gas because of formating issues */ |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1010 { |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1011 textpointer += snprintf(&text[textpointer],7,"\016\016%u%c%c",unit_depth_integer(pGasLine[gasId].depth_meter), unit_depth_char1(), unit_depth_char2()); |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1012 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1013 text[textpointer++] = 0; |
518 | 1014 GFX_write_string(&FontT42, tXc1, text, lineNumber); |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1015 #ifdef ENABLE_UNUSED_GAS_HIDING |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1016 } |
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1017 #endif |
38 | 1018 } |
1019 break; | |
1020 | |
1021 case CVIEW_T3_Temperature: | |
1022 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Temperature); | |
1023 GFX_write_string(&FontT42,tXc1,text,0); | |
189
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
174
diff
changeset
|
1024 |
8b8074080d7b
Bugfix: average temperature on arrival from RTE instead of display time
Jan Mulder <jlmulder@xs4all.nl>
parents:
174
diff
changeset
|
1025 temperature = unit_temperature_float(stateUsed->lifeData.temperature_celsius); |
38 | 1026 textpointer = snprintf(text,TEXTSIZE,"\030\003\016%01.1f \140",temperature); // "\016\016%01.1f `" + C or F |
1027 if(settingsGetPointer()->nonMetricalSystem == 0) | |
1028 text[textpointer++] = 'C'; | |
1029 else | |
1030 text[textpointer++] = 'F'; | |
1031 text[textpointer++] = 0; | |
1032 GFX_write_string(&FontT105,tXc1,text,0); | |
1033 break; | |
1034 | |
1035 case CVIEW_Compass: | |
496 | 1036 center.x = 600; |
1037 center.y = 116; | |
38 | 1038 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE, TXT2BYTE_Compass); |
1039 GFX_write_string(&FontT42,tXc1,text,0); | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
1040 snprintf(text,100,"\030\003%03i`",heading); |
38 | 1041 GFX_write_string(&FontT105,tXc1,text,0); |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
1042 t3_basics_compass(tXscreen, center, heading, stateUsed->diveSettings.compassHeading); |
38 | 1043 break; |
601 | 1044 #ifdef ENABLE_T3_PROFILE_VIEW |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
1045 case CVIEW_T3_Profile: |
599 | 1046 snprintf(text,100,"\032\f\002%c%c",TXT_2BYTE,TXT2BYTE_Profile); |
592
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
1047 GFX_write_string(&FontT42,tXc1,text,0); |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
1048 t3_miniLiveLogProfile(); |
f52bc70e380f
MotionCtrl - Sectorview Map sectors directly to custom views:
Ideenmodellierer
parents:
582
diff
changeset
|
1049 break; |
601 | 1050 #endif |
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1051 case CVIEW_T3_DecoTTS: |
38 | 1052 case CVIEW_T3_Decostop: |
1053 default: | |
1054 // decostop | |
1055 if(pDecoinfo->output_time_to_surface_seconds) | |
1056 { | |
1057 tHome_findNextStop(pDecoinfo->output_stop_length_seconds, &nextstopDepthMeter, &nextstopLengthSeconds); | |
1058 } | |
1059 else | |
1060 { | |
1061 nextstopDepthMeter = 0; | |
1062 nextstopLengthSeconds = 0; | |
1063 } | |
1064 | |
1065 SafetyStopTime.Total = timer_Safetystop_GetCountDown(); | |
1066 SafetyStopTime.Minutes = SafetyStopTime.Total / 60; | |
1067 SafetyStopTime.Seconds = SafetyStopTime.Total - (SafetyStopTime.Minutes * 60); | |
1068 | |
1069 if(nextstopDepthMeter) | |
1070 { | |
1071 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Decostop); | |
1072 GFX_write_string(&FontT42,tXc1,text,0); | |
1073 | |
1074 textpointer = 0; | |
1075 snprintf(&text[textpointer],TEXTSIZE,"\020\003%u%c%c %u'" | |
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1076 , unit_depth_integer(nextstopDepthMeter) |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1077 , unit_depth_char1_T105() |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1078 , unit_depth_char2_T105() |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1079 , (nextstopLengthSeconds+59)/60); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1080 t3_basics_colorscheme_mod(text); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1081 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1082 } |
1083 else if(SafetyStopTime.Total && (depth > timer_Safetystop_GetDepthUpperLimit())) | |
1084 { | |
1085 textpointer = 0; | |
1086 snprintf(&text[textpointer],TEXTSIZE,"\032\f%c%c",TXT_2BYTE,TXT2BYTE_SafetyStop2); | |
1087 GFX_write_string(&FontT42,tXc1,text,0); | |
1088 | |
1089 textpointer = 0; | |
1090 snprintf(&text[textpointer],TEXTSIZE,"\020\003\016%u:%02u",SafetyStopTime.Minutes,SafetyStopTime.Seconds); | |
1091 t3_basics_colorscheme_mod(text); | |
496 | 1092 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1093 } |
237
ec16fd26e280
Bugfix: do not show NDL in bigscreen mode when zero
Jan Mulder <jlmulder@xs4all.nl>
parents:
214
diff
changeset
|
1094 else if(pDecoinfo->output_ndl_seconds) // NDL |
38 | 1095 { |
1096 snprintf(text,TEXTSIZE,"\032\f%c",TXT_Nullzeit); | |
1097 GFX_write_string(&FontT42,tXc1,text,0); | |
1098 if(pDecoinfo->output_ndl_seconds < 1000 * 60) | |
1099 snprintf(text,TEXTSIZE,"\020\003%i'",pDecoinfo->output_ndl_seconds/60); | |
1100 else | |
1101 snprintf(text,TEXTSIZE,"\020\003%ih",pDecoinfo->output_ndl_seconds/3600); | |
1102 t3_basics_colorscheme_mod(text); | |
496 | 1103 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1104 } |
542
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1105 |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1106 if(tX_selection_customview == CVIEW_T3_DecoTTS) /* add tts data on right side of screen */ |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1107 { |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1108 snprintf(text,TEXTSIZE,"\002\032\f%c",TXT_TTS); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1109 GFX_write_string(&FontT42,tXc1,text,0); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1110 if(pDecoinfo->output_time_to_surface_seconds) |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1111 { |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1112 if(pDecoinfo->output_time_to_surface_seconds < 100 * 60) |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1113 snprintf(text,TEXTSIZE,"\020\003\002%i'",(pDecoinfo->output_time_to_surface_seconds + 59)/ 60); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1114 else |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1115 snprintf(text,TEXTSIZE,"\020\003\002%ih",(pDecoinfo->output_time_to_surface_seconds + 59)/ 3600); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1116 t3_basics_colorscheme_mod(text); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1117 GFX_write_string(&FontT105,tXc1,text,0); |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1118 } |
6960df7ddb09
Added new t3 view showing first deco stop and tts in parallel:
Ideenmodellierer
parents:
541
diff
changeset
|
1119 } |
38 | 1120 break; |
1121 | |
1122 case CVIEW_sensors: | |
1123 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE,TXT2BYTE_O2monitor); | |
1124 GFX_write_string(&FontT42,tXc1,text,0); | |
1125 | |
1126 for(int i=0;i<3;i++) | |
1127 { | |
1128 textpointer = 0; | |
1129 text[textpointer++] = '\030'; | |
1130 if(i==1) | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1131 text[textpointer++] = '\001'; /* center */ |
38 | 1132 else if(i==2) |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1133 text[textpointer++] = '\002'; /* right */ |
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1134 |
577
9bb9a52d6ae5
Handle o2 voltage values < 0.5mV as invalid:
Ideenmodellierer
parents:
564
diff
changeset
|
1135 if((stateUsed->diveSettings.ppo2sensors_deactivated & (1<<i)) || (stateUsed->lifeData.ppO2Sensor_bar[i] == 0.0)) |
38 | 1136 { |
1137 text[textpointer++] = '\031'; | |
1138 text[textpointer++] = ' '; | |
1139 text[textpointer++] = '-'; | |
1140 text[textpointer++] = ' '; | |
1141 } | |
1142 else | |
1143 { | |
1144 if(stateUsed->warnings.sensorOutOfBounds[i]) | |
1145 text[textpointer++] = '\025'; | |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1146 textpointer += snprintf(&text[textpointer],TEXTSIZE,"%.2f",stateUsed->lifeData.ppO2Sensor_bar[i]); |
38 | 1147 } |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1148 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1149 } |
1150 break; | |
1151 | |
1152 case CVIEW_T3_MaxDepth: | |
1153 snprintf(text,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
413 | 1154 if(pSettings->FlipDisplay) |
1155 { | |
1156 if(mode == DIVEMODE_Apnea) | |
1157 { | |
1158 GFX_write_string(&FontT42,tXc2,text,0); | |
1159 } | |
1160 else | |
1161 { | |
1162 GFX_write_string(&FontT42,tXc1,text,0); | |
1163 } | |
1164 } | |
1165 else | |
1166 { | |
1167 GFX_write_string(&FontT42,tXc1,text,0); | |
1168 } | |
38 | 1169 snprintf(text,TEXTSIZE,"\020\003\016%01.1f",unit_depth_float(stateUsed->lifeData.max_depth_meter)); |
1170 t3_basics_colorscheme_mod(text); | |
413 | 1171 if(pSettings->FlipDisplay) |
1172 { | |
1173 if(mode == DIVEMODE_Apnea) | |
1174 { | |
1175 GFX_write_string(&FontT105,tXc2,text,0); | |
1176 } | |
1177 else | |
1178 { | |
1179 GFX_write_string(&FontT105,tXc1,text,0); | |
1180 } | |
1181 } | |
1182 else | |
1183 { | |
496 | 1184 GFX_write_string(&FontT105,tXc1,text,0); |
413 | 1185 } |
38 | 1186 break; |
1187 | |
1188 case CVIEW_T3_TTS: | |
1189 snprintf(text,TEXTSIZE,"\032\f%c",TXT_TTS); | |
1190 GFX_write_string(&FontT42,tXc1,text,0); | |
1191 if(pDecoinfo->output_time_to_surface_seconds) | |
1192 { | |
1193 if(pDecoinfo->output_time_to_surface_seconds < 1000 * 60) | |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1194 snprintf(text,TEXTSIZE,"\020\003\002%i'",(pDecoinfo->output_time_to_surface_seconds + 59)/ 60); |
38 | 1195 else |
214
51a3aeffc6b3
Bugfix: handle rounding of TTS and future TTS consistently
Jan Mulder <jlmulder@xs4all.nl>
parents:
189
diff
changeset
|
1196 snprintf(text,TEXTSIZE,"\020\003\002%ih",(pDecoinfo->output_time_to_surface_seconds + 59)/ 3600); |
38 | 1197 t3_basics_colorscheme_mod(text); |
496 | 1198 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1199 } |
1200 break; | |
1201 | |
1202 case CVIEW_T3_ppO2andGas: | |
1203 snprintf(text,TEXTSIZE,"\032\f%c",TXT_ppO2); | |
1204 GFX_write_string(&FontT42,tXc1,text,0); | |
1205 snprintf(text,TEXTSIZE,"\020\003%01.2f",stateUsed->lifeData.ppO2); | |
1206 t3_basics_colorscheme_mod(text); | |
496 | 1207 GFX_write_string(&FontT105,tXc1,text,0); |
38 | 1208 |
1209 textpointer = 0; | |
1210 text[textpointer++] = '\020'; | |
1211 text[textpointer++] = '\003'; | |
1212 oxygen_percentage = 100; | |
1213 oxygen_percentage -= stateUsed->lifeData.actualGas.nitrogen_percentage; | |
1214 oxygen_percentage -= stateUsed->lifeData.actualGas.helium_percentage; | |
1215 text[textpointer++] = '\002'; | |
1216 tHome_gas_writer(oxygen_percentage,stateUsed->lifeData.actualGas.helium_percentage,&text[textpointer]); | |
1217 //textpointer = snprintf(&text[textpointer],TEXTSIZE,"\020\002%02u/%02u",oxygen_percentage, stateUsed->lifeData.actualGas.helium_percentage); | |
1218 t3_basics_colorscheme_mod(text); | |
496 | 1219 GFX_write_string(&FontT48,tXc1,text,0); |
38 | 1220 break; |
496 | 1221 |
1222 case CVIEW_T3_Navigation: | |
1223 Stopwatch.Total = timer_Stopwatch_GetTime(); | |
1224 Stopwatch.Minutes = Stopwatch.Total / 60; | |
1225 Stopwatch.Seconds = Stopwatch.Total - ( Stopwatch.Minutes * 60 ); | |
1226 fAverageDepth = timer_Stopwatch_GetAvarageDepth_Meter(); | |
1227 | |
1228 if(!pSettings->FlipDisplay) | |
1229 { | |
1230 tXc2->WindowX0 = 550; | |
1231 } | |
1232 else | |
1233 { | |
1234 tXc2->WindowX1 = 800; | |
1235 tXc2->WindowY0 = t3c2.WindowY0; /* select customer window */ | |
1236 } | |
1237 | |
1238 snprintf(text,TEXTSIZE,"\032\002\f%c", TXT_Stopwatch); | |
511 | 1239 GFX_write_string(&FontT42,tXc1,text,0); |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1240 snprintf(text,TEXTSIZE,"\030\002\016%01.1f",unit_depth_float(fAverageDepth)); |
511 | 1241 GFX_write_string(&FontT105,tXc1,text,0); |
496 | 1242 if(!pSettings->FlipDisplay) |
1243 { | |
1244 tXc2->WindowY0 = 100; | |
1245 } | |
1246 else | |
1247 { | |
1248 tXc2->WindowY1 -= 100; /* jump to upper of two lines */ | |
1249 } | |
1250 | |
1251 snprintf(text,TEXTSIZE,"\030\002%u:\016\016%02u",Stopwatch.Minutes, Stopwatch.Seconds); | |
511 | 1252 GFX_write_string(&FontT105,tXc1,text,1); |
496 | 1253 |
1254 | |
1255 center.x = 400; | |
1256 center.y = 116; | |
1257 | |
1258 snprintf(text,TEXTSIZE,"\032\f%c%c",TXT_2BYTE, TXT2BYTE_Compass); | |
1259 GFX_write_string(&FontT42,tXc1,text,0); | |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
1260 snprintf(text,100,"\030%03i`",heading); |
496 | 1261 GFX_write_string(&FontT144,tXc1,text,0); |
539
d784f281833a
Added inertia simulation for compass heading:
Ideenmodellierer
parents:
529
diff
changeset
|
1262 t3_basics_compass(tXscreen, center, heading, stateUsed->diveSettings.compassHeading); |
496 | 1263 |
1264 break; | |
1265 | |
1266 case CVIEW_T3_DepthData: | |
1267 snprintf(text,TEXTSIZE,"\032\f%c",TXT_MaxDepth); | |
1268 if(pSettings->FlipDisplay) | |
1269 { | |
1270 if(mode == DIVEMODE_Apnea) | |
1271 { | |
1272 GFX_write_string(&FontT42,tXc2,text,0); | |
1273 } | |
1274 else | |
1275 { | |
1276 GFX_write_string(&FontT42,tXc1,text,0); | |
1277 } | |
1278 } | |
1279 else | |
1280 { | |
1281 GFX_write_string(&FontT42,tXc1,text,0); | |
1282 } | |
1283 snprintf(text,TEXTSIZE,"\020\003\016%01.1f",unit_depth_float(stateUsed->lifeData.max_depth_meter)); | |
1284 t3_basics_colorscheme_mod(text); | |
1285 if(pSettings->FlipDisplay) | |
1286 { | |
1287 if(mode == DIVEMODE_Apnea) | |
1288 { | |
1289 GFX_write_string(&FontT105,tXc2,text,0); | |
1290 } | |
1291 else | |
1292 { | |
1293 GFX_write_string(&FontT105,tXc1,text,0); | |
1294 } | |
1295 } | |
1296 else | |
1297 { | |
1298 GFX_write_string(&FontT105,tXc1,text,0); | |
1299 } | |
1300 fAverageDepthAbsolute = stateUsed->lifeData.average_depth_meter; | |
1301 snprintf(text,TEXTSIZE,"\032\002\f%c",TXT_AvgDepth); | |
511 | 1302 GFX_write_string(&FontT42,tXc1,text,0); |
496 | 1303 |
564
5e0a75e2f00b
Bugfix One or more deactivated sensors hide sensor display:
Ideenmodellierer
parents:
553
diff
changeset
|
1304 snprintf(text,TEXTSIZE,"\020\003\002\016\%01.1f",unit_depth_float(fAverageDepthAbsolute)); |
511 | 1305 GFX_write_string(&FontT105,tXc1,text,0); |
496 | 1306 break; |
38 | 1307 } |
496 | 1308 |
1309 | |
1310 | |
38 | 1311 tXc1->WindowX0 = tempWinX0; |
1312 tXc1->WindowY0 = tempWinY0; | |
496 | 1313 tXc1->WindowX1 = tempWinX1; |
1314 tXc1->WindowY1 = tempWinY1; | |
413 | 1315 |
38 | 1316 tXc2->WindowX0 = tempWinC2X0; |
413 | 1317 tXc2->WindowY0 = tempWinC2Y0; |
1318 tXc2->WindowX1 = tempWinC2X1; | |
1319 tXc2->WindowY1 = tempWinC2Y1; | |
38 | 1320 tXc2->WindowTab = tempWinC2Tab; |
1321 } | |
1322 | |
1323 | |
1324 uint8_t t3_test_customview_warnings(void) | |
1325 { | |
1326 uint8_t count = 0; | |
1327 | |
1328 count = 0; | |
1329 count += stateUsed->warnings.decoMissed; | |
1330 count += stateUsed->warnings.ppO2Low; | |
1331 count += stateUsed->warnings.ppO2High; | |
1332 //count += stateUsed->warnings.lowBattery; | |
1333 count += stateUsed->warnings.sensorLinkLost; | |
1334 count += stateUsed->warnings.fallback; | |
1335 | |
1336 return count; | |
1337 } | |
1338 | |
1339 //void t3_show_customview_warnings(GFX_DrawCfgScreen *tXscreen, GFX_DrawCfgWindow* tXl1, GFX_DrawCfgWindow* tXr1, uint8_t mode) | |
1340 void t3_basics_show_customview_warnings(GFX_DrawCfgWindow* tXc1) | |
1341 { | |
1342 char text[256], textMain[256]; | |
1343 uint8_t textpointer, textpointerMain, lineFree, more; | |
1344 | |
1345 snprintf(text,TEXTSIZE,"\025\f%c",TXT_Warning); | |
1346 GFX_write_string(&FontT42,&t3c1,text,0); | |
1347 | |
1348 lineFree = 1; | |
1349 more = 0; | |
1350 | |
1351 textpointerMain = 0; | |
511 | 1352 textMain[textpointerMain++] = '\025'; /* red */ |
1353 textMain[textpointerMain++] = '\003'; /* doublesize */ | |
38 | 1354 |
1355 textpointer = 0; | |
1356 | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1357 text[textpointer++] = '\031'; |
38 | 1358 text[textpointer++] = TXT_2BYTE; |
1359 text[textpointer++] = TXT2BYTE_WarnDecoMissed; | |
1360 if(stateUsed->warnings.decoMissed) | |
1361 { | |
1362 text[textpointer - 3] = '\025'; | |
1363 if(lineFree) | |
1364 { | |
1365 textMain[textpointerMain++] = TXT_2BYTE; | |
1366 textMain[textpointerMain++] = text[textpointer - 1]; | |
1367 textMain[textpointerMain] = 0; | |
1368 lineFree--; | |
1369 } | |
1370 else | |
1371 { | |
1372 more++; | |
1373 } | |
1374 } | |
1375 | |
1376 text[textpointer++] = '\t'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1377 text[textpointer++] = '\031'; |
38 | 1378 text[textpointer++] = TXT_2BYTE; |
1379 text[textpointer++] = TXT2BYTE_WarnPPO2Low; | |
1380 if(stateUsed->warnings.ppO2Low) | |
1381 { | |
1382 text[textpointer - 3] = '\025'; | |
1383 if(lineFree) | |
1384 { | |
1385 textMain[textpointerMain++] = TXT_2BYTE; | |
1386 textMain[textpointerMain++] = text[textpointer - 1]; | |
1387 textMain[textpointerMain] = 0; | |
1388 lineFree--; | |
1389 } | |
1390 else | |
1391 { | |
1392 more++; | |
1393 } | |
1394 } | |
1395 | |
1396 text[textpointer++] = '\n'; | |
1397 text[textpointer++] = '\r'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1398 text[textpointer++] = '\031'; |
38 | 1399 text[textpointer++] = TXT_2BYTE; |
1400 text[textpointer++] = TXT2BYTE_WarnPPO2High; | |
1401 if(stateUsed->warnings.ppO2High) | |
1402 { | |
1403 text[textpointer - 3] = '\025'; | |
1404 if(lineFree) | |
1405 { | |
1406 textMain[textpointerMain++] = TXT_2BYTE; | |
1407 textMain[textpointerMain++] = text[textpointer - 1]; | |
1408 textMain[textpointerMain] = 0; | |
1409 lineFree--; | |
1410 } | |
1411 else | |
1412 { | |
1413 more++; | |
1414 } | |
1415 } | |
1416 | |
1417 text[textpointer++] = '\t'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1418 text[textpointer++] = '\031'; |
38 | 1419 text[textpointer++] = TXT_2BYTE; |
1420 text[textpointer++] = TXT2BYTE_WarnFallback; | |
1421 if(stateUsed->warnings.fallback) | |
1422 { | |
1423 text[textpointer - 3] = '\025'; | |
1424 if(lineFree) | |
1425 { | |
1426 textMain[textpointerMain++] = TXT_2BYTE; | |
1427 textMain[textpointerMain++] = text[textpointer - 1]; | |
1428 textMain[textpointerMain] = 0; | |
1429 lineFree--; | |
1430 } | |
1431 else | |
1432 { | |
1433 more++; | |
1434 } | |
1435 } | |
1436 | |
1437 text[textpointer++] = '\n'; | |
1438 text[textpointer++] = '\r'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1439 text[textpointer++] = '\031'; |
38 | 1440 text[textpointer++] = TXT_2BYTE; |
1441 text[textpointer++] = TXT2BYTE_WarnSensorLinkLost; | |
1442 if(stateUsed->warnings.sensorLinkLost) | |
1443 { | |
1444 text[textpointer - 3] = '\025'; | |
1445 if(lineFree) | |
1446 { | |
1447 textMain[textpointerMain++] = TXT_2BYTE; | |
1448 textMain[textpointerMain++] = text[textpointer - 1]; | |
1449 textMain[textpointerMain] = 0; | |
1450 lineFree--; | |
1451 } | |
1452 else | |
1453 { | |
1454 more++; | |
1455 } | |
1456 } | |
1457 | |
1458 /* | |
1459 text[textpointer++] = '\t'; | |
527
962d7b2c18c6
Do not show gases in "Off" state in custom gas list:
Ideenmodellierer
parents:
518
diff
changeset
|
1460 text[textpointer++] = '\031'; |
38 | 1461 text[textpointer++] = TXT_2BYTE; |
1462 text[textpointer++] = TXT2BYTE_WarnBatteryLow; | |
1463 if(stateUsed->warnings.lowBattery) | |
1464 { | |
1465 text[textpointer - 3] = '\025'; | |
1466 if(lineFree) | |
1467 { | |
1468 textMain[textpointerMain++] = TXT_2BYTE; | |
1469 textMain[textpointerMain++] = text[textpointer - 1]; | |
1470 textMain[textpointerMain] = 0; | |
1471 lineFree--; | |
1472 } | |
1473 else | |
1474 { | |
1475 more++; | |
1476 } | |
1477 } | |
1478 */ | |
1479 text[textpointer] = 0; | |
1480 /* | |
1481 if(more) | |
1482 { | |
1483 text[textpointer++] = '\002'; | |
1484 text[textpointer++] = '+'; | |
1485 if(more < 10) | |
1486 text[textpointer++] = '0' + more; | |
1487 else | |
1488 text[textpointer++] = 'X'; | |
1489 text[textpointer] = 0; | |
1490 } | |
1491 */ | |
511 | 1492 GFX_write_string(&FontT48,&t3c1,textMain,0); |
38 | 1493 if(more) |
1494 { | |
511 | 1495 GFX_write_string(&FontT48,&t3c2,text,0); |
38 | 1496 } |
1497 } | |
1498 | |
496 | 1499 uint8_t t3_customview_disabled(uint8_t view) |
1500 { | |
1501 uint8_t i = 0; | |
1502 uint8_t cv_disabled = 0; | |
1503 const uint8_t *pcv_changelist; | |
1504 uint32_t cv_config = settingsGetPointer()->cv_config_BigScreen; | |
1505 | |
511 | 1506 pcv_changelist = cv_changelist_BS; |
496 | 1507 |
1508 while(pcv_changelist[i] != CVIEW_T3_END) | |
1509 { | |
1510 if((view == pcv_changelist[i]) && !CHECK_BIT_THOME(cv_config, pcv_changelist[i])) | |
1511 { | |
1512 cv_disabled = 1; | |
1513 break; | |
1514 } | |
1515 i++; | |
1516 } | |
1517 | |
1518 if (((view == CVIEW_sensors) || (view == CVIEW_sensors_mV)) && | |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
1519 ((stateUsed->diveSettings.ppo2sensors_deactivated == 0x07) || (stateUsed->diveSettings.ccrOption == 0) || stateUsed->warnings.fallback)) |
496 | 1520 { |
1521 cv_disabled = 1; | |
1522 } | |
1523 | |
1524 return cv_disabled; | |
1525 } | |
38 | 1526 |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
1527 uint8_t t3_change_customview(uint8_t action) |
38 | 1528 { |
511 | 1529 |
496 | 1530 t3_basics_change_customview(&t3_selection_customview, t3_customviewsStandard, action); |
582
64bf41faab83
Show Fallback if no valid sensor value is available:
Ideenmodellierer
parents:
577
diff
changeset
|
1531 return t3_selection_customview; |
38 | 1532 } |
1533 | |
1534 | |
511 | 1535 void t3_basics_change_customview(uint8_t *tX_selection_customview,const uint8_t *tX_customviews, uint8_t action) |
38 | 1536 { |
1537 const SDecoinfo * pDecoinfo; | |
1538 if(stateUsed->diveSettings.deco_type.ub.standard == GF_MODE) | |
1539 pDecoinfo = &stateUsed->decolistBuehlmann; | |
1540 else | |
1541 pDecoinfo = &stateUsed->decolistVPM; | |
1542 | |
511 | 1543 uint8_t curViewIdx = 0xff; |
1544 uint8_t index = 0; | |
599 | 1545 uint8_t indexOverrun = 0; |
511 | 1546 uint8_t lastViewIdx = 0; |
599 | 1547 uint8_t iterate = 0; /* set to 1 if a view has to be skipped */ |
1548 uint8_t useFallback = 0; /* is set if the current view is disabled */ | |
1549 uint8_t fallbackSelection = CVIEW_noneOrDebug; /* show "None" view per default */ | |
38 | 1550 |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1551 /* set pointer to currently selected view and count number of entries */ |
511 | 1552 while((tX_customviews[index] != CVIEW_T3_END)) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1553 { |
511 | 1554 if (tX_customviews[index] == *tX_selection_customview) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1555 { |
511 | 1556 curViewIdx = index; |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1557 } |
511 | 1558 index++; |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1559 } |
511 | 1560 if(curViewIdx == 0xff) /* called with unknown view */ |
496 | 1561 { |
511 | 1562 curViewIdx = 0; |
599 | 1563 *tX_selection_customview = CVIEW_noneOrDebug; /* show "None" view per default */ |
496 | 1564 } |
511 | 1565 lastViewIdx = index; |
1566 index = curViewIdx; | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1567 do |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1568 { |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1569 iterate = 0; |
496 | 1570 switch(action) |
1571 { | |
1572 case ACTION_BUTTON_ENTER: | |
1573 case ACTION_PITCH_POS: | |
1574 | |
511 | 1575 if(tX_customviews[index] != CVIEW_T3_END) |
496 | 1576 { |
511 | 1577 index++; |
1578 } | |
1579 if(tX_customviews[index] == CVIEW_T3_END) | |
1580 { | |
1581 index = 0; | |
599 | 1582 indexOverrun = 1; |
496 | 1583 } |
1584 break; | |
1585 case ACTION_PITCH_NEG: | |
511 | 1586 if(index == 0) |
496 | 1587 { |
511 | 1588 index = lastViewIdx - 1; |
599 | 1589 indexOverrun = 1; |
496 | 1590 } |
1591 else | |
1592 { | |
511 | 1593 index--; |
496 | 1594 } |
1595 break; | |
1596 default: | |
1597 break; | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1598 } |
496 | 1599 |
511 | 1600 if(t3_customview_disabled(tX_customviews[index])) |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1601 { |
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1602 iterate = 1; |
599 | 1603 if(*tX_selection_customview == tX_customviews[index]) |
1604 { | |
1605 useFallback = 1; /* the provided view is disabled => use fallback */ | |
1606 } | |
386
39c147e47c1c
Added key direction awarness to t3, t5 and t6 views:
ideenmodellierer
parents:
384
diff
changeset
|
1607 } |
599 | 1608 else /* special case which are enabled but not to be displayed at the moment */ |
1609 { | |
1610 if(settingsGetPointer()->MotionDetection != MOTION_DETECT_SECTOR) /* no hiding in case of active sector view option (fixed mapping would change during dive) */ | |
1611 { | |
601 | 1612 /* Skip TTS if value is 0 */ |
1613 if((tX_customviews[index] == CVIEW_T3_TTS) && (!pDecoinfo->output_time_to_surface_seconds)) | |
599 | 1614 { |
601 | 1615 if(*tX_selection_customview == tX_customviews[index]) |
1616 { | |
1617 useFallback = 1; /* the provided view is disabled => use fallback */ | |
1618 } | |
599 | 1619 iterate = 1; |
601 | 1620 if(fallbackSelection == CVIEW_noneOrDebug) |
1621 { | |
1622 fallbackSelection = CVIEW_T3_TTS; | |
1623 } | |
599 | 1624 } |
601 | 1625 /* Skip Deco if NDL is not set */ |
1626 if((tX_customviews[index] == CVIEW_T3_Decostop) && ((!pDecoinfo->output_ndl_seconds) && (!pDecoinfo->output_time_to_surface_seconds) && (timer_Safetystop_GetCountDown() == 0))) | |
599 | 1627 { |
601 | 1628 if(*tX_selection_customview == tX_customviews[index]) |
1629 { | |
1630 useFallback = 1; /* the provided view is disabled => use fallback */ | |
1631 } | |
1632 fallbackSelection = CVIEW_T3_Decostop; | |
599 | 1633 iterate = 1; |
1634 } | |
1635 } | |
1636 } | |
1637 if((iterate) && (action == ACTION_END)) /* ACTION_END is used to check the enable state of the provided view. If it is enable the function will return without change */ | |
496 | 1638 { |
1639 action = ACTION_BUTTON_ENTER; | |
1640 } | |
599 | 1641 }while ((iterate == 1) && (!((indexOverrun == 1) && (*tX_selection_customview == tX_customviews[index])))); /* no other available view found => use fallback */ |
38 | 1642 |
599 | 1643 if(*tX_selection_customview == tX_customviews[index]) |
1644 { | |
1645 if(useFallback) | |
1646 { | |
1647 *tX_selection_customview = fallbackSelection; /* no active view found => keep actual view or change to fallback if actual view is deactivated */ | |
1648 } | |
1649 } | |
1650 else | |
1651 { | |
1652 *tX_selection_customview = tX_customviews[index]; | |
1653 } | |
38 | 1654 } |
1655 | |
1656 | |
1657 void t3_basics_colorscheme_mod(char *text) | |
1658 { | |
1659 if((text[0] == '\020') && !GFX_is_colorschemeDiveStandard()) | |
1660 { | |
1661 text[0] = '\027'; | |
1662 } | |
1663 } | |
1664 | |
1665 | |
496 | 1666 point_t t3_compass_circle(uint8_t id, uint16_t degree, point_t center) |
38 | 1667 { |
1668 float fCos, fSin; | |
1669 const float piMult = ((2 * 3.14159) / 360); | |
1670 // const int radius[4] = {95,105,115,60}; | |
1671 const int radius[4] = {85,95,105,90}; | |
496 | 1672 static point_t forcenter = {.x = 900, .y = 500}; /* used to identify change of circle position */ |
38 | 1673 static point_t r[4][360] = { 0 }; |
1674 | |
496 | 1675 if((r[0][0].y == 0) || (forcenter.x != center.x) || (forcenter.y != center.y)) /* calculate values only once during first call or if center position changed */ |
38 | 1676 { |
1677 for(int i=0;i<360;i++) | |
1678 { | |
1679 fCos = cos(i * piMult); | |
1680 fSin = sin(i * piMult); | |
1681 for(int j=0;j<4;j++) | |
1682 { | |
496 | 1683 r[j][i].x = center.x + (int)(fSin * radius[j]); |
1684 r[j][i].y = center.y + (int)(fCos * radius[j]); | |
38 | 1685 } |
1686 } | |
496 | 1687 forcenter.x = center.x; |
1688 forcenter.y = center.y; | |
38 | 1689 } |
1690 if(id > 3) id = 0; | |
1691 if(degree > 359) degree = 0; | |
1692 return r[id][degree]; | |
1693 } | |
1694 | |
1695 | |
496 | 1696 void t3_basics_compass(GFX_DrawCfgScreen *tXscreen, point_t center, uint16_t ActualHeading, uint16_t UserSetHeading) |
38 | 1697 { |
496 | 1698 uint8_t loop = 0; |
38 | 1699 uint16_t LineHeading; |
496 | 1700 |
38 | 1701 static int32_t LastHeading = 0; |
1702 int32_t newHeading = 0; | |
1703 int32_t diff = 0; | |
1704 int32_t diff2 = 0; | |
1705 | |
1706 int32_t diffAbs = 0; | |
1707 int32_t diffAbs2 = 0; | |
1708 | |
1709 newHeading = ActualHeading; | |
1710 | |
1711 diff = newHeading - LastHeading; | |
1712 | |
1713 if(newHeading < LastHeading) | |
1714 diff2 = newHeading + 360 - LastHeading; | |
1715 else | |
1716 diff2 = newHeading - 360 - LastHeading; | |
1717 | |
1718 diffAbs = diff; | |
1719 if(diffAbs < 0) | |
1720 diffAbs *= -1; | |
1721 | |
1722 diffAbs2 = diff2; | |
1723 if(diffAbs2 < 0) | |
1724 diffAbs2 *= -1; | |
1725 | |
1726 if(diffAbs <= diffAbs2) | |
1727 newHeading = LastHeading + (diff / 2); | |
1728 else | |
1729 newHeading = LastHeading + (diff2 / 2); | |
1730 | |
1731 if(newHeading < 0) | |
1732 newHeading += 360; | |
1733 else | |
1734 if(newHeading >= 360) | |
1735 newHeading -= 360; | |
1736 | |
1737 LastHeading = newHeading; | |
1738 ActualHeading = newHeading; | |
1739 | |
1740 if (ActualHeading < 90) | |
1741 ActualHeading += 360; | |
1742 | |
1743 while(ActualHeading > 359) ActualHeading -= 360; | |
1744 | |
1745 LineHeading = 360 - ActualHeading; | |
496 | 1746 |
1747 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(0,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font030); // North | |
38 | 1748 LineHeading += 90; |
496 | 1749 |
1750 for (loop = 0; loop < 3; loop++) | |
1751 { | |
1752 if(LineHeading > 359) LineHeading -= 360; | |
1753 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(0,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font031); // Main Ticks | |
1754 LineHeading += 90; | |
1755 } | |
38 | 1756 |
1757 LineHeading = 360 - ActualHeading; | |
1758 LineHeading += 45; | |
496 | 1759 |
1760 for (loop = 0; loop < 4; loop++) | |
1761 { | |
1762 if(LineHeading > 359) LineHeading -= 360; | |
1763 GFX_draw_thick_line(5,tXscreen, t3_compass_circle(1,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font031); // Subtick | |
1764 LineHeading += 90; | |
1765 } | |
38 | 1766 |
1767 LineHeading = 360 - ActualHeading; | |
1768 LineHeading += 22; | |
496 | 1769 for (loop = 0; loop < 8; loop++) |
1770 { | |
1771 if(LineHeading > 359) LineHeading -= 360; | |
1772 GFX_draw_thick_line(3,tXscreen, t3_compass_circle(1,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_Font031); // Subtick | |
1773 LineHeading += 45; | |
1774 } | |
38 | 1775 if(UserSetHeading) |
1776 { | |
1777 LineHeading = UserSetHeading + 360 - ActualHeading; | |
1778 if(LineHeading > 359) LineHeading -= 360; | |
496 | 1779 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(3,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_CompassUserHeadingTick); |
38 | 1780 |
1781 // R�ckpeilung, User Back Heading | |
1782 LineHeading = UserSetHeading + 360 + 180 - ActualHeading; | |
1783 if(LineHeading > 359) LineHeading -= 360; | |
1784 if(LineHeading > 359) LineHeading -= 360; | |
496 | 1785 GFX_draw_thick_line(9,tXscreen, t3_compass_circle(3,LineHeading, center), t3_compass_circle(2,LineHeading, center), CLUT_CompassUserBackHeadingTick); |
38 | 1786 } |
1787 | |
1788 GFX_draw_circle(tXscreen, center, 106, CLUT_Font030); | |
1789 GFX_draw_circle(tXscreen, center, 107, CLUT_Font030); | |
1790 GFX_draw_circle(tXscreen, center, 108, CLUT_Font030); | |
1791 } | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1792 |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1793 uint8_t t3_GetEnabled_customviews() |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1794 { |
496 | 1795 uint8_t *pViews; |
1796 uint8_t increment = 1; | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1797 uint8_t enabledViewCnt = 0; |
496 | 1798 |
511 | 1799 pViews = (uint8_t*)t3_customviewsStandard; |
496 | 1800 while((*pViews != CVIEW_T3_END)) |
1801 { | |
1802 increment = 1; | |
1803 /* check if view is enabled */ | |
1804 if(t3_customview_disabled(*pViews)) | |
1805 { | |
1806 increment = 0; | |
1807 } | |
1808 pViews++; | |
1809 enabledViewCnt += increment; | |
1810 } | |
384
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1811 return enabledViewCnt; |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1812 } |
427ae9f8e28e
Consider number of available t3 views in sector handling:
ideenmodellierer
parents:
272
diff
changeset
|
1813 |
518 | 1814 uint8_t t3_getCustomView(void) |
1815 { | |
1816 return t3_selection_customview; | |
1817 } |