XenonSDK.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //
  2. // XenonSDK.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/1/20.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "XSUtils.h"
  10. #import "XSTracker.h"
  11. #import "XSCollector.h"
  12. #import "XSNetwork.h"
  13. #import "XSUser.h"
  14. #import "XSConfiguration.h"
  15. #import "XSDataCenter.h"
  16. #import <AudioToolbox/AudioToolbox.h>
  17. ///
  18. /// Game SDK
  19. ///
  20. @interface XenonSDK : NSObject
  21. @property (nonatomic, strong) XSUser* user;
  22. @property (nonatomic, strong) XSConfiguration* configuration;
  23. @property (nonatomic, strong) void(^sdk_loginCallback)(id user);
  24. @property (nonatomic, strong) void(^sdk_logoutCallback)(id user);
  25. @property (nonatomic, strong) UIView* bubbleView;
  26. @property (nonatomic, strong) UIViewController* rootViewController;
  27. @property (nonatomic, strong) NSString* appId;
  28. @property (nonatomic, strong) NSString* channelId;
  29. @property (nonatomic, strong) NSString* adId;
  30. @property (nonatomic, strong) NSString* adFlag;
  31. @property (nonatomic, readonly) NSBundle* bundle;
  32. @property (nonatomic, readonly) NSString* version;
  33. @property (nonatomic, readonly) NSString* shortVersion;
  34. @property (nonatomic, readonly) NSString* model;
  35. @property (nonatomic, readonly) NSString* advertisingIdentifier;
  36. @property (nonatomic, readonly) NSString* advertisingVendor;
  37. @property (nonatomic, strong) NSString* token;
  38. /// A sington instance of SDK.
  39. + (instancetype)sharedSDK;
  40. /// Init the sdk with application code.
  41. - (void)initWithParameter:(NSString*)parameter complete:(void (^)(NSError* error))complete;
  42. /// Login the sdk.
  43. - (void)loginWithComplete:(void (^)(id user, NSError* error))complete;
  44. /// Logout the sdk.
  45. - (void)logoutWithComplete:(void (^)(void))complete;
  46. /// Logout the game and sdk.
  47. - (void)logoutWhenNotification:(void (^)(void))handler;
  48. /// Buy a product.
  49. - (void)buy:(NSDictionary*)parameters complete:(void (^)(id order, NSError* error))complete;
  50. /// User Center.
  51. - (void)center;
  52. /// Report role info.
  53. - (void)reportWithRoleName:(NSString*)roleName level:(NSInteger)level serverId:(NSString*)serverId;
  54. ///Switch Account
  55. -(void)switchAccount;
  56. //掉单校验
  57. - (void)checkOrderStatus;
  58. //提示弹窗
  59. -(void)showHudSuccess:(NSString*)str;
  60. @end