(https://i.imgur.com/pvmQJOT.gif)
So from the Player class I send a command which contains the direction to go (left, right, upper, down) and then the Ncp changes his status from wait to move, performing one step in the received direction. Then it goes to the destination tile and changes the state to wait (state which accepts the input).
For the tile move from tile to tile I use the lerp function that I have programmed, where the params are:
: The center of the origin tile.
: The center of the destination tile.[/li]
[li]dt: the time it has passed (value in the range of (0,1])[/li]
[/list]
float Npc::lerp(float origin, float dest, float dt)
{
return origin + dt * (dest - origin);
}
Now the idea is to animate the Npc sprite using a class Animation that I have in progress, but first I have to do some refactor :P