Skip to content

Commit 0db96d6

Browse files
authored
Merge pull request #115 from casonpollak/VeErA
Update hills
2 parents f829cec + c6890ae commit 0db96d6

File tree

6 files changed

+72
-15
lines changed

6 files changed

+72
-15
lines changed

assets/js/platformer/GameEnv.js

+2
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ export class GameEnv {
9595

9696
static claimedCoinIds = []
9797

98+
static trashCount = []
99+
98100

99101
// Make the constructor throws an error, or effectively make it a private constructor.
100102
constructor() {

assets/js/platformer/GameSetterHills.js

-6
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ const assets = {
2020
height: 81, //125
2121
scaleSize: 100,
2222
},
23-
trash: { src: "/images/platformer/trash.png" },
24-
trashCan: { src: "/images/platformer/trashbin.png" },
2523
coin: { src: "/images/platformer/obstacles/coin.png" },
2624
},
2725
platforms: {
@@ -144,10 +142,6 @@ const assets = {
144142
{ name: 'coin', id: 'coin', class: Coin, data: assets.obstacles.coin, xPercentage: 0.34, yPercentage: 0.69},
145143
{ name: 'coin', id: 'coin', class: Coin, data: assets.obstacles.coin, xPercentage: 0.31, yPercentage: 0.27},
146144
{ name: 'coin', id: 'coin', class: Coin, data: assets.obstacles.coin, xPercentage: 0.5, yPercentage: 0.27},
147-
{ name: 'trash', id: 'coin', class: Coin, data: assets.obstacles.trash, xPercentage: 0.05, yPercentage: 0.4},
148-
{ name: 'trash', id: 'coin', class: Coin, data: assets.obstacles.trash, xPercentage: 0.55, yPercentage: 0.3},
149-
{ name: 'trash', id: 'coin', class: Coin, data: assets.obstacles.trash, xPercentage: 0.2, yPercentage: 0.69},
150-
{ name: 'trash', id: 'coin', class: Coin, data: assets.obstacles.trash, xPercentage: 0.33, yPercentage: 0.6},
151145
{ name: 'mario', id: 'player', class: PlayerHills, data: assets.players.mario },
152146
{ name: 'tube', id: 'finishline', class: FinishLine, data: assets.obstacles.tube, xPercentage: 0.85, yPercentage: 0.85 },
153147
{ name: 'loading', id: 'background', class: BackgroundTransitions, data: assets.transitions.loading },

assets/js/platformer/GameSetterWinter.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import BackgroundSnow from './BackgroundSnow.js';
77
import Platform from './Platform.js';
88
import PlayerWinter from './PlayerWinter.js';
99
import BlockPlatform from './BlockPlatform.js';
10-
import Coin from './Coin.js';
10+
import Trash from './Trash.js'
1111
import Owl from './FlyingOwl.js';
1212
import Snowman from './EnemySnowman.js';
1313
import FinishLine from './FinishLine.js';
@@ -26,7 +26,6 @@ const assets = {
2626
height: 320,
2727
scaleSize: 50,
2828
},
29-
trashCan: { src: "/images/platformer/trashbin.png" },
3029
tubeU: { src: "/images/platformer/obstacles/blue-tube-up.png",
3130
hitbox: { widthPercentage: 0.5, heightPercentage: 0.5},
3231
width: 300,
@@ -480,11 +479,10 @@ const assets = {
480479
{ name: 'blocks', id: 'jumpPlatform', class: BlockPlatform, data: assets.platforms.boxendright_rotated, xPercentage: 0.755, yPercentage: 0.84 },
481480
{ name: 'blocks', id: 'jumpPlatform', class: BlockPlatform, data: assets.platforms.boxendright_rotated, xPercentage: 0.625, yPercentage: 0.92 },
482481
{ name: 'blocks', id: 'jumpPlatform', class: BlockPlatform, data: assets.platforms.boxendleft_rotated, xPercentage: 0.625, yPercentage: 1 },
483-
{ name: 'trash', id: 'coin', class: FinishLine, data: assets.obstacles.trash, xPercentage: 0.4, yPercentage: 0.5},
484-
{ name: 'trash', id: 'coin', class: FinishLine, data: assets.obstacles.trash, xPercentage: 0.63, yPercentage: 0.48},
485-
{ name: 'trash', id: 'coin', class: FinishLine, data: assets.obstacles.trash, xPercentage: 0.21, yPercentage: 0.6},
486-
{ name: 'trash', id: 'coin', class: FinishLine, data: assets.obstacles.trash, xPercentage: 0.32, yPercentage: 0.6},
487-
{ name: 'trashBin', id: 'coin', class: FinishLine, data: assets.obstacles.trashCan, xPercentage: 0.71, yPercentage: 0.6},
482+
{ name: 'trash', id: 'trash', class: Trash, data: assets.obstacles.trash, xPercentage: 0.4, yPercentage: 0.5},
483+
{ name: 'trash', id: 'trash', class: Trash, data: assets.obstacles.trash, xPercentage: 0.63, yPercentage: 0.58},
484+
{ name: 'trash', id: 'trash', class: Trash, data: assets.obstacles.trash, xPercentage: 0.21, yPercentage: 0.6},
485+
{ name: 'trash', id: 'trash', class: Trash, data: assets.obstacles.trash, xPercentage: 0.32, yPercentage: 0.6},
488486
{ name: 'owl', id: 'owl', class: Owl, data: assets.enemies.Owl, xPercentage: 0.3, minPosition: 0.05 },
489487
{ name: 'owl', id: 'owl', class: Owl, data: assets.enemies.Owl, xPercentage: 0.8, minPosition: 0.05 },
490488
{ name: 'caveman', id: 'snowman', class: Snowman, data: assets.enemies.Snowman, xPercentage: 0.2, minPosition: 0.1, difficulties: ["normal", "hard", "impossible"] },

assets/js/platformer/PlayerWinter.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,14 @@ export class PlayerWinter extends PlayerBase {
9393
}
9494
break;
9595
case "finishline":
96+
// Check if the player has collected all of the trash
97+
if(GameEnv.trashCount.length < 4) {
98+
alert("Hey! If you don't clean up after yourself, you will never be able to leave! HAHAHA!")
99+
this.setX(0)
100+
this.setY(500)
101+
this.state.animation = 'idle'
102+
break
103+
}
96104
// Check if the player has collected all the coins
97105
var collectedAllCoins = true;
98106
for (let obj of GameEnv.gameObjects) {
@@ -103,6 +111,7 @@ export class PlayerWinter extends PlayerBase {
103111
return;
104112
}
105113
}
114+
106115
// Continue with finishline collisions checks
107116

108117
// 1. Caught in finishline
@@ -124,8 +133,6 @@ export class PlayerWinter extends PlayerBase {
124133
this.state.movement.left = false;
125134
this.state.movement.right = true;
126135
}
127-
break;
128-
case "finishline":
129136
this.x = GameEnv.innerWidth + 1;
130137
break;
131138
case "snowman": // Note: Goomba.js and Player.js could be refactored

assets/js/platformer/Trash.js

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
// imports go below
2+
import GameEnv from './GameEnv.js';
3+
import Coin from './Coin.js';
4+
5+
export class Trash extends Coin {
6+
constructor(canvas, image, data, xPercentage, yPercentage) {
7+
super(canvas, image, data, xPercentage, yPercentage);
8+
this.x = xPercentage * GameEnv.innerWidth;
9+
this.y = yPercentage * GameEnv.bottom;
10+
this.size();
11+
this.id = this.initiateId()
12+
this.scaleSize = data?.scaleSize || 80;
13+
}
14+
draw() {
15+
this.ctx.drawImage(this.image, 0, 0, this.canvas.width, this.canvas.height);
16+
}
17+
size() {
18+
if (this.id) {
19+
if (GameEnv.trashCount.includes(this.id)) {
20+
this.hide()
21+
}
22+
}
23+
const scaledHeight = GameEnv.innerHeight * (this.scaleSize / 832);
24+
const scaledWidth = scaledHeight * this.aspect_ratio;
25+
const coinX = this.coinX;
26+
const coinY = (GameEnv.bottom - scaledHeight) * this.coinY;
27+
28+
// Set variables used in Display and Collision algorithms
29+
this.bottom = coinY;
30+
this.collisionHeight = scaledHeight;
31+
this.collisionWidth = scaledWidth;
32+
33+
this.canvas.width = scaledWidth;
34+
this.canvas.height = scaledHeight;
35+
this.canvas.style.width = `${scaledWidth}px`;
36+
this.canvas.style.height = `${scaledHeight}px`;
37+
this.canvas.style.position = 'absolute';
38+
this.canvas.style.left = `${coinX}px`;
39+
this.canvas.style.top = `${coinY}px`;
40+
}
41+
collisionAction() {
42+
// check player collision
43+
if (this.collisionData.touchPoints.other.id === "player") {
44+
if (this.id) {
45+
GameEnv.trashCount.push(this.id)
46+
}
47+
// this is how you find the index of the coin - GameEnv.gameObjects.findIndex(coin => coin.id === this.id)
48+
this.destroy();
49+
50+
GameEnv.playSound("coin");
51+
52+
53+
}
54+
}
55+
}
56+
export default Trash;

images/platformer/trashbin.png

-18.9 KB
Loading

0 commit comments

Comments
 (0)