diff options
-rw-r--r-- | src/client.cpp | 12 | ||||
-rw-r--r-- | src/client.h | 15 |
2 files changed, 16 insertions, 11 deletions
diff --git a/src/client.cpp b/src/client.cpp index 437e1f06..9c5bdde7 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -153,16 +153,12 @@ Uint32 nextSecond(Uint32 interval, void *param) return interval; } -/** - * @return the elapsed time in milliseconds - * between two tick values. - */ -int get_elapsed_time(int start_time) +int get_elapsed_time(int startTime) { - if (start_time <= tick_time) - return (tick_time - start_time) * MILLISECONDS_IN_A_TICK; + if (startTime <= tick_time) + return (tick_time - startTime) * MILLISECONDS_IN_A_TICK; else - return (tick_time + (MAX_TICK_VALUE - start_time)) + return (tick_time + (MAX_TICK_VALUE - startTime)) * MILLISECONDS_IN_A_TICK; } diff --git a/src/client.h b/src/client.h index 4a0bc750..ba8d6906 100644 --- a/src/client.h +++ b/src/client.h @@ -56,12 +56,21 @@ extern std::string errorMessage; extern LoginData loginData; /** - * Returns elapsed time. (Warning: supposes the delay is always < 100 seconds) + * get_elapsed_time + * + * @param startTime The value to check in client ticks. + * + * @return the elapsed time in milliseconds. + * between startTime and the current client tick value. + * + * @warning This function can't handle delays > 10 seconds. + * @see MILLISECONDS_IN_A_TICK + * @see tick_time */ -int get_elapsed_time(int start_time); +int get_elapsed_time(int startTime); /** - * Returns if this call and the last call were done for the same + * Returns whether this call and the last call were done for the same * selected index and within a short time. */ bool isDoubleClick(int selected); |