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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <time.h>
#include <raylib.h>
#include "game-state.h"
#include "textures.h"
/* Texture2D sheet = LoadTexture("asset/8-dir.png"); */
/* Texture2D tile_texture = LoadTexture("asset/grass_tiles.png"); */
/* Texture2D dirt_texture = LoadTexture("asset/dirt-path.png"); */
/* Texture2D tower_texture = LoadTexture("asset/tower.png"); */
/* Image dust_gif = LoadImageAnim("asset/dust.gif"); */
char _frame_info_buf[128];
void _draw_info(gs_t *gs);
int main(){
srand(time(NULL));
InitWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "oyun");
InitAudioDevice();
HideCursor();
SetTargetFPS(FPS);
load_textures();
BEAM_SOUND = LoadSound("asset/laser.wav");
gs_t gs = {
.tower_count = 0,
.enemy_count = 0,
.textures = &textures[0],
.spawner = DEFAULT_ENEMY_SPAWNER
};
add_tower(&gs, make_tower(1, 100, WINDOW_WIDTH / 2, WINDOW_HEIGHT / 2, 20, 30, &textures[T_TOWER]));
/* add_enemy(&gs, make_enemy(&sheet, 3, WINDOW_WIDTH / 2 + 80, WINDOW_HEIGHT / 2 - 80, 30)); */
/* add_enemy(&gs, make_enemy(&sheet, 3, WINDOW_WIDTH / 2 - 80, WINDOW_HEIGHT / 2 - 80, 30)); */
gs.player = make_player(&textures[T_PLAYER]);
Rectangle grass_tile1_rect = (Rectangle){ 0, 0, 16, 16 };
RenderTexture2D bg_tiles = LoadRenderTexture(WINDOW_WIDTH, WINDOW_HEIGHT);
gs.bg_tiles = bg_tiles;
// https://stackoverflow.com/questions/78609155/what-is-the-difference-between-begintexturemode-and-drawtexture-in-raylib
BeginTextureMode(bg_tiles);
int edge_len = 16;
for (int i = 0; i < WINDOW_WIDTH; i += edge_len)
for (int j = 0; j < WINDOW_HEIGHT; j += edge_len){
DrawTextureRec(textures[T_GRASS], grass_tile1_rect, (Vector2){i, j}, WHITE);
/* char buf[32]; */
/* snprintf(buf, 32, "%d", (i + j) % 10); */
/* DrawText(buf, i, j + 2, 4, BLACK); */
}
EndTextureMode();
/* int yy = 0; */
int paused = 0;
while (!WindowShouldClose()){
if (IsKeyPressed(KEY_P)){
paused = !paused;
} /* else if (IsKeyReleased(KEY_P)){ */
/* paused = 0; */
/* } */
if (!paused){
update_game(&gs, GetFrameTime());
}
/* update_frame(&anim); */
BeginDrawing();
ClearBackground(WHITE);
/* draw_frame(&anim); */
BeginMode2D(gs.player.camera);
/* for (int i = 0; i < WINDOW_WIDTH; i += edge_len) */
/* DrawLine(i, 0, i, WINDOW_HEIGHT, LIGHTGRAY); */
/* for (int i = 0; i < WINDOW_HEIGHT; i += edge_len) */
/* DrawLine(0, i, WINDOW_WIDTH, i, LIGHTGRAY); */
/* for (int i = 0; i < WINDOW_WIDTH; i += edge_len) */
/* for (int j = 0; j < WINDOW_HEIGHT; j += edge_len) */
/* DrawTextureRec(tile_texture, grass_tile1_rect, (Vector2){i, j}, WHITE); */
DrawTexture(bg_tiles.texture, 0, 0, WHITE);
/* DrawTextureRec(bg_tiles.texture, (Rectangle){ 0, 0, bg_tiles.texture.width, -bg_tiles.texture.height }, (Vector2){0, 0}, WHITE); */
draw_game(&gs);
EndMode2D();
_draw_info(&gs);
if (paused){
DrawText("PAUSED", WINDOW_WIDTH / 2, WINDOW_HEIGHT / 2, 10, BLACK);
}
EndDrawing();
}
unload_textures();
/* UnloadTexture(sheet); */
/* UnloadTexture(tile_texture); */
/* UnloadTexture(tower_texture); */
/* UnloadTexture(dirt_texture); */
UnloadSound(BEAM_SOUND);
UnloadRenderTexture(bg_tiles);
CloseAudioDevice();
CloseWindow();
return EXIT_SUCCESS;
}
void _draw_info(gs_t *gs){
player_t *p = &gs->player;
sprintf(_frame_info_buf, "player (%.2f, %.2f)", p->position.x, p->position.y);
DrawText(_frame_info_buf, 20, 20, 20, BLACK);
sprintf(_frame_info_buf, "mouse (%d, %d)", GetMouseX(), GetMouseY());
DrawText(_frame_info_buf, 20, 50, 20, BLACK);
sprintf(_frame_info_buf, "camera target (%.2f, %.2f)", p->camera.target.x, p->camera.target.y);
DrawText(_frame_info_buf, 20, 80, 20, BLACK);
sprintf(_frame_info_buf, "camera offset (%.2f, %.2f)", p->camera.offset.x, p->camera.offset.y);
DrawText(_frame_info_buf, 20, 110, 20, BLACK);
sprintf(_frame_info_buf, "enemy count %d / %d", gs->enemy_count, ENEMY_COUNT_MAX);
DrawText(_frame_info_buf, 20, 140, 20, BLACK);
sprintf(_frame_info_buf, "tower count %d / %d", gs->tower_count, TOWER_COUNT_MAX);
DrawText(_frame_info_buf, 20, 170, 20, BLACK);
/* animation_player_t *anim = p->animation; */
/* sprintf(_frame_info_buf, "counter %d", anim->frame_counter); */
/* DrawText(_frame_info_buf, 20, 20, 20, BLACK); */
/* sprintf(_frame_info_buf, "current %d", anim->frame_current); */
/* DrawText(_frame_info_buf, 20, 50, 20, BLACK); */
/* sprintf(_frame_info_buf, "frec.x %f", anim->frame_rec.x); */
/* DrawText(_frame_info_buf, 20, 80, 20, BLACK); */
/* sprintf(_frame_info_buf, "frec.y %f", anim->frame_rec.y); */
/* DrawText(_frame_info_buf, 20, 110, 20, BLACK); */
/* sprintf(_frame_info_buf, "pos.x %f", p->position.x); */
/* DrawText(_frame_info_buf, 20, 140, 20, BLACK); */
/* sprintf(_frame_info_buf, "pos.y %f", p->position.y); */
/* DrawText(_frame_info_buf, 20, 170, 20, BLACK); */
/* if (gs->enemy_count > 0){ */
/* sprintf(_frame_info_buf, "(%f, %f)", */
/* gs->enemies[0].direction.x, */
/* gs->enemies[0].direction.y); */
/* DrawText(_frame_info_buf, 20, 200, 20, BLACK); */
/* sprintf(_frame_info_buf, "hp %d", gs->enemies[0].health); */
/* DrawText(_frame_info_buf, 20, 230, 20, BLACK); */
/* sprintf(_frame_info_buf, "dist %f", distance(gs->towers[0].center, gs->enemies[0].center)); */
/* DrawText(_frame_info_buf, 20, 260, 20, BLACK); */
/* animation_player_t *anim = &gs->enemies[0].animation; */
/* sprintf(_frame_info_buf, "counter %d", anim->frame_counter); */
/* DrawText(_frame_info_buf, 20, 20, 20, BLACK); */
/* sprintf(_frame_info_buf, "current %d", anim->frame_current); */
/* DrawText(_frame_info_buf, 20, 50, 20, BLACK); */
/* sprintf(_frame_info_buf, "frec.x %f", anim->frame_rec.x); */
/* DrawText(_frame_info_buf, 20, 80, 20, BLACK); */
/* sprintf(_frame_info_buf, "frec.y %f", anim->frame_rec.y); */
/* DrawText(_frame_info_buf, 20, 110, 20, BLACK); */
/* } */
}
|