123 lines
3.1 KiB
Objective-C
123 lines
3.1 KiB
Objective-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.
|
|
****************************************************************************/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol InterfaceAds<NSObject>
|
|
|
|
@required
|
|
/**
|
|
* show advertising
|
|
*
|
|
* @param info the parameters of the advertising
|
|
key:Param1 value:the type of advertising
|
|
key:Param2 value:the order of advertising
|
|
*/
|
|
- (void) showAds: (NSMutableDictionary*) info;
|
|
|
|
/**
|
|
* hide advertising
|
|
*
|
|
* @param info the parameters of the advertising
|
|
key:Param1 value:the type of advertising
|
|
key:Param2 value:the order of advertising
|
|
*/
|
|
- (void) hideAds: (NSMutableDictionary*) info;
|
|
|
|
/**
|
|
* preload advertising
|
|
*
|
|
* @param info the parameters of the advertising
|
|
key:Param1 value:the type of advertising
|
|
key:Param2 value:the order of advertising
|
|
*/
|
|
- (void) preloadAds: (NSMutableDictionary*) info;
|
|
|
|
/**
|
|
* query the points
|
|
*
|
|
* @return points
|
|
*/
|
|
- (float) queryPoints;
|
|
|
|
/**
|
|
* spend user`s points
|
|
*
|
|
* @param points the points of spending
|
|
*/
|
|
- (void) spendPoints: (int) points;
|
|
|
|
/**
|
|
* Description
|
|
*
|
|
* @param adType the type of advertising
|
|
*
|
|
* @return if the type is supported ,return true
|
|
or if the type is supported ,return false
|
|
*/
|
|
- (BOOL) isAdTypeSupported: (int)adType;
|
|
|
|
/**
|
|
* get the version of SDK
|
|
*
|
|
* @return the version of SDK
|
|
*/
|
|
- (NSString*) getSDKVersion;
|
|
|
|
/**
|
|
* get the version of plugin
|
|
*
|
|
* @return the version of plugin
|
|
*/
|
|
- (NSString*) getPluginVersion;
|
|
|
|
|
|
@optional
|
|
/**
|
|
* init SDK
|
|
*
|
|
* @param cpInfo the parameters of SDK
|
|
*/
|
|
- (void) configDeveloperInfo : (NSMutableDictionary*) cpInfo;
|
|
|
|
/**
|
|
* set debug mode true or false
|
|
*
|
|
* @param debug the status of debug
|
|
*/
|
|
- (void) setDebugMode: (BOOL) debug;
|
|
|
|
/**
|
|
* whether function is supported
|
|
*
|
|
* @param functionName the name of function
|
|
*
|
|
* @return return If the function is supported, return true
|
|
or if the function is not supported, return false
|
|
*/
|
|
- (BOOL) isFunctionSupported : (NSString*) functionName;
|
|
|
|
|
|
@end
|