forked from scantailor/scantailor
-
Notifications
You must be signed in to change notification settings - Fork 6
/
BubbleAnimation.cpp
103 lines (87 loc) · 3 KB
/
BubbleAnimation.cpp
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
/*
Scan Tailor - Interactive post-processing tool for scanned pages.
Copyright (C) 2007-2009 Joseph Artsimovich <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "BubbleAnimation.h"
#include "imageproc/Constants.h"
#include "imageproc/ColorInterpolation.h"
#include <QPaintDevice>
#include <QPainter>
#include <QColor>
#include <QPointF>
#include <QPen>
#include <QBrush>
#include <Qt>
#include <algorithm>
#include <math.h>
#include <assert.h>
using namespace imageproc;
BubbleAnimation::BubbleAnimation(int const num_bubbles)
: m_numBubbles(num_bubbles),
m_curFrame(0)
{
assert(m_numBubbles > 0);
}
bool
BubbleAnimation::nextFrame(
QColor const& head_color, QColor const& tail_color,
QPaintDevice* pd, QRectF rect)
{
if (rect.isNull()) {
rect = QRectF(0.0, 0.0, pd->width(), pd->height());
}
QPainter painter(pd);
return nextFrame(head_color, tail_color, &painter, rect);
}
bool
BubbleAnimation::nextFrame(
QColor const& head_color, QColor const& tail_color,
QPainter* painter, QRectF const rect)
{
QPointF const center(rect.center());
double const radius = std::min(
center.x() - rect.x(), center.y() - rect.y()
);
double const PI = imageproc::constants::PI;
double const arc_fraction_as_radius = 0.25;
// We have the following system of equations:
// bubble_radius = arc_between_bubbles * arc_fraction_as_radius;
// arc_between_bubbles = 2.0 * PI * reduced_radius / m_numBubbles;
// reduced_radius = radius - bubble_radius.
// Solving this system of equations, we get:
double const reduced_radius = radius / (
1.0 + 2.0 * PI * arc_fraction_as_radius / m_numBubbles
);
double const bubble_radius = radius - reduced_radius;
double const tail_length = 0.5 * m_numBubbles;
painter->setRenderHint(QPainter::Antialiasing);
painter->setPen(Qt::NoPen);
for (int i = 0; i < m_numBubbles; ++i) {
double const angle = -0.5 * PI + 2.0 * PI * (m_curFrame - i) / m_numBubbles;
double const s = sin(angle);
double const c = cos(angle);
QPointF const vec(c * reduced_radius, s * reduced_radius);
QRectF r(0.0, 0.0, 2.0 * bubble_radius, 2.0 * bubble_radius);
r.moveCenter(center + vec);
double const color_dist = std::min(1.0, i / tail_length);
painter->setBrush(colorInterpolation(head_color, tail_color, color_dist));
painter->drawEllipse(r);
}
if (m_curFrame + 1 < m_numBubbles) {
++m_curFrame;
return true;
} else {
m_curFrame = 0;
return false;
}
}