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