summaryrefslogtreecommitdiff
path: root/src/tiled.c
blob: 95d39502cbbc03826b6fa816ab9cbfdd17c87c51 (plain)
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
#include <raylib.h>
#include <stdio.h>

#include "tiledfile.h"

#define SCREEN_W 1280
#define SCREEN_H 720

int main() {
    InitWindow(SCREEN_W, SCREEN_H, "tiled");

    Shader shader = LoadShader(0, "tiled.glsl");

    int atlasSize[2] = {0, 0};
    Texture2D tilemap, atlas; 

    if (loadTileMap("map.tiles", &tilemap, &atlas, atlasSize)) {
        return 1;
    }

    RenderTexture2D target = LoadRenderTexture(SCREEN_W, SCREEN_H);

    float resolution[2] = {SCREEN_W, SCREEN_H};
    float offset[2] = {0, 0};
    float zoom = 16.0f;
    int mapSize[2] = {tilemap.width, tilemap.height};


    int resolutionLoc = GetShaderLocation(shader, "resolution");
    int locationLoc = GetShaderLocation(shader, "offset");
    int zoomLoc = GetShaderLocation(shader, "zoom");

    int atlasSizeLoc = GetShaderLocation(shader, "atlasSize");
    int mapSizeLoc = GetShaderLocation(shader, "mapSize");

    int textureLoc = GetShaderLocation(shader, "texture1");
    int tilemapLoc = GetShaderLocation(shader, "texture2");

    while (!WindowShouldClose()) {
		if (IsKeyDown(KEY_UP)) offset[1] += zoom * 0.01f;
		if (IsKeyDown(KEY_DOWN)) offset[1] -= zoom * 0.01f;
		if (IsKeyDown(KEY_RIGHT)) offset[0] -= zoom * 0.01f;
		if (IsKeyDown(KEY_LEFT)) offset[0] += zoom * 0.01f;

		if (IsKeyDown(KEY_W)) zoom -= zoom * 0.01f;
		if (IsKeyDown(KEY_S)) zoom += zoom * 0.01f;

        SetShaderValue(shader, resolutionLoc, resolution, SHADER_UNIFORM_VEC2);
        SetShaderValue(shader, locationLoc, &offset, SHADER_UNIFORM_VEC2);
        SetShaderValue(shader, zoomLoc, &zoom, SHADER_UNIFORM_FLOAT);

        SetShaderValue(shader, atlasSizeLoc, &atlasSize, SHADER_UNIFORM_IVEC2);
        SetShaderValue(shader, mapSizeLoc, &tilemap.width, SHADER_UNIFORM_IVEC2);

        BeginDrawing();

        ClearBackground(LIGHTGRAY);

        BeginTextureMode(target);
            DrawRectangle(0, 0, SCREEN_W, SCREEN_H, BLACK);
        EndTextureMode();

        BeginShaderMode(shader);
            SetShaderValueTexture(shader, textureLoc, atlas);
            SetShaderValueTexture(shader, tilemapLoc, tilemap);

            // draw the base image to texture0
            DrawTexture(target.texture, 0, 0, WHITE);
        EndShaderMode();

            DrawText(TextFormat("FPS: %d", GetFPS()), 12, 12, 24, DARKGRAY);

        EndDrawing();
    }

    UnloadShader(shader);
    UnloadRenderTexture(target);
    UnloadTexture(atlas);

    CloseWindow();

    return 0;
}