2010-11-10 16:29:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
#ifndef __PLATFORM_WOPHONE_UIACCELEROMETER_H__
|
|
|
|
#define __PLATFORM_WOPHONE_UIACCELEROMETER_H__
|
2010-11-10 16:29:52 +08:00
|
|
|
|
2011-03-07 18:20:48 +08:00
|
|
|
#include "CCAccelerometerDelegate.h"
|
2010-11-10 16:29:52 +08:00
|
|
|
#include "TG3.h"
|
2011-03-07 18:20:48 +08:00
|
|
|
#include "CCCommon.h"
|
2010-11-10 16:29:52 +08:00
|
|
|
#include "TCOM_Sensors_Interface.h"
|
|
|
|
|
|
|
|
namespace cocos2d {
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief
|
2011-03-07 18:20:48 +08:00
|
|
|
The CCAccelerometer class lets you register to receive
|
2010-11-10 16:29:52 +08:00
|
|
|
acceleration-related data from the onboard hardware.
|
|
|
|
*/
|
2011-03-07 18:20:48 +08:00
|
|
|
class CC_DLL CCAccelerometer
|
2010-11-10 16:29:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2011-03-07 18:20:48 +08:00
|
|
|
CCAccelerometer();
|
|
|
|
~CCAccelerometer();
|
2010-11-10 16:29:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Returns the shared accelerometer object for the system.
|
|
|
|
*/
|
2011-03-07 18:20:48 +08:00
|
|
|
static CCAccelerometer* sharedAccelerometer();
|
2010-11-10 16:29:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief add delegate to concern accelerometer sensor
|
|
|
|
*/
|
2011-08-31 17:14:29 +08:00
|
|
|
void setDelegate(CCAccelerometerDelegate* pDelegate);
|
2010-11-10 16:29:52 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
@brief call delegates' didAccelerate function
|
|
|
|
*/
|
2011-03-09 14:40:05 +08:00
|
|
|
void didAccelerate(CCAcceleration* pAccelerationValue);
|
2010-11-10 16:29:52 +08:00
|
|
|
|
|
|
|
protected:
|
2011-08-30 09:45:11 +08:00
|
|
|
CCAccelerometerDelegate* m_pDelegate;
|
2010-11-10 16:29:52 +08:00
|
|
|
TCOM_Sensors_DataType_Client* m_pSensor;
|
|
|
|
};
|
|
|
|
|
|
|
|
}//namespace cocos2d
|
|
|
|
|
|
|
|
#endif
|