|
@ -30,16 +30,19 @@ typedef struct EnvItem { |
|
|
Color color; |
|
|
Color color; |
|
|
} EnvItem; |
|
|
} EnvItem; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------- |
|
|
|
|
|
// Module functions declaration |
|
|
|
|
|
//---------------------------------------------------------------------------------- |
|
|
void UpdatePlayer(Player *player, EnvItem *envItems, int envItemsLength, float delta); |
|
|
void UpdatePlayer(Player *player, EnvItem *envItems, int envItemsLength, float delta); |
|
|
|
|
|
|
|
|
void UpdateCameraCenter(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraCenter(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraCenterInsideMap(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraCenterInsideMap(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraCenterSmoothFollow(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraCenterSmoothFollow(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraEvenOutOnLanding(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraEvenOutOnLanding(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraPlayerBoundsPush(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
void UpdateCameraPlayerBoundsPush(Camera2D *camera, Player *player, EnvItem *envItems, int envItemsLength, float delta, int width, int height); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------------ |
|
|
|
|
|
// Program main entry point |
|
|
|
|
|
//------------------------------------------------------------------------------------ |
|
|
int main(void) |
|
|
int main(void) |
|
|
{ |
|
|
{ |
|
|
// Initialization |
|
|
// Initialization |
|
|