mirror of https://github.com/axmolengine/axmol.git
242 lines
8.3 KiB
C++
242 lines
8.3 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2012-2013 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.
|
|
****************************************************************************/
|
|
#include "HelloWorldScene.h"
|
|
#include "PluginManager.h"
|
|
#include "ProtocolAnalytics.h"
|
|
#include "AppDelegate.h"
|
|
|
|
using namespace cocos2d;
|
|
using namespace cocos2d::plugin;
|
|
|
|
extern ProtocolAnalytics* g_pAnalytics;
|
|
extern std::string s_strAppKey;
|
|
|
|
enum {
|
|
TAG_LOG_EVENT_ID = 0,
|
|
TAG_LOG_EVENT_ID_KV,
|
|
TAG_LOG_ONLINE_CONFIG,
|
|
TAG_LOG_EVENT_ID_DURATION,
|
|
TAG_LOG_EVENT_BEGIN,
|
|
TAG_LOG_EVENT_END,
|
|
TAG_MAKE_ME_CRASH
|
|
};
|
|
|
|
typedef struct tagEventMenuItem {
|
|
std::string id;
|
|
int tag;
|
|
}EventMenuItem;
|
|
|
|
static EventMenuItem s_EventMenuItem[] = {
|
|
{"OnlineConfig", TAG_LOG_ONLINE_CONFIG},
|
|
{"LogEvent-eventId" , TAG_LOG_EVENT_ID},
|
|
{"LogEvent-eventId-kv", TAG_LOG_EVENT_ID_KV},
|
|
{"LogEvent-eventId-Duration", TAG_LOG_EVENT_ID_DURATION},
|
|
{"LogEvent-Begin", TAG_LOG_EVENT_BEGIN},
|
|
{"LogEvent-End", TAG_LOG_EVENT_END},
|
|
{"MakeMeCrash", TAG_MAKE_ME_CRASH}
|
|
};
|
|
|
|
Scene* HelloWorld::scene()
|
|
{
|
|
// 'scene' is an autorelease object
|
|
Scene *scene = Scene::create();
|
|
|
|
// 'layer' is an autorelease object
|
|
HelloWorld *layer = HelloWorld::create();
|
|
|
|
// add layer as a child to scene
|
|
scene->addChild(layer);
|
|
|
|
// return the scene
|
|
return scene;
|
|
}
|
|
|
|
// on "init" you need to initialize your instance
|
|
bool HelloWorld::init()
|
|
{
|
|
//////////////////////////////
|
|
// 1. super init first
|
|
if ( !Layer::init() )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Size size = Director::sharedDirector()->getWinSize();
|
|
|
|
/////////////////////////////
|
|
// 2. add a menu item with "X" image, which is clicked to quit the program
|
|
// you may modify it.
|
|
|
|
// add a "close" icon to exit the progress. it's an autorelease object
|
|
MenuItemImage *pCloseItem = MenuItemImage::create(
|
|
"CloseNormal.png",
|
|
"CloseSelected.png",
|
|
this,
|
|
menu_selector(HelloWorld::menuCloseCallback) );
|
|
pCloseItem->setPosition( ccp(size.width - 20, 20) );
|
|
|
|
// create menu, it's an autorelease object
|
|
Menu* pMenu = Menu::create(pCloseItem, NULL);
|
|
pMenu->setPosition( PointZero );
|
|
this->addChild(pMenu, 1);
|
|
|
|
float yPos = 0;
|
|
for (int i = 0; i < sizeof(s_EventMenuItem)/sizeof(s_EventMenuItem[0]); i++) {
|
|
LabelTTF* label = LabelTTF::create(s_EventMenuItem[i].id.c_str(), "Arial", 24);
|
|
MenuItemLabel* pMenuItem = MenuItemLabel::create(label, this, menu_selector(HelloWorld::eventMenuCallback));
|
|
pMenu->addChild(pMenuItem, 0, s_EventMenuItem[i].tag);
|
|
yPos = size.height - 35*i - 100;
|
|
pMenuItem->setPosition( ccp(size.width / 2, yPos));
|
|
}
|
|
|
|
std::string strName = g_pAnalytics->getPluginName();
|
|
std::string strVer = g_pAnalytics->getSDKVersion();
|
|
char ret[256] = { 0 };
|
|
sprintf(ret, "Plugin : %s, Ver : %s", strName.c_str(), strVer.c_str());
|
|
LabelTTF* pLabel = LabelTTF::create(ret, "Arial", 18, CCSizeMake(size.width, 0), kTextAlignmentCenter);
|
|
pLabel->setPosition(ccp(size.width / 2, yPos - 80));
|
|
addChild(pLabel);
|
|
|
|
LabelTTF* label = LabelTTF::create("reload all plugins", "Arial", 24);
|
|
MenuItemLabel* pMenuItem = MenuItemLabel::create(label, this, menu_selector(HelloWorld::reloadPluginMenuCallback));
|
|
pMenuItem->setAnchorPoint(ccp(0.5f, 0));
|
|
pMenu->addChild(pMenuItem, 0);
|
|
pMenuItem->setPosition( ccp(size.width / 2, 0));
|
|
|
|
return true;
|
|
}
|
|
|
|
void HelloWorld::reloadPluginMenuCallback(Object* pSender)
|
|
{
|
|
PluginManager::getInstance()->unloadPlugin("AnalyticsFlurry");
|
|
PluginManager::getInstance()->unloadPlugin("AnalyticsUmeng");
|
|
|
|
AppDelegate::loadAnalyticsPlugin();
|
|
}
|
|
|
|
void HelloWorld::eventMenuCallback(Object* pSender)
|
|
{
|
|
MenuItemLabel* pMenuItem = (MenuItemLabel*)pSender;
|
|
|
|
switch (pMenuItem->getTag())
|
|
{
|
|
case TAG_LOG_EVENT_ID:
|
|
{
|
|
g_pAnalytics->logEvent("click");
|
|
g_pAnalytics->logEvent("music");
|
|
}
|
|
break;
|
|
case TAG_LOG_EVENT_ID_KV:
|
|
{
|
|
LogEventParamMap paramMap;
|
|
paramMap.insert(LogEventParamPair("type", "popular"));
|
|
paramMap.insert(LogEventParamPair("artist", "JJLin"));
|
|
g_pAnalytics->logEvent("music", ¶mMap);
|
|
}
|
|
break;
|
|
case TAG_LOG_ONLINE_CONFIG:
|
|
{
|
|
PluginParam param("abc");
|
|
CCLog("Online config = %s", g_pAnalytics->callStringFuncWithParam("getConfigParams", ¶m, NULL).c_str());
|
|
}
|
|
break;
|
|
case TAG_LOG_EVENT_ID_DURATION:
|
|
{
|
|
PluginParam event1("book");
|
|
PluginParam dura1(12000);
|
|
g_pAnalytics->callFuncWithParam("logEventWithDuration", &event1, &dura1, NULL);
|
|
|
|
PluginParam event2("book");
|
|
PluginParam dura2(12000);
|
|
PluginParam label("chapter1");
|
|
g_pAnalytics->callFuncWithParam("logEventWithDurationLabel", &event2, &dura2, &label, NULL);
|
|
|
|
PluginParam event3("music");
|
|
PluginParam dura3(2330000);
|
|
LogEventParamMap paramMap;
|
|
paramMap.insert(LogEventParamPair("type", "popular"));
|
|
paramMap.insert(LogEventParamPair("artist", "JJLin"));
|
|
PluginParam mapValue(paramMap);
|
|
g_pAnalytics->callFuncWithParam("logEventWithDurationParams", &event3, &dura3, &mapValue, NULL);
|
|
}
|
|
break;
|
|
case TAG_LOG_EVENT_BEGIN:
|
|
{
|
|
g_pAnalytics->logTimedEventBegin("music");
|
|
|
|
PluginParam event1("music");
|
|
PluginParam label1("one");
|
|
g_pAnalytics->callFuncWithParam("logTimedEventWithLabelBegin", &event1, &label1, NULL);
|
|
|
|
PluginParam event2("music");
|
|
PluginParam label2("flag0");
|
|
LogEventParamMap paramMap;
|
|
paramMap.insert(LogEventParamPair("type", "popular"));
|
|
paramMap.insert(LogEventParamPair("artist", "JJLin"));
|
|
PluginParam mapValue(paramMap);
|
|
g_pAnalytics->callFuncWithParam("logTimedKVEventBegin", &event2, &label2, &mapValue, NULL);
|
|
|
|
PluginParam event3("music-kv");
|
|
g_pAnalytics->callFuncWithParam("logTimedEventBeginWithParams", &event3, &mapValue, NULL);
|
|
}
|
|
break;
|
|
case TAG_LOG_EVENT_END:
|
|
{
|
|
g_pAnalytics->logTimedEventEnd("music");
|
|
|
|
PluginParam event1("music");
|
|
PluginParam label1("one");
|
|
g_pAnalytics->callFuncWithParam("logTimedEventWithLabelEnd", &event1, &label1, NULL);
|
|
|
|
PluginParam event2("music");
|
|
PluginParam label2("flag0");
|
|
g_pAnalytics->callFuncWithParam("logTimedKVEventEnd", &event2, &label2, NULL);
|
|
|
|
PluginParam event3("music-kv");
|
|
g_pAnalytics->callFuncWithParam("logTimedEventEnd", &event3, NULL);
|
|
}
|
|
break;
|
|
case TAG_MAKE_ME_CRASH:
|
|
{
|
|
char* pNull = NULL;
|
|
*pNull = 0;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void HelloWorld::menuCloseCallback(Object* pSender)
|
|
{
|
|
if (g_pAnalytics)
|
|
g_pAnalytics->stopSession();
|
|
|
|
PluginManager::end();
|
|
Director::sharedDirector()->end();
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
|
exit(0);
|
|
#endif
|
|
}
|