-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kiip_android.cpp
278 lines (201 loc) · 6.31 KB
/
Kiip_android.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/*-
* Cross-Platform C++ Wrapper for Kiip
* Designed to work with iOS and Android Kiip libraries
* http://kiip.me
*
* Created by Brady Archambo (in no way affiliated with Kiip)
*
* Find me on Twitter, twitter.com/bradyy
*
*/
#include <android/log.h>
#include <jni.h>
#include <cstring>
#include "Kiip_android.h"
#define LOG_TAG "Kiip_Android Debug"
#define LOGD(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
KiipWrapper* KiipWrapper::m_spKiipWrapper = NULL;
JavaVM* m_spJavaVM = NULL;
KiipWrapper* KiipWrapper::sharedKiipWrapper()
{
if (m_spKiipWrapper == NULL) {
m_spKiipWrapper = new KiipWrapper();
}
return m_spKiipWrapper;
}
jint JNI_OnLoad(JavaVM *vm, void *reserved)
{
m_spJavaVM = vm;
return JNI_VERSION_1_4;
}
// Assigns JNIEnv to pointer argument
static bool getEnv(JNIEnv **env)
{
bool bRet = false;
do
{
if (m_spJavaVM->GetEnv((void**)env, JNI_VERSION_1_4) != JNI_OK)
{
LOGD("Failed to get the environment using GetEnv()");
break;
}
if (m_spJavaVM->AttachCurrentThread(env, 0) < 0)
{
LOGD("Failed to get the environment using AttachCurrentThread()");
break;
}
bRet = true;
} while (0);
return bRet;
}
// Unlocks an achievement in Kiip
// Android JNI (Java Native Interface) method
void KiipWrapper::unlockAchievement(const char * name)
{
LOGD("Unlock achievement");
// Get JNI environment
JNIEnv *env = 0;
if (! getEnv(&env))
{
return;
}
LOGD("Got env");
// Get KPManager class
jclass classID = env->FindClass("me/kiip/api/KPManager");
if (! classID)
{
return;
}
if(env->ExceptionCheck()) { // ClassNotFoundException ?
env->ExceptionDescribe();
env->ExceptionClear();
}
LOGD("Got KPManager class");
// Get 'getInstance' method
jmethodID getInstanceMethod = env->GetStaticMethodID(classID, "getInstance", "()Lme/kiip/api/KPManager;");
if (!getInstanceMethod)
{
return;
}
LOGD("Got getInstance Method");
// Call 'getInstance' method
jobject manager = env->CallStaticObjectMethod(classID, getInstanceMethod);
if (! manager)
{
return;
}
LOGD("Got manager");
// Get class of manager
// Redundant, but had issues getting it to work otherwise
jclass cls = env->GetObjectClass(manager);
if (! cls)
{
return;
}
if(env->ExceptionCheck()) { // ClassNotFoundException ?
env->ExceptionDescribe();
env->ExceptionClear();
}
LOGD("Got class of manager");
// Get 'unlockAchievement' method
jmethodID method = env->GetMethodID(cls, "unlockAchievement", "(Ljava/lang/String;Lme/kiip/api/KPManager$KPRequestListener;[Ljava/lang/String;)V");
if (! method)
{
return;
}
LOGD("Got unlock achievement method");
// Create string with achievement name parameter
jstring achievementName = env->NewStringUTF(name);
if (! achievementName)
{
return;
}
LOGD("Made achievement name");
// Pass in tags to the method
// Passing in null was failing
// TODO: Move these to an arg
char *data[2]= {"A", "B"};
jobjectArray ret = (jobjectArray)env->NewObjectArray(2,env->FindClass("java/lang/String"),env->NewStringUTF(""));
for(int i = 0; i < 2 ;i++) {
env->SetObjectArrayElement(ret,i,env->NewStringUTF(data[i]));
}
// Call 'unlockAchievement' with achievement name and tags
env->CallVoidMethod(manager, method, achievementName, NULL, ret);
LOGD("Called unlockAchievement");
}
void KiipWrapper::reportScoreForLeaderboard(const char * name, double score)
{
LOGD("Report score for leaderboard");
// Get JNI environment
JNIEnv *env = 0;
if (! getEnv(&env))
{
return;
}
LOGD("Got env");
// Get KPManager class
jclass classID = env->FindClass("me/kiip/api/KPManager");
if (! classID)
{
return;
}
if(env->ExceptionCheck()) { // ClassNotFoundException ?
env->ExceptionDescribe();
env->ExceptionClear();
}
LOGD("Got KPManager class");
// Get 'getInstance' method
jmethodID getInstanceMethod = env->GetStaticMethodID(classID, "getInstance", "()Lme/kiip/api/KPManager;");
if (!getInstanceMethod)
{
return;
}
LOGD("Got getInstance Method");
// Call 'getInstance' method
jobject manager = env->CallStaticObjectMethod(classID, getInstanceMethod);
if (! manager)
{
return;
}
LOGD("Got manager");
// Get class of manager
// Redundant, but had issues getting it to work otherwise
jclass cls = env->GetObjectClass(manager);
if (! cls)
{
return;
}
if(env->ExceptionCheck()) { // ClassNotFoundException ?
env->ExceptionDescribe();
env->ExceptionClear();
}
LOGD("Got class of manager");
// Get 'saveLeaderboard' method
jmethodID method = env->GetMethodID(cls, "saveLeaderboard", "(Ljava/lang/String;ILme/kiip/api/KPManager$KPRequestListener;[Ljava/lang/String;)V");
if (! method)
{
return;
}
LOGD("Got save leaderboard method");
// Create string with leaderboard name parameter
jstring leaderboardName = env->NewStringUTF(name);
if (! leaderboardName)
{
return;
}
LOGD("Made leaderboard name");
// Pass in tags to the method
// Passing in null was failing
// TODO: Move these to an arg
char *data[2]= {"A", "B"};
jobjectArray ret = (jobjectArray)env->NewObjectArray(2,env->FindClass("java/lang/String"),env->NewStringUTF(""));
for(int i=0; i<2 ;i++) {
env->SetObjectArrayElement(ret,i,env->NewStringUTF(data[i]));
}
LOGD("Made string array");
// Convert score to JNI compatible integer
jint convertedScore = (jint) score;
// Call 'saveLeaderboard' method with leaderboard name, score, and tags
env->CallVoidMethod(manager, method, leaderboardName, convertedScore, NULL, ret);
LOGD("Called saveLeaderboard");
}