X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Frender-tasks%2Fscene-graph-camera.cpp;h=71a2d52f1afc21d7a9f07237ad7109dc73763dfc;hb=70d8a1699a38f4f72b6d57f8af6da6651d6902ec;hp=d59ec486e15d874fa13c2d36d8fb2727da854cb9;hpb=9697546f6395000a500259997c415d9ff3c2e337;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/render-tasks/scene-graph-camera.cpp b/dali/internal/update/render-tasks/scene-graph-camera.cpp index d59ec48..71a2d52 100644 --- a/dali/internal/update/render-tasks/scene-graph-camera.cpp +++ b/dali/internal/update/render-tasks/scene-graph-camera.cpp @@ -31,6 +31,10 @@ namespace // unnamed namespace { const uint32_t UPDATE_COUNT = 2u; // Update projection or view matrix this many frames after a change const uint32_t COPY_PREVIOUS_MATRIX = 1u; // Copy view or projection matrix from previous frame + +//For reflection and clipping plane +const float REFLECTION_NORMALIZED_DEVICE_COORDINATE_PARAMETER_A = 2.0f; +const float REFLECTION_NORMALIZED_DEVICE_COORDINATE_PARAMETER_D = 1.0f; } namespace Dali @@ -96,13 +100,12 @@ void Frustum(Matrix& result, float left, float right, float bottom, float top, f m[12] = m[13] = m[15] = 0.0f; } -void Perspective(Matrix& result, float fovy, float aspect, float near, float far, bool invertYAxis, const Vector2& stereoBias ) +void Perspective(Matrix& result, float fovy, float aspect, float near, float far, bool invertYAxis ) { float frustumH = tanf( fovy * 0.5f ) * near; float frustumW = frustumH * aspect; - Vector2 bias = stereoBias * 0.5f; - Frustum(result, -(frustumW + bias.x), frustumW - bias.x, -(frustumH + bias.y), frustumH - bias.y, near, far, invertYAxis); + Frustum(result, -frustumW, frustumW, -frustumH, frustumH, near, far, invertYAxis); } void Orthographic(Matrix& result, float left, float right, float bottom, float top, float near, float far, bool invertYAxis) @@ -152,7 +155,6 @@ const float Camera::DEFAULT_TOP_CLIPPING_PLANE(-400.0f); const float Camera::DEFAULT_BOTTOM_CLIPPING_PLANE(400.0f); const float Camera::DEFAULT_NEAR_CLIPPING_PLANE( 800.0f ); // default height of the screen const float Camera::DEFAULT_FAR_CLIPPING_PLANE( DEFAULT_NEAR_CLIPPING_PLANE + 2.f * DEFAULT_NEAR_CLIPPING_PLANE ); -const Vector2 Camera::DEFAULT_STEREO_BIAS( 0.0f, 0.0f ); const Vector3 Camera::DEFAULT_TARGET_POSITION( 0.0f, 0.0f, 0.0f ); @@ -171,7 +173,6 @@ Camera::Camera() mBottomClippingPlane( DEFAULT_BOTTOM_CLIPPING_PLANE ), mNearClippingPlane( DEFAULT_NEAR_CLIPPING_PLANE ), mFarClippingPlane( DEFAULT_FAR_CLIPPING_PLANE ), - mStereoBias( DEFAULT_STEREO_BIAS ), mTargetPosition( DEFAULT_TARGET_POSITION ), mViewMatrix(), mProjectionMatrix(), @@ -222,12 +223,6 @@ void Camera::SetAspectRatio( float aspectRatio ) mUpdateProjectionFlag = UPDATE_COUNT; } -void Camera::SetStereoBias( const Vector2& stereoBias ) -{ - mStereoBias = stereoBias; - mUpdateProjectionFlag = UPDATE_COUNT; -} - void Camera::SetLeftClippingPlane( float leftClippingPlane ) { mLeftClippingPlane = leftClippingPlane; @@ -270,6 +265,69 @@ void Camera::SetTargetPosition( const Vector3& targetPosition ) mUpdateViewFlag = UPDATE_COUNT; } + + +void VectorReflectedByPlane(Vector4 &out, Vector4 &in, Vector4 &plane) +{ + float d = float(2.0) * plane.Dot(in); + out.x = static_cast(in.x - plane.x*d); + out.y = static_cast(in.y - plane.y*d); + out.z = static_cast(in.z - plane.z*d); + out.w = static_cast(in.w - plane.w*d); +} + +void Camera::AdjustNearPlaneForPerspective( Matrix& perspective, const Vector4& clipPlane ) +{ + Vector4 q; + float* v = perspective.AsFloat(); + + q.x = (Sign(clipPlane.x) + v[8]) / v[0]; + q.y = (Sign(clipPlane.y) + v[9]) / v[5]; + q.z = -1.0f; + q.w = (1.0f + v[10]) / v[14]; + + // Calculate the scaled plane vector + Vector4 c = clipPlane * (REFLECTION_NORMALIZED_DEVICE_COORDINATE_PARAMETER_A / q.Dot( clipPlane)); + + // Replace the third row of the projection v + v[2] = c.x; + v[6] = c.y; + v[10] = c.z + REFLECTION_NORMALIZED_DEVICE_COORDINATE_PARAMETER_D; + v[14] = c.w; +} + +void Camera::SetReflectByPlane( const Vector4& plane ) +{ + float* v = mReflectionMtx.AsFloat(); + float _2ab = -2.0f * plane.x * plane.y; + float _2ac = -2.0f * plane.x * plane.z; + float _2bc = -2.0f * plane.y * plane.z; + + v[0] = 1.0f - 2.0f * plane.x * plane.x; + v[1] = _2ab; + v[2] = _2ac; + v[3] = 0.0f; + + v[4] = _2ab; + v[5] = 1.0f - 2.0f * plane.y * plane.y; + v[6] = _2bc; + v[7] = 0.0f; + + v[8] = _2ac; + v[9] = _2bc; + v[10] = 1.0f - 2.0f * plane.z * plane.z; + v[11] = 0.0f; + + v[12] = - 2 * plane.x * plane.w; + v[13] = - 2 * plane.y * plane.w; + v[14] = - 2 * plane.z * plane.w; + v[15] = 1.0f; + + mUseReflection = true; + mReflectionPlane = plane; + mUpdateViewFlag = UPDATE_COUNT; +} + const Matrix& Camera::GetProjectionMatrix( BufferIndex bufferIndex ) const { return mProjectionMatrix[ bufferIndex ]; @@ -358,11 +416,27 @@ uint32_t Camera::UpdateViewMatrix( BufferIndex updateBufferIndex ) { Matrix& viewMatrix = mViewMatrix.Get( updateBufferIndex ); viewMatrix = mNode->GetWorldMatrix( updateBufferIndex ); + + if (mUseReflection) + { + const Matrix& owningNodeMatrix( mNode->GetWorldMatrix( updateBufferIndex ) ); + Vector3 position{}, scale{}; + Quaternion orientation{}; + owningNodeMatrix.GetTransformComponents( position, orientation, scale ); + mReflectionEye = position; + mUseReflectionClip = true; + + Matrix& viewMatrix = mViewMatrix.Get( updateBufferIndex ); + Matrix oldViewMatrix( viewMatrix ); + Matrix::Multiply(viewMatrix, oldViewMatrix, mReflectionMtx); + } + viewMatrix.Invert(); mViewMatrix.SetDirty( updateBufferIndex ); break; } - // camera orientation constrained to look at a target + + // camera orientation constrained to look at a target case Dali::Camera::LOOK_AT_TARGET: { const Matrix& owningNodeMatrix( mNode->GetWorldMatrix( updateBufferIndex ) ); @@ -370,7 +444,42 @@ uint32_t Camera::UpdateViewMatrix( BufferIndex updateBufferIndex ) Quaternion orientation; owningNodeMatrix.GetTransformComponents( position, orientation, scale ); Matrix& viewMatrix = mViewMatrix.Get( updateBufferIndex ); - LookAt( viewMatrix, position, mTargetPosition, orientation.Rotate( Vector3::YAXIS ) ); + + if (mUseReflection) + { + Vector3 up = orientation.Rotate( Vector3::YAXIS ); + Vector4 position4 = Vector4(position); + Vector4 target4 = Vector4(mTargetPosition); + Vector4 up4 = Vector4(up); + Vector4 positionNew; + Vector4 targetNew; + Vector4 upNew; + Vector3 positionNew3; + Vector3 targetNewVector3; + Vector3 upNew3; + + // eye + VectorReflectedByPlane(positionNew, position4, mReflectionPlane); + VectorReflectedByPlane(targetNew, target4, mReflectionPlane); + VectorReflectedByPlane(upNew, up4, mReflectionPlane); + + positionNew3 = Vector3(positionNew); + targetNewVector3 = Vector3(targetNew); + upNew3 = Vector3(upNew); + LookAt(viewMatrix, positionNew3, targetNewVector3, upNew3 ); + + Matrix oldViewMatrix( viewMatrix ); + Matrix tmp; + tmp.SetIdentityAndScale(Vector3(-1.0, 1.0,1.0)); + Matrix::Multiply(viewMatrix, oldViewMatrix, tmp); + + mReflectionEye = positionNew; + mUseReflectionClip = true; + } + else + { + LookAt( viewMatrix, position, mTargetPosition, orientation.Rotate( Vector3::YAXIS ) ); + } mViewMatrix.SetDirty( updateBufferIndex ); break; } @@ -501,8 +610,33 @@ uint32_t Camera::UpdateProjection( BufferIndex updateBufferIndex ) mAspectRatio, mNearClippingPlane, mFarClippingPlane, - mInvertYAxis, - mStereoBias ); + mInvertYAxis ); + + //need to apply custom clipping plane + if (mUseReflectionClip) + { + Matrix& viewMatrix = mViewMatrix.Get( updateBufferIndex ); + Matrix viewInv = viewMatrix; + viewInv.Invert(); + viewInv.Transpose(); + + Dali::Vector4 adjReflectPlane = mReflectionPlane; + float d = mReflectionPlane.Dot(mReflectionEye); + if (d < 0) + { + adjReflectPlane.w = -adjReflectPlane.w; + } + + Vector4 customClipping = viewInv * adjReflectPlane; + AdjustNearPlaneForPerspective(projectionMatrix, customClipping); + + // Invert Z + Matrix matZ; + matZ.SetIdentity(); + float* vZ = matZ.AsFloat(); + vZ[10] = -vZ[10]; + Matrix::Multiply(projectionMatrix, projectionMatrix , matZ); + } break; } case Dali::Camera::ORTHOGRAPHIC_PROJECTION: