2017-05-25 10:57:06 +00:00
// SPDX-License-Identifier: GPL-2.0
/* planner.c
*
* code that allows us to plan future dives
*
* ( c ) Dirk Hohndel 2013
*/
# include <assert.h>
# include <unistd.h>
# include <ctype.h>
# include <string.h>
# include "dive.h"
# include "deco.h"
# include "divelist.h"
# include "planner.h"
# include "gettext.h"
# include "libdivecomputer/parser.h"
2018-02-24 22:28:13 +00:00
# include "qthelper.h"
2018-03-14 19:37:19 +00:00
# include "format.h"
2017-05-25 10:57:06 +00:00
# include "version.h"
2018-03-14 06:50:04 +00:00
# include "membuffer.h"
2017-05-25 10:57:06 +00:00
2018-03-13 20:39:20 +00:00
static int diveplan_duration ( struct diveplan * diveplan )
2017-05-25 10:57:06 +00:00
{
struct divedatapoint * dp = diveplan - > dp ;
int duration = 0 ;
while ( dp ) {
if ( dp - > time > duration )
duration = dp - > time ;
dp = dp - > next ;
}
2017-11-28 13:59:36 +00:00
return ( duration + 30 ) / 60 ;
2017-05-25 10:57:06 +00:00
}
2018-01-15 07:43:57 +00:00
/* Add the icd results of one trimix gas change to the dive plan html buffer. Two rows are added to the table, one
* indicating fractions of gas , the other indication partial pressures of gas . This function makes use of the
* icd_data structure that was filled with information by the function isobaric_counterdiffusion ( ) .
* Parameters : 1 ) Pointer to the output buffer position at which writing should start .
* 2 ) The size of the part of the unused output buffer that remains unused .
* 3 ) The data structure containing icd calculation results : icdvalues .
2018-01-28 15:44:54 +00:00
* 4 ) A boolean value indicating whether a table header should be written before the data . Only during 1 st call .
* 5 ) Pointers to gas mixes in the gas change : gas - from and gas - to .
2018-01-15 07:43:57 +00:00
* Returns : The size of the output buffer that has been used after the new results have been added .
*/
2018-08-16 17:10:10 +00:00
static void add_icd_entry ( struct membuffer * b , struct icd_data * icdvalues , bool printheader , int time_seconds , int ambientpressure_mbar , struct gasmix gas_from , struct gasmix gas_to )
2018-01-15 07:43:57 +00:00
{
2018-01-28 15:44:54 +00:00
if ( printheader ) { // Create a table description and a table header if no icd data have been written yet.
2018-03-14 06:50:04 +00:00
put_format ( b , " <div>%s: " , translate ( " gettextFromC " , " Isobaric counterdiffusion information " ) ) ;
put_format ( b , " <table><tr><td align='left'><b>%s</b></td> " , translate ( " gettextFromC " , " runtime " ) ) ;
put_format ( b , " <td align='center'><b>%s</b></td> " , translate ( " gettextFromC " , " gaschange " ) ) ;
put_format ( b , " <td style='padding-left: 15px;'><b>%s</b></td> " , translate ( " gettextFromC " , " ΔHe " ) ) ;
put_format ( b , " <td style='padding-left: 20px;'><b>%s</b></td> " , translate ( " gettextFromC " , " ΔN₂ " ) ) ;
put_format ( b , " <td style='padding-left: 10px;'><b>%s</b></td></tr> " , translate ( " gettextFromC " , " max ΔN₂ " ) ) ;
2018-01-28 15:44:54 +00:00
} // Add one entry to the icd table:
2018-03-14 06:50:04 +00:00
put_format_loc ( b ,
2018-01-20 10:56:04 +00:00
" <tr><td rowspan='2' style= 'vertical-align:top;'>%3d%s</td> "
" <td rowspan=2 style= 'vertical-align:top;'>%s➙ " ,
( time_seconds + 30 ) / 60 , translate ( " gettextFromC " , " min " ) , gasname ( gas_from ) ) ;
2018-03-14 06:50:04 +00:00
put_format_loc ( b ,
2018-01-24 19:50:35 +00:00
" %s</td><td style='padding-left: 10px;'>%+5.1f%%</td> "
" <td style= 'padding-left: 15px; color:%s;'>%+5.1f%%</td> "
" <td style='padding-left: 15px;'>%+5.1f%%</td></tr> "
2018-01-20 10:56:04 +00:00
" <tr><td style='padding-left: 10px;'>%+5.2f%s</td> "
" <td style='padding-left: 15px; color:%s;'>%+5.2f%s</td> "
" <td style='padding-left: 15px;'>%+5.2f%s</td></tr> " ,
2018-02-24 13:46:04 +00:00
gasname ( gas_to ) , icdvalues - > dHe / 10.0 ,
( ( 5 * icdvalues - > dN2 ) > - icdvalues - > dHe ) ? " red " : " #383838 " , icdvalues - > dN2 / 10.0 , 0.2 * ( - icdvalues - > dHe / 10.0 ) ,
2018-01-24 19:50:35 +00:00
ambientpressure_mbar * icdvalues - > dHe / 1e6 f , translate ( " gettextFromC " , " bar " ) , ( ( 5 * icdvalues - > dN2 ) > - icdvalues - > dHe ) ? " red " : " #383838 " ,
2018-02-24 13:46:04 +00:00
ambientpressure_mbar * icdvalues - > dN2 / 1e6 f , translate ( " gettextFromC " , " bar " ) ,
2018-01-24 19:50:35 +00:00
ambientpressure_mbar * - icdvalues - > dHe / 5e6 f , translate ( " gettextFromC " , " bar " ) ) ;
2018-01-15 07:43:57 +00:00
}
2017-05-25 10:57:06 +00:00
void add_plan_to_notes ( struct diveplan * diveplan , struct dive * dive , bool show_disclaimer , int error )
{
2018-03-14 06:50:04 +00:00
struct membuffer buf = { 0 } ;
struct membuffer icdbuf = { 0 } ;
2017-05-25 10:57:06 +00:00
const char * deco , * segmentsymbol ;
2018-03-14 06:50:04 +00:00
int lastdepth = 0 , lasttime = 0 , lastsetpoint = - 1 , newdepth = 0 , lastprintdepth = 0 , lastprintsetpoint = - 1 ;
2018-09-10 18:40:25 +00:00
struct gasmix lastprintgasmix = gasmix_invalid ;
2017-05-25 10:57:06 +00:00
struct divedatapoint * dp = diveplan - > dp ;
bool plan_verbatim = prefs . verbatim_plan ;
bool plan_display_runtime = prefs . display_runtime ;
bool plan_display_duration = prefs . display_duration ;
bool plan_display_transitions = prefs . display_transitions ;
bool gaschange_after = ! plan_verbatim ;
bool gaschange_before ;
2018-06-17 21:20:59 +00:00
bool rebreatherchange_after = ! plan_verbatim ;
bool rebreatherchange_before ;
enum divemode_t lastdivemode = UNDEF_COMP_TYPE ;
2017-05-25 10:57:06 +00:00
bool lastentered = true ;
2018-01-28 15:44:54 +00:00
bool icdwarning = false , icdtableheader = true ;
2017-05-25 10:57:06 +00:00
struct divedatapoint * nextdp = NULL ;
struct divedatapoint * lastbottomdp = NULL ;
2018-01-15 07:43:57 +00:00
struct icd_data icdvalues ;
2018-03-14 06:50:04 +00:00
char * temp ;
2017-05-25 10:57:06 +00:00
if ( decoMode ( ) = = VPMB ) {
deco = translate ( " gettextFromC " , " VPM-B " ) ;
} else {
deco = translate ( " gettextFromC " , " BUHLMANN " ) ;
}
2018-01-15 07:43:57 +00:00
if ( ! dp )
2018-03-14 06:50:04 +00:00
return ;
2017-05-25 10:57:06 +00:00
if ( error ) {
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <span style='color: red;'>%s </span> %s<br> " ,
translate ( " gettextFromC " , " Warning: " ) ,
translate ( " gettextFromC " , " Decompression calculation aborted due to excessive time " ) ) ;
2018-01-15 07:43:57 +00:00
goto finished ;
2017-05-25 10:57:06 +00:00
}
2018-03-14 06:50:04 +00:00
if ( show_disclaimer ) {
put_string ( & buf , " <div><b> " ) ;
put_format ( & buf , translate ( " gettextFromC " , " DISCLAIMER / WARNING: THIS IS A NEW IMPLEMENTATION OF THE %s "
" ALGORITHM AND A DIVE PLANNER IMPLEMENTATION BASED ON THAT WHICH HAS "
" RECEIVED ONLY A LIMITED AMOUNT OF TESTING. WE STRONGLY RECOMMEND NOT TO "
" PLAN DIVES SIMPLY BASED ON THE RESULTS GIVEN HERE. " ) , deco ) ;
put_string ( & buf , " </b><br></div> " ) ;
}
2017-05-25 10:57:06 +00:00
2017-10-02 09:17:10 +00:00
if ( diveplan - > surface_interval < 0 ) {
2018-09-09 20:49:57 +00:00
put_format ( & buf , " <div><b>%s (%s) %s<br></div> " ,
2018-01-11 13:11:45 +00:00
translate ( " gettextFromC " , " Subsurface " ) ,
subsurface_canonical_version ( ) ,
translate ( " gettextFromC " , " dive plan</b> (overlapping dives detected) " ) ) ;
2018-02-19 20:28:03 +00:00
goto finished ;
2017-10-02 09:17:10 +00:00
} else if ( diveplan - > surface_interval > = 48 * 60 * 60 ) {
2018-03-13 21:12:23 +00:00
char * current_date = get_current_date ( ) ;
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <div><b>%s (%s) %s %s</b><br> " ,
2018-01-11 13:11:45 +00:00
translate ( " gettextFromC " , " Subsurface " ) ,
subsurface_canonical_version ( ) ,
translate ( " gettextFromC " , " dive plan</b> created on " ) ,
current_date ) ;
2018-03-13 21:12:23 +00:00
free ( current_date ) ;
2017-10-02 09:17:10 +00:00
} else {
2018-03-13 21:12:23 +00:00
char * current_date = get_current_date ( ) ;
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , " <div><b>%s (%s) %s %d:%02d) %s %s<br> " ,
2018-01-11 13:11:45 +00:00
translate ( " gettextFromC " , " Subsurface " ) ,
subsurface_canonical_version ( ) ,
translate ( " gettextFromC " , " dive plan</b> (surface interval " ) ,
FRACTION ( diveplan - > surface_interval / 60 , 60 ) ,
translate ( " gettextFromC " , " created on " ) ,
current_date ) ;
2018-03-13 21:12:23 +00:00
free ( current_date ) ;
2017-05-25 10:57:06 +00:00
}
2017-11-30 22:06:46 +00:00
if ( prefs . display_variations & & decoMode ( ) ! = RECREATIONAL )
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Runtime: %dmin%s " ) ,
2018-01-11 13:11:45 +00:00
diveplan_duration ( diveplan ) , " VARIATIONS<br></div> " ) ;
2017-09-18 14:10:47 +00:00
else
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Runtime: %dmin<br></div> " ) ,
2018-01-11 13:11:45 +00:00
diveplan_duration ( diveplan ) ) ;
2017-09-18 14:10:47 +00:00
2017-05-25 10:57:06 +00:00
if ( ! plan_verbatim ) {
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <table><thead><tr><th></th><th>%s</th> " , translate ( " gettextFromC " , " depth " ) ) ;
2017-05-25 10:57:06 +00:00
if ( plan_display_duration )
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <th style='padding-left: 10px;'>%s</th> " , translate ( " gettextFromC " , " duration " ) ) ;
2017-05-25 10:57:06 +00:00
if ( plan_display_runtime )
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <th style='padding-left: 10px;'>%s</th> " , translate ( " gettextFromC " , " runtime " ) ) ;
put_format ( & buf , " <th style='padding-left: 10px; float: left;'>%s</th></tr></thead><tbody style='float: left;'> " ,
2017-05-25 10:57:06 +00:00
translate ( " gettextFromC " , " gas " ) ) ;
}
2018-01-15 07:43:57 +00:00
2017-05-25 10:57:06 +00:00
do {
struct gasmix gasmix , newgasmix = { } ;
const char * depth_unit ;
double depthvalue ;
int decimals ;
bool isascent = ( dp - > depth . mm < lastdepth ) ;
nextdp = dp - > next ;
if ( dp - > time = = 0 )
continue ;
gasmix = dive - > cylinder [ dp - > cylinderid ] . gasmix ;
depthvalue = get_depth_units ( dp - > depth . mm , & decimals , & depth_unit ) ;
/* analyze the dive points ahead */
while ( nextdp & & nextdp - > time = = 0 )
nextdp = nextdp - > next ;
if ( nextdp )
newgasmix = dive - > cylinder [ nextdp - > cylinderid ] . gasmix ;
2018-08-16 17:10:10 +00:00
gaschange_after = ( nextdp & & ( gasmix_distance ( gasmix , newgasmix ) ) ) ;
gaschange_before = ( gasmix_distance ( lastprintgasmix , gasmix ) ) ;
2018-06-17 21:20:59 +00:00
rebreatherchange_after = ( nextdp & & ( dp - > setpoint ! = nextdp - > setpoint | | dp - > divemode ! = nextdp - > divemode ) ) ;
rebreatherchange_before = lastprintsetpoint ! = dp - > setpoint | | lastdivemode ! = dp - > divemode ;
2017-05-25 10:57:06 +00:00
/* do we want to skip this leg as it is devoid of anything useful? */
if ( ! dp - > entered & &
nextdp & &
dp - > depth . mm ! = lastdepth & &
nextdp - > depth . mm ! = dp - > depth . mm & &
! gaschange_before & &
2018-06-17 21:20:59 +00:00
! gaschange_after & &
! rebreatherchange_before & &
! rebreatherchange_after )
2017-05-25 10:57:06 +00:00
continue ;
2017-12-29 00:50:20 +00:00
if ( ( dp - > time - lasttime < 10 & & lastdepth = = dp - > depth . mm ) & & ! ( gaschange_after & & dp - > next & & dp - > depth . mm ! = dp - > next - > depth . mm ) )
2017-05-25 10:57:06 +00:00
continue ;
/* Store pointer to last entered datapoint for minimum gas calculation */
if ( dp - > entered & & ! nextdp - > entered )
lastbottomdp = dp ;
if ( plan_verbatim ) {
/* When displaying a verbatim plan, we output a waypoint for every gas change.
* Therefore , we do not need to test for difficult cases that mean we need to
* print a segment just so we don ' t miss a gas change . This makes the logic
* to determine whether or not to print a segment much simpler than with the
* non - verbatim plan .
*/
if ( dp - > depth . mm ! = lastprintdepth ) {
if ( plan_display_transitions | | dp - > entered | | ! dp - > next | | ( gaschange_after & & dp - > next & & dp - > depth . mm ! = nextdp - > depth . mm ) ) {
2018-01-11 13:11:45 +00:00
if ( dp - > setpoint ) {
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " %s to %.*f %s in %d:%02d min - runtime %d:%02u on %s (SP = %.1fbar) " ) ,
2018-02-24 13:46:04 +00:00
dp - > depth . mm < lastprintdepth ? translate ( " gettextFromC " , " Ascend " ) : translate ( " gettextFromC " , " Descend " ) ,
decimals , depthvalue , depth_unit ,
FRACTION ( dp - > time - lasttime , 60 ) ,
FRACTION ( dp - > time , 60 ) ,
2018-08-16 17:10:10 +00:00
gasname ( gasmix ) ,
2018-02-24 13:46:04 +00:00
( double ) dp - > setpoint / 1000.0 ) ;
2018-01-11 13:11:45 +00:00
} else {
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " %s to %.*f %s in %d:%02d min - runtime %d:%02u on %s " ) ,
2018-02-24 13:46:04 +00:00
dp - > depth . mm < lastprintdepth ? translate ( " gettextFromC " , " Ascend " ) : translate ( " gettextFromC " , " Descend " ) ,
decimals , depthvalue , depth_unit ,
FRACTION ( dp - > time - lasttime , 60 ) ,
FRACTION ( dp - > time , 60 ) ,
2018-08-16 17:10:10 +00:00
gasname ( gasmix ) ) ;
2018-01-11 13:11:45 +00:00
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <br> " ) ;
2017-05-25 10:57:06 +00:00
}
newdepth = dp - > depth . mm ;
lasttime = dp - > time ;
} else {
if ( ( nextdp & & dp - > depth . mm ! = nextdp - > depth . mm ) | | gaschange_after ) {
2018-01-11 13:11:45 +00:00
if ( dp - > setpoint ) {
2018-06-17 21:20:59 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Stay at %.*f %s for %d:%02d min - runtime %d:%02u on %s (SP = %.1fbar CCR) " ) ,
2018-02-24 13:46:04 +00:00
decimals , depthvalue , depth_unit ,
FRACTION ( dp - > time - lasttime , 60 ) ,
FRACTION ( dp - > time , 60 ) ,
2018-08-16 17:10:10 +00:00
gasname ( gasmix ) ,
2018-02-24 13:46:04 +00:00
( double ) dp - > setpoint / 1000.0 ) ;
2018-01-11 13:11:45 +00:00
} else {
2018-06-17 21:20:59 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Stay at %.*f %s for %d:%02d min - runtime %d:%02u on %s %s " ) ,
2018-02-24 13:46:04 +00:00
decimals , depthvalue , depth_unit ,
FRACTION ( dp - > time - lasttime , 60 ) ,
FRACTION ( dp - > time , 60 ) ,
2018-08-16 17:10:10 +00:00
gasname ( gasmix ) ,
2018-07-13 15:27:06 +00:00
translate ( " gettextFromC " , divemode_text_ui [ dp - > divemode ] ) ) ;
2018-01-11 13:11:45 +00:00
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <br> " ) ;
2017-05-25 10:57:06 +00:00
newdepth = dp - > depth . mm ;
lasttime = dp - > time ;
}
}
} else {
/* When not displaying the verbatim dive plan, we typically ignore ascents between deco stops,
* unless the display transitions option has been selected . We output a segment if any of the
* following conditions are met .
* 1 ) Display transitions is selected
* 2 ) The segment was manually entered
* 3 ) It is the last segment of the dive
* 4 ) The segment is not an ascent , there was a gas change at the start of the segment and the next segment
* is a change in depth ( typical deco stop )
* 5 ) There is a gas change at the end of the segment and the last segment was entered ( first calculated
* segment if it ends in a gas change )
* 6 ) There is a gaschange after but no ascent . This should only occur when backgas breaks option is selected
* 7 ) It is an ascent ending with a gas change , but is not followed by a stop . As case 5 already matches
* the first calculated ascent if it ends with a gas change , this should only occur if a travel gas is
* used for a calculated ascent , there is a subsequent gas change before the first deco stop , and zero
* time has been allowed for a gas switch .
*/
if ( plan_display_transitions | | dp - > entered | | ! dp - > next | |
( nextdp & & dp - > depth . mm ! = nextdp - > depth . mm ) | |
2018-06-17 21:20:59 +00:00
( ! isascent & & ( gaschange_before | | rebreatherchange_before ) & & nextdp & & dp - > depth . mm ! = nextdp - > depth . mm ) | |
( ( gaschange_after | | rebreatherchange_after ) & & lastentered ) | | ( ( gaschange_after | | rebreatherchange_after ) & & ! isascent ) | |
( isascent & & ( gaschange_after | | rebreatherchange_after ) & & nextdp & & dp - > depth . mm ! = nextdp - > depth . mm ) | |
2017-08-03 11:37:00 +00:00
( lastentered & & ! dp - > entered ) ) {
2017-05-25 10:57:06 +00:00
// Print a symbol to indicate whether segment is an ascent, descent, constant depth (user entered) or deco stop
if ( isascent )
segmentsymbol = " ➚ " ; // up-right arrow for ascent
else if ( dp - > depth . mm > lastdepth )
segmentsymbol = " ➘ " ; // down-right arrow for descent
else if ( dp - > entered )
segmentsymbol = " ➙ " ; // right arrow for entered entered segment at constant depth
else
segmentsymbol = " - " ; // minus sign (a.k.a. horizontal line) for deco stop
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <tr><td style='padding-left: 10px; float: right;'>%s</td> " , segmentsymbol ) ;
2017-05-25 10:57:06 +00:00
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %3.0f%s " ) , depthvalue , depth_unit ) ;
put_format ( & buf , " <td style='padding-left: 10px; float: right;'>%s</td> " , temp ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
if ( plan_display_duration ) {
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %3dmin " ) , ( dp - > time - lasttime + 30 ) / 60 ) ;
put_format ( & buf , " <td style='padding-left: 10px; float: right;'>%s</td> " , temp ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
}
if ( plan_display_runtime ) {
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %3dmin " ) , ( dp - > time + 30 ) / 60 ) ;
put_format ( & buf , " <td style='padding-left: 10px; float: right;'>%s</td> " , temp ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
}
/* Normally a gas change is displayed on the stopping segment, so only display a gas change at the end of
* an ascent segment if it is not followed by a stop
*/
if ( ( isascent | | dp - > entered ) & & gaschange_after & & dp - > next & & nextdp & & ( dp - > depth . mm ! = nextdp - > depth . mm | | nextdp - > entered ) ) {
if ( dp - > setpoint ) {
2018-06-17 21:20:59 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " (SP = %.1fbar CCR) " ) , dp - > setpoint / 1000.0 ) ;
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <td style='padding-left: 10px; color: red; float: left;'><b>%s %s</b></td> " ,
2018-08-16 17:10:10 +00:00
gasname ( newgasmix ) , temp ) ;
2018-03-14 06:50:04 +00:00
free ( temp ) ;
2017-05-25 10:57:06 +00:00
} else {
2018-06-17 21:20:59 +00:00
put_format ( & buf , " <td style='padding-left: 10px; color: red; float: left;'><b>%s %s</b></td> " ,
2018-08-16 17:10:10 +00:00
gasname ( newgasmix ) , lastdivemode = = UNDEF_COMP_TYPE | | lastdivemode = = dp - > divemode ? " " : translate ( " gettextFromC " , divemode_text_ui [ dp - > divemode ] ) ) ;
if ( isascent & & ( get_he ( lastprintgasmix ) > 0 ) ) { // For a trimix gas change on ascent, save ICD info if previous cylinder had helium
if ( isobaric_counterdiffusion ( lastprintgasmix , newgasmix , & icdvalues ) ) // Do icd calulations
2018-01-15 07:43:57 +00:00
icdwarning = true ;
2018-01-28 15:44:54 +00:00
if ( icdvalues . dN2 > 0 ) { // If the gas change involved helium as well as an increase in nitrogen..
2018-08-16 17:10:10 +00:00
add_icd_entry ( & icdbuf , & icdvalues , icdtableheader , dp - > time , depth_to_mbar ( dp - > depth . mm , dive ) , lastprintgasmix , newgasmix ) ; // .. then print calculations to buffer.
2018-01-28 15:44:54 +00:00
icdtableheader = false ;
}
2018-01-15 07:43:57 +00:00
}
2017-05-25 10:57:06 +00:00
}
2018-06-17 21:20:59 +00:00
lastprintsetpoint = dp - > setpoint ;
2017-05-25 10:57:06 +00:00
lastprintgasmix = newgasmix ;
2018-06-17 21:20:59 +00:00
lastdivemode = dp - > divemode ;
2017-05-25 10:57:06 +00:00
gaschange_after = false ;
2018-06-17 21:20:59 +00:00
} else if ( gaschange_before | | rebreatherchange_before ) {
2018-01-11 13:11:45 +00:00
// If a new gas has been used for this segment, now is the time to show it
2017-05-25 10:57:06 +00:00
if ( dp - > setpoint ) {
2018-06-17 21:20:59 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " (SP = %.1fbar CCR) " ) , ( double ) dp - > setpoint / 1000.0 ) ;
2018-08-16 17:10:10 +00:00
put_format ( & buf , " <td style='padding-left: 10px; color: red; float: left;'><b>%s %s</b></td> " , gasname ( gasmix ) , temp ) ;
2018-03-14 06:50:04 +00:00
free ( temp ) ;
2017-05-25 10:57:06 +00:00
} else {
2018-08-16 17:10:10 +00:00
put_format ( & buf , " <td style='padding-left: 10px; color: red; float: left;'><b>%s %s</b></td> " , gasname ( gasmix ) ,
2018-07-13 15:42:03 +00:00
lastdivemode = = UNDEF_COMP_TYPE | | lastdivemode = = dp - > divemode ? " " : translate ( " gettextFromC " , divemode_text_ui [ dp - > divemode ] ) ) ;
2018-08-16 17:10:10 +00:00
if ( get_he ( lastprintgasmix ) > 0 ) { // For a trimix gas change, save ICD info if previous cylinder had helium
if ( isobaric_counterdiffusion ( lastprintgasmix , gasmix , & icdvalues ) ) // Do icd calculations
2018-01-15 07:43:57 +00:00
icdwarning = true ;
2018-01-28 15:44:54 +00:00
if ( icdvalues . dN2 > 0 ) { // If the gas change involved helium as well as an increase in nitrogen..
2018-08-16 17:10:10 +00:00
add_icd_entry ( & icdbuf , & icdvalues , icdtableheader , lasttime , depth_to_mbar ( dp - > depth . mm , dive ) , lastprintgasmix , gasmix ) ; // .. then print data to buffer.
2018-01-28 15:44:54 +00:00
icdtableheader = false ;
}
2018-02-24 13:46:04 +00:00
}
2017-05-25 10:57:06 +00:00
}
// Set variables so subsequent iterations can test against the last gas printed
lastprintsetpoint = dp - > setpoint ;
lastprintgasmix = gasmix ;
2018-06-17 21:20:59 +00:00
lastdivemode = dp - > divemode ;
2017-05-25 10:57:06 +00:00
gaschange_after = false ;
} else {
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <td> </td> " ) ;
2017-05-25 10:57:06 +00:00
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " </tr> " ) ;
2017-05-25 10:57:06 +00:00
newdepth = dp - > depth . mm ;
lasttime = dp - > time ;
}
}
if ( gaschange_after ) {
2018-01-15 07:43:57 +00:00
// gas switch at this waypoint for verbatim
2017-05-25 10:57:06 +00:00
if ( plan_verbatim ) {
if ( lastsetpoint > = 0 ) {
2018-01-15 07:43:57 +00:00
if ( nextdp & & nextdp - > setpoint ) {
2018-08-16 17:10:10 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Switch gas to %s (SP = %.1fbar) " ) , gasname ( newgasmix ) , ( double ) nextdp - > setpoint / 1000.0 ) ;
2018-01-15 07:43:57 +00:00
} else {
2018-08-16 17:10:10 +00:00
put_format ( & buf , translate ( " gettextFromC " , " Switch gas to %s " ) , gasname ( newgasmix ) ) ;
if ( ( isascent ) & & ( get_he ( lastprintgasmix ) > 0 ) ) { // For a trimix gas change on ascent:
if ( isobaric_counterdiffusion ( lastprintgasmix , newgasmix , & icdvalues ) ) // Do icd calculations
2018-01-15 07:43:57 +00:00
icdwarning = true ;
2018-01-28 15:44:54 +00:00
if ( icdvalues . dN2 > 0 ) { // If the gas change involved helium as well as an increase in nitrogen..
2018-08-16 17:10:10 +00:00
add_icd_entry ( & icdbuf , & icdvalues , icdtableheader , dp - > time , depth_to_mbar ( dp - > depth . mm , dive ) , lastprintgasmix , newgasmix ) ; // ... then print data to buffer.
2018-01-28 15:44:54 +00:00
icdtableheader = false ;
}
2018-01-15 07:43:57 +00:00
}
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <br> " ) ;
2017-05-25 10:57:06 +00:00
}
2018-01-15 07:43:57 +00:00
lastprintgasmix = newgasmix ;
2017-05-25 10:57:06 +00:00
gaschange_after = false ;
2018-01-11 13:11:45 +00:00
gasmix = newgasmix ;
2017-05-25 10:57:06 +00:00
}
}
lastprintdepth = newdepth ;
lastdepth = dp - > depth . mm ;
lastsetpoint = dp - > setpoint ;
lastentered = dp - > entered ;
} while ( ( dp = nextdp ) ! = NULL ) ;
if ( ! plan_verbatim )
2018-03-14 06:50:04 +00:00
put_string ( & buf , " </tbody></table><br> " ) ;
2017-05-25 10:57:06 +00:00
/* Print the CNS and OTU next.*/
dive - > cns = 0 ;
dive - > maxcns = 0 ;
update_cylinder_related_info ( dive ) ;
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , " <div>%s: %i%% " , translate ( " gettextFromC " , " CNS " ) , dive - > cns ) ;
put_format_loc ( & buf , " <br>%s: %i<br></div> " , translate ( " gettextFromC " , " OTU " ) , dive - > otu ) ;
2017-05-25 10:57:06 +00:00
/* Print the settings for the diveplan next. */
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <div> " ) ;
2017-10-18 13:58:36 +00:00
if ( decoMode ( ) = = BUEHLMANN ) {
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Deco model: Bühlmann ZHL-16C with GFLow = %d%% and GFHigh = %d%% " ) , diveplan - > gflow , diveplan - > gfhigh ) ;
2017-05-25 10:57:06 +00:00
} else if ( decoMode ( ) = = VPMB ) {
if ( diveplan - > vpmb_conservatism = = 0 )
2018-03-14 06:50:04 +00:00
put_string ( & buf , translate ( " gettextFromC " , " Deco model: VPM-B at nominal conservatism " ) ) ;
2017-05-25 10:57:06 +00:00
else
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Deco model: VPM-B at +%d conservatism " ) , diveplan - > vpmb_conservatism ) ;
2017-05-25 10:57:06 +00:00
if ( diveplan - > eff_gflow )
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " , effective GF=%d/%d " ) , diveplan - > eff_gflow , diveplan - > eff_gfhigh ) ;
2017-05-25 10:57:06 +00:00
} else if ( decoMode ( ) = = RECREATIONAL ) {
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " Deco model: Recreational mode based on Bühlmann ZHL-16B with GFLow = %d%% and GFHigh = %d%% " ) ,
2018-02-24 13:46:04 +00:00
diveplan - > gflow , diveplan - > gfhigh ) ;
2017-05-25 10:57:06 +00:00
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <br> " ) ;
2017-05-25 10:57:06 +00:00
const char * depth_unit ;
int altitude = ( int ) get_depth_units ( ( int ) ( log ( 1013.0 / diveplan - > surface_pressure ) * 7800000 ) , NULL , & depth_unit ) ;
2018-03-14 06:50:04 +00:00
put_format_loc ( & buf , translate ( " gettextFromC " , " ATM pressure: %dmbar (%d%s)<br></div> " ) , diveplan - > surface_pressure , altitude , depth_unit ) ;
2017-05-25 10:57:06 +00:00
/* Get SAC values and units for printing it in gas consumption */
double bottomsacvalue , decosacvalue ;
int sacdecimals ;
const char * sacunit ;
bottomsacvalue = get_volume_units ( prefs . bottomsac , & sacdecimals , & sacunit ) ;
decosacvalue = get_volume_units ( prefs . decosac , NULL , NULL ) ;
/* Reduce number of decimals from 1 to 0 for bar/min, keep 2 for cuft/min */
if ( sacdecimals = = 1 ) sacdecimals - - ;
/* Print the gas consumption next.*/
if ( dive - > dc . divemode = = CCR )
2018-03-14 06:50:04 +00:00
temp = strdup ( translate ( " gettextFromC " , " Gas consumption (CCR legs excluded): " ) ) ;
2017-05-25 10:57:06 +00:00
else
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , " %s %.*f|%.*f%s/min): " , translate ( " gettextFromC " , " Gas consumption (based on SAC " ) ,
2018-02-24 13:46:04 +00:00
sacdecimals , bottomsacvalue , sacdecimals , decosacvalue , sacunit ) ;
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <div>%s<br> " , temp ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
/* Print gas consumption: This loop covers all cylinders */
for ( int gasidx = 0 ; gasidx < MAX_CYLINDERS ; gasidx + + ) {
2017-10-03 11:17:46 +00:00
double volume , pressure , deco_volume , deco_pressure , mingas_volume , mingas_pressure , mingas_d_pressure , mingas_depth ;
2017-05-25 10:57:06 +00:00
const char * unit , * pressure_unit , * depth_unit ;
char warning [ 1000 ] = " " ;
char mingas [ 1000 ] = " " ;
cylinder_t * cyl = & dive - > cylinder [ gasidx ] ;
if ( cylinder_none ( cyl ) )
break ;
volume = get_volume_units ( cyl - > gas_used . mliter , NULL , & unit ) ;
deco_volume = get_volume_units ( cyl - > deco_gas_used . mliter , NULL , & unit ) ;
if ( cyl - > type . size . mliter ) {
2018-08-16 17:10:10 +00:00
int remaining_gas = lrint ( ( double ) cyl - > end . mbar * cyl - > type . size . mliter / 1000.0 / gas_compressibility_factor ( cyl - > gasmix , cyl - > end . mbar / 1000.0 ) ) ;
double deco_pressure_mbar = isothermal_pressure ( cyl - > gasmix , 1.0 , remaining_gas + cyl - > deco_gas_used . mliter ,
2018-01-11 13:11:45 +00:00
cyl - > type . size . mliter ) * 1000 - cyl - > end . mbar ;
2017-10-03 11:17:46 +00:00
deco_pressure = get_pressure_units ( lrint ( deco_pressure_mbar ) , & pressure_unit ) ;
2017-05-25 10:57:06 +00:00
pressure = get_pressure_units ( cyl - > start . mbar - cyl - > end . mbar , & pressure_unit ) ;
/* Warn if the plan uses more gas than is available in a cylinder
* This only works if we have working pressure for the cylinder
* 10 bar is a made up number - but it seemed silly to pretend you could breathe cylinder down to 0 */
if ( cyl - > end . mbar < 10000 )
snprintf ( warning , sizeof ( warning ) , " <br> — <span style='color: red;'>%s </span> %s " ,
translate ( " gettextFromC " , " Warning: " ) ,
translate ( " gettextFromC " , " this is more gas than available in the specified cylinder! " ) ) ;
else
2018-08-16 17:10:10 +00:00
if ( cyl - > end . mbar / 1000.0 * cyl - > type . size . mliter / gas_compressibility_factor ( cyl - > gasmix , cyl - > end . mbar / 1000.0 )
Unify float calulations: use double
Internal floating point (FP) calculations should be performed using double
unless there is a very good reason. This avoids headaches with conversions.
Indeed, the vast majority of FP calculations were already done using double.
This patch adapts most remaining calculations. Not converted where things
that were based on binary representations and variables which weren't used
anyway.
An analysis of all instances follows:
core/plannernotes.c, l.404:
This was a comparison between two floats. On the left side, first an integer
was cast to float then multiplied with and integer and divided by a constant
double. The right hand side was an integer cast to a float. Simply divide by
1000.0 first to convert to double and continue with calculations. On the right
hand side, remove the cast, because the integer will be implicitely cast to
double for comparison. This conversion actually emits less instructions,
because no conversion to double and back is performed.
core/planner.c, l.613:
Same analysis as previous case.
subsurface-desktop-main.cpp, l.155:
A local variable representing the version OpenGL version. Turn this into
integer logic. Not only does this avoid dreaded FP rounding issues, it also
works correctly for minor version > 10 (not that such a thing is to be
expected anytime soon).
abstractpreferenceswidget.[h/cpp]:
A widget where the position is described as a float. Turn into double.
desktop-widgets/divelogexportdialog.cpp, l.313:
total_weight is described as float. Use double arithmetics instead. This
instance fixes a truncation warning emitted by gcc.
2017-11-20 20:39:50 +00:00
< cyl - > deco_gas_used . mliter )
2017-05-25 10:57:06 +00:00
snprintf ( warning , sizeof ( warning ) , " <br> — <span style='color: red;'>%s </span> %s " ,
translate ( " gettextFromC " , " Warning: " ) ,
translate ( " gettextFromC " , " not enough reserve for gas sharing on ascent! " ) ) ;
/* Do and print minimum gas calculation for last bottom gas, but only for OC mode, */
/* not for recreational mode and if no other warning was set before. */
else
if ( lastbottomdp & & gasidx = = lastbottomdp - > cylinderid
& & dive - > dc . divemode = = OC & & decoMode ( ) ! = RECREATIONAL ) {
/* Calculate minimum gas volume. */
volume_t mingasv ;
mingasv . mliter = lrint ( prefs . sacfactor / 100.0 * prefs . problemsolvingtime * prefs . bottomsac
* depth_to_bar ( lastbottomdp - > depth . mm , dive )
+ prefs . sacfactor / 100.0 * cyl - > deco_gas_used . mliter ) ;
/* Calculate minimum gas pressure for cyclinder. */
2018-08-16 17:10:10 +00:00
lastbottomdp - > minimum_gas . mbar = lrint ( isothermal_pressure ( cyl - > gasmix , 1.0 ,
2017-05-25 10:57:06 +00:00
mingasv . mliter , cyl - > type . size . mliter ) * 1000 ) ;
/* Translate all results into correct units */
mingas_volume = get_volume_units ( mingasv . mliter , NULL , & unit ) ;
mingas_pressure = get_pressure_units ( lastbottomdp - > minimum_gas . mbar , & pressure_unit ) ;
2017-10-03 11:17:46 +00:00
mingas_d_pressure = get_pressure_units ( lrint ( ( double ) cyl - > end . mbar + deco_pressure_mbar - lastbottomdp - > minimum_gas . mbar ) , & pressure_unit ) ;
2017-05-25 10:57:06 +00:00
mingas_depth = get_depth_units ( lastbottomdp - > depth . mm , NULL , & depth_unit ) ;
/* Print it to results */
2017-10-18 13:58:36 +00:00
if ( cyl - > start . mbar > lastbottomdp - > minimum_gas . mbar ) {
2018-02-24 13:46:04 +00:00
snprintf_loc ( mingas , sizeof ( mingas ) , " <br> — <span style='color: %s;'>%s</span> (%s %.1fx%s/+%d%s@%.0f%s): "
" %.0f%s/%.0f%s<span style='color: %s;'>/Δ:%+.0f%s</span> " ,
mingas_d_pressure > 0 ? " green " : " red " ,
translate ( " gettextFromC " , " Minimum gas " ) ,
translate ( " gettextFromC " , " based on " ) ,
prefs . sacfactor / 100.0 ,
translate ( " gettextFromC " , " SAC " ) ,
prefs . problemsolvingtime ,
translate ( " gettextFromC " , " min " ) ,
mingas_depth , depth_unit ,
mingas_volume , unit ,
mingas_pressure , pressure_unit ,
mingas_d_pressure > 0 ? " grey " : " indianred " ,
mingas_d_pressure , pressure_unit ) ;
2017-10-18 13:58:36 +00:00
} else {
snprintf ( warning , sizeof ( warning ) , " <br> — <span style='color: red;'>%s </span> %s " ,
translate ( " gettextFromC " , " Warning: " ) ,
translate ( " gettextFromC " , " required minimum gas for ascent already exceeding start pressure of cylinder! " ) ) ;
}
2017-05-25 10:57:06 +00:00
}
/* Print the gas consumption for every cylinder here to temp buffer. */
2018-01-11 13:11:45 +00:00
if ( lrint ( volume ) > 0 ) {
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %.0f%s/%.0f%s of <span style='color: red;'><b>%s</b></span> (%.0f%s/%.0f%s in planned ascent) " ) ,
2018-08-16 17:10:10 +00:00
volume , unit , pressure , pressure_unit , gasname ( cyl - > gasmix ) , deco_volume , unit , deco_pressure , pressure_unit ) ;
2018-01-11 13:11:45 +00:00
} else {
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %.0f%s/%.0f%s of <span style='color: red;'><b>%s</b></span> " ) ,
2018-08-16 17:10:10 +00:00
volume , unit , pressure , pressure_unit , gasname ( cyl - > gasmix ) ) ;
2018-01-11 13:11:45 +00:00
}
2017-05-25 10:57:06 +00:00
} else {
2018-01-15 07:43:57 +00:00
if ( lrint ( volume ) > 0 ) {
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %.0f%s of <span style='color: red;'><b>%s</b></span> (%.0f%s during planned ascent) " ) ,
2018-08-16 17:10:10 +00:00
volume , unit , gasname ( cyl - > gasmix ) , deco_volume , unit ) ;
2018-01-15 07:43:57 +00:00
} else {
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " %.0f%s of <span style='color: red;'><b>%s</b></span> " ) ,
2018-08-16 17:10:10 +00:00
volume , unit , gasname ( cyl - > gasmix ) ) ;
2018-01-15 07:43:57 +00:00
}
2017-05-25 10:57:06 +00:00
}
/* Gas consumption: Now finally print all strings to output */
2018-03-14 06:50:04 +00:00
put_format ( & buf , " %s%s%s<br></div> " , temp , warning , mingas ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
}
2018-01-28 15:44:54 +00:00
/* For trimix OC dives, if an icd table header and icd data were printed to buffer, then add the ICD table here */
2018-02-24 19:07:11 +00:00
if ( ! icdtableheader & & prefs . show_icd ) {
2018-03-14 06:50:04 +00:00
put_string ( & icdbuf , " </tbody></table> " ) ; // End the ICD table
2018-05-18 09:44:11 +00:00
mb_cstring ( & icdbuf ) ;
2018-03-14 06:50:04 +00:00
put_string ( & buf , icdbuf . buffer ) ; // ..and add it to the html buffer
2018-01-28 15:44:54 +00:00
if ( icdwarning ) { // If necessary, add warning
2018-03-14 06:50:04 +00:00
put_format ( & buf , " <span style='color: red;'>%s</span> %s " ,
2018-01-15 07:43:57 +00:00
translate ( " gettextFromC " , " Warning: " ) ,
translate ( " gettextFromC " , " Isobaric counterdiffusion conditions exceeded " ) ) ;
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <br></div> " ) ;
2018-01-15 07:43:57 +00:00
}
2018-03-14 06:50:04 +00:00
free_buffer ( & icdbuf ) ;
2018-01-15 07:43:57 +00:00
2017-05-25 10:57:06 +00:00
/* Print warnings for pO2 */
dp = diveplan - > dp ;
bool o2warning_exist = false ;
2018-05-08 14:24:51 +00:00
enum divemode_t current_divemode ;
2018-04-02 15:16:07 +00:00
double amb ;
2018-08-16 22:58:30 +00:00
const struct event * evd = NULL ;
2018-04-07 15:52:16 +00:00
current_divemode = UNDEF_COMP_TYPE ;
2018-04-02 15:16:07 +00:00
2017-05-25 10:57:06 +00:00
if ( dive - > dc . divemode ! = CCR ) {
while ( dp ) {
if ( dp - > time ! = 0 ) {
struct gas_pressures pressures ;
2018-08-16 17:10:10 +00:00
struct gasmix gasmix = dive - > cylinder [ dp - > cylinderid ] . gasmix ;
2018-04-02 15:16:07 +00:00
2018-04-07 15:52:16 +00:00
current_divemode = get_current_divemode ( & dive - > dc , dp - > time , & evd , & current_divemode ) ;
2018-04-02 15:16:07 +00:00
amb = depth_to_atm ( dp - > depth . mm , dive ) ;
2018-08-16 17:10:10 +00:00
fill_pressures ( & pressures , amb , gasmix , ( current_divemode = = OC ) ? 0.0 : amb * gasmix . o2 . permille / 1000.0 , current_divemode ) ;
2017-05-25 10:57:06 +00:00
if ( pressures . o2 > ( dp - > entered ? prefs . bottompo2 : prefs . decopo2 ) / 1000.0 ) {
const char * depth_unit ;
int decimals ;
double depth_value = get_depth_units ( dp - > depth . mm , & decimals , & depth_unit ) ;
2018-01-20 12:59:41 +00:00
if ( ! o2warning_exist )
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <div> " ) ;
2017-05-25 10:57:06 +00:00
o2warning_exist = true ;
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " high pO₂ value %.2f at %d:%02u with gas %s at depth %.*f %s " ) ,
pressures . o2 , FRACTION ( dp - > time , 60 ) , gasname ( gasmix ) , decimals , depth_value , depth_unit ) ;
put_format ( & buf , " <span style='color: red;'>%s </span> %s<br> " , translate ( " gettextFromC " , " Warning: " ) , temp ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
} else if ( pressures . o2 < 0.16 ) {
const char * depth_unit ;
int decimals ;
double depth_value = get_depth_units ( dp - > depth . mm , & decimals , & depth_unit ) ;
2018-01-20 12:59:41 +00:00
if ( ! o2warning_exist )
2018-03-14 06:50:04 +00:00
put_string ( & buf , " <div> " ) ;
2017-05-25 10:57:06 +00:00
o2warning_exist = true ;
2018-03-14 06:50:04 +00:00
asprintf_loc ( & temp , translate ( " gettextFromC " , " low pO₂ value %.2f at %d:%02u with gas %s at depth %.*f %s " ) ,
pressures . o2 , FRACTION ( dp - > time , 60 ) , gasname ( gasmix ) , decimals , depth_value , depth_unit ) ;
put_format ( & buf , " <span style='color: red;'>%s </span> %s<br> " , translate ( " gettextFromC " , " Warning: " ) , temp ) ;
free ( temp ) ;
2017-05-25 10:57:06 +00:00
}
}
dp = dp - > next ;
}
}
2018-03-14 06:50:04 +00:00
put_string ( & buf , " </div> " ) ;
2018-01-15 07:43:57 +00:00
finished :
2018-03-14 06:50:04 +00:00
mb_cstring ( & buf ) ;
2018-04-10 12:29:54 +00:00
free ( dive - > notes ) ;
2018-03-14 06:50:04 +00:00
dive - > notes = detach_buffer ( & buf ) ;
2018-01-15 07:43:57 +00:00
}