1
0
mirror of https://github.com/ssloy/tinyraycaster.git synced 2025-01-17 13:18:22 +01:00

cast one ray

This commit is contained in:
Dmitry V. Sokolov 2019-02-09 12:50:21 +01:00
parent 68d2cd560e
commit 9475f8d10d
2 changed files with 11 additions and 0 deletions

BIN
doc/004.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -67,6 +67,7 @@ int main() {
assert(sizeof(map) == map_w*map_h+1); // +1 for the null terminated string assert(sizeof(map) == map_w*map_h+1); // +1 for the null terminated string
float player_x = 3.456; // player x position float player_x = 3.456; // player x position
float player_y = 2.345; // player y position float player_y = 2.345; // player y position
float player_a = 1.523; // player view direction
for (size_t j = 0; j<win_h; j++) { // fill the screen with color gradients for (size_t j = 0; j<win_h; j++) { // fill the screen with color gradients
for (size_t i = 0; i<win_w; i++) { for (size_t i = 0; i<win_w; i++) {
@ -91,6 +92,16 @@ int main() {
// draw the player on the map // draw the player on the map
draw_rectangle(framebuffer, win_w, win_h, player_x*rect_w, player_y*rect_h, 5, 5, pack_color(255, 255, 255)); draw_rectangle(framebuffer, win_w, win_h, player_x*rect_w, player_y*rect_h, 5, 5, pack_color(255, 255, 255));
for (float t=0; t<20; t+=.05) {
float cx = player_x + t*cos(player_a);
float cy = player_y + t*sin(player_a);
if (map[int(cx)+int(cy)*map_w]!=' ') break;
size_t pix_x = cx*rect_w;
size_t pix_y = cy*rect_h;
framebuffer[pix_x + pix_y*win_w] = pack_color(255, 255, 255);
}
drop_ppm_image("./out.ppm", framebuffer, win_w, win_h); drop_ppm_image("./out.ppm", framebuffer, win_w, win_h);
return 0; return 0;