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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "qquick3ddirectionallight_p.h"
#include "qquick3dobject_p.h"
#include <QtQuick3DRuntimeRender/private/qssgrenderlight_p.h>
#include "qquick3dnode_p_p.h"
QT_BEGIN_NAMESPACE
/*!
\qmltype DirectionalLight
\inherits Light
\inqmlmodule QtQuick3D
\brief Defines a directional light in the scene.
The directional light emits light in one direction from an unidentifiable source located
infinitely far away. This is similar to the way sunlight works in real life. A directional
light has infinite range and does not diminish.
If \l {Light::castsShadow}{castsShadow} is enabled, shadows will be parallel to the light
direction.
A directional light effectively have no position, so moving it does not
have any effect. The light will always be emitted in the direction of the
light's Z axis.
Rotating the light along its X or Y axis will change the direction of the light emission.
Scaling a directional light will only have an effect in the following cases:
\list
\li If Z scale is set to a negative number, the light will be emitted in the opposite direction.
\li If the scale of any axis is set to 0, the light will be emitted along the world's Z axis.
\note Rotating the light will then have no effect.
\endlist
Let's look at a simple example:
\qml
import QtQuick
import QtQuick3D
View3D {
anchors.fill: parent
PerspectiveCamera { z: 600 }
DirectionalLight {
}
Model {
source: "#Sphere"
scale: Qt.vector3d(4, 4, 4)
materials: PrincipledMaterial {
baseColor: "#40c060"
roughness: 0.1 // make specular highlight visible
}
}
}
\endqml
Here the DirectionalLight uses the default \c white color, emitting in the
direction of the DirectionalLight node's Z axis.
\image directionallight-1.png
Rotating 60 degrees around the X axis would lead to the following. Instead
of emitting straight in the direction of the Z axis, the light is now
pointing 60 degrees "down":
\qml
DirectionalLight {
eulerRotation.x: 60
}
\endqml
\image directionallight-2.png
For further usage examples, see \l{Qt Quick 3D - Lights Example}.
\sa PointLight, SpotLight, {Shadow Mapping}
*/
/*!
\qmlproperty real DirectionalLight::csmSplit1
\since 6.8
This property defines where the first cascade of the shadow map split will occur when
CSM is active.
Range: \c{[0.0, 1.0]}
Default value: \c{0.1}
\sa csmSplit2, csmSplit3
\note This property is only used when DirectionalLight::csmNumSplits is greater than \c{0}.
*/
/*!
\qmlproperty real DirectionalLight::csmSplit2
\since 6.8
This property defines where the second cascade of the shadow map split will occur when
CSM is active.
Range: \c{[0.0, 1.0]}
Default value: \c{0.25}
\sa csmSplit1, csmSplit3
\note This property is only used when DirectionalLight::csmNumSplits is greater than \c{1}.
*/
/*!
\qmlproperty real DirectionalLight::csmSplit3
\since 6.8
This property defines where the third cascade of the shadow map split will occur when
CSM is active.
Range: \c{[0.0, 1.0]}
Default value: \c{0.5}
\sa csmSplit1, csmSplit2
\note This property is only used when DirectionalLight::csmNumSplits is greater than \c{2}.
*/
/*!
\qmlproperty int DirectionalLight::csmNumSplits
\since 6.8
This property defines the number of splits the frustum should be split by when
rendering the shadowmap. No splits means that the shadowmap will be rendered
so that it covers the bounding box of all shadow casting and receiving objects.
Range: \c{[0, 3]}
Default value: \c{0}
\sa csmSplit1, csmSplit2, csmSplit3
*/
/*!
\qmlproperty real DirectionalLight::csmBlendRatio
\since 6.8
This property defines how much of the shadow of any cascade should be blended
together with the previous one.
Range: \c{[0.0, 1.0]}
Default value: \c{0.05}
*/
/*!
\qmlproperty bool DirectionalLight::lockShadowmapTexels
\since 6.9
When this property is enabled, the shadowmap texels are "locked" in position in the
world eliminating shadow edge shimmering at the cost of bigger shadowmap texels.
It works by using uniform sized, and texel aligned shadowmaps for each cascade.
Default value: \c{false}
*/
QQuick3DDirectionalLight::QQuick3DDirectionalLight(QQuick3DNode *parent)
: QQuick3DAbstractLight(*(new QQuick3DNodePrivate(QQuick3DNodePrivate::Type::DirectionalLight)), parent) {}
float QQuick3DDirectionalLight::csmSplit1() const
{
return m_csmSplit1;
}
float QQuick3DDirectionalLight::csmSplit2() const
{
return m_csmSplit2;
}
float QQuick3DDirectionalLight::csmSplit3() const
{
return m_csmSplit3;
}
int QQuick3DDirectionalLight::csmNumSplits() const
{
return m_csmNumSplits;
}
float QQuick3DDirectionalLight::csmBlendRatio() const
{
return m_csmBlendRatio;
}
bool QQuick3DDirectionalLight::lockShadowmapTexels() const
{
return m_lockShadowmapTexels;
}
void QQuick3DDirectionalLight::setCsmSplit1(float newcsmSplit1)
{
newcsmSplit1 = qBound(0.0f, newcsmSplit1, 1.0f);
if (qFuzzyCompare(m_csmSplit1, newcsmSplit1))
return;
m_csmSplit1 = newcsmSplit1;
emit csmSplit1Changed();
m_dirtyFlags.setFlag(QQuick3DAbstractLight::DirtyFlag::ShadowDirty);
update();
}
void QQuick3DDirectionalLight::setCsmSplit2(float newcsmSplit2)
{
newcsmSplit2 = qBound(0.0f, newcsmSplit2, 1.0f);
if (qFuzzyCompare(m_csmSplit2, newcsmSplit2))
return;
m_csmSplit2 = newcsmSplit2;
emit csmSplit2Changed();
m_dirtyFlags.setFlag(QQuick3DAbstractLight::DirtyFlag::ShadowDirty);
update();
}
void QQuick3DDirectionalLight::setCsmSplit3(float newcsmSplit3)
{
newcsmSplit3 = qBound(0.0f, newcsmSplit3, 1.0f);
if (qFuzzyCompare(m_csmSplit3, newcsmSplit3))
return;
m_csmSplit3 = newcsmSplit3;
emit csmSplit3Changed();
m_dirtyFlags.setFlag(QQuick3DAbstractLight::DirtyFlag::ShadowDirty);
update();
}
void QQuick3DDirectionalLight::setCsmNumSplits(int newcsmNumSplits)
{
newcsmNumSplits = qBound(0, newcsmNumSplits, 3);
if (m_csmNumSplits == newcsmNumSplits)
return;
m_csmNumSplits = newcsmNumSplits;
emit csmNumSplitsChanged();
m_dirtyFlags.setFlag(QQuick3DAbstractLight::DirtyFlag::ShadowDirty);
update();
}
void QQuick3DDirectionalLight::setCsmBlendRatio(float newcsmBlendRatio)
{
newcsmBlendRatio = qBound(0.0, newcsmBlendRatio, 1.0);
if (m_csmBlendRatio == newcsmBlendRatio)
return;
m_csmBlendRatio = newcsmBlendRatio;
emit csmBlendRatioChanged();
m_dirtyFlags.setFlag(QQuick3DAbstractLight::DirtyFlag::ShadowDirty);
update();
}
void QQuick3DDirectionalLight::setLockShadowmapTexels(bool newLockShadowmapTexels)
{
if (m_lockShadowmapTexels == newLockShadowmapTexels)
return;
m_lockShadowmapTexels = newLockShadowmapTexels;
emit lockShadowmapTexelsChanged();
m_dirtyFlags.setFlag(QQuick3DAbstractLight::DirtyFlag::ShadowDirty);
update();
}
QSSGRenderGraphObject *QQuick3DDirectionalLight::updateSpatialNode(QSSGRenderGraphObject *node)
{
if (!node) {
markAllDirty();
node = new QSSGRenderLight(/* defaults to directional */);
}
if (m_dirtyFlags.testFlag(DirtyFlag::ShadowDirty)) {
QSSGRenderLight *light = static_cast<QSSGRenderLight *>(node);
light->m_csmSplit1 = m_csmSplit1;
light->m_csmSplit2 = m_csmSplit2;
light->m_csmSplit3 = m_csmSplit3;
light->m_csmNumSplits = m_csmNumSplits;
light->m_csmBlendRatio = m_csmBlendRatio;
light->m_lockShadowmapTexels = m_lockShadowmapTexels;
}
QQuick3DAbstractLight::updateSpatialNode(node); // Marks the light node dirty if m_dirtyFlags != 0
return node;
}
QT_END_NAMESPACE
|