-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathExample_-_Collision_map.c
102 lines (83 loc) · 4.12 KB
/
Example_-_Collision_map.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include "raylib.h"
typedef struct player{
Vector2 position;
}player;
int main(void)
{
// Initialization
//--------------------------------------------------------------------------------------
const int screenWidth = 800;
const int screenHeight = 450;
InitWindow(screenWidth, screenHeight, "raylib example.");
// Our player setup
player myplayer = {0};
myplayer.position = (Vector2){5,5};
// Our tile width and height. We use the screen dimension and the map dimension to
// get tile dimensions that fill up the entire screen.
float tilewidth = (float)screenWidth/20.0f;
float tileheight = (float)screenHeight/10.0f;
// This is out collision map.
bool colmap[10][20] = {false};
// This is our tile map.
int map[10][20] = { {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
{1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1},
{1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1},
{1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,1,1,1,1,1},
{1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1},
{1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,1},
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}};
// Copy the contents of the map into the collision map.
for(int y=0;y<10;y++){
for(int x=0;x<20;x++){
if(map[y][x]>0)colmap[y][x]=true;
}
}
SetTargetFPS(60); // Set our game to run at 60 frames-per-second
//--------------------------------------------------------------------------------------
// Main game loop
while (!WindowShouldClose()) // Detect window close button or ESC key
{
// Update
//----------------------------------------------------------------------------------
// Below here we read the key. If the l/r/u/d cursor is pressed then we check the new position is inside
// the array bounds and then we check if the collision map on the new position is not set to flag true on that tile.
if(IsKeyPressed(KEY_RIGHT)&& myplayer.position.x+1<20 && colmap[(int)myplayer.position.y][(int)myplayer.position.x+1]==false) {
myplayer.position.x+=1;
}
if(IsKeyPressed(KEY_LEFT) && myplayer.position.x-1>-1 && colmap[(int)myplayer.position.y][(int)myplayer.position.x-1]==false) {
myplayer.position.x-=1;
}
if(IsKeyPressed(KEY_UP)&& myplayer.position.y-1>-1 && colmap[(int)myplayer.position.y-1][(int)myplayer.position.x]==false) {
myplayer.position.y-=1;
}
if(IsKeyPressed(KEY_DOWN) && myplayer.position.y+1<20 && colmap[(int)myplayer.position.y+1][(int)myplayer.position.x]==false) {
myplayer.position.y+=1;
}
//----------------------------------------------------------------------------------
// Draw
//----------------------------------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
// Draw our tilemap.
for(int y=0;y<10;y++){
for(int x=0;x<20;x++){
if(map[y][x]==1){
DrawRectangle(x*tilewidth,y*tileheight,tilewidth,tileheight,BLACK);
}
}
}
// Draw our player
DrawRectangle(myplayer.position.x*tilewidth,myplayer.position.y*tileheight,tilewidth,tileheight,RED);
DrawText("Use Cursor Keys to move around..",0,0,20,WHITE);
EndDrawing();
//----------------------------------------------------------------------------------
}
// De-Initialization
//--------------------------------------------------------------------------------------
CloseWindow(); // Close window and OpenGL context
//--------------------------------------------------------------------------------------
return 0;
}