Commit d27a91c9 authored by Pierre MARQUE's avatar Pierre MARQUE

Initialisation finie et tout fonctionne

parent a35e7a21
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Copyright (c) 2013-2020 Ramon Santamaria (@raysan5) * Copyright (c) 2013-2020 Ramon Santamaria (@raysan5)
* *
********************************************************************************************/ ********************************************************************************************/
#include "libraylib.a"
#include "raylib.h" #include "raylib.h"
#include "air_defense.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h> #include <time.h>
...@@ -31,61 +31,34 @@ ...@@ -31,61 +31,34 @@
// Some Defines // Some Defines
//--------------------------------------------------------------------------------- //---------------------------------------------------------------------------------
#define NUMBER_MAX_OF_PARATROOPERS 150
#define NUMBER_OF_AIRCRAFTS 50
//---------------------------------------------------------------------------------- #define NUMBER_OF_BULLETS 50
// Types and Structures Definition #define NUMBER_OF_BOMBSHELLS 50
//---------------------------------------------------------------------------------- #define TROOPERS_PER_PLANE 15
typedef struct Aircraft
{
int life;
int numberOfParatroopers;
Rectangle hitbox;
Vector2 position;
Vector2 speed;
}Avion;
typedef struct Paratrooper
{
int life;
Rectangle hitbox;
Vector2 position;
Vector2 speed;
}Paratrooper;
typedef struct bombShell
{
int radius1;
int radius2;
int damageDone;
Vector2 position;
Vector2 speed;
}bombShell;
typedef struct Bullet
{
int damageDone;
Vector2 position;
Vector2 speed;
};
//------------------------------------------------------------------------------------ //------------------------------------------------------------------------------------
// Global Variables Declaration // Global Variables Declaration
//------------------------------------------------------------------------------------ //------------------------------------------------------------------------------------
const int screenWidth = 800; const int screenWidth = 1200;
const int screenHeight = 450; const int screenHeight = 550;
//------------------------------------------------------------------------------------ static bool gameOver = false;
// Module Functions Declaration (local) static bool pause = false;
//------------------------------------------------------------------------------------ static int score = 0;
static void InitGame(void); // Initialize game
static void UpdateGame(void); // Update game (one frame) AntiParaCanon antiParaCanon;
static void DrawGame(void); // Draw game (one frame) AntiAircraftCanon antiAircraftCanon;
static void UnloadGame(void); // Unload game Paratrooper paraInitial;
static void UpdateDrawFrame(void); // Update and Draw (one frame) Bombshell bombshellInit;
Bullet bulletInit;
Aircraft aircraft[NUMBER_OF_AIRCRAFTS];
Bullet bullet[NUMBER_OF_BULLETS];
Bombshell bombshells[NUMBER_OF_BOMBSHELLS];
Paratrooper paratroopers[NUMBER_MAX_OF_PARATROOPERS];
//------------------------------------------------------------------------------------ //------------------------------------------------------------------------------------
// Program main entry point // Program main entry point
...@@ -108,15 +81,16 @@ int main(void) ...@@ -108,15 +81,16 @@ int main(void)
// Update // Update
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// TODO: Update your variables here // TODO: Update your variables here
// void UpdateGame();
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
// Draw // Draw
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
BeginDrawing(); BeginDrawing();
ClearBackground(RAYWHITE); ClearBackground(SKYBLUE);
DrawText("Congrats! You created your first windooow!", 190, 200, 20, LIGHTGRAY); DrawText("Congrats! You created your first window!", 190, 200, 20, SKYBLUE);
EndDrawing(); EndDrawing();
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------
...@@ -124,8 +98,114 @@ int main(void) ...@@ -124,8 +98,114 @@ int main(void)
// De-Initialization // De-Initialization
//-------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------
//UnloadGame();
CloseWindow(); // Close window and OpenGL context CloseWindow(); // Close window and OpenGL context
//-------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------
return 0; return 0;
} }
\ No newline at end of file
void InitGame(void){
//Initialize paratroopers
paraInitial.speed.y = -2;
paraInitial.speed.x = 0;
paraInitial.color = RED;
paraInitial.life = 2;
paraInitial.hitbox.width = 10;
paraInitial.hitbox.height = 10;
paraInitial.droped = false;
for (int k=0; k < NUMBER_MAX_OF_PARATROOPERS; k++){
paratroopers[k] = paraInitial;
}
//Initialize aircrafts
for (int i = 0; i < NUMBER_OF_AIRCRAFTS; i++){
aircraft[i].hitbox.width = 10;
aircraft[i].hitbox.height = GetRandomValue(30,50);
aircraft[i].numberOfParatroopers = GetRandomValue(0,TROOPERS_PER_PLANE);
if (aircraft[i].hitbox.height<41){
aircraft[i].hitbox.height = 30;
}
else{
aircraft[i].hitbox.height = 50;
}
aircraft[i].hitbox.y = GetRandomValue(screenHeight/3, screenHeight - aircraft[i].hitbox.height);
if (GetRandomValue(0,1)){
aircraft[i].hitbox.x = -GetRandomValue(0,1000);
aircraft[i].speed.x = 5;
aircraft[i].xFirstToJump = GetRandomValue(10,screenHeight/2);
}
else{
aircraft[i].speed.x = -5;
aircraft[i].hitbox.x = -GetRandomValue(0,1000);
aircraft[i].xFirstToJump = GetRandomValue(screenHeight/2,screenHeight-10);
}
aircraft[i].xLastTrooperDrop = -1;
aircraft[i].speed.x = 5;
aircraft[i].speed.y = 0;
aircraft[i].color = BLACK;
}
//Initialize bombshells and bullets
bombshellInit.radius = 5;
bombshellInit.damageDone = 2;
bombshellInit.sin = 0;
bombshellInit.cos = 0;
bombshellInit.ammoShot = false;
bombshellInit.position.x = screenHeight;
bombshellInit.position.y = 0;
bombshellInit.speed.x = 0;
bombshellInit.speed.y = 0;
bombshellInit.color = RED;
for (int j =0; j< NUMBER_OF_BOMBSHELLS;j++){
bombshells[j] = bombshellInit;
}
bulletInit.radius = 1;
bulletInit.damageDone = 2;
bulletInit.sin = 0;
bulletInit.cos = 0;
bulletInit.ammoShot = false;
bulletInit.position.x = 0;
bulletInit.position.y = 0;
bulletInit.speed.x = 0;
bulletInit.speed.y = 0;
bulletInit.color = RED;
for (int j =0; j< NUMBER_OF_BULLETS;j++){
bullet[j]= bulletInit;
}
//Initialize canons
antiParaCanon.sin = 0.;
antiParaCanon.cos = 0.;
antiParaCanon.position.x = 0.;
antiParaCanon.position.y = 0.;
antiParaCanon.aimingPosition.x = 0.;
antiParaCanon.aimingPosition.y = 0.;
antiAircraftCanon.sin = 0.;
antiAircraftCanon.cos = 0.;
antiAircraftCanon.position.x = 0.;
antiAircraftCanon.position.y = 0.;
antiAircraftCanon.aimingPosition.x = 0.;
antiAircraftCanon.aimingPosition.y = 0.;
}
void UpdateGame(void){
if (!gameOver){
if (!pause){
//Releasing and animate Aircrafts
//Defining where the canons are shooting
antiParaCanon.aimingPosition = GetMousePosition();
antiAircraftCanon.aimingPosition = GetMousePosition();
}
}
}
void DrawGame(void){}
No preview for this file type
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
typedef struct Paratrooper
{
int life;
bool droped;
Rectangle hitbox;
Vector2 speed;
Color color; // yellow or red
}Paratrooper;
typedef struct Aircraft
{
int life;
float xFirstToJump;
float xLastTrooperDrop;
int numberOfParatroopers;
Rectangle hitbox;
Vector2 speed;
Color color; //black
}Aircraft;
typedef struct Bombshell
{
float radius;
int damageDone;
float sin;
float cos;
bool ammoShot;
Vector2 position;
Vector2 speed;
Color color;
}Bombshell;
typedef struct Bullet
{
float radius;
int damageDone;
float sin;
float cos;
bool ammoShot;
Vector2 position;
Vector2 speed;
Color color;
}Bullet;
typedef struct AntiAircraftCanon
{
float sin;
float cos;
Vector2 position;
Vector2 aimingPosition;
}AntiAircraftCanon;
typedef struct AntiParaCanon
{
float sin;
float cos;
Vector2 position;
Vector2 aimingPosition;
}AntiParaCanon;
//------------------------------------------------------------------------------------
// Module Functions Declaration (local)
//------------------------------------------------------------------------------------
static void InitGame(void); // Initialize game
static void UpdateGame(); // Update game (one frame)
static void DrawGame(void); // Draw game (one frame)
static void UnloadGame(void); // Unload game
void IsParaAlive(void);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment