2.2.1 Cycle 1
Design
Objectives
In this development cycle my aim is to create a HTML project with Typescript using parcel for building the page. Using the Phaser.js library I went on to create scenes and backgrounds from custom maps I have designed which I could then build on top of later on. However a lot of the code in this cycle may need to be rewritten later on and refactored but I believe that this is important into learning more about the libraries and me getting familiar in how to code effectively with them.
Usability Features
Key Variables
create
Initialises all the variables at the start of the game such as sprites.
update
Updates the position of the character and other information every frame
mainMap
Variable that stores the JSON information for the map and where each tile goes
velocity(X,Y)
The speed assigned to the player when key inputs are pressed determining how fast they move
player
Variable that stores all of the information and properties about the character.
Pseudocode
Development
Outcome
The file game.ts is where lots of development will take place with importing separate files for individuals characters as enemies as well as preparing the location and map to take place. This is where I have imported different parts of my map that will be initialised upon loading by using the create function.
Using npm I will be able to easily install all packages with the npm install
command which installs custom scripts too. Using these custom scripts, the command npm start
will cause parcel to build and deploy the project to localhost:8000 where I can test my code and see updates in real time.
Challenges
Getting web page to load after install the Phaser.js library
Exporting Tiled maps to the right format to use
Loading tile layers in certain orders so everything is visible
Testing
Evidence for testing
Tests
1
Run code
The code should build with the console presenting information about where it is being hosted
As expected
Pass
2
Connect to localhost:8000 on browser
Web page to load with all sections of the map present
Parts of the map load in incorrect order causing visual glitches in appearance
Fail
After this I went back to work out why the visual glitches were appearing which is when I realised the order in which parts of the map were being loaded caused them to appear in the wrong order on top of each other. I went back to edit my game.ts file to reorder all my layers to an order where they are being created in the visual order I would like them to.
1
Run code
The code should build with the console presenting information about where it is being hosted
As expected
Pass
2
Connect to localhost:8000 on browser
Web page to load with all sections of the map present
As expected
Pass
Evidence
This image shows the map I have created and designed where all the layers of the map have loaded in the correct order I specified in my game.ts file.
Last updated