1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsoundextensions/effects/OrientationBase/src/OrientationBase.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,296 @@
1.4 +/*
1.5 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: Implementation of the Orientation effect base class
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +
1.24 +// INCLUDE FILES
1.25 +
1.26 +#ifdef _DEBUG
1.27 +#include <e32svr.h>
1.28 +#endif
1.29 +
1.30 +#include <OrientationBase.h>
1.31 +#include <e32math.h>
1.32 +#include <math.h>
1.33 +
1.34 +
1.35 +
1.36 +//360 degrees:
1.37 +#define TWO_PI 6283
1.38 +//180 degrees:
1.39 +#define PI 3142
1.40 +//90 degrees:
1.41 +#define QUARTER_PI 1570
1.42 +
1.43 +
1.44 +// ============================ MEMBER FUNCTIONS ===============================
1.45 +
1.46 +// -----------------------------------------------------------------------------
1.47 +// COrientation::COrientation
1.48 +// C++ default constructor can NOT contain any code, that
1.49 +// might leave.
1.50 +// -----------------------------------------------------------------------------
1.51 +//
1.52 +EXPORT_C COrientation::COrientation()
1.53 + : iOrientationData(0,0,0,0,0,0,0,0,0),
1.54 + iDataPckgTo(iOrientationData),
1.55 + iDataPckgFrom(iOrientationData)
1.56 + {
1.57 + }
1.58 +
1.59 +// Destructor
1.60 +EXPORT_C COrientation::~COrientation()
1.61 + {
1.62 + }
1.63 +
1.64 +// -----------------------------------------------------------------------------
1.65 +// COrientation::Orientation
1.66 +// -----------------------------------------------------------------------------
1.67 +//
1.68 +EXPORT_C void COrientation::Orientation(
1.69 + TInt32& aHeading, TInt32& aPitch, TInt32& aRoll )
1.70 + {
1.71 + aHeading = iOrientationData.iHeading;
1.72 + aPitch = iOrientationData.iPitch;
1.73 + aRoll = iOrientationData.iRoll;
1.74 + }
1.75 +
1.76 +// -----------------------------------------------------------------------------
1.77 +// COrientation::OrientationVectors
1.78 +// -----------------------------------------------------------------------------
1.79 +//
1.80 +EXPORT_C void COrientation::OrientationVectors(
1.81 + TInt32& aFrontX, TInt32& aFrontY, TInt32& aFrontZ,
1.82 + TInt32& aAboveX, TInt32& aAboveY, TInt32& aAboveZ )
1.83 + {
1.84 + aFrontX = iOrientationData.iFrontX;
1.85 + aFrontY = iOrientationData.iFrontY;
1.86 + aFrontZ = iOrientationData.iFrontZ;
1.87 + aAboveX = iOrientationData.iAboveX;
1.88 + aAboveY = iOrientationData.iAboveY;
1.89 + aAboveZ = iOrientationData.iAboveZ;
1.90 +
1.91 +
1.92 +
1.93 +
1.94 + }
1.95 +
1.96 +// -----------------------------------------------------------------------------
1.97 +// COrientation::SetOrientationL
1.98 +// -----------------------------------------------------------------------------
1.99 +//
1.100 +EXPORT_C void COrientation::SetOrientationL(
1.101 + TInt32 aHeading, TInt32 aPitch, TInt32 aRoll )
1.102 + {
1.103 +
1.104 + while(aPitch > PI)
1.105 + {
1.106 + aPitch = aPitch - TWO_PI;
1.107 + }
1.108 + if(aPitch > QUARTER_PI)
1.109 + {
1.110 + //pitch is here between 90 and 180degs. We swap it back to between 0 and 90degs. Heading needs swaping then too.
1.111 + aPitch = aPitch - (aPitch-QUARTER_PI)*2;
1.112 + aHeading = aHeading + PI;
1.113 + 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
1.114 + }
1.115 +
1.116 + while(aPitch < -PI)
1.117 + {
1.118 + aPitch = aPitch + TWO_PI;
1.119 + }
1.120 +
1.121 + if(aPitch < -QUARTER_PI)
1.122 + {
1.123 + //pitch is here between -90 and -180degs. We swap it back to between 0 and -90degs. Heading needs swaping then too.
1.124 + aPitch = aPitch + (QUARTER_PI-aPitch)*2;
1.125 + aHeading = aHeading + PI;
1.126 + 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
1.127 + }
1.128 +
1.129 + while (aHeading < 0)
1.130 + {
1.131 + aHeading = aHeading + TWO_PI;
1.132 + }
1.133 +
1.134 + while (aHeading > TWO_PI)
1.135 + {
1.136 + aHeading = aHeading - TWO_PI;
1.137 + }
1.138 +
1.139 + while (aRoll < 0)
1.140 + {
1.141 + aRoll = aRoll + TWO_PI;
1.142 + }
1.143 + while (aRoll > TWO_PI)
1.144 + {
1.145 + aRoll = aRoll - TWO_PI;
1.146 + }
1.147 +
1.148 + iOrientationData.iHeading = aHeading;
1.149 + iOrientationData.iPitch = aPitch;
1.150 + iOrientationData.iRoll = aRoll;
1.151 +
1.152 +
1.153 + TReal headingSin, headingCos, pitchSin, pitchCos, rollSin, rollCos;
1.154 +
1.155 + User::LeaveIfError( Math::Sin( headingSin, (TReal)aHeading / 1000 ) );
1.156 + User::LeaveIfError( Math::Cos( headingCos, (TReal)aHeading / 1000) );
1.157 + User::LeaveIfError( Math::Sin( pitchSin, (TReal)aPitch / 1000) );
1.158 + User::LeaveIfError( Math::Cos( pitchCos, (TReal)aPitch / 1000) );
1.159 + User::LeaveIfError( Math::Sin( rollSin, (TReal)aRoll / 1000) );
1.160 + User::LeaveIfError( Math::Cos( rollCos, (TReal)aRoll / 1000) );
1.161 +
1.162 + iOrientationData.iFrontX = -headingSin * pitchCos * 1000;
1.163 + iOrientationData.iFrontY = pitchSin * 1000;
1.164 + iOrientationData.iFrontZ = -headingCos * pitchCos * 1000;
1.165 + iOrientationData.iAboveX = (-rollSin * headingCos + rollCos * pitchSin * headingSin) * 1000;
1.166 + iOrientationData.iAboveY = pitchCos * rollCos * 1000;
1.167 + iOrientationData.iAboveZ = (rollSin * headingSin + rollCos * headingCos * pitchSin) * 1000;
1.168 + }
1.169 +
1.170 +// -----------------------------------------------------------------------------
1.171 +// COrientation::SetOrientationVectorsL
1.172 +// -----------------------------------------------------------------------------
1.173 +//
1.174 +EXPORT_C void COrientation::SetOrientationVectorsL(
1.175 + TInt32 aFrontX, TInt32 aFrontY, TInt32 aFrontZ,
1.176 + TInt32 aAboveX, TInt32 aAboveY, TInt32 aAboveZ )
1.177 + {
1.178 +
1.179 + iOrientationData.iFrontX = aFrontX;
1.180 + iOrientationData.iFrontY = aFrontY;
1.181 + iOrientationData.iFrontZ = aFrontZ;
1.182 + iOrientationData.iAboveX = aAboveX;
1.183 + iOrientationData.iAboveY = aAboveY;
1.184 + iOrientationData.iAboveZ = aAboveZ;
1.185 +
1.186 + TInt32 previous_valid_value_of_pitch = iOrientationData.iPitch;
1.187 +
1.188 +
1.189 + if(!((aFrontX==0) && (aFrontZ==0)))
1.190 + {
1.191 + TReal xDividedByZAtan;
1.192 + xDividedByZAtan = atan2 (-aFrontX, -aFrontZ);
1.193 +
1.194 + if(xDividedByZAtan > 0)
1.195 + iOrientationData.iHeading = (TInt32) (xDividedByZAtan * 1000 + 0.5);
1.196 + else
1.197 + iOrientationData.iHeading = (TInt32) (xDividedByZAtan * 1000 - 0.5);
1.198 +
1.199 + }
1.200 +
1.201 + if(aFrontX == 0 && aFrontZ == 0)
1.202 + {
1.203 + if (aFrontY > 0)
1.204 + iOrientationData.iPitch = KPi/2 * 1000 + 0.5; //verify the units!
1.205 + else if (aFrontY == 0)
1.206 + iOrientationData.iPitch = previous_valid_value_of_pitch;
1.207 + else if (aFrontY < 0)
1.208 + iOrientationData.iPitch = -KPi/2 * 1000 - 0.5; //verify the units!
1.209 + }
1.210 + else
1.211 + {
1.212 +
1.213 + TReal sqrtXZ = 0, squareFx = 0, squareFz = 0;
1.214 + Math::Pow(squareFx, aFrontX, 2);
1.215 + Math::Pow(squareFz, aFrontZ, 2);
1.216 + TReal total = squareFx + squareFz;
1.217 +
1.218 + Math::Sqrt (sqrtXZ, total);
1.219 +
1.220 + TReal yTotalAtan = atan2 ((TReal)aFrontY, sqrtXZ);
1.221 +
1.222 + if (yTotalAtan > 0)
1.223 + iOrientationData.iPitch = (TInt32) (yTotalAtan * 1000 + 0.5);
1.224 + else
1.225 + iOrientationData.iPitch = (TInt32) (yTotalAtan * 1000 - 0.5);
1.226 +
1.227 + }
1.228 +
1.229 + TReal rot_aboveX = 0;
1.230 +
1.231 + rot_aboveX = cos(-((TReal)iOrientationData.iHeading)/1000) * (((TReal)aAboveX)/1000) + sin(-((TReal)iOrientationData.iHeading)/1000) * (((TReal)aAboveZ)/1000);
1.232 +
1.233 + TReal rot_aboveY = 0;
1.234 +
1.235 + 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);
1.236 +
1.237 + TReal roll = atan2(-rot_aboveX, rot_aboveY);
1.238 +
1.239 + if (roll > 0)
1.240 + iOrientationData.iRoll = (TInt32) (roll * 1000 + 0.5);
1.241 + else
1.242 + iOrientationData.iRoll = (TInt32) (roll * 1000 - 0.5);
1.243 +
1.244 +
1.245 + while (iOrientationData.iHeading < 0)
1.246 + iOrientationData.iHeading = iOrientationData.iHeading + TWO_PI;
1.247 +
1.248 + while (iOrientationData.iHeading > TWO_PI)
1.249 + iOrientationData.iHeading = iOrientationData.iHeading - TWO_PI;
1.250 +
1.251 + while (iOrientationData.iPitch < 0)
1.252 + iOrientationData.iPitch = iOrientationData.iPitch + TWO_PI;
1.253 +
1.254 + while (iOrientationData.iPitch > TWO_PI)
1.255 + iOrientationData.iPitch = iOrientationData.iPitch - TWO_PI;
1.256 +
1.257 + while (iOrientationData.iRoll < 0)
1.258 + iOrientationData.iRoll = iOrientationData.iRoll + TWO_PI;
1.259 +
1.260 + while (iOrientationData.iRoll > TWO_PI)
1.261 + iOrientationData.iRoll = iOrientationData.iRoll - TWO_PI;
1.262 +
1.263 + }
1.264 +
1.265 +// -----------------------------------------------------------------------------
1.266 +// COrientation::DoEffectData
1.267 +// -----------------------------------------------------------------------------
1.268 +//
1.269 +EXPORT_C const TDesC8& COrientation::DoEffectData()
1.270 + {
1.271 +#ifdef _DEBUG
1.272 + RDebug::Print(_L("COrientation::DoEffectData"));
1.273 +#endif
1.274 + iDataPckgTo = iOrientationData;
1.275 + return iDataPckgTo;
1.276 + }
1.277 +
1.278 +// -----------------------------------------------------------------------------
1.279 +// COrientation::SetEffectData
1.280 +// -----------------------------------------------------------------------------
1.281 +//
1.282 +EXPORT_C void COrientation::SetEffectData(
1.283 + const TDesC8& aEffectDataBuffer )
1.284 + {
1.285 +#ifdef _DEBUG
1.286 + RDebug::Print(_L("COrientation::SetEffectData"));
1.287 +#endif
1.288 + TEfOrientationDataPckg dataPckg;
1.289 + dataPckg.Copy(aEffectDataBuffer);
1.290 + iOrientationData = dataPckg();
1.291 + iEnabled = iOrientationData.iEnabled;
1.292 + iEnforced = iOrientationData.iEnforced;
1.293 + iHaveUpdateRights = iOrientationData.iHaveUpdateRights;
1.294 +
1.295 + }
1.296 +
1.297 +// ========================== OTHER EXPORTED FUNCTIONS =========================
1.298 +
1.299 +// End of File