1b78418f9f
* GUI: view. Flooper-blooper fix compilation error. * GUI: view and viewdispatcher bones * GUI: view implementation, view models, view dispatcher * GUI: view navigation, model refinement. Power: use view, view dispatcher. * HAL Flash: proper page write. Dolphin: views. Power: views * Dolphin: transition idle scree to Views * Dolphin: input events on stats view. Format sources. * HAL: flash erase. Dolphin: permanent state storage. * Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
24 lines
596 B
C
24 lines
596 B
C
#pragma once
|
|
|
|
#include "dolphin_deed.h"
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
typedef struct DolphinState DolphinState;
|
|
|
|
DolphinState* dolphin_state_alloc();
|
|
|
|
void dolphin_state_release(DolphinState* dolphin_state);
|
|
|
|
bool dolphin_state_save(DolphinState* dolphin_state);
|
|
|
|
bool dolphin_state_load(DolphinState* dolphin_state);
|
|
|
|
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);
|