开发者

Create a Tic-Tac-Toe Animation

开发者 https://www.devze.com 2023-03-13 06:22 出处:网络
I want to create a simple animation of a game so you can see the playout of a game. It should be an animation in which you just see the game Tic-Tac-Toe played. I have the states of the games in a des

I want to create a simple animation of a game so you can see the playout of a game. It should be an animation in which you just see the game Tic-Tac-Toe played. I have the states of the games in a description. So player 1 marks a cell = state 1; player 2 marks a cell = state 2 etc..

I currently have the game parsed in a ruby program; it will be easy to display just one state (like i开发者_如何学Pythonn the image), but how do I create an animation from it? Is there an easy way to do this? I'm open to solutions in every language but it shouldn't take to much time to implement. I want to show such an animation in a presentation.

Create a Tic-Tac-Toe Animation

<state1>
cell(1,1,x).
cell(1,2,o).
cell(1,3,o).
cell(2,1,o).
cell(2,2,x).
cell(2,3,x).
cell(3,1,b).
cell(3,2,b).
cell(3,3,x).
</state1>

<state2>
...
</state2>


Since you already know how to display one state, the way to animate that is to display each state one after the other in sequence.

Display the first state and set a timer, then when the timer goes off show the next state and set another delay, and so on through all the states.

Since you said you are open to all languages I don't really want to bother with any specific code beyond that high-level overview. For example, in Flash/ActionScript I would use TweenLite to display the symbols with a delay, but I don't know if that specific code would be of any use to you.

I've never programmed Ruby but it probably has a command like setDelay() or setTimer() or something. If not, the same effect can be accomplished with a main loop that will check the time each cycle and if the delay has been long enough it shows the next state.


For ruby you can have a awesome tic-tac-toe from https://github.com/grosser/tic_tac_toe

just do "gem install tic_tac_toe"

0

精彩评论

暂无评论...
验证码 换一张
取 消