2.2.2 Cycle 8
Design
Objectives
This development cycle I was focused on making sure I had a working health system in place with a visual UI on screen to represent the players health making the experience more interactive. This will allow a visual representation to the player of how the health system will work throughout the whole game.
Usability Features
Key Variables
health
Holds the number of health points a character has that corresponds with the number of points
player / faune
Variable that stores all of the information and properties about the character.
hearts
Contains information about the hearts images and their status of full or empty
Pseudocode
Development
Outcome
Throughout this development cycle I decided to abstract my code and make sure all the necessary features are contained in a new file named GameUI.ts where any future ui features can also be contained.
This stage in the development was me programming the visual UI onto the screen and making sure it is part of the correct Phaser gameobject with appropriate positioning on the screen too. I achieved this through using correct class types of images that are inside of the hearts game object group.
This part of the code demonstrates how the sceneEvents file interacts with the collision by allowing the UI to change by changing which sprite is used. This is achieved through a built in phaser function called "setTexture" when the idx is greater than the health.
Challenges
I faced a few small challenges in this development cycle with an example being the index properties of the hearts taking multiple hearts away per collision or none at all. I had dealt with these small issues through unit testing and debugging to make sure that the right health integer is being passed which is how I caught the bug of the wrong parameter of hearts being passed as a number instead of the health needed.
Testing
Evidence for testing
Tests
1
Run code
Player and map should still load on the original map
As expected
Pass
2
Collide with enemy and watch hearts
Hearts should decrease one at a time per collision to appear empty
As expected
Pass
3
Get to 0 hearts
All hearts should appear empty with the character remaining dead
As expected
Pass
The video shows how the heart UI in the top corner decrease per collision until they reach 0 and the player character then faints and becomes immobilised. This will be the representation of how the health system will operate throughout the whole game unless further change is necessary later on.
Last updated