22 #if QT_VERSION < QT_VERSION_CHECK(5, 10, 0)
23 #include <Qt3DExtras/QDiffuseMapMaterial>
25 #include <Qt3DExtras/QDiffuseSpecularMaterial>
27 #include <Qt3DExtras/QPhongMaterial>
28 #include <Qt3DRender/QPaintedTextureImage>
29 #include <Qt3DRender/QTexture>
30 #include <Qt3DRender/QParameter>
31 #include <Qt3DRender/QEffect>
37 return QStringLiteral(
"phongtextured" );
70 return mTextureRotation;
77 mShininess = elem.attribute( QStringLiteral(
"shininess" ) ).toFloat();
78 mDiffuseTexturePath = elem.attribute( QStringLiteral(
"diffuse_texture_path" ), QString() );
79 mTextureScale = elem.attribute( QStringLiteral(
"texture_scale" ), QString(
"1.0" ) ).toFloat();
80 mTextureRotation = elem.attribute( QStringLiteral(
"texture-rotation" ), QString(
"0.0" ) ).toFloat();
89 elem.setAttribute( QStringLiteral(
"shininess" ), mShininess );
90 elem.setAttribute( QStringLiteral(
"diffuse_texture_path" ), mDiffuseTexturePath );
91 elem.setAttribute( QStringLiteral(
"texture_scale" ), mTextureScale );
92 elem.setAttribute( QStringLiteral(
"texture-rotation" ), mTextureRotation );
109 bool fitsInCache =
false;
113 if ( !textureSourceImage.isNull() )
116 #if QT_VERSION < QT_VERSION_CHECK(5, 10, 0)
117 Qt3DExtras::QDiffuseMapMaterial *material =
new Qt3DExtras::QDiffuseMapMaterial;
118 material->diffuse()->addTextureImage( textureImage );
120 material->diffuse()->wrapMode()->setX( Qt3DRender::QTextureWrapMode::Repeat );
121 material->diffuse()->wrapMode()->setY( Qt3DRender::QTextureWrapMode::Repeat );
122 material->diffuse()->wrapMode()->setZ( Qt3DRender::QTextureWrapMode::Repeat );
124 Qt3DExtras::QDiffuseSpecularMaterial *material =
new Qt3DExtras::QDiffuseSpecularMaterial;
126 Qt3DRender::QTexture2D *texture =
new Qt3DRender::QTexture2D();
127 texture->addTextureImage( textureImage );
129 texture->wrapMode()->setX( Qt3DRender::QTextureWrapMode::Repeat );
130 texture->wrapMode()->setY( Qt3DRender::QTextureWrapMode::Repeat );
131 texture->wrapMode()->setZ( Qt3DRender::QTextureWrapMode::Repeat );
133 texture->setSamples( 4 );
135 texture->setGenerateMipMaps(
true );
136 texture->setMagnificationFilter( Qt3DRender::QTexture2D::Linear );
137 texture->setMinificationFilter( Qt3DRender::QTexture2D::Linear );
139 material->setDiffuse( QVariant::fromValue( texture ) );
142 material->setSpecular( mSpecular );
143 material->setAmbient( mAmbient );
144 material->setShininess( mShininess );
145 material->setTextureScale( mTextureScale );
159 Qt3DExtras::QPhongMaterial *material =
new Qt3DExtras::QPhongMaterial;
160 material->setAmbient( mAmbient );
161 material->setSpecular( mSpecular );
162 material->setShininess( mShininess );
183 QMap<QString, QString> parameters;
184 parameters[ QStringLiteral(
"Ka" ) ] = QStringLiteral(
"%1 %2 %3" ).arg( mAmbient.redF() ).arg( mAmbient.greenF() ).arg( mAmbient.blueF() );
185 parameters[ QStringLiteral(
"Ks" ) ] = QStringLiteral(
"%1 %2 %3" ).arg( mSpecular.redF() ).arg( mSpecular.greenF() ).arg( mSpecular.blueF() );
186 parameters[ QStringLiteral(
"Ns" ) ] = QString::number( mShininess );
192 Qt3DRender::QParameter *ambientParameter =
new Qt3DRender::QParameter( QStringLiteral(
"ka" ), QColor::fromRgbF( 0.05f, 0.05f, 0.05f, 1.0f ) );
193 Qt3DRender::QParameter *specularParameter =
new Qt3DRender::QParameter( QStringLiteral(
"ks" ), QColor::fromRgbF( 0.01f, 0.01f, 0.01f, 1.0f ) );
194 Qt3DRender::QParameter *shininessParameter =
new Qt3DRender::QParameter( QStringLiteral(
"shininess" ), 150.0f );
196 ambientParameter->setValue( mAmbient );
197 specularParameter->setValue( mSpecular );
198 shininessParameter->setValue( mShininess );
200 effect->addParameter( ambientParameter );
201 effect->addParameter( specularParameter );
202 effect->addParameter( shininessParameter );
virtual void writeXml(QDomElement &element, const QgsReadWriteContext &) const
Writes settings to a DOM element.
virtual void readXml(const QDomElement &element, const QgsReadWriteContext &)
Reads settings from a DOM element.
static QgsImageCache * imageCache()
Returns the application's image cache, used for caching resampled versions of raster images.
QImage pathAsImage(const QString &path, const QSize size, const bool keepAspectRatio, const double opacity, bool &fitsInCache, bool blocking=false, bool *isMissing=nullptr)
Returns the specified path rendered as an image.
Holds an image that can be used as a texture in the 3D view.
QColor selectionColor() const
Returns the color for representing materials in a selected state.
bool isSelected() const
Returns true if the material should represent a selected state.
QgsPhongTexturedMaterialSettings()=default
Constructor for QgsPhongTexturedMaterialSettings.
void addParametersToEffect(Qt3DRender::QEffect *effect) const override
Adds parameters from the material to a destination effect.
void writeXml(QDomElement &elem, const QgsReadWriteContext &context) const override
Writes settings to a DOM element.
float textureRotation() const
Returns the texture rotation, in degrees.
QString type() const override
Returns the unique type name for the material.
void readXml(const QDomElement &elem, const QgsReadWriteContext &context) override
Reads settings from a DOM element.
static bool supportsTechnique(QgsMaterialSettingsRenderingTechnique technique)
Returns true if the specified technique is supported by the Phong material.
QgsPhongTexturedMaterialSettings * clone() const override
Clones the material settings.
static QgsAbstractMaterialSettings * create()
Returns a new instance of QgsPhongTexturedMaterialSettings.
QMap< QString, QString > toExportParameters() const override
Returns the parameters to be exported to .mtl file.
Qt3DRender::QMaterial * toMaterial(QgsMaterialSettingsRenderingTechnique technique, const QgsMaterialContext &context) const override
Creates a new QMaterial object representing the material settings.
The class is used as a container of context for various read/write operations on other objects.
static QColor decodeColor(const QString &str)
static QString encodeColor(const QColor &color)
QgsMaterialSettingsRenderingTechnique
Material rendering techniques 3.
@ Points
Point based rendering, requires point data.
@ Triangles
Triangle based rendering (default)
@ TrianglesFromModel
Triangle based rendering, using a model object source.
@ Lines
Line based rendering, requires line data.
@ TrianglesDataDefined
Triangle based rendering with possibility of datadefined color.
@ InstancedPoints
Instanced based rendering, requiring triangles and point data.
@ TrianglesWithFixedTexture
Triangle based rendering, using a fixed, non-user-configurable texture (e.g. for terrain rendering)