2.2.2 Cycle 6
Design
Objectives
This development cycle was focused on user accessibility and controls for the player character allowing multiple inputs and removing a hierarchy of input controls to make sure the experience is as smooth as possible.
Usability Features
Key Variables
W, A, S, D
Variables used to store keycode information about W,A,S,D inputs to make it easier to put into the code
player / faune
Variable that stores all of the information and properties about the character.
currentKey
Holds information about the current key being
Pseudocode
Development
Outcome
Through my development most of my development occurred in the game.ts file with declaration of variables with keymaps as well as movement code all remaining in the same file.
Challenges
In this development cycle i faced multiple challenges around the key priority and making sure the most recent input is the correct one. I managed to figure out how to program the multiple inputs pretty quickly but making sure the movement corresponds to the most recent input was seen to be quite challenging.
Testing
Evidence for testing
Tests
1
Run code
Player and map should still load on the original map
As expected
Pass
2
Use the W,A,S,D keys for input as well as making sure arrow keys work properly
The game to allow multiple different inputs simultaneously for ease of play-ability
As expected
Pass
3
Use multiple keys to see which ones are prioritised in movement
Character moves in response to most recent input
Movement inputs that are defined first remain prioritised
Fail
After this I tried to look through different documentation and for help online to try and fix my code in an attempt to make sure correct inputs are prioritised. I had tried to find equivalents to a z-index feature to make sure the right movements are being used. After a while I had realised that developing a feature like this was out of my ability and had chosen to settle with the multiple inputs but had to remain with the issue of input hierarchy.
Tests
1
Run code
Player and map should still load on the original map
As expected
Pass
2
Use the W,A,S,D keys for input as well as making sure arrow keys work properly
The game to allow multiple different inputs simultaneously for ease of play-ability
As expected
Pass
The video above shows the different key inputs and how they are used to both control player inputs in the game so that players can choose how to play for an easier and more enjoyable experience for better user access
Last updated