mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 03:53:24 +00:00
fixed indentation
Signed-off-by: Maximilian Güntner <maximilian.guentner@gmail.com>
This commit is contained in:
parent
b7ae9ad5b1
commit
0a7fa8ea50
1 changed files with 24 additions and 27 deletions
51
profile.c
51
profile.c
|
@ -189,14 +189,13 @@ static void dump_pi (struct plot_info *pi)
|
||||||
static int get_maxtime(struct plot_info *pi)
|
static int get_maxtime(struct plot_info *pi)
|
||||||
{
|
{
|
||||||
int seconds = pi->maxtime;
|
int seconds = pi->maxtime;
|
||||||
if (seconds < 600)
|
if (seconds < 600) {
|
||||||
{
|
/* Possible apnea dive, we scale accordingly */
|
||||||
/* Possible apnea dive, we scale accordingly */
|
return ROUND_UP(seconds+seconds/4, 60);
|
||||||
return ROUND_UP(seconds+seconds/4, 60);
|
} else {
|
||||||
} else {
|
/* min 30 minutes, rounded up to 5 minutes, with at least 2.5 minutes to spare */
|
||||||
/* min 30 minutes, rounded up to 5 minutes, with at least 2.5 minutes to spare */
|
return MAX(30*60, ROUND_UP(seconds+150, 60*5));
|
||||||
return MAX(30*60, ROUND_UP(seconds+150, 60*5));
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int get_maxdepth(struct plot_info *pi)
|
static int get_maxdepth(struct plot_info *pi)
|
||||||
|
@ -456,15 +455,14 @@ static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi
|
||||||
/* Get plot scaling limits */
|
/* Get plot scaling limits */
|
||||||
maxtime = get_maxtime(pi);
|
maxtime = get_maxtime(pi);
|
||||||
maxdepth = get_maxdepth(pi);
|
maxdepth = get_maxdepth(pi);
|
||||||
/* We check whether this has been an apnea dive and overwrite
|
/* We check whether this has been an apnea dive and overwrite
|
||||||
* the increments in order to get reasonable time markers */
|
* the increments in order to get reasonable time markers */
|
||||||
if (maxtime < 600)
|
if (maxtime < 600) {
|
||||||
{
|
increments[0] = 10;
|
||||||
increments[0] = 10;
|
increments[1] = 20;
|
||||||
increments[1] = 20;
|
increments[2] = 30;
|
||||||
increments[2] = 30;
|
increments[3] = 60;
|
||||||
increments[3] = 60;
|
}
|
||||||
}
|
|
||||||
/* Time markers: at most every 5 min, but no more than 12 markers
|
/* Time markers: at most every 5 min, but no more than 12 markers
|
||||||
* and for convenience we do 5, 10, 15 or 30 min intervals.
|
* and for convenience we do 5, 10, 15 or 30 min intervals.
|
||||||
* This allows for 6h dives - enough (I hope) for even the craziest
|
* This allows for 6h dives - enough (I hope) for even the craziest
|
||||||
|
@ -491,16 +489,15 @@ static void plot_depth_profile(struct graphics_context *gc, struct plot_info *pi
|
||||||
|
|
||||||
/* now the text on the time markers */
|
/* now the text on the time markers */
|
||||||
text_render_options_t tro = {10, TIME_TEXT, CENTER, TOP};
|
text_render_options_t tro = {10, TIME_TEXT, CENTER, TOP};
|
||||||
if (maxtime < 600)
|
if (maxtime < 600) {
|
||||||
{
|
/* Be a bit more verbose with shorter (apnea) dives */
|
||||||
/* Be a bit more verbose with shorter (apnea) dives */
|
for (i = incr; i < maxtime; i += incr)
|
||||||
for (i = incr; i < maxtime; i += incr)
|
plot_text(gc, &tro, i, 1, "%d:%d", i/60, i%60);
|
||||||
plot_text(gc, &tro, i, 1, "%d:%d", i/60, i%60);
|
} else {
|
||||||
} else {
|
/* Only render the time on every second marker for normal dives */
|
||||||
/* Only render the time on every second marker for normal dives */
|
for (i = incr; i < maxtime; i += 2 * incr)
|
||||||
for (i = incr; i < maxtime; i += 2 * incr)
|
plot_text(gc, &tro, i, 1, "%d", i/60);
|
||||||
plot_text(gc, &tro, i, 1, "%d", i/60);
|
}
|
||||||
}
|
|
||||||
/* Depth markers: every 30 ft or 10 m*/
|
/* Depth markers: every 30 ft or 10 m*/
|
||||||
gc->leftx = 0; gc->rightx = 1.0;
|
gc->leftx = 0; gc->rightx = 1.0;
|
||||||
gc->topy = 0; gc->bottomy = maxdepth;
|
gc->topy = 0; gc->bottomy = maxdepth;
|
||||||
|
|
Loading…
Add table
Reference in a new issue