2020-12-18 20:15:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "dolphin_deed.h"
|
2021-01-08 04:42:48 +00:00
|
|
|
#include <stdbool.h>
|
2020-12-18 20:15:29 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef struct DolphinState DolphinState;
|
|
|
|
|
|
|
|
DolphinState* dolphin_state_alloc();
|
|
|
|
|
2021-04-13 18:06:25 +00:00
|
|
|
void dolphin_state_free(DolphinState* dolphin_state);
|
2020-12-18 20:15:29 +00:00
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
bool dolphin_state_save(DolphinState* dolphin_state);
|
2020-12-18 20:15:29 +00:00
|
|
|
|
2021-01-08 04:42:48 +00:00
|
|
|
bool dolphin_state_load(DolphinState* dolphin_state);
|
2020-12-18 20:15:29 +00:00
|
|
|
|
|
|
|
void dolphin_state_clear(DolphinState* dolphin_state);
|
|
|
|
|
|
|
|
void dolphin_state_on_deed(DolphinState* dolphin_state, DolphinDeed deed);
|
|
|
|
|
|
|
|
uint32_t dolphin_state_get_icounter(DolphinState* dolphin_state);
|
|
|
|
|
|
|
|
uint32_t dolphin_state_get_butthurt(DolphinState* dolphin_state);
|
2021-03-25 17:48:58 +00:00
|
|
|
|
|
|
|
uint32_t dolphin_state_get_level(DolphinState* dolphin_state);
|
|
|
|
|
|
|
|
uint32_t dolphin_state_xp_to_levelup(DolphinState* dolphin_state, uint32_t level, bool remaining);
|