My original idea for handling such a case was to set the player back to their latest prior position (past move) such that subsequent speeds/moves would not force them out of bounds. As my dad pointed out, this might require backtracking by more than just one previous move, because that might not be enough to allow them to decrease speed within the next move (and stay in bounds). The process of backtracking and computing at each prior position whether or not the player could stay in bounds from that point would also be a bit of a tedious procedure. Finally, he maintained that this solution is "unrealistic"; in other words, you don't go backing up your car and slowing down on an actual race track. Keeping the game realistic isn't especially important to me, but it's kind of a nice feature to attempt to uphold. (It's kind of like when movies try to stay scientifically accurate.)
My dad's alternative solution is apparently what we always did when we used to play the game (and I just forgot). It's actually very simple:
- When all of a player's options for their current move are out of bounds, the player simply takes the move anyhow.
- On their next turn, they lose a turn: their piece/marker stays in place on the grid, but they are considered to hold the same speed in the x and y directions.
- On the subsequent turn, they take a move, maintaining the same rules about speed--the x and y speeds may change by 1 unit in either direction.
- This alternation between lost turns and normal-movement turns continues for as long as the player is outside of bounds.
Here's the diagram my dad sketched to show this. (Ignore the lines on either side of the '2' and the dots they lead to--that was a different idea.) Suppose a player is forced to move outside the track on the turn indicated by the line next to '1'. Their next turn, then, is lost; my dad designates this with the circle surrounding the dot. The circle means they've stayed at that location for a lost turn. Two more alterations of turn/loss are then depicted, as the player aims to return to the track.
Just to note, I'm not sure yet how I'll indicate visually that the player has stayed in place for the lost turn, since so far in development the game display is not exactly like it would be on paper in some ways.
No comments:
Post a Comment