In a RPG game,suppose there are role A and B.
A will conduct x attacks per second
B will conduct y attacks per second
If we suppose A initiates the attack and the final attacks may be :
A A B A B ...
How to calculate the sequence of attacks?
|
In a RPG game,suppose there are role A and B. A will conduct x attacks per second B will conduct y attacks per second If we suppose A initiates the attack and the final attacks may be :
How to calculate the sequence of attacks? |
|||||||||||
|
|
Here's one way to do it in Python 3.0 using a generator and fractions:
Output:
An attack frequency of 0 needs to be checked for. I haven't done this in the above code for simplicity, but it's easy to fix and probably best handled outside this function (a battle where one player can't attack wouldn't be very interesting anyway). An advantage of this idea is that it could be easily extended to more than 2 simultaneous players. Another advantage is that it can also handle attack rates of less than one attack per second without any modification (e.g. B attacks only once every two seconds, i.e. attack frequency = 0.5). |
|||||||||
|
|
Count who has more attacks. Call him MORE. Divide MORE/LESS and take floor, the result is = N. Then for every N attacks of MORE add one of LESS and pad with attacks of MORE when finished. That's each second. Example:
Another example:
|
|||
|