I'm try to develop a fighting game which involving detecting key pressing and combination.
However, things are more complicated than I thought, following are some main point:
1)When user press A twice quickly, the role should run.
2)When user press some keys, say A + L + D, the role should cast.
3)When role's cast is over, if arrow key is pressed, the role should move left or right, otherwise it should standby.
4)When role is jumping, it can not move(meaning left\right arrow key press is ignored), but can attack.
5)Key combination requiring short interval time and/or order.
and so on...
I have thought about several methods, but can not solve the problem perfectly.
Things go totally a mass.
Can anyone provide me some good algorithms or methods to handle such problem?