From 1db8ecd8e440d1db0c4d915548e607a571e56d3b Mon Sep 17 00:00:00 2001 From: zhangbin Date: Sat, 27 Apr 2013 17:29:20 +0800 Subject: [PATCH] Update the iOS projects of plugin. --- plugin/protocols/platform/ios/ProtocolAds.cpp | 66 +++++-------------- plugin/protocols/platform/ios/ProtocolIAP.cpp | 9 ++- .../PluginProtocol.xcodeproj/project.pbxproj | 2 + 3 files changed, 23 insertions(+), 54 deletions(-) diff --git a/plugin/protocols/platform/ios/ProtocolAds.cpp b/plugin/protocols/platform/ios/ProtocolAds.cpp index abf156652c..73c14f97dd 100644 --- a/plugin/protocols/platform/ios/ProtocolAds.cpp +++ b/plugin/protocols/platform/ios/ProtocolAds.cpp @@ -2,9 +2,8 @@ namespace cocos2d { namespace plugin { -AdListener* ProtocolAds::m_pListener = NULL; - ProtocolAds::ProtocolAds() +: m_pListener(NULL) { } @@ -12,81 +11,50 @@ ProtocolAds::~ProtocolAds() { } -/** - @brief plugin initialization - */ bool ProtocolAds::init() { return true; } -/** - @brief initialize the application info - @param appInfo This parameter is the info of aplication, - different plugin have different format - @warning Must invoke this interface before other interfaces. - And invoked only once. - */ -void ProtocolAds::initAppInfo(TAppInfo appInfo) +void ProtocolAds::configDeveloperInfo(TAdsDeveloperInfo devInfo) { } -/** - @brief show banner ads at specified position - @param pos The position where the banner view be shown - @param sizeEnum The size of the banner view. - In different plugin, it's have different mean. - Pay attention to the subclass definition - */ -void ProtocolAds::showBannerAd(EBannerPos pos, int sizeEnum) +void ProtocolAds::showAds(AdsType type, int sizeEnum, AdsPos pos) { } -/** - @brief hide the banner ads view - */ -void ProtocolAds::hideBannerAd() +void ProtocolAds::hideAds(AdsType type) +{ +} + +void ProtocolAds::spendPoints(int points) { } -/** - @brief Set whether needs to output logs to console. - @param debug If true debug mode enabled, or debug mode disabled. - */ void ProtocolAds::setDebugMode(bool debug) { } // For the callbak methods -void ProtocolAds::receiveAd() +void ProtocolAds::setAdsListener(AdsListener* pListener) +{ + m_pListener = pListener; +} + +void ProtocolAds::onAdsResult(AdsResultCode code, const char* msg) { if (m_pListener != NULL) { - m_pListener->onReceiveAd(); + m_pListener->onAdsResult(code, msg); } } -void ProtocolAds::presentScreen() +void ProtocolAds::onPlayerGetPoints(int points) { if (m_pListener != NULL) { - m_pListener->onPresentScreen(); - } -} - -void ProtocolAds::failedToReceiveAd(AdListener::EAdErrorCode code, const char* msg) -{ - if (m_pListener != NULL) - { - m_pListener->onFailedToReceiveAd(code, msg); - } -} - -void ProtocolAds::dismissScreen() -{ - if (m_pListener != NULL) - { - m_pListener->onDismissScreen(); + m_pListener->onPlayerGetPoints(this, points); } } diff --git a/plugin/protocols/platform/ios/ProtocolIAP.cpp b/plugin/protocols/platform/ios/ProtocolIAP.cpp index b3d1667b9d..2c11ed0d72 100644 --- a/plugin/protocols/platform/ios/ProtocolIAP.cpp +++ b/plugin/protocols/platform/ios/ProtocolIAP.cpp @@ -3,10 +3,9 @@ namespace cocos2d { namespace plugin { bool ProtocolIAP::m_bPaying = false; -PayResultListener* ProtocolIAP::m_pListener = NULL; -TProductInfo ProtocolIAP::m_curInfo; ProtocolIAP::ProtocolIAP() +: m_pListener(NULL) { } @@ -19,7 +18,7 @@ bool ProtocolIAP::init() return true; } -void ProtocolIAP::initDeveloperInfo(TDeveloperInfo devInfo) +void ProtocolIAP::configDeveloperInfo(TIAPDeveloperInfo devInfo) { } @@ -32,12 +31,12 @@ void ProtocolIAP::setResultListener(PayResultListener* pListener) m_pListener = pListener; } -void ProtocolIAP::payResult(EPayResult ret, const char* msg) +void ProtocolIAP::onPayResult(PayResultCode ret, const char* msg) { m_bPaying = false; if (m_pListener) { - m_pListener->payResult(ret, msg, m_curInfo); + m_pListener->onPayResult(ret, msg, m_curInfo); } m_curInfo.clear(); diff --git a/plugin/protocols/proj.ios/PluginProtocol.xcodeproj/project.pbxproj b/plugin/protocols/proj.ios/PluginProtocol.xcodeproj/project.pbxproj index b565281028..4f7fdaa3ae 100644 --- a/plugin/protocols/proj.ios/PluginProtocol.xcodeproj/project.pbxproj +++ b/plugin/protocols/proj.ios/PluginProtocol.xcodeproj/project.pbxproj @@ -38,6 +38,7 @@ FA09A33C168ADC1F008C1C7B /* PluginManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManager.cpp; path = ../PluginManager.cpp; sourceTree = ""; }; FA09A33D168ADC1F008C1C7B /* RegisterPlugin.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPlugin.cpp; path = ../RegisterPlugin.cpp; sourceTree = ""; }; FA0CB8B6168D3CC200E36B11 /* ProtocolAnalytics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProtocolAnalytics.cpp; sourceTree = ""; }; + FA4E3033172BD02800A3E673 /* ProtocolSocial.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProtocolSocial.h; sourceTree = ""; }; FA7C6C971724E4DD008A0ECC /* ProtocolAds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProtocolAds.h; sourceTree = ""; }; FA7C6C991724E51C008A0ECC /* ProtocolAds.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProtocolAds.cpp; sourceTree = ""; }; FA7C6C9A1724E51C008A0ECC /* ProtocolIAP.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ProtocolIAP.cpp; sourceTree = ""; }; @@ -86,6 +87,7 @@ FA09A336168ADC05008C1C7B /* include */ = { isa = PBXGroup; children = ( + FA4E3033172BD02800A3E673 /* ProtocolSocial.h */, FA7C6C971724E4DD008A0ECC /* ProtocolAds.h */, FA09A337168ADC05008C1C7B /* PluginManager.h */, FA09A338168ADC05008C1C7B /* PluginProtocol.h */,