2010-12-06 09:51:21 +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-08 13:49:58 +08:00
|
|
|
#include "CCAccelerometer_android.h"
|
2010-12-06 09:51:21 +08:00
|
|
|
#include <stdio.h>
|
2011-01-31 06:59:03 +08:00
|
|
|
#include <android/log.h>
|
|
|
|
|
2011-02-01 11:11:42 +08:00
|
|
|
#define TG3_GRAVITY_EARTH (9.80665f)
|
2011-03-08 13:49:58 +08:00
|
|
|
#define LOG_TAG "CCAccelerometer_android"
|
2011-01-31 06:59:03 +08:00
|
|
|
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG,LOG_TAG,__VA_ARGS__)
|
2010-12-06 09:51:21 +08:00
|
|
|
|
|
|
|
namespace cocos2d
|
|
|
|
{
|
2011-03-08 13:49:58 +08:00
|
|
|
CCAccelerometer* CCAccelerometer::m_spCCAccelerometer = NULL;
|
2011-01-31 06:59:03 +08:00
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
CCAccelerometer::CCAccelerometer() {
|
|
|
|
m_pAccelDelegates = new std::list<CCAccelerometerDelegate*>();
|
2010-12-06 09:51:21 +08:00
|
|
|
}
|
2011-01-31 06:59:03 +08:00
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
CCAccelerometer::~CCAccelerometer() {
|
2011-02-06 07:17:24 +08:00
|
|
|
if ( m_pAccelDelegates ) {
|
|
|
|
delete m_pAccelDelegates;
|
|
|
|
m_pAccelDelegates = NULL;
|
|
|
|
}
|
2010-12-06 09:51:21 +08:00
|
|
|
}
|
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
CCAccelerometer* CCAccelerometer::sharedAccelerometer() {
|
2011-01-31 06:59:03 +08:00
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
if (m_spCCAccelerometer == NULL)
|
2010-12-06 09:51:21 +08:00
|
|
|
{
|
2011-03-08 13:49:58 +08:00
|
|
|
m_spCCAccelerometer = new CCAccelerometer();
|
2010-12-06 09:51:21 +08:00
|
|
|
}
|
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
return m_spCCAccelerometer;
|
2010-12-06 09:51:21 +08:00
|
|
|
}
|
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
void CCAccelerometer::removeDelegate(CCAccelerometerDelegate* pDelegate) {
|
2011-02-06 07:17:24 +08:00
|
|
|
m_pAccelDelegates->remove(pDelegate);
|
|
|
|
|
|
|
|
if ( 0 == m_pAccelDelegates->size() ) {
|
|
|
|
disableAccelerometerJNI();
|
|
|
|
}
|
2010-12-06 09:51:21 +08:00
|
|
|
}
|
2011-01-31 06:59:03 +08:00
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
void CCAccelerometer::addDelegate(CCAccelerometerDelegate* pDelegate) {
|
2011-02-06 07:17:24 +08:00
|
|
|
if ( 0 == m_pAccelDelegates->size() ) {
|
|
|
|
enableAccelerometerJNI();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_pAccelDelegates->push_front(pDelegate);
|
2011-01-31 06:59:03 +08:00
|
|
|
}
|
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
void CCAccelerometer::update(float x, float y, float z, long sensorTimeStamp) {
|
2011-02-06 07:17:24 +08:00
|
|
|
if ( m_pAccelDelegates != NULL && !m_pAccelDelegates->empty() ) {
|
|
|
|
m_obAccelerationValue.x = -((double)x / TG3_GRAVITY_EARTH);
|
|
|
|
m_obAccelerationValue.y = -((double)y / TG3_GRAVITY_EARTH);
|
|
|
|
m_obAccelerationValue.z = -((double)z / TG3_GRAVITY_EARTH);
|
|
|
|
m_obAccelerationValue.timestamp = (double)sensorTimeStamp;
|
2011-01-31 06:59:03 +08:00
|
|
|
|
2011-03-08 13:49:58 +08:00
|
|
|
for(std::list<CCAccelerometerDelegate*>::const_iterator it = m_pAccelDelegates->begin(); it != m_pAccelDelegates->end(); ++it)
|
2011-01-31 06:59:03 +08:00
|
|
|
{
|
2011-02-06 07:17:24 +08:00
|
|
|
(*it)->didAccelerate(&m_obAccelerationValue);
|
2011-01-31 06:59:03 +08:00
|
|
|
}
|
|
|
|
}
|
2010-12-06 09:51:21 +08:00
|
|
|
}
|
|
|
|
} // end of namespace cococs2d
|
|
|
|
|