123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- //
- // XenonSDK.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/1/20.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- static UIApplication * mApplication;
- ///
- /// Game SDK
- ///
- @interface XenonSDK : NSObject
- ///
- /// A sington instance of SDK.
- ///
- + (instancetype)sharedSDK;
- ///
- /// Init the sdk with application code.
- /// \param parameter The parameter provided by the platform.
- ///
- /// \param complete This closure called when init complete.
- ///
- - (void)initWithParameter:(NSString*)parameter complete:(void (^)(NSError* error))complete;
- ///
- /// Login the sdk.
- /// \param complete This closure called when login complete.
- ///
- - (void)loginWithComplete:(void (^)(id user, NSError* error))complete;
- ///
- /// Logout the sdk.
- /// \param complete This closure called when logout complete.
- ///
- - (void)logoutWithComplete:(void (^)(void))complete;
- ///
- /// Logout the game and sdk.
- /// \param handler This closure called when user logout in web view.
- /// \note Warning this handler will retain in until next call this method.
- ///
- - (void)logoutWhenNotification:(void (^)(void))handler;
- ///
- /// Buy a product.
- /// \param parameters Payment request parameters.
- /// \param complete Payment result of the callback, if the apple payment is completed before the callback, other payments will be the official launch of the callback
- ///
- - (void)buy:(NSDictionary*)parameters complete:(void (^)(id order, NSError* error))complete;
- ///
- /// User Center.
- ///
- - (void)center;
- /// Report role info.
- /// \param roleName This role name.
- ///
- /// \param level This role current level.
- ///
- /// \param serverId This role current server.
- ///
- - (void)reportWithRoleName:(NSString*)roleName level:(NSInteger)level serverId:(NSString*)serverId;
- ///
- /// Login the sdk.
- /// \param complete This closure called when login complete.
- ///
- - (void)xautoWithComplete:(void (^)(id user, NSError* error))complete;
- ///banner横幅广告
- - (void)adBanner:(NSString*)adId;
- ///关闭banner横幅广告
- - (void)closeBanner:(NSString*)adId;
- ///Inner广告
- - (void)adInner:(NSString*)adId complete:(void (^)(int))complete;
- ///视频激励广告
- - (void)adVideo:(NSString*)adId complete:(void (^)(int))complete;
- /// 打开一个原生广告
- /// @param adId 打开广告编号
- -(void)adNative:(NSString *)adId x:(int)x y:(int)y w:(int)width h:(int)hight;
- /// 获取某一个广告位广告是否可用
- /// @param adName 广告位名称
- /// @parm callback YES:可用, NO:不可用
- -(void)isAdReady:(NSString *)adName callback:(void(^)(BOOL))callback;
- /// 打开一个广告
- /// @param adName 广告位名称
- -(void)openAd:(NSString *)adName;
- /// 打开一个广告 带着播放结果回调
- -(void)openAd:(NSString *)adName callback:(void(^)(BOOL))callback;
- //关闭原生广告
- -(void)closeNative:(NSString *)adName;
- ///
- /// 生命周期启动入口
- /// @param application application对象
- -(void)applicationDidFinishLaunching:(UIApplication *)application;
- /// 游戏进入后台
- -(void)applicationDidEnterBackground;
- /// 游戏进入到前台
- -(void)applicationWillEnterForeground;
- /// 游戏开始活跃运行
- -(void)applicationDidBecomeActive;
- ///手机震动
- -(void)iphoneVibrate;
- ///跳转appstore评论
- -(void)skipToAppsotreWithID:(NSString *)appleId;
- ///自动登录
- -(void)autoLogin;
- ///手动登录
- -(void)manualLogin;
- /// 统计事件1
- /// @param eventName 事件名称
- -(void)tjEvent:(NSString *)eventName;
- /// 统计事件2
- /// @param eventName 事件名称
- /// @param value 事件对应值
- -(void)tjEvent:(NSString *)eventName value:(NSString *)value;
- @end
|