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