Update contrib.
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: Implementation of the doppler effect class
27 #include <DopplerBase.h>
37 #define QUARTER_PI 1570
39 // ============================ MEMBER FUNCTIONS ===============================
41 // -----------------------------------------------------------------------------
43 // C++ default constructor can NOT contain any code, that
45 // -----------------------------------------------------------------------------
47 EXPORT_C CDoppler::CDoppler()
49 iDataPckgTo(iDopplerData),
50 iDataPckgFrom(iDopplerData)
55 EXPORT_C CDoppler::~CDoppler()
60 // -----------------------------------------------------------------------------
61 // CDoppler::CartesianVelocity
62 // -----------------------------------------------------------------------------
65 EXPORT_C void CDoppler::CartesianVelocity( TInt32& aX, TInt32& aY, TInt32& aZ )
67 aX = iDopplerData.iVelocityX;
68 aY = iDopplerData.iVelocityY;
69 aZ = iDopplerData.iVelocityZ;
72 // -----------------------------------------------------------------------------
74 // -----------------------------------------------------------------------------
77 EXPORT_C TUint32 CDoppler::Factor() const
79 return iDopplerData.iFactor;
82 // -----------------------------------------------------------------------------
83 // CDoppler::FactorMax
84 // -----------------------------------------------------------------------------
87 EXPORT_C TUint32 CDoppler::FactorMax() const
89 return iDopplerData.iMaxFactor;
91 // -----------------------------------------------------------------------------
92 // CDoppler::SetCartesianVelocityL
93 // -----------------------------------------------------------------------------
96 EXPORT_C void CDoppler::SetCartesianVelocityL( TInt32 aX, TInt32 aY, TInt32 aZ )
98 iDopplerData.iVelocityX = aX;
99 iDopplerData.iVelocityY = aY;
100 iDopplerData.iVelocityZ = aZ;
103 TReal SqrtXYZ = 0, squareX = 0, squareY = 0, squareZ = 0;
104 Math::Pow(squareX, aX, 2);
105 Math::Pow(squareY, aY, 2);
106 Math::Pow(squareZ, aZ, 2);
108 TReal sum = squareX + squareY + squareZ;
110 Math::Sqrt(SqrtXYZ, sum);
113 if(!((aX==0) && (aZ==0)))
116 TReal zDividedByXAtan = atan2 (-aX, -aZ);
118 if (zDividedByXAtan > 0)
119 iDopplerData.iAzimuth = -(TInt32) (zDividedByXAtan * 1000 + 0.5);
121 iDopplerData.iAzimuth = -(TInt32) (zDividedByXAtan * 1000 - 0.5);
123 // else { we are exactly on Y-axis and therefore azimuth is undefined; let's use the previous azimuth value instead }
126 if (!((aX ==0) && (aY == 0) && (aZ == 0)))
130 TReal yDividedBySqrtXYZ = aY/SqrtXYZ;
131 User::LeaveIfError(Math::ASin(result, yDividedBySqrtXYZ)); //was ACos
134 iDopplerData.iElevation = (TInt32) (result * 1000 + 0.5);
136 iDopplerData.iElevation = (TInt32) (result * 1000 - 0.5);
139 // else { we are exactly in origin and therefore elevation is undefined; let's use the previous elevation value instead }
141 iDopplerData.iRadius= (TInt32) (SqrtXYZ + 0.5);
144 while(iDopplerData.iElevation > PI)
146 iDopplerData.iElevation = iDopplerData.iElevation - TWO_PI;
149 if(iDopplerData.iElevation > QUARTER_PI)
151 iDopplerData.iElevation = iDopplerData.iElevation - (iDopplerData.iElevation - QUARTER_PI) * 2;
152 iDopplerData.iAzimuth = iDopplerData.iAzimuth + PI;
155 while(iDopplerData.iElevation < -PI)
157 iDopplerData.iElevation = iDopplerData.iElevation + TWO_PI;
159 if(iDopplerData.iElevation < -QUARTER_PI)
161 iDopplerData.iElevation = iDopplerData.iElevation + (QUARTER_PI - iDopplerData.iElevation) * 2;
162 iDopplerData.iAzimuth = iDopplerData.iAzimuth + PI;
165 while (iDopplerData.iAzimuth < 0)
166 iDopplerData.iAzimuth = iDopplerData.iAzimuth + TWO_PI;
167 while (iDopplerData.iAzimuth > TWO_PI)
168 iDopplerData.iAzimuth = iDopplerData.iAzimuth - TWO_PI;
172 // -----------------------------------------------------------------------------
173 // CDoppler::SetFactorL
174 // -----------------------------------------------------------------------------
177 EXPORT_C void CDoppler::SetFactorL( TUint32 aFactor )
179 if ( (aFactor <= iDopplerData.iMaxFactor) )
181 iDopplerData.iFactor = aFactor;
185 User::Leave(KErrArgument);
188 // -----------------------------------------------------------------------------
189 // CDoppler::SetSphericalVelocityL
190 // -----------------------------------------------------------------------------
193 EXPORT_C void CDoppler::SetSphericalVelocityL( TInt32 aAzimuth, TInt32 aElevation, TInt32 aRadius )
196 while(aElevation > PI)
198 aElevation = aElevation - TWO_PI;
201 if(aElevation > QUARTER_PI)
203 aElevation = aElevation - (aElevation - QUARTER_PI) * 2;
204 aAzimuth = aAzimuth + PI;
207 while(aElevation < -PI)
209 aElevation = aElevation + TWO_PI;
211 if(aElevation < -QUARTER_PI)
213 aElevation = aElevation + (QUARTER_PI - aElevation) * 2;
214 aAzimuth = aAzimuth + PI;
218 aAzimuth = aAzimuth + TWO_PI;
219 while (aAzimuth > TWO_PI)
220 aAzimuth = aAzimuth - TWO_PI;
223 iDopplerData.iAzimuth = aAzimuth;
224 iDopplerData.iElevation = aElevation;
225 iDopplerData.iRadius = aRadius;
228 TReal elevation = aElevation / 1000.0; // conversion from milliradians to radians because Sin and Cos functions eat radians
232 User::LeaveIfError( Math::Sin( elevationSin, elevation ) );
233 User::LeaveIfError( Math::Cos( elevationCos, elevation ) );
237 User::LeaveIfError( Math::Sin( azimuthSin, aAzimuth / 1000.0) );
238 User::LeaveIfError( Math::Cos(azimuthCos, aAzimuth / 1000.0) );
241 iDopplerData.iVelocityX = (TInt32)(0.5 + aRadius * elevationCos * azimuthSin);
242 iDopplerData.iVelocityY = (TInt32)(0.5 + aRadius * elevationSin);
243 iDopplerData.iVelocityZ = (TInt32)(0.5 - aRadius * elevationCos * azimuthCos);
247 // -----------------------------------------------------------------------------
248 // CDoppler::SphericalVelocity
249 // -----------------------------------------------------------------------------
252 EXPORT_C void CDoppler::SphericalVelocity( TInt32& aAzimuth, TInt32& aElevation, TInt32& aRadius )
254 aAzimuth = iDopplerData.iAzimuth;
255 aElevation = iDopplerData.iElevation;
256 aRadius = iDopplerData.iRadius ;
261 // -----------------------------------------------------------------------------
262 // CDoppler::DoEffectData
263 // -----------------------------------------------------------------------------
265 EXPORT_C const TDesC8& CDoppler::DoEffectData()
268 RDebug::Print(_L("CDoppler::DoEffectData"));
270 iDataPckgTo = iDopplerData;
274 // -----------------------------------------------------------------------------
275 // CDoppler::SetEffectData
276 // -----------------------------------------------------------------------------
278 EXPORT_C void CDoppler::SetEffectData(
279 const TDesC8& aEffectDataBuffer )
282 RDebug::Print(_L("CDoppler::SetEffectData"));
284 TEfDopplerDataPckg dataPckg;
285 dataPckg.Copy(aEffectDataBuffer);
286 iDopplerData = dataPckg();
287 iEnabled = iDopplerData.iEnabled;
288 iEnforced = iDopplerData.iEnforced;
289 iHaveUpdateRights = iDopplerData.iHaveUpdateRights;
294 // ========================== OTHER EXPORTED FUNCTIONS =========================