2.2.2. Cycle 7
ar
Design
Objectives
This development cycle was aimed on creating a damage animation and system for the player to get pushed away from the enemy experiencing knockback than can work with the health system I will implement later on.
Usability Features
Key Variables
healthState
Stores the different cases for healthstate of either: DEAD, IDLE, DAMAGE
damageTime
The number of milliseconds the player is immobilised for and until they stop sliding
player / faune
Variable that stores all of the information and properties about the character.
dir
Holds the inverse direction of the collision to make sure the player is eventually pushed away.
Pseudocode
Development
Outcome
Development in this cycle was coincided with a lot more refactoring too across the whole project instead of the majority of the code being placed in the game.ts file compared to previous cycles. I did this through creating individual files with characters, collisions and event centers.
Challenges
This development cycle involved lots of tedious challenges in trying to obtain an inverse direction for the collision since this would only work if a player was facing certain directions due to phaser's built in vector engine. Another issue I faced throughout my development was trying to regain control of the player after a collision takes place making sure the knockback is not too extreme.
Testing
Evidence for testing
Tests
1
Run code
Player and map should still load on the original map
As expected
Pass
2
Collide with the enemy character
Player should turn a red tint and get knocked backwards
As expected
Pass
3
Try to move after collision
Player should be able to move after a short interval
Player gets stuck in knockback and loses control
Fail
4
Collide 3 times and then try to move character
Player should start a faint animation and lose control over character
As expected
Pass
After this I found the error was related to the delta time being passed incorrectly to the function containing the state definition of the healthstate. After replacing the function to make sure that all the parameters are passed properly everything then worked as expected.
Tests
1
Run code
Player and map should still load on the original map
As expected
Pass
2
Collide with the enemy character
Player should turn a red tint and get knocked backwards
As expected
Pass
3
Try to move after collision
Player should be able to move after a short interval
As expected
Pass
4
Collide 3 times and then try to move character
Player should start a faint animation and lose control over character
As expected
Pass
The video above shows how the player gets knocked back on collision and after 3 collisions the player proceeds to faint and become immobile.
Last updated