6#include "QskBasicLinesNode.h"
7#include "QskInternalMacros.h"
9#include <qsgmaterial.h>
10#include <qsggeometry.h>
14#include <private/qsgnode_p.h>
17static inline QVector4D qskColorVector(
const QColor& c, qreal opacity)
19 const auto a = c.alphaF() * opacity;
20 return QVector4D( c.redF() * a, c.greenF() * a, c.blueF() * a, a );
23static inline QVector2D qskOrigin(
24 const QRect& rect, Qt::Orientations orientations )
27 ( orientations & Qt::Horizontal ) ? 0.5 * rect.width() : 0.0,
28 ( orientations & Qt::Vertical ) ? 0.5 * rect.height() : 0.0
32#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
33 #include <QSGMaterialRhiShader>
34 using RhiShader = QSGMaterialRhiShader;
36 using RhiShader = QSGMaterialShader;
41 class Material final :
public QSGMaterial
46#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
47 QSGMaterialShader* createShader()
const override;
49 QSGMaterialShader* createShader( QSGRendererInterface::RenderMode )
const override;
52 QSGMaterialType* type()
const override;
54 int compare(
const QSGMaterial* other )
const override;
56 QColor m_color = QColor( 255, 255, 255 );
57 Qt::Orientations m_pixelAlignment;
60 class ShaderRhi final :
public RhiShader
66 const QString root(
":/qskinny/shaders/" );
68 setShaderFileName( VertexStage, root +
"crisplines.vert.qsb" );
69 setShaderFileName( FragmentStage, root +
"crisplines.frag.qsb" );
72 bool updateUniformData( RenderState& state,
73 QSGMaterial* newMaterial, QSGMaterial* oldMaterial )
override
75 auto matOld =
static_cast< Material*
>( oldMaterial );
76 auto matNew =
static_cast< Material*
>( newMaterial );
78 Q_ASSERT( state.uniformData()->size() >= 88 );
80 auto data = state.uniformData()->data();
83 const auto matrix = state.combinedMatrix();
85 if ( state.isMatrixDirty() )
87 memcpy( data + 0, matrix.constData(), 64 );
91 if ( ( matOld ==
nullptr ) || ( matNew->m_color != matOld->m_color )
92 || state.isOpacityDirty() )
94 const auto v4 = qskColorVector( matNew->m_color, state.opacity() );
95 memcpy( data + 64, &v4, 16 );
99 if ( state.isMatrixDirty() || ( matOld ==
nullptr )
100 || ( matNew->m_pixelAlignment != matOld->m_pixelAlignment ) )
109 const auto origin = qskOrigin(
110 state.viewportRect(), matNew->m_pixelAlignment );
112 memcpy( data + 80, &origin, 8 );
121#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
127 class ShaderGL final :
public QSGMaterialShader
132 const QString root(
":/qskinny/shaders/" );
134 setShaderSourceFile( QOpenGLShader::Vertex,
135 ":/qskinny/shaders/crisplines.vert" );
137 setShaderSourceFile( QOpenGLShader::Fragment,
138 ":/qt-project.org/scenegraph/shaders/flatcolor.frag" );
141 char const*
const* attributeNames()
const override
143 static char const*
const names[] = {
"in_vertex",
nullptr };
147 void initialize()
override
149 QSGMaterialShader::initialize();
153 m_matrixId = p->uniformLocation(
"matrix" );
154 m_colorId = p->uniformLocation(
"color" );
155 m_originId = p->uniformLocation(
"origin" );
158 void updateState(
const QSGMaterialShader::RenderState& state,
159 QSGMaterial* newMaterial, QSGMaterial* oldMaterial)
override
163 const auto matrix = state.combinedMatrix();
165 if ( state.isMatrixDirty() )
166 p->setUniformValue( m_matrixId, matrix );
168 bool updateMaterial = ( oldMaterial == nullptr )
169 || newMaterial->compare( oldMaterial ) != 0;
171 updateMaterial |= state.isCachedMaterialDataDirty();
173 if ( updateMaterial )
175 auto material =
static_cast< const Material*
>( newMaterial );
177 p->setUniformValue( m_colorId,
178 qskColorVector( material->m_color, state.opacity() ) );
180 const auto origin = qskOrigin(
181 state.viewportRect(), material->m_pixelAlignment );;
182 p->setUniformValue( m_originId, origin );
197#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
198 setFlag( QSGMaterial::SupportsRhiShader,
true );
202#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
204QSGMaterialShader* Material::createShader()
const
206 if ( !( flags() & QSGMaterial::RhiShaderWanted ) )
207 return new ShaderGL();
209 return new ShaderRhi();
214QSGMaterialShader* Material::createShader( QSGRendererInterface::RenderMode )
const
216 return new ShaderRhi();
221QSGMaterialType* Material::type()
const
223 static QSGMaterialType staticType;
227int Material::compare(
const QSGMaterial* other )
const
229 auto material =
static_cast< const Material*
>( other );
231 if ( ( material->m_color == m_color )
232 && ( material->m_pixelAlignment == m_pixelAlignment ) )
237 return QSGMaterial::compare( other );
240class QskBasicLinesNodePrivate final :
public QSGGeometryNodePrivate
243 QskBasicLinesNodePrivate()
244 : geometry( QSGGeometry::defaultAttributes_Point2D(), 0 )
246 geometry.setDrawingMode( QSGGeometry::DrawLines );
249 QSGGeometry geometry;
253QskBasicLinesNode::QskBasicLinesNode()
254 : QSGGeometryNode( *new QskBasicLinesNodePrivate )
258 setGeometry( &d->geometry );
259 setMaterial( &d->material );
262QskBasicLinesNode::~QskBasicLinesNode()
266void QskBasicLinesNode::setPixelAlignment( Qt::Orientations orientations )
270 if ( orientations != d->material.m_pixelAlignment )
272 d->material.m_pixelAlignment = orientations;
273 markDirty( QSGNode::DirtyMaterial );
277Qt::Orientations QskBasicLinesNode::pixelAlignment()
const
279 return d_func()->material.m_pixelAlignment;
282void QskBasicLinesNode::setColor(
const QColor& color )
286 const auto c = color.toRgb();
287 if ( c != d->material.m_color )
289 d->material.m_color = c;
290 markDirty( QSGNode::DirtyMaterial );
294QColor QskBasicLinesNode::color()
const
296 return d_func()->material.m_color;
299void QskBasicLinesNode::setLineWidth(
float lineWidth )
303 lineWidth = std::max( lineWidth, 0.0f );
304 if( lineWidth != d->geometry.lineWidth() )
305 d->geometry.setLineWidth( lineWidth );
308float QskBasicLinesNode::lineWidth()
const
310 return d_func()->geometry.lineWidth();