-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIAPKit.hpp
124 lines (108 loc) · 3.5 KB
/
IAPKit.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
//
// IAPKit.hpp
// Maw Kit
//
// Created by Lluís Ulzurrun de Asanza Sàez on 18/02/16.
//
//
#ifndef IAPKit_hpp
#define IAPKit_hpp
#include <functional>
#include <string>
#include <vector>
namespace MK {
/**
* `IAPKit` namespace features methods to handle in-app purchases.
*/
namespace IAPKit {
/// Enumeration defining available in-app purchases. Must be declared in your
/// game.
/// @example enum class ProductID: unsigned long long { COINS = 0 };
enum class ProductID : unsigned long long;
/**
* Inits In-App Purchase system, calling given callback on end.
*
* @param products List of products whose information will be downloaded.
* @param callback Callback to be called.
*/
void init( const std::vector<ProductID> &products,
std::function<void( void )> callback = nullptr );
/**
* Returns string identifier (global ID) of given in-app purchase.
*
* @note Your game should implement this method.
*
* @param localID LocalID (enum class item) of in-app purchase.
*
* @return String identifier (global ID) of given in-app purchase.
*/
const std::string productGlobalIDForProductLocalID( const ProductID localID );
/**
* Returns enum class item (local ID) of in-app purchase with given string
* identifier (global ID).
*
* @note Your game should implement this method.
*
* @param globalID Global ID (string) of in-app purchase.
*
* @return Enum class item (local ID) of given in-app purchase.
*/
const ProductID productLocalIDForProductGlobalID( const std::string &globalID );
/**
* Unlocks content locked by product with given identifier.
*
* @note Your game should implement this method.
*
* @example unlockProduct(LE::IAP::ProductID::BAG_OF_COINS); // Gives user 20k
*
* @param productIdentifier Identifier of product to unlock.
*/
void unlockProduct( const ProductID productIdentifier );
/**
* Tries to buy given item, calling callback on finished.
*
* @param productIdentifier Identifier of product to buy.
* @param callback Callback to be called. First argument will be true
* if user finished the purchase,
*/
void buyIfPossible( const ProductID productIdentifier, std::function<void( bool )> callback );
/**
* Returns title of buy button for product with given identifier.
* Title may include currency in user's expected format.
*
* @param productIdentifier Identifier of product whose buy button title will
* be returned.
*
* @return Title to show in buy button for product with given identifier.
*/
const std::string buyButtonTitleForProduct( const ProductID productIdentifier );
/**
* Returns whether given product has been found on store and can be bought
* or not.
*
* @note This method does not check whether user already bought the product or
* not.
*
* @native
*
* @param productIdentifier Identifier of product to check.
*
* @return `true` if product has been retrieved from store and can be bought.
*/
const bool productMetadataHasBeenRetrievedFromStore( const ProductID productIdentifier );
/**
* Restores any previously purchased item, calling given callback on end.
*
* @param callback Callback to be called after restoring purchases. First
* parameter will be `true` on success.
*/
void restorePurchases( std::function<void( bool )> callback = nullptr );
/**
* Returns whether IAPKit is enabled or not.
*
* @return `true` if IAPKit is enabled.
*/
const bool enabled();
}; // namespace IAPKit
}; // namespace MK
#endif /* IAPKit_hpp */