b1c2b7f35e
* Initial round_end extraction * move hands to game vars * Checkpoint * Finish removing all variables for state fns * Move over round_end substate functions * Move over round_end with compile * working in general * Fix round start state issue * clang-format * Fix clang format issue * PR fixes and standardize types in game vars struct * Clang-format
23 lines
532 B
C
23 lines
532 B
C
/**
|
|
* @file timer.h
|
|
*
|
|
* @brief Timer constants
|
|
*
|
|
*/
|
|
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
#define TM_ZERO 0
|
|
|
|
#define TM_REWARDS_ELLIPSIS_PRINT_START 2
|
|
#define TM_REWARDS_ELLIPSIS_PRINT_END 16
|
|
#define TM_REWARD_DISPLAY_INTERVAL 15
|
|
#define TM_REWARD_INCREMENT_INTERVAL 20
|
|
|
|
#define TM_DISPLAY_REWARDS_CONT_WAIT (TM_REWARDS_ELLIPSIS_PRINT_END + TM_REWARD_DISPLAY_INTERVAL)
|
|
#define TM_HAND_REWARD_INCR_WAIT (TM_DISPLAY_REWARDS_CONT_WAIT + TM_REWARD_DISPLAY_INTERVAL)
|
|
|
|
#define MENU_POP_OUT_ANIM_FRAMES 20
|
|
|
|
#endif // TIMER_H
|