mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Start actually reporting the numbers we parsed
.. which also showed that the sampletime thing had gotten a bit too much copy-paste from the temperature parsing ;) Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
83e0bf8b52
commit
f46e9f571e
1 changed files with 27 additions and 2 deletions
29
parse.c
29
parse.c
|
@ -83,6 +83,21 @@ typedef struct {
|
||||||
pressure_t pressure;
|
pressure_t pressure;
|
||||||
} tank_type_t;
|
} tank_type_t;
|
||||||
|
|
||||||
|
static int to_feet(depth_t depth)
|
||||||
|
{
|
||||||
|
return depth.mm * 0.00328084 + 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int to_C(temperature_t temp)
|
||||||
|
{
|
||||||
|
return (temp.mkelvin + 272150) / 1000;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int to_PSI(pressure_t pressure)
|
||||||
|
{
|
||||||
|
return pressure.mbar * 0.0145037738 + 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
struct sample {
|
struct sample {
|
||||||
duration_t time;
|
duration_t time;
|
||||||
depth_t depth;
|
depth_t depth;
|
||||||
|
@ -104,6 +119,7 @@ struct dive {
|
||||||
|
|
||||||
static void record_dive(struct dive *dive)
|
static void record_dive(struct dive *dive)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
static int nr;
|
static int nr;
|
||||||
struct tm *tm;
|
struct tm *tm;
|
||||||
|
|
||||||
|
@ -113,6 +129,16 @@ static void record_dive(struct dive *dive)
|
||||||
++nr, dive->samples,
|
++nr, dive->samples,
|
||||||
tm->tm_hour, tm->tm_min, tm->tm_sec,
|
tm->tm_hour, tm->tm_min, tm->tm_sec,
|
||||||
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
|
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday);
|
||||||
|
for (i = 0; i < dive->samples; i++) {
|
||||||
|
struct sample *s = dive->sample + i;
|
||||||
|
|
||||||
|
printf("%4d:%02d: %3d ft, %2d C, %4d PSI\n",
|
||||||
|
s->time.seconds / 60,
|
||||||
|
s->time.seconds % 60,
|
||||||
|
to_feet(s->depth),
|
||||||
|
to_C(s->temperature),
|
||||||
|
to_PSI(s->tankpressure));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void nonmatch(const char *type, const char *fullname, const char *name, char *buffer)
|
static void nonmatch(const char *type, const char *fullname, const char *name, char *buffer)
|
||||||
|
@ -338,9 +364,8 @@ static void sampletime(char *buffer, void *_time)
|
||||||
union int_or_float val;
|
union int_or_float val;
|
||||||
|
|
||||||
switch (integer_or_float(buffer, &val)) {
|
switch (integer_or_float(buffer, &val)) {
|
||||||
/* C or F? Who knows? Let's default to Celsius */
|
|
||||||
case INTEGER:
|
case INTEGER:
|
||||||
time->seconds = val.i * 1000;
|
time->seconds = val.i;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
printf("Strange sample time reading %s\n", buffer);
|
printf("Strange sample time reading %s\n", buffer);
|
||||||
|
|
Loading…
Reference in a new issue