2.2.2 Cycle 4
Last updated
Last updated
This development cycle was focused on creating simple combat mechanics such as collisions for later levels and basic enemies will follow and attack the player. Since the player can now properly move as shown in I would like to add suiting enemies and animations to use for the character.
enemy
Holds the information about the enemies such as hitbox information
player / faune
Variable that stores all of the information and properties about the character.
left, right, up, down
Stores the information about keyboard inputs allowing them to be assigned to player movement
config
Stores information about the game resolution, physics and other data to start the game correctly.
randomDirection
Variable that stores and calculates the new direction for the enemy character to randomly move to
Lots of the parts of the code such as the index.html file remain the same in this second cycle but most of the change will take place in the game.ts file since that contains most of the player and world attributes.
Throughout this development cycle I faced many challenges in trying to develop an enemy character such as getting the code abstracted into its own file for the enemy without having to bloat the main game.ts file. The reason this became an issue was due to multiple errors found in importing the code and using it inside my create function. How I tackled this was creating individual files for both the enemy character and the animations separately so I can import them both separately leading to less conflict errors. After this change I decided to do the same for the player character making cleaner and less bloated code. Another challenge I faced throughout my development was getting proper collisions to work with the player character and the lizard enemy. The problem arose since Phaser has unique ways of handling collisions with things such as players and tiles which I was trying to replicate with the player. Whilst the solution ended up being quite simple with only having to make the Lizard code external to the create function allowing me to use normal phaser colliders with the player character, getting this to work and figuring it out proved to be challenging.
Evidence for testing
1
Run code
Lizard should appear on screen on the map
As expected
Pass
2
Wait and watch enemy
Lizard should move around in random directions and collide with walls prompting another direction change
As expected
Pass
3
Move player character to collide with enemy
Lizard either to keep pushing against the character and stop or change direction
Lizard passes through the player character and carries on moving.
Fail
After this I went back to work out why the collision issues were not working and this was due to over complication since I changed my code from checking to overlap of the lizard and player to instead giving the lizard its own collision properties.
1
Run code
Lizard should appear on screen on the map
As expected
Pass
2
Wait and watch enemy
Lizard should move around in random directions and collide with walls prompting another direction change
As expected
Pass
3
Move player character to collide with enemy
Lizard either to keep pushing against the character and stop or change direction
As expected, Lizard resists the player and pushes against
Passem
This video demonstrates how the lizard movement operates in testing as well as showing the collisions and how this works with world borders as well as the player.