Ship
The most important part of the game is your ship. In this part of the tutorial, we are going to make a simple spaceship that you can control with the mouse.
Spawning a ship
Select your main.easel
file from the sidebar on the left.
Inside the main.easel
file is the Main
function which is the entrypoint into your game's code.
This is where you set in motion all the entities and behaviors that make up your game.
The first thing we need to do is spawn a ship for the player to control.
In main.easel
, modify the code inside pub game fn World.Main
so it looks like this
(delete what was there previously):
pub game fn World.Main() {
SpawnEachPlayer owner {
Subspawn ship {
Ship
}
}
}
It is best to use copy-and-paste to avoid typos. This is the easiest way to do this:
- From the code snippet above,
select everything from the
S
ofSpawnEachPlayer
on Line 2 up to and including the}
on Line 6. (Do not select the blank spaces before theS
). - Press
Ctrl+C
(Windows) orCmd+C
(Mac) to copy the code. - Switch to the editor.
- Delete all the lines currently inside the outermost pair of braces
{
and}
so it looks like the snippet below.pub game fn World.Main() {
} - Place your cursor at the very end of
pub game fn World.Main() {
on Line 1, after the opening brace{
. - Press
Enter
to create a new line. You will notice the new line is indented automatically. - Press
Ctrl+V
(Windows) orCmd+V
(Mac) to paste the code.
Before you continue, make sure the code looks exactly the same as above. Coding is a very precise operation, and even a small mistake can stop your code working as expected!
Like many other programming languages, in Easel, blocks of code are surrounded by curly braces {
and }
.
Normally, programmers use indentation to make it easy to see which block each line belongs to.
This is not required, but is a good practice because it makes it easier to read and understand the code.
If your indentation is wrong, you can press Tab
or Shift+Tab
to
change the indentation of the currently selected lines.
In Easel, everything is about spawning entities and attaching things to them. Let's analyse the code we have just inserted.
- On Line 1, we define our
Main
function, the entrypoint into our game's code. - On Line 2, we are spawning an entity
to represent our player and giving it the name
owner
. - On Line 3, we are spawning an entity to represent our spaceship
and giving it the name
ship
. - On Line 4, we call a
Ship
function to give our ship some behavior, which we will define next.
Defining ship behavior
Now let's define our Ship
function,
which will be in charge of giving the ship some physical properties and drawing it on the screen.
Create a new file called ship.easel
by following these steps:
- Click the New File button in the very bototm left of your editor screen - look for the button with a plus sign (
+
) on it. - Give your new file the name
ship.easel
.
Now copy-and-paste the code below into your new ship.easel
file:
pub fn ship.Ship([owner]) {
use body=ship
use radius=7
Body(pos=@(0,0))
ImageSprite(@spaceshipBody.svg, color=#00ccff, shading=0.25, shadow=0.5)
ImageSprite(@spaceshipWindow.svg, color=#ffffff, shading=0.25)
}
Body is a built-in function that gives an entity a physical position and velocity in the game world. ImageSprite is a built-in function that draws an image at an entity's position.
You might notice that Lines 7 and 8 refer to a couple of files - @spaceshipBody.svg
and @spaceshipWindow.svg
.
The @...
syntax tells Easel that we are referring to files.
We will add these files to our project next.
The various image, sound and video files that make up a game are often called Assets.
Importing assets
Add the images to your project using the following steps:
- Download the following two files by right-clicking each link and choosing Save Link As (Google Chrome) or Download Linked File (Safari):
- Drag-and-drop both files into the file list on the left side of the editor. If you did this successfully, you should see the two new files appear in the file list.
If you open these files in your browser, you might just see a white screen and wonder what is wrong. The image is there, it is just white like the background of your browser, and so you don't see anything. The image is white so we can programmatically tint the image with any color we want in game. This is a common game development trick.
Now click Preview. You should see a ship in the middle of the screen. It won't do anything yet, but we will fix that soon. Click Exit Preview in the top left to return to the editor.