Disabling trophies for now. Will activate in v0.7 or later.
This commit is contained in:
parent
5e1220b9a4
commit
0eaeaba386
|
@ -44,6 +44,7 @@ extern long lookup(char *name);
|
||||||
extern Entity *spawnFighter(char *name, int x, int y, int side);
|
extern Entity *spawnFighter(char *name, int x, int y, int side);
|
||||||
extern int isAcceptControl(void);
|
extern int isAcceptControl(void);
|
||||||
extern void resetAcceptControls(void);
|
extern void resetAcceptControls(void);
|
||||||
|
extern void awardTrophy(char *id);
|
||||||
|
|
||||||
extern App app;
|
extern App app;
|
||||||
extern Battle battle;
|
extern Battle battle;
|
||||||
|
|
|
@ -138,6 +138,7 @@ Trophy *getTrophy(char *id)
|
||||||
|
|
||||||
static void loadTrophyData(char *filename)
|
static void loadTrophyData(char *filename)
|
||||||
{
|
{
|
||||||
|
/*
|
||||||
cJSON *root, *node;
|
cJSON *root, *node;
|
||||||
char *text;
|
char *text;
|
||||||
Trophy *t, *tail;
|
Trophy *t, *tail;
|
||||||
|
@ -160,7 +161,7 @@ static void loadTrophyData(char *filename)
|
||||||
t->value = lookup(cJSON_GetObjectItem(node, "value")->valuestring);
|
t->value = lookup(cJSON_GetObjectItem(node, "value")->valuestring);
|
||||||
t->hidden = getJSONValue(node, "hidden", 0);
|
t->hidden = getJSONValue(node, "hidden", 0);
|
||||||
|
|
||||||
/* can't use the getJSONValue here, as it could lead to false positives */
|
// can't use the getJSONValue here, as it could lead to false positives
|
||||||
if (cJSON_GetObjectItem(node, "stat"))
|
if (cJSON_GetObjectItem(node, "stat"))
|
||||||
{
|
{
|
||||||
t->stat = lookup(cJSON_GetObjectItem(node, "stat")->valuestring);
|
t->stat = lookup(cJSON_GetObjectItem(node, "stat")->valuestring);
|
||||||
|
@ -173,6 +174,7 @@ static void loadTrophyData(char *filename)
|
||||||
|
|
||||||
cJSON_Delete(root);
|
cJSON_Delete(root);
|
||||||
free(text);
|
free(text);
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
void awardStatsTrophies(void)
|
void awardStatsTrophies(void)
|
||||||
|
|
Loading…
Reference in New Issue