X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=player_api.h;h=2c2d18ece0cab214ebfb66c89a261dea1110c027;hb=da1a0abc0c32b4283746949ba9a135a7d3c0b82c;hp=a009d6ddd4201e0594e957370109f77ffff3bab1;hpb=b615f03b922d155f9449d2a23d3cc18eed320ed3;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/player_api.h b/player_api.h index a009d6d..2c2d18e 100644 --- a/player_api.h +++ b/player_api.h @@ -7,19 +7,24 @@ #define PLAYER_API VG_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 */