Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TP7projet_jeu_air_defense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MARQUE Pierre
TP7projet_jeu_air_defense
Commits
d27a91c9
Commit
d27a91c9
authored
Oct 28, 2020
by
Pierre MARQUE
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialisation finie et tout fonctionne
parent
a35e7a21
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
208 additions
and
52 deletions
+208
-52
air_defense.c
air_defense.c
+132
-52
air_defense.exe
air_defense.exe
+0
-0
air_defense.h
air_defense.h
+76
-0
No files found.
air_defense.c
View file @
d27a91c9
...
@@ -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
=
8
00
;
const
int
screenWidth
=
12
00
;
const
int
screenHeight
=
4
50
;
const
int
screenHeight
=
5
50
;
//------------------------------------------------------------------------------------
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
(
RAYWHIT
E
);
ClearBackground
(
SKYBLU
E
);
DrawText
(
"Congrats! You created your first windo
oow!"
,
190
,
200
,
20
,
LIGHTGRAY
);
DrawText
(
"Congrats! You created your first windo
w!"
,
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
){}
air_defense.exe
View file @
d27a91c9
No preview for this file type
air_defense.h
0 → 100644
View file @
d27a91c9
//----------------------------------------------------------------------------------
// 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
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment