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