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