First public contribution.
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 Orientation effect base class
27 #include <OrientationBase.h>
38 #define QUARTER_PI 1570
41 // ============================ MEMBER FUNCTIONS ===============================
43 // -----------------------------------------------------------------------------
44 // COrientation::COrientation
45 // C++ default constructor can NOT contain any code, that
47 // -----------------------------------------------------------------------------
49 EXPORT_C COrientation::COrientation()
50 : iOrientationData(0,0,0,0,0,0,0,0,0),
51 iDataPckgTo(iOrientationData),
52 iDataPckgFrom(iOrientationData)
57 EXPORT_C COrientation::~COrientation()
61 // -----------------------------------------------------------------------------
62 // COrientation::Orientation
63 // -----------------------------------------------------------------------------
65 EXPORT_C void COrientation::Orientation(
66 TInt32& aHeading, TInt32& aPitch, TInt32& aRoll )
68 aHeading = iOrientationData.iHeading;
69 aPitch = iOrientationData.iPitch;
70 aRoll = iOrientationData.iRoll;
73 // -----------------------------------------------------------------------------
74 // COrientation::OrientationVectors
75 // -----------------------------------------------------------------------------
77 EXPORT_C void COrientation::OrientationVectors(
78 TInt32& aFrontX, TInt32& aFrontY, TInt32& aFrontZ,
79 TInt32& aAboveX, TInt32& aAboveY, TInt32& aAboveZ )
81 aFrontX = iOrientationData.iFrontX;
82 aFrontY = iOrientationData.iFrontY;
83 aFrontZ = iOrientationData.iFrontZ;
84 aAboveX = iOrientationData.iAboveX;
85 aAboveY = iOrientationData.iAboveY;
86 aAboveZ = iOrientationData.iAboveZ;
93 // -----------------------------------------------------------------------------
94 // COrientation::SetOrientationL
95 // -----------------------------------------------------------------------------
97 EXPORT_C void COrientation::SetOrientationL(
98 TInt32 aHeading, TInt32 aPitch, TInt32 aRoll )
103 aPitch = aPitch - TWO_PI;
105 if(aPitch > QUARTER_PI)
107 //pitch is here between 90 and 180degs. We swap it back to between 0 and 90degs. Heading needs swaping then too.
108 aPitch = aPitch - (aPitch-QUARTER_PI)*2;
109 aHeading = aHeading + PI;
110 aRoll = aRoll + PI; //I'm not sure if this line is needed. Remove it if you don't get correct results for roll or upVector
115 aPitch = aPitch + TWO_PI;
118 if(aPitch < -QUARTER_PI)
120 //pitch is here between -90 and -180degs. We swap it back to between 0 and -90degs. Heading needs swaping then too.
121 aPitch = aPitch + (QUARTER_PI-aPitch)*2;
122 aHeading = aHeading + PI;
123 aRoll = aRoll + PI; //I'm not sure if this line is needed. Remove it if you don't get correct results for roll or upVector
128 aHeading = aHeading + TWO_PI;
131 while (aHeading > TWO_PI)
133 aHeading = aHeading - TWO_PI;
138 aRoll = aRoll + TWO_PI;
140 while (aRoll > TWO_PI)
142 aRoll = aRoll - TWO_PI;
145 iOrientationData.iHeading = aHeading;
146 iOrientationData.iPitch = aPitch;
147 iOrientationData.iRoll = aRoll;
150 TReal headingSin, headingCos, pitchSin, pitchCos, rollSin, rollCos;
152 User::LeaveIfError( Math::Sin( headingSin, (TReal)aHeading / 1000 ) );
153 User::LeaveIfError( Math::Cos( headingCos, (TReal)aHeading / 1000) );
154 User::LeaveIfError( Math::Sin( pitchSin, (TReal)aPitch / 1000) );
155 User::LeaveIfError( Math::Cos( pitchCos, (TReal)aPitch / 1000) );
156 User::LeaveIfError( Math::Sin( rollSin, (TReal)aRoll / 1000) );
157 User::LeaveIfError( Math::Cos( rollCos, (TReal)aRoll / 1000) );
159 iOrientationData.iFrontX = -headingSin * pitchCos * 1000;
160 iOrientationData.iFrontY = pitchSin * 1000;
161 iOrientationData.iFrontZ = -headingCos * pitchCos * 1000;
162 iOrientationData.iAboveX = (-rollSin * headingCos + rollCos * pitchSin * headingSin) * 1000;
163 iOrientationData.iAboveY = pitchCos * rollCos * 1000;
164 iOrientationData.iAboveZ = (rollSin * headingSin + rollCos * headingCos * pitchSin) * 1000;
167 // -----------------------------------------------------------------------------
168 // COrientation::SetOrientationVectorsL
169 // -----------------------------------------------------------------------------
171 EXPORT_C void COrientation::SetOrientationVectorsL(
172 TInt32 aFrontX, TInt32 aFrontY, TInt32 aFrontZ,
173 TInt32 aAboveX, TInt32 aAboveY, TInt32 aAboveZ )
176 iOrientationData.iFrontX = aFrontX;
177 iOrientationData.iFrontY = aFrontY;
178 iOrientationData.iFrontZ = aFrontZ;
179 iOrientationData.iAboveX = aAboveX;
180 iOrientationData.iAboveY = aAboveY;
181 iOrientationData.iAboveZ = aAboveZ;
183 TInt32 previous_valid_value_of_pitch = iOrientationData.iPitch;
186 if(!((aFrontX==0) && (aFrontZ==0)))
188 TReal xDividedByZAtan;
189 xDividedByZAtan = atan2 (-aFrontX, -aFrontZ);
191 if(xDividedByZAtan > 0)
192 iOrientationData.iHeading = (TInt32) (xDividedByZAtan * 1000 + 0.5);
194 iOrientationData.iHeading = (TInt32) (xDividedByZAtan * 1000 - 0.5);
198 if(aFrontX == 0 && aFrontZ == 0)
201 iOrientationData.iPitch = KPi/2 * 1000 + 0.5; //verify the units!
202 else if (aFrontY == 0)
203 iOrientationData.iPitch = previous_valid_value_of_pitch;
204 else if (aFrontY < 0)
205 iOrientationData.iPitch = -KPi/2 * 1000 - 0.5; //verify the units!
210 TReal sqrtXZ = 0, squareFx = 0, squareFz = 0;
211 Math::Pow(squareFx, aFrontX, 2);
212 Math::Pow(squareFz, aFrontZ, 2);
213 TReal total = squareFx + squareFz;
215 Math::Sqrt (sqrtXZ, total);
217 TReal yTotalAtan = atan2 ((TReal)aFrontY, sqrtXZ);
220 iOrientationData.iPitch = (TInt32) (yTotalAtan * 1000 + 0.5);
222 iOrientationData.iPitch = (TInt32) (yTotalAtan * 1000 - 0.5);
226 TReal rot_aboveX = 0;
228 rot_aboveX = cos(-((TReal)iOrientationData.iHeading)/1000) * (((TReal)aAboveX)/1000) + sin(-((TReal)iOrientationData.iHeading)/1000) * (((TReal)aAboveZ)/1000);
230 TReal rot_aboveY = 0;
232 rot_aboveY = sin(-((TReal)iOrientationData.iHeading)/1000) * sin(-((TReal)iOrientationData.iPitch)/1000) * (((TReal)aAboveX)/1000) + cos(-((TReal)iOrientationData.iPitch)/1000) * (((TReal)aAboveY)/1000) - sin(-(TReal)iOrientationData.iPitch/1000) * cos(-((TReal)iOrientationData.iHeading)/1000)* (((TReal)aAboveZ)/1000);
234 TReal roll = atan2(-rot_aboveX, rot_aboveY);
237 iOrientationData.iRoll = (TInt32) (roll * 1000 + 0.5);
239 iOrientationData.iRoll = (TInt32) (roll * 1000 - 0.5);
242 while (iOrientationData.iHeading < 0)
243 iOrientationData.iHeading = iOrientationData.iHeading + TWO_PI;
245 while (iOrientationData.iHeading > TWO_PI)
246 iOrientationData.iHeading = iOrientationData.iHeading - TWO_PI;
248 while (iOrientationData.iPitch < 0)
249 iOrientationData.iPitch = iOrientationData.iPitch + TWO_PI;
251 while (iOrientationData.iPitch > TWO_PI)
252 iOrientationData.iPitch = iOrientationData.iPitch - TWO_PI;
254 while (iOrientationData.iRoll < 0)
255 iOrientationData.iRoll = iOrientationData.iRoll + TWO_PI;
257 while (iOrientationData.iRoll > TWO_PI)
258 iOrientationData.iRoll = iOrientationData.iRoll - TWO_PI;
262 // -----------------------------------------------------------------------------
263 // COrientation::DoEffectData
264 // -----------------------------------------------------------------------------
266 EXPORT_C const TDesC8& COrientation::DoEffectData()
269 RDebug::Print(_L("COrientation::DoEffectData"));
271 iDataPckgTo = iOrientationData;
275 // -----------------------------------------------------------------------------
276 // COrientation::SetEffectData
277 // -----------------------------------------------------------------------------
279 EXPORT_C void COrientation::SetEffectData(
280 const TDesC8& aEffectDataBuffer )
283 RDebug::Print(_L("COrientation::SetEffectData"));
285 TEfOrientationDataPckg dataPckg;
286 dataPckg.Copy(aEffectDataBuffer);
287 iOrientationData = dataPckg();
288 iEnabled = iOrientationData.iEnabled;
289 iEnforced = iOrientationData.iEnforced;
290 iHaveUpdateRights = iOrientationData.iHaveUpdateRights;
294 // ========================== OTHER EXPORTED FUNCTIONS =========================