How do I position the player to be positioned on the matrix
matrix_data = [[1, 1, 1, 1, 1, 1],
[1, 0, 0, 0, 0, 1],
[1, 0, 0, 0, 0, 1],
[1, 0, 0, 0, 0, 1],
[1, 1, 1, 1, 1, 1]]
I have a matrix data in pygame and in my programming I am already iterating to draw the squares to resemble the matrices but how would I have the player align with the data and move along the board?
The concept is like a board game.
Right now I am looking at checkers and chess programs to see how those games are programmed and how the player moves around the board.
Resources and advice on this topic would be very appreciated