|
2 tahun lalu | |
---|---|---|
.. | ||
solution | 4 tahun lalu | |
translations | 2 tahun lalu | |
your-work | 4 tahun lalu | |
README.md | 2 tahun lalu | |
assignment.md | 4 tahun lalu | |
canvas_grid.png | 4 tahun lalu | |
partI-solution.png | 4 tahun lalu |
The canvas is an HTML element that by default has no content; it's a blank slate. You need to add to it by drawing on it.
✅ Read more about the Canvas API on MDN.
Here's how it's typically declared, as part of the page's body:
<canvas id="myCanvas" width="200" height="100"></canvas>
Above we are setting the id
, width
and height
.
id
: set this so you can obtain a reference when you need to interact with it.width
: this is the width of the element.height
: this is the height of the element.The Canvas is using a cartesian coordinate system to draw things. Thus it uses an x-axis and y-axis to express where something is located. The location 0,0
is the top left position and the bottom right is what you said to be the WIDTH and HEIGHT of the canvas.
Image from MDN
To draw on the canvas element you will need to go through the following steps:
Code for the above steps usually looks like so:
// draws a red rectangle
//1. get the canvas reference
canvas = document.getElementById("myCanvas");
//2. set the context to 2D to draw basic shapes
ctx = canvas.getContext("2d");
//3. fill it with the color red
ctx.fillStyle = 'red';
//4. and draw a rectangle with these parameters, setting location and size
ctx.fillRect(0,0, 200, 200) // x,y,width, height
✅ The Canvas API mostly focuses on 2D shapes, but you can also draw 3D elements to a web site; for this, you might use the WebGL API.
You can draw all sorts of things with the Canvas API like:
✅ Try it! You know how to draw a rectangle, can you draw a circle to a page? Take a look at some interesting Canvas drawings on CodePen. Here's a particularly impressive example.
You load an image asset by creating an Image
object and set its src
property. Then you listen to the load
event to know when it's ready to be used. The code looks like this:
const img = new Image();
img.src = 'path/to/my/image.png';
img.onload = () => {
// image loaded and ready to be used
}
It's recommended to wrap the above in a construct like so, so it's easier to use and you only try to manipulate it when it's fully loaded:
function loadAsset(path) {
return new Promise((resolve) => {
const img = new Image();
img.src = path;
img.onload = () => {
// image loaded and ready to be used
resolve(img);
}
})
}
// use like so
async function run() {
const heroImg = await loadAsset('hero.png')
const monsterImg = await loadAsset('monster.png')
}
To draw game assets to a screen, your code would look like this:
async function run() {
const heroImg = await loadAsset('hero.png')
const monsterImg = await loadAsset('monster.png')
canvas = document.getElementById("myCanvas");
ctx = canvas.getContext("2d");
ctx.drawImage(heroImg, canvas.width/2,canvas.height/2);
ctx.drawImage(monsterImg, 0,0);
}
You will build a web page with a Canvas element. It should render a black screen 1024*768
. We've provided you with two images:
Locate the files that have been created for you in the your-work
sub folder. It should contain the following:
-| assets
-| enemyShip.png
-| player.png
-| index.html
-| app.js
-| package.json
Open the copy of this folder in Visual Studio Code. You need to have a local development environment setup, preferably with Visual Studio Code with NPM and Node installed. If you don't have npm
set up on your computer, here's how to do that.
Start your project by navigating to the your_work
folder:
cd your-work
npm start
The above will start a HTTP Server on address http://localhost:5000
. Open up a browser and input that address. It's a blank page right now, but that will change
Note: to see changes on your screen, refresh your browser.
Add the needed code to your-work/app.js
to solve the below
/app.js
, setting the ctx
element to be black and the top/left coordinates to be at 0,0 and the height and width to equal that of the canvas.await loadTexture
and passing in the image path. You won't see them on the screen yet!drawImage
API to draw heroImg to the screen, setting canvas.width / 2 - 45
and canvas.height - canvas.height / 4)
;createEnemies
function and build it out.First, set up some constants:
```javascript
const MONSTER_TOTAL = 5;
const MONSTER_WIDTH = MONSTER_TOTAL * 98;
const START_X = (canvas.width - MONSTER_WIDTH) / 2;
const STOP_X = START_X + MONSTER_WIDTH;
```
then, create a loop to draw the array of monsters onto the screen:
```javascript
for (let x = START_X; x < STOP_X; x += 98) {
for (let y = 0; y < 50 * 5; y += 50) {
ctx.drawImage(enemyImg, x, y);
}
}
```
The finished result should look like so:
Please try solving it yourself first but if you get stuck, have a look at a solution
You've learned about drawing with the 2D-focused Canvas API; take a look at the WebGL API, and try to draw a 3D object.
Learn more about the Canvas API by reading about it.