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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
/* Copyright (c) 2012-2016, Stanislaw Halik <sthalik@misaki.pl>
* Permission to use, copy, modify, and/or distribute this
* software for any purpose with or without fee is hereby granted,
* provided that the above copyright notice and this permission
* notice appear in all copies.
*/
#pragma once
#include "compat/qcopyable-mutex.hpp"
#include "options/options.hpp"
#include "compat/util.hpp"
using namespace options;
#include "export.hpp"
#include <vector>
#include <limits>
#include <memory>
#include <QObject>
#include <QPointF>
#include <QString>
#include <QMetaObject>
namespace spline_detail {
class OTR_SPLINE_EXPORT settings final : public QObject
{
Q_OBJECT
public:
bundle b;
value<QList<QPointF>> points;
settings(bundle b);
~settings() override;
signals:
void recomputed() const;
};
}
class OTR_SPLINE_EXPORT spline final
{
double bucket_size_coefficient(const QList<QPointF>& points) const;
void update_interp_data();
float get_value_internal(int x);
void add_lone_point();
float get_value_no_save_internal(double x);
static bool sort_fn(const QPointF& one, const QPointF& two);
static QPointF ensure_in_bounds(const QList<QPointF>& points, double max_x, int i);
static int element_count(const QList<QPointF>& points, double max_x);
std::shared_ptr<spline_detail::settings> s;
QMetaObject::Connection connection;
std::vector<float> data;
using interp_data_t = decltype(data);
static constexpr int value_count = 4096;
MyMutex _mutex;
QPointF last_input_value;
qreal max_x, max_y; // XXX TODO move to value<double> -sh 20171020
bool activep;
bool validp;
public:
using settings = spline_detail::settings;
void reload();
void save();
void set_bundle(bundle b);
qreal max_input() const;
qreal max_output() const;
spline();
spline(qreal maxx, qreal maxy, const QString& name);
~spline();
spline& operator=(const spline&) = default;
spline(const spline&) = default;
float get_value(double x);
float get_value_no_save(double x) const;
DEFUN_WARN_UNUSED bool get_last_value(QPointF& point);
void remove_point(int i);
void clear();
void add_point(QPointF pt);
void add_point(double x, double y);
void move_point(int idx, QPointF pt);
QList<QPointF> get_points() const;
void set_max_input(qreal MaxInput);
void set_max_output(qreal MaxOutput);
void set_tracking_active(bool value);
bundle get_bundle();
void ensure_valid(const QList<QPointF>& the_points);
std::shared_ptr<settings> get_settings();
std::shared_ptr<const settings> get_settings() const;
using points_t = decltype(s->points());
int get_point_count() const;
};
|