| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- #include "dolphin_state.h"
- #include <storage/storage.h>
- #include <furi.h>
- #include <math.h>
- #include <toolbox/saved_struct.h>
- #define TAG "DolphinState"
- #define DOLPHIN_STATE_PATH "/int/dolphin.state"
- #define DOLPHIN_STATE_HEADER_MAGIC 0xD0
- #define DOLPHIN_STATE_HEADER_VERSION 0x01
- #define DOLPHIN_LVL_THRESHOLD 20.0f
- typedef struct {
- uint32_t limit_ibutton;
- uint32_t limit_nfc;
- uint32_t limit_ir;
- uint32_t limit_rfid;
- uint32_t flags;
- uint32_t icounter;
- uint32_t butthurt;
- uint64_t timestamp;
- } DolphinStoreData;
- struct DolphinState {
- DolphinStoreData data;
- bool dirty;
- };
- DolphinState* dolphin_state_alloc() {
- return furi_alloc(sizeof(DolphinState));
- }
- void dolphin_state_free(DolphinState* dolphin_state) {
- free(dolphin_state);
- }
- bool dolphin_state_save(DolphinState* dolphin_state) {
- if(!dolphin_state->dirty) {
- return true;
- }
- bool result = saved_struct_save(
- DOLPHIN_STATE_PATH,
- &dolphin_state->data,
- sizeof(DolphinStoreData),
- DOLPHIN_STATE_HEADER_MAGIC,
- DOLPHIN_STATE_HEADER_VERSION);
- if(result) {
- FURI_LOG_I(TAG, "State saved");
- dolphin_state->dirty = false;
- } else {
- FURI_LOG_E(TAG, "Failed to save state");
- }
- return result;
- }
- bool dolphin_state_load(DolphinState* dolphin_state) {
- bool loaded = saved_struct_load(
- DOLPHIN_STATE_PATH,
- &dolphin_state->data,
- sizeof(DolphinStoreData),
- DOLPHIN_STATE_HEADER_MAGIC,
- DOLPHIN_STATE_HEADER_VERSION);
- if(!loaded) {
- FURI_LOG_W(TAG, "Reset dolphin-state");
- memset(dolphin_state, 0, sizeof(*dolphin_state));
- dolphin_state->dirty = true;
- }
- return loaded;
- }
- uint64_t dolphin_state_timestamp() {
- RTC_TimeTypeDef time;
- RTC_DateTypeDef date;
- struct tm current;
- HAL_RTC_GetTime(&hrtc, &time, RTC_FORMAT_BIN);
- HAL_RTC_GetDate(&hrtc, &date, RTC_FORMAT_BIN);
- current.tm_year = date.Year + 100;
- current.tm_mday = date.Date;
- current.tm_mon = date.Month - 1;
- current.tm_hour = time.Hours;
- current.tm_min = time.Minutes;
- current.tm_sec = time.Seconds;
- return mktime(¤t);
- }
- void dolphin_state_on_deed(DolphinState* dolphin_state, DolphinDeed deed) {
- const DolphinDeedWeight* deed_weight = dolphin_deed_weight(deed);
- int32_t icounter = dolphin_state->data.icounter + deed_weight->icounter;
- int32_t butthurt = dolphin_state->data.butthurt;
- if(icounter >= 0) {
- dolphin_state->data.icounter = icounter;
- dolphin_state->data.butthurt = MAX(butthurt - deed_weight->icounter, 0);
- dolphin_state->data.timestamp = dolphin_state_timestamp();
- }
- dolphin_state->dirty = true;
- }
- void dolphin_state_butthurted(DolphinState* dolphin_state) {
- dolphin_state->data.butthurt++;
- dolphin_state->data.timestamp = dolphin_state_timestamp();
- dolphin_state->dirty = true;
- }
- uint32_t dolphin_state_get_icounter(DolphinState* dolphin_state) {
- return dolphin_state->data.icounter;
- }
- uint32_t dolphin_state_get_butthurt(DolphinState* dolphin_state) {
- return dolphin_state->data.butthurt;
- }
- uint64_t dolphin_state_get_timestamp(DolphinState* dolphin_state) {
- return dolphin_state->data.timestamp;
- }
- uint32_t dolphin_state_get_level(uint32_t icounter) {
- return 0.5f + sqrtf(1.0f + 8.0f * ((float)icounter / DOLPHIN_LVL_THRESHOLD)) / 2.0f;
- }
- uint32_t dolphin_state_xp_to_levelup(uint32_t icounter, uint32_t level, bool remaining) {
- return (DOLPHIN_LVL_THRESHOLD * level * (level + 1) / 2) - (remaining ? icounter : 0);
- }
|