2015-10-09 13:29:57 -03:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2016-01-10 04:06:50 +01:00
|
|
|
* Copyright (C) 2015-2016 - Andre Leiradella
|
2015-10-09 13:29:57 -03:00
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-09-02 14:23:37 +01:00
|
|
|
#ifndef __RARCH_CHEEVOS_CHEEVOS_H
|
|
|
|
#define __RARCH_CHEEVOS_CHEEVOS_H
|
2015-10-09 13:29:57 -03:00
|
|
|
|
2015-10-30 14:21:29 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2017-10-22 19:42:15 +01:00
|
|
|
#include <boolean.h>
|
|
|
|
|
2018-09-02 14:23:37 +01:00
|
|
|
#include "../verbosity.h"
|
|
|
|
|
2016-06-03 02:39:35 +02:00
|
|
|
#include <retro_common_api.h>
|
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
2016-06-03 10:08:27 +10:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
typedef struct cheevos_ctx_desc
|
2016-02-13 06:06:51 +01:00
|
|
|
{
|
2016-05-08 00:15:04 +02:00
|
|
|
unsigned idx;
|
|
|
|
char *s;
|
|
|
|
size_t len;
|
|
|
|
} cheevos_ctx_desc_t;
|
2016-02-13 06:13:46 +01:00
|
|
|
|
2017-11-09 19:48:38 -06:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
CHEEVOS_ACTIVE_SOFTCORE = 1 << 0,
|
|
|
|
CHEEVOS_ACTIVE_HARDCORE = 1 << 1
|
|
|
|
};
|
|
|
|
|
2017-05-07 19:06:03 +01:00
|
|
|
bool cheevos_load(const void *data);
|
2016-02-13 06:24:49 +01:00
|
|
|
|
2016-11-04 19:56:31 +00:00
|
|
|
void cheevos_reset_game(void);
|
|
|
|
|
2017-11-23 20:35:54 -05:00
|
|
|
void cheevos_populate_menu(void *data);
|
2016-02-13 06:13:46 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_get_description(cheevos_ctx_desc_t *desc);
|
2016-03-14 12:53:56 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_apply_cheats(bool *data_bool);
|
2015-10-15 16:08:48 +02:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_unload(void);
|
2016-02-13 06:30:39 +01:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_toggle_hardcore_mode(void);
|
2015-11-08 13:19:54 -02:00
|
|
|
|
2016-12-06 06:32:03 +01:00
|
|
|
void cheevos_test(void);
|
2015-11-08 16:42:23 -02:00
|
|
|
|
2016-05-08 00:15:04 +02:00
|
|
|
bool cheevos_set_cheats(void);
|
2016-02-13 06:06:51 +01:00
|
|
|
|
2016-05-12 22:03:18 -03:00
|
|
|
void cheevos_set_support_cheevos(bool state);
|
|
|
|
|
2016-09-03 17:50:04 +01:00
|
|
|
bool cheevos_get_support_cheevos(void);
|
|
|
|
|
2018-09-02 14:23:37 +01:00
|
|
|
int cheevos_get_console(void);
|
2016-06-04 17:45:48 +02:00
|
|
|
|
2016-12-06 06:32:03 +01:00
|
|
|
extern bool cheevos_loaded;
|
2018-04-30 14:38:24 -05:00
|
|
|
extern bool cheevos_hardcore_active;
|
2018-04-30 16:23:31 -05:00
|
|
|
extern bool cheevos_hardcore_paused;
|
2018-09-20 23:20:38 -05:00
|
|
|
extern bool cheevos_state_loaded_flag;
|
2016-12-06 06:32:03 +01:00
|
|
|
extern int cheats_are_enabled;
|
|
|
|
extern int cheats_were_enabled;
|
|
|
|
|
2016-06-03 02:39:35 +02:00
|
|
|
RETRO_END_DECLS
|
2016-06-03 10:08:27 +10:00
|
|
|
|
2018-09-02 14:23:37 +01:00
|
|
|
#endif /* __RARCH_CHEEVOS_CHEEVOS_H */
|