Skip to content
Snippets Groups Projects
Commit 9d599133 authored by Taha Belkhiri's avatar Taha Belkhiri
Browse files

ajout des rays dans rayList

parent 519d3166
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,14 @@
int Keys[NB_KEYS];
void initKeys(){
int i;
for(i = 0; i < NB_KEYS; i++)
{
Keys[i] = 0;
}
}
void gestMenu(){
SDL_Event event;
while (SDL_PollEvent(&event)){
......
......@@ -10,5 +10,6 @@
extern int Keys[NB_KEYS];
void *EventLoop(void *arg);
void initKeys();
#endif
\ No newline at end of file
......@@ -10,6 +10,7 @@ int main(){
readMapFromFile("map.txt");
printMap();
initPlayer();
initKeys();
mainLoop();
......
......@@ -3,16 +3,16 @@
player_t player;
void initPlayer(){
player.x= 4*BLOCK_SIZE;
player.y= 4*BLOCK_SIZE;
player.x= 6*BLOCK_SIZE;
player.y= 6*BLOCK_SIZE;
player.speed = 1;
player.isMoving = 0;
player.HPMax = 3;
player.currentHP = player.HPMax;
player.coins = 0;
player.angle=0;
player.deltax = cos(player.angle);
player.deltay = -sin(player.angle);
player.deltax = 0;
player.deltay = 1;
player.viewAngle = 0;
}
......
......@@ -29,13 +29,13 @@ SDL_Texture * loadTexture(char * path) {
void initRays(){
int i;
rays = malloc(sizeof(int*) * 2 * NB_RAYS);
for (i = 0; i < NB_RAYS; i++){
for (i = 0; i < NB_RAYS * 2; i++){
rays[i] = malloc(sizeof(int) * 2);
}
}
void addRayToList(int x, int y){
if (raysListLength < NB_RAYS){
if (raysListLength < 2 * NB_RAYS){
*rays[raysListLength] = x;
*(rays[raysListLength] + 1) = y;
raysListLength++;
......@@ -44,7 +44,7 @@ void addRayToList(int x, int y){
void resetRayList(){
int i;
for (i = 0; i < NB_RAYS; i++){
for (i = 0; i < 2 * NB_RAYS; i++){
*rays[i] = 0;
*(rays[i] + 1) = 0;
}
......@@ -332,6 +332,7 @@ void drawRays(int map[][MAP_WIDTH]){
drawRayColumn(ra, distT, r, foundTransparentWallV, direction, htexture);
// draw the ray in the minimap
addRayToList(rx, ry);
addRayToList(rx2, ry2);
}
}
......@@ -378,7 +379,7 @@ void drawMap2D(int map[][MAP_WIDTH]){
rect.x = 0;
}
SDL_SetRenderDrawColor(renderer, 255, 255, 0, 255);
for (i = 0; i < NB_RAYS; i++){
for (i = 0; i < raysListLength; i++){
SDL_RenderDrawLine(renderer, player.x * CELL_SIZE / BLOCK_SIZE , player.y * CELL_SIZE / BLOCK_SIZE, rays[i][0] * CELL_SIZE / BLOCK_SIZE, rays[i][1] * CELL_SIZE / BLOCK_SIZE);
}
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 255);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment