2017-04-27 18:25:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-05-28 19:23:49 +00:00
|
|
|
#ifndef DIVEPLANNERMODEL_H
|
|
|
|
#define DIVEPLANNERMODEL_H
|
|
|
|
|
|
|
|
#include <QAbstractTableModel>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
2019-08-05 18:43:06 +00:00
|
|
|
#include "core/deco.h"
|
|
|
|
#include "core/planner.h"
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
class DivePlannerPointsModel : public QAbstractTableModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
static DivePlannerPointsModel *instance();
|
|
|
|
enum Sections {
|
|
|
|
REMOVE,
|
|
|
|
DEPTH,
|
|
|
|
DURATION,
|
|
|
|
RUNTIME,
|
|
|
|
GAS,
|
|
|
|
CCSETPOINT,
|
2018-03-28 20:50:28 +00:00
|
|
|
DIVEMODE,
|
2015-05-28 19:23:49 +00:00
|
|
|
COLUMNS
|
|
|
|
};
|
|
|
|
enum Mode {
|
|
|
|
NOTHING,
|
|
|
|
PLAN,
|
|
|
|
ADD
|
|
|
|
};
|
2018-09-29 20:13:44 +00:00
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
|
|
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
|
|
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
2017-10-11 20:03:03 +00:00
|
|
|
void gasChange(const QModelIndex &index, int newcylinderid);
|
2017-10-11 19:27:06 +00:00
|
|
|
void cylinderRenumber(int mapping[]);
|
2015-05-28 19:23:49 +00:00
|
|
|
void removeSelectedPoints(const QVector<int> &rows);
|
|
|
|
void setPlanMode(Mode mode);
|
|
|
|
bool isPlanner();
|
|
|
|
void createSimpleDive();
|
|
|
|
void setupStartTime();
|
|
|
|
void clear();
|
|
|
|
Mode currentMode() const;
|
|
|
|
bool setRecalc(bool recalc);
|
|
|
|
bool recalcQ();
|
2016-07-06 12:40:28 +00:00
|
|
|
bool tankInUse(int cylinderid);
|
2015-05-28 19:23:49 +00:00
|
|
|
void setupCylinders();
|
2016-07-06 12:40:35 +00:00
|
|
|
bool updateMaxDepth();
|
2015-05-28 19:23:49 +00:00
|
|
|
/**
|
|
|
|
* @return the row number.
|
|
|
|
*/
|
|
|
|
void editStop(int row, divedatapoint newData);
|
|
|
|
divedatapoint at(int row);
|
|
|
|
int size();
|
|
|
|
struct diveplan &getDiveplan();
|
|
|
|
int lastEnteredPoint();
|
|
|
|
void removeDeco();
|
|
|
|
static bool addingDeco;
|
2017-11-24 13:17:01 +00:00
|
|
|
struct deco_state final_deco_state;
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
public
|
|
|
|
slots:
|
2018-06-17 11:41:06 +00:00
|
|
|
int addStop(int millimeters = 0, int seconds = 0, int cylinderid_in = -1, int ccpoint = 0, bool entered = true, enum divemode_t = UNDEF_COMP_TYPE);
|
2015-05-28 19:23:49 +00:00
|
|
|
void addCylinder_clicked();
|
|
|
|
void setGFHigh(const int gfhigh);
|
2017-12-19 18:15:53 +00:00
|
|
|
void setGFLow(const int gflow);
|
2016-09-24 08:02:07 +00:00
|
|
|
void setVpmbConservatism(int level);
|
2015-05-28 19:23:49 +00:00
|
|
|
void setSurfacePressure(int pressure);
|
|
|
|
void setSalinity(int salinity);
|
|
|
|
int getSurfacePressure();
|
|
|
|
void setBottomSac(double sac);
|
|
|
|
void setDecoSac(double sac);
|
|
|
|
void setStartTime(const QTime &t);
|
|
|
|
void setStartDate(const QDate &date);
|
|
|
|
void setLastStop6m(bool value);
|
|
|
|
void setDropStoneMode(bool value);
|
|
|
|
void setVerbatim(bool value);
|
|
|
|
void setDisplayRuntime(bool value);
|
|
|
|
void setDisplayDuration(bool value);
|
|
|
|
void setDisplayTransitions(bool value);
|
2017-09-18 14:10:47 +00:00
|
|
|
void setDisplayVariations(bool value);
|
2015-07-03 21:07:58 +00:00
|
|
|
void setDecoMode(int mode);
|
2015-05-28 19:23:49 +00:00
|
|
|
void setSafetyStop(bool value);
|
|
|
|
void savePlan();
|
|
|
|
void saveDuplicatePlan();
|
|
|
|
void remove(const QModelIndex &index);
|
|
|
|
void cancelPlan();
|
|
|
|
void createTemporaryPlan();
|
|
|
|
void deleteTemporaryPlan();
|
|
|
|
void loadFromDive(dive *d);
|
|
|
|
void emitDataChanged();
|
|
|
|
void setRebreatherMode(int mode);
|
|
|
|
void setReserveGas(int reserve);
|
2015-06-22 11:48:42 +00:00
|
|
|
void setSwitchAtReqStop(bool value);
|
2015-06-19 10:25:03 +00:00
|
|
|
void setMinSwitchDuration(int duration);
|
2019-03-25 21:40:59 +00:00
|
|
|
void setSurfaceSegment(int duration);
|
2017-02-11 19:24:18 +00:00
|
|
|
void setSacFactor(double factor);
|
|
|
|
void setProblemSolvingTime(int minutes);
|
2017-10-03 08:06:15 +00:00
|
|
|
void setAscrate75(int rate);
|
|
|
|
void setAscrate50(int rate);
|
|
|
|
void setAscratestops(int rate);
|
|
|
|
void setAscratelast6m(int rate);
|
|
|
|
void setDescrate(int rate);
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void planCreated();
|
|
|
|
void planCanceled();
|
|
|
|
void cylinderModelEdited();
|
|
|
|
void startTimeChanged(QDateTime);
|
|
|
|
void recreationChanged(bool);
|
2015-06-16 12:37:02 +00:00
|
|
|
void calculatedPlanNotes();
|
2017-11-27 16:36:21 +00:00
|
|
|
void variationsComputed(QString);
|
2015-05-28 19:23:49 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
explicit DivePlannerPointsModel(QObject *parent = 0);
|
|
|
|
void createPlan(bool replanCopy);
|
|
|
|
struct diveplan diveplan;
|
2017-11-27 16:36:21 +00:00
|
|
|
struct divedatapoint *cloneDiveplan(struct diveplan *plan_src, struct diveplan *plan_copy);
|
2019-10-17 20:56:40 +00:00
|
|
|
void computeVariations(struct diveplan *diveplan, const struct deco_state *ds);
|
|
|
|
void computeVariationsFreeDeco(struct diveplan *diveplan, struct deco_state *ds);
|
2017-08-29 10:26:00 +00:00
|
|
|
int analyzeVariations(struct decostop *min, struct decostop *mid, struct decostop *max, const char *unit);
|
2015-05-28 19:23:49 +00:00
|
|
|
Mode mode;
|
|
|
|
bool recalc;
|
|
|
|
QVector<divedatapoint> divepoints;
|
|
|
|
QDateTime startTime;
|
2017-08-29 09:41:30 +00:00
|
|
|
int instanceCounter = 0;
|
2017-11-22 19:42:33 +00:00
|
|
|
struct deco_state ds_after_previous_dives;
|
2015-05-28 19:23:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|