aboutsummaryrefslogtreecommitdiffstats
path: root/backend-shared/divesummary.h
blob: 16f8a09ec401110449cefc2278477a8887e1cfb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: GPL-2.0
#ifndef DIVESUMMARY_H
#define DIVESUMMARY_H
#include <QStringList>
#include "core/dive.h"


class diveSummary {

public:
	static void summaryCalculation(int primaryPeriod, int secondaryPeriod);

	static QStringList diveSummaryText;

private:
	diveSummary() {}

	static void loopDives(timestamp_t primaryStart, timestamp_t secondaryStart);
	static void calculateDive(int inx, struct dive *dive);
	static void buildStringList(int inx);

	static timestamp_t firstDive, lastDive;
	static int dives[2], divesEAN[2], divesDeep[2], diveplans[2];
	static long divetime[2], depth[2], sac[2];
	static long divetimeMax[2], depthMax[2], sacMin[2];
	static long divetimeAvg[2], depthAvg[2], sacAvg[2];
};
#endif // DIVESUMMARY_H