2014-03-29 03:52:16 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "CCPlatformConfig.h"
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT) || (CC_TARGET_PLATFORM == CC_PLATFORM_WP8)
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "platform/CCDevice.h"
|
|
|
|
#include "platform/CCFileUtils.h"
|
|
|
|
#include "platform/winrt/CCFreeTypeFont.h"
|
|
|
|
#include "CCStdC.h"
|
|
|
|
|
|
|
|
using namespace Windows::Graphics::Display;
|
|
|
|
using namespace Windows::Devices::Sensors;
|
|
|
|
using namespace Windows::Foundation;
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
CCFreeTypeFont sFT;
|
|
|
|
|
|
|
|
int Device::getDPI()
|
|
|
|
{
|
|
|
|
static const float dipsPerInch = 96.0f;
|
|
|
|
return floor(DisplayProperties::LogicalDpi / dipsPerInch + 0.5f); // Round to nearest integer.
|
|
|
|
}
|
|
|
|
|
2014-04-20 00:10:34 +08:00
|
|
|
static Accelerometer^ sAccelerometer = nullptr;
|
|
|
|
|
|
|
|
|
2014-03-29 03:52:16 +08:00
|
|
|
void Device::setAccelerometerEnabled(bool isEnabled)
|
|
|
|
{
|
|
|
|
static Windows::Foundation::EventRegistrationToken sToken;
|
2014-04-20 00:10:34 +08:00
|
|
|
static bool sEnabled = false;
|
2014-03-29 03:52:16 +08:00
|
|
|
|
2014-04-20 00:10:34 +08:00
|
|
|
if (isEnabled)
|
2014-03-29 03:52:16 +08:00
|
|
|
{
|
2014-04-20 00:10:34 +08:00
|
|
|
sAccelerometer = Accelerometer::GetDefault();
|
|
|
|
|
|
|
|
if(sAccelerometer == nullptr)
|
|
|
|
{
|
|
|
|
MessageBox("This device does not have an accelerometer.","Alert");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-29 03:52:16 +08:00
|
|
|
setAccelerometerInterval(0.0f);
|
2014-04-20 00:10:34 +08:00
|
|
|
sEnabled = true;
|
2014-03-29 03:52:16 +08:00
|
|
|
|
2014-04-20 00:10:34 +08:00
|
|
|
sToken = sAccelerometer->ReadingChanged += ref new TypedEventHandler
|
2014-03-29 03:52:16 +08:00
|
|
|
<Accelerometer^,AccelerometerReadingChangedEventArgs^>
|
2014-04-20 00:10:34 +08:00
|
|
|
([](Accelerometer^ a, AccelerometerReadingChangedEventArgs^ e)
|
2014-03-29 03:52:16 +08:00
|
|
|
{
|
2014-04-20 00:10:34 +08:00
|
|
|
if (!sEnabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AccelerometerReading^ reading = e->Reading;
|
2014-03-29 03:52:16 +08:00
|
|
|
cocos2d::Acceleration acc;
|
|
|
|
acc.x = reading->AccelerationX;
|
|
|
|
acc.y = reading->AccelerationY;
|
|
|
|
acc.z = reading->AccelerationZ;
|
|
|
|
acc.timestamp = 0;
|
|
|
|
|
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_WP8
|
|
|
|
auto orientation = GLView::sharedOpenGLView()->getDeviceOrientation();
|
|
|
|
|
|
|
|
switch (orientation)
|
|
|
|
{
|
|
|
|
case DisplayOrientations::Portrait:
|
|
|
|
acc.x = reading->AccelerationX;
|
|
|
|
acc.y = reading->AccelerationY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DisplayOrientations::Landscape:
|
|
|
|
acc.x = -reading->AccelerationY;
|
|
|
|
acc.y = reading->AccelerationX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DisplayOrientations::PortraitFlipped:
|
|
|
|
acc.x = -reading->AccelerationX;
|
|
|
|
acc.y = reading->AccelerationY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DisplayOrientations::LandscapeFlipped:
|
|
|
|
acc.x = reading->AccelerationY;
|
|
|
|
acc.y = reading->AccelerationX;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
acc.x = reading->AccelerationX;
|
|
|
|
acc.y = reading->AccelerationY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
2014-04-20 00:10:34 +08:00
|
|
|
std::shared_ptr<cocos2d::InputEvent> event(new AccelerometerEvent(acc));
|
|
|
|
cocos2d::GLView::sharedOpenGLView()->QueueEvent(event);
|
2014-03-29 03:52:16 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-20 00:10:34 +08:00
|
|
|
if (sAccelerometer)
|
|
|
|
{
|
|
|
|
sAccelerometer->ReadingChanged -= sToken;
|
|
|
|
sAccelerometer = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
sEnabled = false;
|
2014-03-29 03:52:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void Device::setAccelerometerInterval(float interval)
|
|
|
|
{
|
2014-04-20 00:10:34 +08:00
|
|
|
if (sAccelerometer)
|
2014-03-29 03:52:16 +08:00
|
|
|
{
|
2014-04-20 00:10:34 +08:00
|
|
|
int minInterval = sAccelerometer->MinimumReportInterval;
|
2014-03-29 03:52:16 +08:00
|
|
|
int reqInterval = (int) interval;
|
2014-04-20 00:10:34 +08:00
|
|
|
sAccelerometer->ReportInterval = reqInterval < minInterval ? minInterval : reqInterval;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CCLOG("Device::setAccelerometerInterval: accelerometer not enabled.");
|
2014-03-29 03:52:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Data Device::getTextureDataForText(const char * text,const FontDefinition& textDefinition,TextAlign align,int &width,int &height)
|
|
|
|
{
|
|
|
|
Data ret;
|
|
|
|
ssize_t dataLen;
|
|
|
|
|
|
|
|
unsigned char* data = sFT.initWithString(text, textDefinition, align, width, height, dataLen);
|
|
|
|
|
|
|
|
if (data)
|
|
|
|
{
|
|
|
|
ret.fastSet(data, dataLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif // (CC_TARGET_PLATFORM == CC_PLATFORM_WINRT) || (CC_TARGET_PLATFORM == CC_PLATFORM_WP8)
|