invalid_time (#8)

This commit is contained in:
Rafał Mikrut
2020-12-04 13:50:02 +01:00
committed by GitHub
parent bba3208008
commit 97f579aa23
6 changed files with 28 additions and 28 deletions

View File

@@ -2,15 +2,15 @@ extends Node
const screen_size = Vector2(1024, 600)
const RANGE: int = 10
var start_time : int
var last_time : int
const PRINT_TIME_EVERY_SECONDS : int = 5
var time_to_print_next_time : int = PRINT_TIME_EVERY_SECONDS
var current_run_time : float = 0.0
const PRINT_TIME_EVERY_MILISECONDS : int = 5000
var time_to_print_next_time : int = PRINT_TIME_EVERY_MILISECONDS
var time_to_show: float = 30 # How long test works
var time_to_show: int = 30 * 1000 # How long test works in miliseconds
var time_for_each_step : float = -1.0
var time_for_each_step : int = -1
# Each scene runs alone
const alone_steps : Array = [
@@ -32,24 +32,27 @@ const all_in_one : Array = [
]
func _init():
start_time = OS.get_system_time_msecs()
# In case when user doesn't provide time
time_for_each_step = time_to_show / (alone_steps.size() + 1)
for argument in OS.get_cmdline_args():
var rr: String = argument
if rr.find("tscn") != -1: # Ignore all tscn scenes/names
if rr.ends_with("tscn"): # Ignore all tscn scenes/names
continue
time_to_show = argument.to_float()
time_to_show = int(argument.to_float() * 1000)
time_for_each_step = time_to_show / (alone_steps.size() + 1)
print("Time set to: " + str(time_to_show) + " seconds with "+ str(alone_steps.size() + 1) + " steps, each step will take " + str(time_for_each_step) + " seconds.")
break
print("Time set to: " + str(time_to_show / 1000.0) + " seconds with "+ str(alone_steps.size() + 1) + " steps, each step will take " + str(time_for_each_step / 1000.0) + " seconds.")
func _process(delta: float) -> void:
current_run_time += delta
var current_run_time : int = OS.get_system_time_msecs() - start_time
if current_run_time > time_to_print_next_time:
print("Test is running now " + str(time_to_print_next_time) + " seconds")
time_to_print_next_time += PRINT_TIME_EVERY_SECONDS
print("Test is running now " + str(int(time_to_print_next_time / 1000)) + " seconds")
time_to_print_next_time += PRINT_TIME_EVERY_MILISECONDS
if current_run_time > time_to_show:
print("Ending test")
get_tree().quit()