X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_api.h;h=b3b6907c047b165e372baabcb7e9c495a1fd990c;hb=4fa9aa9a1e09940e91cc30e171e3de0606515ef3;hp=a009d6ddd4201e0594e957370109f77ffff3bab1;hpb=b615f03b922d155f9449d2a23d3cc18eed320ed3;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_api.h b/player_api.h index a009d6d..b3b6907 100644 --- a/player_api.h +++ b/player_api.h @@ -5,21 +5,26 @@ #include "camera.h" #include "entity.h" -#define PLAYER_API VG_STATIC +#define PLAYER_API static typedef struct player_instance player_instance; -typedef mdl_keyframe player_pose[32]; -typedef struct player_animation player_animation; +typedef struct player_pose player_pose; -struct player_animation{ - player_pose pose; - v3f root_co; - v4f root_q; - - enum player_animation_type { - k_player_animation_type_fk, /* regular FK animation */ - k_player_animation_type_absolute /* decomposition of the final matrices */ +struct player_pose{ + enum player_pose_type { + k_player_pose_type_ik, /* regular IK animation */ + k_player_pose_type_fk_2, } type; + + v3f root_co; + v4f root_q; + + mdl_keyframe keyframes[32]; + + struct player_board_pose { + f32 lean; + } + board; }; #endif /* PLAYER_API_H */