about summary refs log tree commit diff stats
path: root/js/mountain/game.js
blob: 1b4d96e6311fe7ccd8e40a4d40f15f5a57c1e3dc (plain) (blame)
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// TODO: if there are no more levels show a "game win" message

// Game constants
const canvas = document.getElementById('gameCanvas');
const ctx = canvas.getContext('2d');
canvas.width = 800;
canvas.height = 600;

const GRAVITY = 4;
const JUMP_STRENGTH = -33;
const MOVE_SPEED = 7;

let keys = { left: false, right: false, up: false, down: false, space: false };

let levels = [
    [
        // Next level example
        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
        [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5],
        [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
    ],
    [
        [4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
        [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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]
    ]
    // Add more levels as needed
];

let currentLevel = 0;

class Player {
    constructor(x, y) {
        this.x = x;
        this.y = y;
        this.width = 30;
        this.height = 30;
        this.velocityX = 0;
        this.velocityY = 0;
        this.jumping = false;
        this.doubleJumping = false;
    }

    update() {
        if (keys.left) this.velocityX = -MOVE_SPEED;
        if (keys.right) this.velocityX = MOVE_SPEED;
        if (!keys.left && !keys.right) this.velocityX = 0;

        this.velocityY += GRAVITY;
        this.x += this.velocityX;
        this.y += this.velocityY;

        // Collision detection
        this.checkCollision();

        // Limit falling speed
        if (this.velocityY > 10) this.velocityY = 10;
    }

    jump() {
        if (!this.jumping) {
            this.velocityY = JUMP_STRENGTH;
            this.jumping = true;
        } else if (!this.doubleJumping) {
            this.velocityY = JUMP_STRENGTH;
            this.doubleJumping = true;
        }
    }

    checkCollision() {
        let row, col, belowRow, aboveRow, leftCol, rightCol;

        // Check collision with ground from below
        row = Math.floor(this.y / 30);
        col = Math.floor(this.x / 30);
        belowRow = Math.floor((this.y + this.height) / 30);

        if (levels[currentLevel][belowRow] && levels[currentLevel][belowRow][col] === 1) {
            if (this.velocityY > 0) {
                this.y = belowRow * 30 - this.height;
                this.velocityY = 0;
                this.jumping = false;
                this.doubleJumping = false;
            }
        }

        // Check collision with ground from above
        aboveRow = Math.floor((this.y - 1) / 30);
        if (levels[currentLevel][aboveRow] && levels[currentLevel][aboveRow][col] === 1) {
            if (this.velocityY < 0) {
                this.y = (aboveRow + 1) * 30;
                this.velocityY = 0;
            }
        }

        // Check collision with ground from the left
        leftCol = Math.floor(this.x / 30);
        if (levels[currentLevel][row] && levels[currentLevel][row][leftCol] === 1) {
            if (this.velocityX < 0) {
                this.x = (leftCol + 1) * 30;
                this.velocityX = 0;
            }
        }

        // Check collision with ground from the right
        rightCol = Math.floor((this.x + this.width) / 30);
        if (levels[currentLevel][row] && levels[currentLevel][row][rightCol] === 1) {
            if (this.velocityX > 0) {
                this.x = rightCol * 30 - this.width;
                this.velocityX = 0;
            }
        }

        // Collision with lava
        if (levels[currentLevel][row] && levels[currentLevel][row][col] === 2) {
            this.reset();
        }

        // Collision with save point
        if (levels[currentLevel][row] && levels[currentLevel][row][col] === 3) {
            localStorage.setItem('savePoint', JSON.stringify({ x: this.x, y: this.y, level: currentLevel }));
        }

        // Collision with goal
        if (levels[currentLevel][row] && levels[currentLevel][row][col] === 5) {
            alert('Level Complete!');
            loadNextLevel();
        }
    }

    reset() {
        let savePoint = JSON.parse(localStorage.getItem('savePoint')) || { x: 30, y: 30, level: 0 };
        this.x = savePoint.x;
        this.y = savePoint.y;
        currentLevel = savePoint.level;
        this.velocityY = 0;
    }

    render() {
        ctx.fillStyle = 'blue';
        ctx.fillRect(this.x, this.y, this.width, this.height);
    }
}

function findPlayerStartPosition(level) {
    for (let row = 0; row < levels[level].length; row++) {
        for (let col = 0; col < levels[level][row].length; col++) {
            if (levels[level][row][col] === 4) {
                return { x: col * 30, y: row * 30 };
            }
        }
    }
    // Default position if no start point found
    return { x: 30, y: 570 };
}

function renderLevel() {
    for (let row = 0; row < levels[currentLevel].length; row++) {
        for (let col = 0; col < levels[currentLevel][row].length; col++) {
            if (levels[currentLevel][row][col] === 1) {
                ctx.fillStyle = 'brown';
                ctx.fillRect(col * 30, row * 30, 30, 30);
            } else if (levels[currentLevel][row][col] === 2) {
                ctx.fillStyle = 'red';
                ctx.fillRect(col * 30, row * 30, 30, 30);
            } else if (levels[currentLevel][row][col] === 3) {
                ctx.fillStyle = 'green';
                ctx.fillRect(col * 30, row * 30, 30, 30);
            } else if (levels[currentLevel][row][col] === 5) {
                ctx.fillStyle = 'gold';
                ctx.fillRect(col * 30, row * 30, 30, 30);
            }
        }
    }
}

function loadNextLevel() {
    currentLevel++;
    if (currentLevel >= levels.length) {
        alert("You've completed all levels!");
        currentLevel = 0;
    }
    let startPosition = findPlayerStartPosition(currentLevel);
    player.x = startPosition.x;
    player.y = startPosition.y;
    player.velocityY = 0;
    localStorage.setItem('savePoint', JSON.stringify({ x: player.x, y: player.y, level: currentLevel }));
}

let startPosition = findPlayerStartPosition(currentLevel);
let player = new Player(startPosition.x, startPosition.y);

function gameLoop() {
    ctx.clearRect(0, 0, canvas.width, canvas.height);

    renderLevel();
    player.update();
    player.render();

    requestAnimationFrame(gameLoop);
}

document.addEventListener('keydown', (e) => {
    if (e.code === 'ArrowLeft') keys.left = true;
    if (e.code === 'ArrowRight') keys.right = true;
    if (e.code === 'ArrowUp') keys.up = true;
    if (e.code === 'ArrowDown') keys.down = true;
    if (e.code === 'Space') player.jump();
});

document.addEventListener('keyup', (e) => {
    if (e.code === 'ArrowLeft') keys.left = false;
    if (e.code === 'ArrowRight') keys.right = false;
    if (e.code === 'ArrowUp') keys.up = false;
    if (e.code === 'ArrowDown') keys.down = false;
});

gameLoop();