QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskStippledLineRenderer.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskStippledLineRenderer.h"
7#include "QskInternalMacros.h"
8
9QSK_QT_PRIVATE_BEGIN
10#include <private/qstroker_p.h>
11QSK_QT_PRIVATE_END
12
13namespace
14{
15 /*
16 Thanks to the hooks of the stroker classes we can make use
17 of QDashStroker without having to deal with the overhead of
18 QPainterPaths. But it might be worth to check if this could
19 be done in a shader. TODO ...
20 */
21 class DashStroker : public QDashStroker
22 {
23 public:
24 DashStroker( QskStippledLineRenderer* renderer )
25 : QDashStroker( nullptr )
26 , m_renderer( renderer )
27 {
28 setDashOffset( renderer->metrics().offset() );
29 setDashPattern( renderer->metrics().pattern() );
30
31 m_elements.reserve( 2 );
32 }
33
34 void renderDashes( qreal x1, qreal y1, qreal x2, qreal y2 )
35 {
36 if ( ( x1 == x2 ) && ( y1 == y2 ) )
37 return;
38
39 setMoveToHook( moveTo );
40 setLineToHook( lineTo );
41
42 begin( this );
43
44 m_elements.add( { QPainterPath::MoveToElement, x1, y1 } );
45 m_elements.add( { QPainterPath::LineToElement, x2, y2 } );
46
47 processCurrentSubpath();
48
49 end();
50 }
51
52 qsizetype dashCount( qreal x1, qreal y1, qreal x2, qreal y2 )
53 {
54 if ( ( x1 == x2 ) && ( y1 == y2 ) )
55 return 0;
56
57 /*
58 There should be a faster way to calculate the
59 number of points. TODO ...
60 */
61 setMoveToHook( countMoveTo );
62 setLineToHook( countLineTo );
63
64 m_count = 0;
65
66 begin( this );
67
68 m_elements.add( { QPainterPath::MoveToElement, x1, y1 } );
69 m_elements.add( { QPainterPath::LineToElement, x2, y2 } );
70
71 processCurrentSubpath();
72
73 end();
74
75 return m_count;
76 }
77
78 private:
79 static void moveTo( qfixed x, qfixed y, void* data )
80 {
81 auto stroker = reinterpret_cast< DashStroker* >( data );
82
83 stroker->m_x = x;
84 stroker->m_y = y;
85 }
86
87 static void lineTo( qfixed x, qfixed y, void* data )
88 {
89 auto stroker = reinterpret_cast< DashStroker* >( data );
90 stroker->m_renderer->renderDash( stroker->m_x, stroker->m_y, x, y );
91 }
92
93 static void countMoveTo( qfixed, qfixed, void* )
94 {
95 }
96
97 static void countLineTo( qfixed, qfixed, void* data )
98 {
99 auto stroker = reinterpret_cast< DashStroker* >( data );
100 stroker->m_count++;
101 }
102
103 QskStippledLineRenderer* m_renderer;
104
105 qsizetype m_count = 0;
106 qreal m_x, m_y;
107 };
108}
109
110QskStippledLineRenderer::QskStippledLineRenderer( const QskStippleMetrics& metrics )
111 : m_metrics( metrics )
112{
113}
114
115QskStippledLineRenderer::~QskStippledLineRenderer()
116{
117}
118
119qsizetype QskStippledLineRenderer::dashCount(
120 const QPointF& p1, const QPointF& p2 ) const
121{
122 return dashCount( p1.x(), p1.y(), p2.x(), p2.y() );
123}
124
125qsizetype QskStippledLineRenderer::dashCount( const QLineF& line ) const
126{
127 return dashCount( line.x1(), line.y1(), line.x2(), line.y2() );
128}
129
130qsizetype QskStippledLineRenderer::dashCount(
131 qreal x1, qreal y1, qreal x2, qreal y2 ) const
132{
133 auto that = const_cast< QskStippledLineRenderer* >( this );
134 return DashStroker( that ).dashCount( x1, y1, x2, y2 );
135}
136
137void QskStippledLineRenderer::renderLine( const QPointF& p1, const QPointF& p2 )
138{
139 renderLine( p1.x(), p1.y(), p2.x(), p2.y() );
140}
141
142void QskStippledLineRenderer::renderLine( const QLineF& line )
143{
144 renderLine( line.x1(), line.y1(), line.x2(), line.y2() );
145}
146
147void QskStippledLineRenderer::renderLine( qreal x1, qreal y1, qreal x2, qreal y2 )
148{
149 DashStroker( this ).renderDashes( x1, y1, x2, y2 );
150}
151
152void QskStippledLineRenderer::renderDash( qreal, qreal, qreal, qreal )
153{
154 // nop
155}