diff --git a/dataset/engine2d.py b/dataset/pymunk_test.py similarity index 100% rename from dataset/engine2d.py rename to dataset/pymunk_test.py diff --git a/dataset/scenario1/__pycache__/scenario1.cpython-312.pyc b/dataset/scenario1/__pycache__/scenario1.cpython-312.pyc new file mode 100644 index 0000000..5812cc7 Binary files /dev/null and b/dataset/scenario1/__pycache__/scenario1.cpython-312.pyc differ diff --git a/dataset/scenario1/batch_runner.py b/dataset/scenario1/batch_runner.py new file mode 100644 index 0000000..d2833fc --- /dev/null +++ b/dataset/scenario1/batch_runner.py @@ -0,0 +1,68 @@ +import os +import json +from multiprocessing import Pool, cpu_count +import time +from scenario1 import run_automated_simulation + +def process_single_simulation(input_path): + """ + Função que carrega o JSON e executa a simulação automática. + Esta função será executada em um processo separado. + """ + + filename = os.path.basename(input_path) + + try: + with open(input_path, 'r') as f: + actions = json.load(f) + + # Chama a função de simulação + run_automated_simulation(actions, filename) + + return f"[SUCESSO] Simulação para {filename} concluída." + + except Exception as e: + return f"[ERRO] Falha ao processar {filename}. Motivo: {e}" + +def run_batch_simulations_parallel(): + """ + Varre a pasta 'inputs' e executa simulações para todos os JSONs em paralelo. + """ + start_time = time.time() + + inputs_dir = os.path.join(os.path.dirname(__file__), 'inputs') + + if not os.path.exists(inputs_dir): + print(f"Erro: Pasta de inputs não encontrada em {inputs_dir}.") + return + + json_files = [f for f in os.listdir(inputs_dir) if f.endswith('.json')] + + if not json_files: + print("Nenhum arquivo JSON encontrado na pasta 'inputs'.") + return + + # Constroi a lista de caminhos completos + json_files_paths = [os.path.join(inputs_dir, f) for f in json_files] + + num_cores = cpu_count() + print(f"Encontrados {len(json_files_paths)} arquivos para simular") + print(f"Utilizando {num_cores} núcleos para processamento paralelo.") + + # Pool de processos: distribui as tarefas entre os núcleos disponíveis + with Pool(processes=num_cores) as pool: + # map() aplica a função 'process_single_simulation' a todos os caminhos na lista + results = pool.map(process_single_simulation, json_files_paths) + + end_time = time.time() + + # Exibir Resultados + print("\n" + "="*50) + print("RESUMO DO PROCESSAMENTO EM LOTE:") + for result in results: + print(result) + print(f"\nTempo total de processamento: {end_time - start_time:.2f} segundos.") + print("="*50) + +if __name__ == "__main__": + run_batch_simulations_parallel() \ No newline at end of file diff --git a/dataset/scenario1/generate_random_inputs.py b/dataset/scenario1/generate_random_inputs.py new file mode 100644 index 0000000..d517f41 --- /dev/null +++ b/dataset/scenario1/generate_random_inputs.py @@ -0,0 +1,51 @@ +import json +import random +import os +import datetime + +def generate_random_input(num_files=10, max_actions=15, max_time=10.0): + """Gera multiplos arquivos JSON com ações aleatorias.""" + + inputs_dir = os.path.join(os.path.dirname(__file__), 'inputs') + os.makedirs(inputs_dir, exist_ok=True) # Checa se a pasta 'inputs' já existe + + for i in range(num_files): + actions = [] + + # 1. Gera o numero de acoes para este arquivo (entre 5 e max_actions) + num_actions = random.randint(5, max_actions) + + # 2. Gera as acoes com tempo crescente + current_time = 0.0 + for _ in range(num_actions): + # Tempo aleatorio entre 0.3s e 1.5s apos a ultima acao + current_time += random.uniform(0.3, 1.5) + + # Limita o tempo total + if current_time > max_time: + break + + # Posicao aleatoria dentro da tela (800x600) + pos_x = random.randint(50, 750) + pos_y = random.randint(50, 500) + + action = { + "time": round(current_time, 2), + "type": "mouse_down", + "object": "ball", # No Cenario 1, so ha bolas + "pos": [pos_x, pos_y] + } + actions.append(action) + + # 3. Salva o arquivo + timestamp = datetime.datetime.now().strftime("%Y%m%d%H%M%S") + filename = f"random_input_{timestamp}_{i+1:02d}.json" + file_path = os.path.join(inputs_dir, filename) + + with open(file_path, 'w') as f: + json.dump(actions, f, indent=4) + + print(f"Gerado: {filename} ({len(actions)} acoes)") + +if __name__ == "__main__": + generate_random_input(num_files=200, max_actions=15) \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_01.json b/dataset/scenario1/inputs/random_input_20251005161830_01.json new file mode 100644 index 0000000..abce8b9 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_01.json @@ -0,0 +1,119 @@ +[ + { + "time": 0.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 694, + 93 + ] + }, + { + "time": 1.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 331, + 329 + ] + }, + { + "time": 2.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 608, + 239 + ] + }, + { + "time": 3.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 571, + 327 + ] + }, + { + "time": 4.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 607, + 116 + ] + }, + { + "time": 5.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 664, + 177 + ] + }, + { + "time": 5.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 748, + 290 + ] + }, + { + "time": 7.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 597, + 144 + ] + }, + { + "time": 7.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 715, + 108 + ] + }, + { + "time": 8.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 588, + 358 + ] + }, + { + "time": 8.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 554, + 92 + ] + }, + { + "time": 9.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 649, + 50 + ] + }, + { + "time": 9.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 569, + 414 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_02.json b/dataset/scenario1/inputs/random_input_20251005161830_02.json new file mode 100644 index 0000000..cb6685b --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_02.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 602, + 196 + ] + }, + { + "time": 1.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 185, + 112 + ] + }, + { + "time": 2.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 284, + 58 + ] + }, + { + "time": 3.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 288, + 67 + ] + }, + { + "time": 5.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 505, + 341 + ] + }, + { + "time": 5.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 596, + 423 + ] + }, + { + "time": 6.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 64, + 273 + ] + }, + { + "time": 6.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 721, + 466 + ] + }, + { + "time": 7.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 370, + 358 + ] + }, + { + "time": 8.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 93, + 343 + ] + }, + { + "time": 9.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 360, + 309 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_03.json b/dataset/scenario1/inputs/random_input_20251005161830_03.json new file mode 100644 index 0000000..4d6b27a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_03.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 715, + 202 + ] + }, + { + "time": 1.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 188, + 182 + ] + }, + { + "time": 2.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 191, + 378 + ] + }, + { + "time": 4.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 534, + 127 + ] + }, + { + "time": 5.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 521, + 353 + ] + }, + { + "time": 5.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 446 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_04.json b/dataset/scenario1/inputs/random_input_20251005161830_04.json new file mode 100644 index 0000000..9b55f75 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_04.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 75, + 456 + ] + }, + { + "time": 2.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 96, + 439 + ] + }, + { + "time": 3.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 276, + 315 + ] + }, + { + "time": 4.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 210, + 348 + ] + }, + { + "time": 5.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 87, + 209 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_05.json b/dataset/scenario1/inputs/random_input_20251005161830_05.json new file mode 100644 index 0000000..754da08 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_05.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 648, + 241 + ] + }, + { + "time": 0.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 325, + 79 + ] + }, + { + "time": 1.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 300, + 412 + ] + }, + { + "time": 2.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 313, + 319 + ] + }, + { + "time": 2.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 423, + 226 + ] + }, + { + "time": 3.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 370, + 256 + ] + }, + { + "time": 5.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 170, + 370 + ] + }, + { + "time": 5.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 694, + 464 + ] + }, + { + "time": 6.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 85, + 58 + ] + }, + { + "time": 7.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 494, + 130 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_06.json b/dataset/scenario1/inputs/random_input_20251005161830_06.json new file mode 100644 index 0000000..62e3f14 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_06.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 622, + 354 + ] + }, + { + "time": 2.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 611, + 435 + ] + }, + { + "time": 2.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 442, + 169 + ] + }, + { + "time": 3.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 733, + 326 + ] + }, + { + "time": 4.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 518, + 88 + ] + }, + { + "time": 5.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 174, + 200 + ] + }, + { + "time": 6.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 699, + 155 + ] + }, + { + "time": 8.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 407, + 145 + ] + }, + { + "time": 9.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 303, + 176 + ] + }, + { + "time": 9.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 185, + 270 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_07.json b/dataset/scenario1/inputs/random_input_20251005161830_07.json new file mode 100644 index 0000000..4996d4c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_07.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 85, + 83 + ] + }, + { + "time": 1.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 451, + 385 + ] + }, + { + "time": 2.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 711, + 233 + ] + }, + { + "time": 3.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 526, + 451 + ] + }, + { + "time": 4.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 638, + 137 + ] + }, + { + "time": 5.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 108, + 424 + ] + }, + { + "time": 7.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 722, + 175 + ] + }, + { + "time": 8.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 439, + 313 + ] + }, + { + "time": 9.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 497, + 121 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_08.json b/dataset/scenario1/inputs/random_input_20251005161830_08.json new file mode 100644 index 0000000..2928d11 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_08.json @@ -0,0 +1,110 @@ +[ + { + "time": 1.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 181, + 439 + ] + }, + { + "time": 1.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 400, + 397 + ] + }, + { + "time": 1.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 381, + 218 + ] + }, + { + "time": 2.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 278, + 479 + ] + }, + { + "time": 3.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 156, + 252 + ] + }, + { + "time": 3.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 297, + 462 + ] + }, + { + "time": 4.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 308, + 200 + ] + }, + { + "time": 5.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 702, + 381 + ] + }, + { + "time": 7.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 234, + 113 + ] + }, + { + "time": 8.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 510, + 484 + ] + }, + { + "time": 8.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 349, + 450 + ] + }, + { + "time": 9.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 426, + 82 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_09.json b/dataset/scenario1/inputs/random_input_20251005161830_09.json new file mode 100644 index 0000000..6f64bfc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_09.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 739, + 319 + ] + }, + { + "time": 1.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 493, + 291 + ] + }, + { + "time": 3.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 581, + 378 + ] + }, + { + "time": 4.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 744, + 283 + ] + }, + { + "time": 5.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 612, + 244 + ] + }, + { + "time": 6.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 362, + 57 + ] + }, + { + "time": 6.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 77, + 464 + ] + }, + { + "time": 7.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 390, + 66 + ] + }, + { + "time": 8.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 316, + 412 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_10.json b/dataset/scenario1/inputs/random_input_20251005161830_10.json new file mode 100644 index 0000000..8ef1197 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_10.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 701, + 446 + ] + }, + { + "time": 2.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 609, + 101 + ] + }, + { + "time": 3.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 545, + 191 + ] + }, + { + "time": 3.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 665, + 166 + ] + }, + { + "time": 4.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 544, + 74 + ] + }, + { + "time": 5.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 314 + ] + }, + { + "time": 6.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 294, + 246 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_11.json b/dataset/scenario1/inputs/random_input_20251005161830_11.json new file mode 100644 index 0000000..5602412 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_11.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 644, + 259 + ] + }, + { + "time": 1.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 743, + 93 + ] + }, + { + "time": 2.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 711, + 226 + ] + }, + { + "time": 3.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 690, + 438 + ] + }, + { + "time": 4.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 698, + 327 + ] + }, + { + "time": 5.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 697, + 288 + ] + }, + { + "time": 6.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 465, + 259 + ] + }, + { + "time": 8.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 727, + 346 + ] + }, + { + "time": 9.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 85, + 170 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_12.json b/dataset/scenario1/inputs/random_input_20251005161830_12.json new file mode 100644 index 0000000..27e6187 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_12.json @@ -0,0 +1,65 @@ +[ + { + "time": 1.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 589, + 438 + ] + }, + { + "time": 1.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 635, + 223 + ] + }, + { + "time": 2.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 615, + 61 + ] + }, + { + "time": 3.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 626, + 158 + ] + }, + { + "time": 4.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 731, + 225 + ] + }, + { + "time": 5.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 401, + 419 + ] + }, + { + "time": 5.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 453, + 163 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_13.json b/dataset/scenario1/inputs/random_input_20251005161830_13.json new file mode 100644 index 0000000..ce71a48 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_13.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 458, + 52 + ] + }, + { + "time": 2.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 111, + 310 + ] + }, + { + "time": 3.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 610, + 414 + ] + }, + { + "time": 4.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 153, + 154 + ] + }, + { + "time": 5.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 159, + 410 + ] + }, + { + "time": 6.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 506, + 497 + ] + }, + { + "time": 8.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 329, + 320 + ] + }, + { + "time": 8.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 429, + 492 + ] + }, + { + "time": 9.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 654, + 147 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_14.json b/dataset/scenario1/inputs/random_input_20251005161830_14.json new file mode 100644 index 0000000..3546511 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_14.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 286, + 89 + ] + }, + { + "time": 2.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 258, + 123 + ] + }, + { + "time": 3.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 496, + 77 + ] + }, + { + "time": 3.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 695, + 85 + ] + }, + { + "time": 5.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 230, + 251 + ] + }, + { + "time": 5.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 155, + 352 + ] + }, + { + "time": 6.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 85, + 482 + ] + }, + { + "time": 7.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 219, + 90 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_15.json b/dataset/scenario1/inputs/random_input_20251005161830_15.json new file mode 100644 index 0000000..2a06582 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_15.json @@ -0,0 +1,56 @@ +[ + { + "time": 1.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 520, + 280 + ] + }, + { + "time": 1.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 500, + 453 + ] + }, + { + "time": 2.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 382, + 69 + ] + }, + { + "time": 2.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 449, + 237 + ] + }, + { + "time": 3.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 137, + 122 + ] + }, + { + "time": 5.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 743, + 97 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_16.json b/dataset/scenario1/inputs/random_input_20251005161830_16.json new file mode 100644 index 0000000..4abf3a8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_16.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 533, + 81 + ] + }, + { + "time": 2.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 342, + 406 + ] + }, + { + "time": 3.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 111, + 473 + ] + }, + { + "time": 4.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 485, + 337 + ] + }, + { + "time": 5.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 513, + 447 + ] + }, + { + "time": 6.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 725, + 67 + ] + }, + { + "time": 7.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 513, + 134 + ] + }, + { + "time": 8.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 569, + 63 + ] + }, + { + "time": 9.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 166, + 333 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_17.json b/dataset/scenario1/inputs/random_input_20251005161830_17.json new file mode 100644 index 0000000..d48c9bc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_17.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 404, + 117 + ] + }, + { + "time": 1.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 440, + 173 + ] + }, + { + "time": 2.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 392, + 283 + ] + }, + { + "time": 3.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 498, + 379 + ] + }, + { + "time": 4.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 402, + 96 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_18.json b/dataset/scenario1/inputs/random_input_20251005161830_18.json new file mode 100644 index 0000000..e956897 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_18.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 681, + 178 + ] + }, + { + "time": 1.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 442 + ] + }, + { + "time": 2.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 65, + 375 + ] + }, + { + "time": 3.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 358, + 303 + ] + }, + { + "time": 5.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 721, + 179 + ] + }, + { + "time": 6.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 506, + 417 + ] + }, + { + "time": 7.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 155, + 345 + ] + }, + { + "time": 7.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 381, + 201 + ] + }, + { + "time": 8.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 703, + 57 + ] + }, + { + "time": 9.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 568, + 262 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_19.json b/dataset/scenario1/inputs/random_input_20251005161830_19.json new file mode 100644 index 0000000..5201665 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_19.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 613, + 114 + ] + }, + { + "time": 1.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 211, + 157 + ] + }, + { + "time": 2.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 358, + 117 + ] + }, + { + "time": 2.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 154, + 182 + ] + }, + { + "time": 3.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 403, + 334 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_20.json b/dataset/scenario1/inputs/random_input_20251005161830_20.json new file mode 100644 index 0000000..cd7e62b --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_20.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 587, + 337 + ] + }, + { + "time": 1.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 263, + 61 + ] + }, + { + "time": 2.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 252, + 320 + ] + }, + { + "time": 3.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 423, + 416 + ] + }, + { + "time": 4.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 136, + 237 + ] + }, + { + "time": 5.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 257, + 429 + ] + }, + { + "time": 6.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 347, + 163 + ] + }, + { + "time": 7.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 278, + 408 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_21.json b/dataset/scenario1/inputs/random_input_20251005161830_21.json new file mode 100644 index 0000000..308140d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_21.json @@ -0,0 +1,110 @@ +[ + { + "time": 1.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 510, + 296 + ] + }, + { + "time": 2.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 114, + 397 + ] + }, + { + "time": 3.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 201, + 145 + ] + }, + { + "time": 3.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 524, + 388 + ] + }, + { + "time": 4.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 529, + 70 + ] + }, + { + "time": 5.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 634, + 79 + ] + }, + { + "time": 6.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 213, + 278 + ] + }, + { + "time": 7.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 610, + 370 + ] + }, + { + "time": 7.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 141, + 273 + ] + }, + { + "time": 8.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 682, + 301 + ] + }, + { + "time": 8.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 169, + 55 + ] + }, + { + "time": 9.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 401, + 394 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_22.json b/dataset/scenario1/inputs/random_input_20251005161830_22.json new file mode 100644 index 0000000..e0b89c9 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_22.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 57, + 451 + ] + }, + { + "time": 1.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 594, + 420 + ] + }, + { + "time": 2.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 102 + ] + }, + { + "time": 3.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 571, + 402 + ] + }, + { + "time": 3.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 491, + 177 + ] + }, + { + "time": 5.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 371, + 366 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_23.json b/dataset/scenario1/inputs/random_input_20251005161830_23.json new file mode 100644 index 0000000..5b6cb05 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_23.json @@ -0,0 +1,110 @@ +[ + { + "time": 1.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 410, + 278 + ] + }, + { + "time": 2.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 693, + 189 + ] + }, + { + "time": 2.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 465, + 351 + ] + }, + { + "time": 4.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 707, + 72 + ] + }, + { + "time": 4.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 80, + 179 + ] + }, + { + "time": 5.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 730, + 105 + ] + }, + { + "time": 6.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 711, + 329 + ] + }, + { + "time": 6.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 657, + 75 + ] + }, + { + "time": 6.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 589, + 74 + ] + }, + { + "time": 7.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 377, + 191 + ] + }, + { + "time": 8.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 304, + 477 + ] + }, + { + "time": 9.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 115, + 238 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_24.json b/dataset/scenario1/inputs/random_input_20251005161830_24.json new file mode 100644 index 0000000..5831a2a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_24.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 559, + 173 + ] + }, + { + "time": 1.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 629, + 311 + ] + }, + { + "time": 2.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 217, + 434 + ] + }, + { + "time": 2.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 616, + 121 + ] + }, + { + "time": 3.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 648, + 441 + ] + }, + { + "time": 4.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 731, + 490 + ] + }, + { + "time": 5.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 738, + 99 + ] + }, + { + "time": 6.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 358, + 376 + ] + }, + { + "time": 7.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 169, + 144 + ] + }, + { + "time": 7.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 359, + 272 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_25.json b/dataset/scenario1/inputs/random_input_20251005161830_25.json new file mode 100644 index 0000000..5a86b80 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_25.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 357, + 332 + ] + }, + { + "time": 1.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 565, + 185 + ] + }, + { + "time": 3.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 592, + 257 + ] + }, + { + "time": 4.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 122, + 114 + ] + }, + { + "time": 5.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 80, + 340 + ] + }, + { + "time": 6.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 163, + 174 + ] + }, + { + "time": 7.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 455 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_26.json b/dataset/scenario1/inputs/random_input_20251005161830_26.json new file mode 100644 index 0000000..cecd23f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_26.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 81, + 197 + ] + }, + { + "time": 1.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 633, + 319 + ] + }, + { + "time": 2.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 351, + 352 + ] + }, + { + "time": 3.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 347, + 110 + ] + }, + { + "time": 3.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 92 + ] + }, + { + "time": 5.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 647, + 340 + ] + }, + { + "time": 5.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 585, + 377 + ] + }, + { + "time": 7.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 127, + 168 + ] + }, + { + "time": 8.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 717, + 236 + ] + }, + { + "time": 9.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 494, + 65 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_27.json b/dataset/scenario1/inputs/random_input_20251005161830_27.json new file mode 100644 index 0000000..0d02ea1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_27.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 514, + 169 + ] + }, + { + "time": 1.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 547, + 169 + ] + }, + { + "time": 2.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 739, + 407 + ] + }, + { + "time": 3.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 554, + 245 + ] + }, + { + "time": 4.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 335, + 189 + ] + }, + { + "time": 5.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 605, + 268 + ] + }, + { + "time": 7.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 88, + 412 + ] + }, + { + "time": 8.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 410, + 385 + ] + }, + { + "time": 9.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 705, + 425 + ] + }, + { + "time": 9.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 369, + 202 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_28.json b/dataset/scenario1/inputs/random_input_20251005161830_28.json new file mode 100644 index 0000000..9e4cba1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_28.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 573, + 58 + ] + }, + { + "time": 0.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 396, + 284 + ] + }, + { + "time": 2.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 283, + 296 + ] + }, + { + "time": 3.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 660, + 426 + ] + }, + { + "time": 3.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 630, + 328 + ] + }, + { + "time": 4.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 70, + 255 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_29.json b/dataset/scenario1/inputs/random_input_20251005161830_29.json new file mode 100644 index 0000000..e3a3723 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_29.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 120, + 337 + ] + }, + { + "time": 1.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 224, + 461 + ] + }, + { + "time": 2.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 608, + 60 + ] + }, + { + "time": 3.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 743, + 149 + ] + }, + { + "time": 4.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 192, + 103 + ] + }, + { + "time": 5.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 70, + 406 + ] + }, + { + "time": 6.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 688, + 471 + ] + }, + { + "time": 7.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 62, + 70 + ] + }, + { + "time": 7.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 465, + 457 + ] + }, + { + "time": 8.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 408, + 271 + ] + }, + { + "time": 9.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 86, + 322 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_30.json b/dataset/scenario1/inputs/random_input_20251005161830_30.json new file mode 100644 index 0000000..ff2b152 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_30.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 496, + 276 + ] + }, + { + "time": 1.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 283, + 67 + ] + }, + { + "time": 1.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 288, + 263 + ] + }, + { + "time": 2.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 409, + 349 + ] + }, + { + "time": 3.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 196, + 164 + ] + }, + { + "time": 4.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 96, + 405 + ] + }, + { + "time": 5.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 309, + 387 + ] + }, + { + "time": 6.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 750, + 204 + ] + }, + { + "time": 7.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 668, + 344 + ] + }, + { + "time": 8.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 111, + 480 + ] + }, + { + "time": 9.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 391 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_31.json b/dataset/scenario1/inputs/random_input_20251005161830_31.json new file mode 100644 index 0000000..bf674a3 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_31.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 237, + 324 + ] + }, + { + "time": 1.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 81, + 198 + ] + }, + { + "time": 2.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 135, + 98 + ] + }, + { + "time": 3.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 134, + 127 + ] + }, + { + "time": 4.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 269, + 428 + ] + }, + { + "time": 5.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 405, + 355 + ] + }, + { + "time": 5.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 685, + 119 + ] + }, + { + "time": 6.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 125, + 306 + ] + }, + { + "time": 7.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 435 + ] + }, + { + "time": 8.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 568, + 491 + ] + }, + { + "time": 9.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 59, + 298 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_32.json b/dataset/scenario1/inputs/random_input_20251005161830_32.json new file mode 100644 index 0000000..1590d6a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_32.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 550, + 53 + ] + }, + { + "time": 1.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 453, + 458 + ] + }, + { + "time": 3.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 58, + 437 + ] + }, + { + "time": 4.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 218, + 74 + ] + }, + { + "time": 5.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 161, + 208 + ] + }, + { + "time": 6.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 80, + 309 + ] + }, + { + "time": 6.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 683, + 143 + ] + }, + { + "time": 8.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 396, + 146 + ] + }, + { + "time": 8.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 66, + 282 + ] + }, + { + "time": 9.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 307, + 322 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_33.json b/dataset/scenario1/inputs/random_input_20251005161830_33.json new file mode 100644 index 0000000..15135ce --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_33.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 741, + 136 + ] + }, + { + "time": 1.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 107, + 169 + ] + }, + { + "time": 1.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 507, + 466 + ] + }, + { + "time": 2.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 207, + 161 + ] + }, + { + "time": 3.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 634, + 191 + ] + }, + { + "time": 3.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 98, + 303 + ] + }, + { + "time": 4.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 618, + 98 + ] + }, + { + "time": 5.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 504, + 403 + ] + }, + { + "time": 6.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 723, + 408 + ] + }, + { + "time": 8.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 663, + 491 + ] + }, + { + "time": 8.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 579, + 136 + ] + }, + { + "time": 9.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 648, + 392 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_34.json b/dataset/scenario1/inputs/random_input_20251005161830_34.json new file mode 100644 index 0000000..1f9fc89 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_34.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 521, + 131 + ] + }, + { + "time": 1.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 300, + 437 + ] + }, + { + "time": 2.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 88, + 377 + ] + }, + { + "time": 2.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 299, + 480 + ] + }, + { + "time": 4.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 309, + 161 + ] + }, + { + "time": 4.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 250, + 458 + ] + }, + { + "time": 5.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 344, + 414 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_35.json b/dataset/scenario1/inputs/random_input_20251005161830_35.json new file mode 100644 index 0000000..539e27d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_35.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 340, + 463 + ] + }, + { + "time": 1.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 574, + 120 + ] + }, + { + "time": 1.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 188, + 399 + ] + }, + { + "time": 2.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 352, + 60 + ] + }, + { + "time": 2.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 283, + 119 + ] + }, + { + "time": 4.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 305, + 110 + ] + }, + { + "time": 4.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 560, + 499 + ] + }, + { + "time": 6.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 96, + 378 + ] + }, + { + "time": 7.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 292, + 498 + ] + }, + { + "time": 8.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 363, + 183 + ] + }, + { + "time": 9.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 152, + 386 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_36.json b/dataset/scenario1/inputs/random_input_20251005161830_36.json new file mode 100644 index 0000000..cb03f0e --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_36.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 494, + 203 + ] + }, + { + "time": 1.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 488, + 248 + ] + }, + { + "time": 2.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 652, + 496 + ] + }, + { + "time": 2.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 642, + 395 + ] + }, + { + "time": 3.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 603, + 143 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_37.json b/dataset/scenario1/inputs/random_input_20251005161830_37.json new file mode 100644 index 0000000..556284a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_37.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 660, + 290 + ] + }, + { + "time": 2.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 279, + 483 + ] + }, + { + "time": 3.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 370, + 192 + ] + }, + { + "time": 3.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 118, + 272 + ] + }, + { + "time": 4.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 459, + 209 + ] + }, + { + "time": 5.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 304, + 151 + ] + }, + { + "time": 6.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 597, + 135 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_38.json b/dataset/scenario1/inputs/random_input_20251005161830_38.json new file mode 100644 index 0000000..85e6445 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_38.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 91, + 462 + ] + }, + { + "time": 2.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 560, + 223 + ] + }, + { + "time": 2.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 609, + 267 + ] + }, + { + "time": 4.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 297, + 94 + ] + }, + { + "time": 5.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 430, + 185 + ] + }, + { + "time": 6.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 655, + 68 + ] + }, + { + "time": 7.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 607, + 67 + ] + }, + { + "time": 8.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 220, + 478 + ] + }, + { + "time": 9.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 436, + 75 + ] + }, + { + "time": 9.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 663, + 108 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_39.json b/dataset/scenario1/inputs/random_input_20251005161830_39.json new file mode 100644 index 0000000..67e0ee7 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_39.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 284, + 391 + ] + }, + { + "time": 1.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 589, + 58 + ] + }, + { + "time": 2.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 534, + 416 + ] + }, + { + "time": 2.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 117 + ] + }, + { + "time": 3.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 693, + 236 + ] + }, + { + "time": 5.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 217, + 244 + ] + }, + { + "time": 5.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 89, + 427 + ] + }, + { + "time": 6.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 559, + 160 + ] + }, + { + "time": 7.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 93, + 209 + ] + }, + { + "time": 8.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 530, + 478 + ] + }, + { + "time": 9.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 623, + 406 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_40.json b/dataset/scenario1/inputs/random_input_20251005161830_40.json new file mode 100644 index 0000000..64195c5 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_40.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 173, + 103 + ] + }, + { + "time": 1.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 653, + 268 + ] + }, + { + "time": 2.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 592, + 148 + ] + }, + { + "time": 3.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 606, + 272 + ] + }, + { + "time": 4.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 454, + 191 + ] + }, + { + "time": 4.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 570, + 437 + ] + }, + { + "time": 6.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 183, + 224 + ] + }, + { + "time": 6.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 454, + 368 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_41.json b/dataset/scenario1/inputs/random_input_20251005161830_41.json new file mode 100644 index 0000000..c2ba2cd --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_41.json @@ -0,0 +1,56 @@ +[ + { + "time": 1.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 638, + 263 + ] + }, + { + "time": 2.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 638, + 245 + ] + }, + { + "time": 3.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 266, + 330 + ] + }, + { + "time": 3.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 518, + 489 + ] + }, + { + "time": 5.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 697, + 99 + ] + }, + { + "time": 6.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 702, + 262 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_42.json b/dataset/scenario1/inputs/random_input_20251005161830_42.json new file mode 100644 index 0000000..1f101bb --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_42.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 68, + 433 + ] + }, + { + "time": 1.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 623, + 59 + ] + }, + { + "time": 2.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 179, + 168 + ] + }, + { + "time": 2.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 100, + 113 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 704, + 71 + ] + }, + { + "time": 4.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 121, + 140 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_43.json b/dataset/scenario1/inputs/random_input_20251005161830_43.json new file mode 100644 index 0000000..4f10657 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_43.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 567, + 195 + ] + }, + { + "time": 2.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 549, + 456 + ] + }, + { + "time": 2.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 152, + 259 + ] + }, + { + "time": 3.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 518, + 228 + ] + }, + { + "time": 4.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 453, + 419 + ] + }, + { + "time": 5.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 430, + 333 + ] + }, + { + "time": 5.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 565, + 377 + ] + }, + { + "time": 6.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 229, + 331 + ] + }, + { + "time": 7.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 294, + 270 + ] + }, + { + "time": 8.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 730, + 99 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_44.json b/dataset/scenario1/inputs/random_input_20251005161830_44.json new file mode 100644 index 0000000..2df9692 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_44.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 359, + 236 + ] + }, + { + "time": 2.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 434, + 333 + ] + }, + { + "time": 3.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 536, + 400 + ] + }, + { + "time": 4.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 324, + 471 + ] + }, + { + "time": 5.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 71, + 379 + ] + }, + { + "time": 6.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 57, + 148 + ] + }, + { + "time": 7.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 150 + ] + }, + { + "time": 8.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 593, + 326 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_45.json b/dataset/scenario1/inputs/random_input_20251005161830_45.json new file mode 100644 index 0000000..1091e5f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_45.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 421, + 439 + ] + }, + { + "time": 1.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 507, + 168 + ] + }, + { + "time": 2.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 585, + 470 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 399, + 400 + ] + }, + { + "time": 4.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 116, + 435 + ] + }, + { + "time": 6.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 392, + 307 + ] + }, + { + "time": 7.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 582, + 440 + ] + }, + { + "time": 8.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 406, + 401 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_46.json b/dataset/scenario1/inputs/random_input_20251005161830_46.json new file mode 100644 index 0000000..46cafc1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_46.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 464, + 114 + ] + }, + { + "time": 2.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 627, + 325 + ] + }, + { + "time": 2.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 331, + 478 + ] + }, + { + "time": 4.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 331, + 274 + ] + }, + { + "time": 5.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 586, + 182 + ] + }, + { + "time": 6.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 662, + 455 + ] + }, + { + "time": 7.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 79, + 60 + ] + }, + { + "time": 8.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 552, + 229 + ] + }, + { + "time": 9.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 726, + 453 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_47.json b/dataset/scenario1/inputs/random_input_20251005161830_47.json new file mode 100644 index 0000000..e5cf1dc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_47.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 749, + 244 + ] + }, + { + "time": 1.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 487, + 459 + ] + }, + { + "time": 2.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 142, + 213 + ] + }, + { + "time": 3.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 207, + 480 + ] + }, + { + "time": 4.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 503, + 306 + ] + }, + { + "time": 5.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 681, + 486 + ] + }, + { + "time": 6.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 557, + 171 + ] + }, + { + "time": 7.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 709, + 355 + ] + }, + { + "time": 8.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 520, + 352 + ] + }, + { + "time": 9.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 200, + 338 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_48.json b/dataset/scenario1/inputs/random_input_20251005161830_48.json new file mode 100644 index 0000000..e38e827 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_48.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 379, + 300 + ] + }, + { + "time": 1.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 156, + 253 + ] + }, + { + "time": 2.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 522, + 111 + ] + }, + { + "time": 3.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 157, + 96 + ] + }, + { + "time": 4.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 140, + 413 + ] + }, + { + "time": 5.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 287, + 245 + ] + }, + { + "time": 6.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 429, + 415 + ] + }, + { + "time": 7.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 483, + 329 + ] + }, + { + "time": 8.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 100, + 398 + ] + }, + { + "time": 9.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 586, + 119 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_49.json b/dataset/scenario1/inputs/random_input_20251005161830_49.json new file mode 100644 index 0000000..c83f187 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_49.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 189, + 274 + ] + }, + { + "time": 1.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 707, + 106 + ] + }, + { + "time": 2.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 542, + 389 + ] + }, + { + "time": 3.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 360, + 200 + ] + }, + { + "time": 4.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 57, + 224 + ] + }, + { + "time": 4.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 543, + 425 + ] + }, + { + "time": 5.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 88, + 95 + ] + }, + { + "time": 6.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 121, + 84 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_50.json b/dataset/scenario1/inputs/random_input_20251005161830_50.json new file mode 100644 index 0000000..056f22b --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_50.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 357, + 352 + ] + }, + { + "time": 2.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 157, + 384 + ] + }, + { + "time": 3.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 462, + 341 + ] + }, + { + "time": 4.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 232, + 249 + ] + }, + { + "time": 5.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 86, + 317 + ] + }, + { + "time": 6.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 629, + 397 + ] + }, + { + "time": 7.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 244, + 337 + ] + }, + { + "time": 9.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 81, + 74 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_51.json b/dataset/scenario1/inputs/random_input_20251005161830_51.json new file mode 100644 index 0000000..3f611b4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_51.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 246, + 143 + ] + }, + { + "time": 1.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 673, + 165 + ] + }, + { + "time": 2.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 513, + 307 + ] + }, + { + "time": 3.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 526, + 107 + ] + }, + { + "time": 4.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 181, + 293 + ] + }, + { + "time": 5.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 551, + 168 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_52.json b/dataset/scenario1/inputs/random_input_20251005161830_52.json new file mode 100644 index 0000000..5f1e711 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_52.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 378 + ] + }, + { + "time": 1.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 388 + ] + }, + { + "time": 2.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 347, + 438 + ] + }, + { + "time": 3.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 508, + 74 + ] + }, + { + "time": 3.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 615, + 103 + ] + }, + { + "time": 4.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 119, + 443 + ] + }, + { + "time": 5.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 179, + 243 + ] + }, + { + "time": 5.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 349, + 373 + ] + }, + { + "time": 6.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 508, + 274 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_53.json b/dataset/scenario1/inputs/random_input_20251005161830_53.json new file mode 100644 index 0000000..1af99a8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_53.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 131, + 495 + ] + }, + { + "time": 1.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 437, + 218 + ] + }, + { + "time": 2.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 226, + 116 + ] + }, + { + "time": 3.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 725, + 459 + ] + }, + { + "time": 3.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 473, + 274 + ] + }, + { + "time": 4.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 151, + 448 + ] + }, + { + "time": 4.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 504, + 141 + ] + }, + { + "time": 5.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 162 + ] + }, + { + "time": 6.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 203, + 346 + ] + }, + { + "time": 7.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 511, + 165 + ] + }, + { + "time": 8.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 292, + 434 + ] + }, + { + "time": 9.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 407, + 498 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_54.json b/dataset/scenario1/inputs/random_input_20251005161830_54.json new file mode 100644 index 0000000..f3f6ebc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_54.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 217, + 150 + ] + }, + { + "time": 1.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 335, + 62 + ] + }, + { + "time": 2.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 397, + 335 + ] + }, + { + "time": 3.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 386, + 373 + ] + }, + { + "time": 4.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 112, + 495 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_55.json b/dataset/scenario1/inputs/random_input_20251005161830_55.json new file mode 100644 index 0000000..0e6d650 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_55.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 168, + 268 + ] + }, + { + "time": 1.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 411, + 157 + ] + }, + { + "time": 2.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 86, + 286 + ] + }, + { + "time": 3.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 508, + 392 + ] + }, + { + "time": 4.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 377, + 119 + ] + }, + { + "time": 5.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 270, + 82 + ] + }, + { + "time": 6.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 58, + 117 + ] + }, + { + "time": 7.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 568, + 385 + ] + }, + { + "time": 8.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 710, + 160 + ] + }, + { + "time": 9.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 380, + 305 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_56.json b/dataset/scenario1/inputs/random_input_20251005161830_56.json new file mode 100644 index 0000000..6c9a560 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_56.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 245, + 305 + ] + }, + { + "time": 1.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 682, + 221 + ] + }, + { + "time": 1.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 340, + 142 + ] + }, + { + "time": 2.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 248, + 491 + ] + }, + { + "time": 3.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 527, + 193 + ] + }, + { + "time": 4.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 624, + 401 + ] + }, + { + "time": 5.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 429, + 62 + ] + }, + { + "time": 6.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 415 + ] + }, + { + "time": 7.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 680, + 160 + ] + }, + { + "time": 9.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 554, + 117 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_57.json b/dataset/scenario1/inputs/random_input_20251005161830_57.json new file mode 100644 index 0000000..d5cff16 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_57.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 199, + 221 + ] + }, + { + "time": 1.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 382, + 126 + ] + }, + { + "time": 2.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 466, + 411 + ] + }, + { + "time": 3.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 423, + 357 + ] + }, + { + "time": 4.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 214, + 182 + ] + }, + { + "time": 5.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 177 + ] + }, + { + "time": 5.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 65, + 164 + ] + }, + { + "time": 6.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 229, + 389 + ] + }, + { + "time": 7.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 396, + 54 + ] + }, + { + "time": 8.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 668, + 209 + ] + }, + { + "time": 9.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 108, + 147 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_58.json b/dataset/scenario1/inputs/random_input_20251005161830_58.json new file mode 100644 index 0000000..3de0390 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_58.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 414, + 422 + ] + }, + { + "time": 2.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 617, + 392 + ] + }, + { + "time": 2.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 118, + 71 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 742, + 494 + ] + }, + { + "time": 4.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 282, + 190 + ] + }, + { + "time": 5.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 612, + 375 + ] + }, + { + "time": 6.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 461 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_59.json b/dataset/scenario1/inputs/random_input_20251005161830_59.json new file mode 100644 index 0000000..0a67e39 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_59.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 564, + 468 + ] + }, + { + "time": 1.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 603, + 99 + ] + }, + { + "time": 2.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 179, + 457 + ] + }, + { + "time": 2.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 482, + 204 + ] + }, + { + "time": 3.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 403, + 155 + ] + }, + { + "time": 4.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 424, + 474 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_60.json b/dataset/scenario1/inputs/random_input_20251005161830_60.json new file mode 100644 index 0000000..b658f2f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_60.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 639, + 295 + ] + }, + { + "time": 2.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 570, + 141 + ] + }, + { + "time": 3.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 222, + 304 + ] + }, + { + "time": 4.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 256, + 380 + ] + }, + { + "time": 4.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 671, + 369 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_61.json b/dataset/scenario1/inputs/random_input_20251005161830_61.json new file mode 100644 index 0000000..609c7f4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_61.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 305, + 295 + ] + }, + { + "time": 1.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 415, + 148 + ] + }, + { + "time": 2.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 624, + 337 + ] + }, + { + "time": 3.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 107, + 262 + ] + }, + { + "time": 4.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 476, + 262 + ] + }, + { + "time": 5.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 145, + 85 + ] + }, + { + "time": 5.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 306, + 131 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_62.json b/dataset/scenario1/inputs/random_input_20251005161830_62.json new file mode 100644 index 0000000..aea18af --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_62.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 694, + 376 + ] + }, + { + "time": 1.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 601, + 116 + ] + }, + { + "time": 2.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 235, + 327 + ] + }, + { + "time": 3.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 247, + 57 + ] + }, + { + "time": 3.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 206, + 427 + ] + }, + { + "time": 4.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 184, + 332 + ] + }, + { + "time": 5.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 194, + 294 + ] + }, + { + "time": 6.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 249, + 132 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_63.json b/dataset/scenario1/inputs/random_input_20251005161830_63.json new file mode 100644 index 0000000..03b29b9 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_63.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 398 + ] + }, + { + "time": 1.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 366, + 469 + ] + }, + { + "time": 2.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 537, + 306 + ] + }, + { + "time": 2.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 122, + 137 + ] + }, + { + "time": 3.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 479, + 230 + ] + }, + { + "time": 5.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 435, + 423 + ] + }, + { + "time": 6.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 732, + 84 + ] + }, + { + "time": 7.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 494, + 299 + ] + }, + { + "time": 7.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 479, + 240 + ] + }, + { + "time": 9.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 191, + 94 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161830_64.json b/dataset/scenario1/inputs/random_input_20251005161830_64.json new file mode 100644 index 0000000..a412f1e --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161830_64.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 606, + 291 + ] + }, + { + "time": 1.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 645, + 458 + ] + }, + { + "time": 2.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 373, + 332 + ] + }, + { + "time": 2.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 341, + 139 + ] + }, + { + "time": 3.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 463 + ] + }, + { + "time": 4.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 129, + 154 + ] + }, + { + "time": 5.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 139, + 263 + ] + }, + { + "time": 6.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 744, + 387 + ] + }, + { + "time": 6.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 70, + 164 + ] + }, + { + "time": 7.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 149, + 204 + ] + }, + { + "time": 9.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 341, + 409 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_100.json b/dataset/scenario1/inputs/random_input_20251005161831_100.json new file mode 100644 index 0000000..1128251 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_100.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 297, + 371 + ] + }, + { + "time": 1.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 266, + 255 + ] + }, + { + "time": 2.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 490, + 327 + ] + }, + { + "time": 3.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 675, + 321 + ] + }, + { + "time": 4.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 342, + 246 + ] + }, + { + "time": 5.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 115, + 63 + ] + }, + { + "time": 6.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 442, + 385 + ] + }, + { + "time": 7.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 52 + ] + }, + { + "time": 8.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 267, + 170 + ] + }, + { + "time": 9.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 339, + 86 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_101.json b/dataset/scenario1/inputs/random_input_20251005161831_101.json new file mode 100644 index 0000000..c873a79 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_101.json @@ -0,0 +1,65 @@ +[ + { + "time": 1.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 302 + ] + }, + { + "time": 2.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 694, + 118 + ] + }, + { + "time": 3.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 615, + 69 + ] + }, + { + "time": 3.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 260, + 354 + ] + }, + { + "time": 4.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 105, + 313 + ] + }, + { + "time": 6.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 84 + ] + }, + { + "time": 7.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 523, + 65 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_102.json b/dataset/scenario1/inputs/random_input_20251005161831_102.json new file mode 100644 index 0000000..0e5c62e --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_102.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 594, + 256 + ] + }, + { + "time": 1.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 212, + 281 + ] + }, + { + "time": 2.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 310, + 126 + ] + }, + { + "time": 3.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 91, + 192 + ] + }, + { + "time": 4.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 516, + 255 + ] + }, + { + "time": 4.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 147, + 68 + ] + }, + { + "time": 5.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 558, + 450 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_103.json b/dataset/scenario1/inputs/random_input_20251005161831_103.json new file mode 100644 index 0000000..b85fa7d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_103.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 645, + 110 + ] + }, + { + "time": 1.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 438, + 353 + ] + }, + { + "time": 3.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 505, + 482 + ] + }, + { + "time": 4.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 725, + 155 + ] + }, + { + "time": 5.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 247, + 442 + ] + }, + { + "time": 6.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 575, + 398 + ] + }, + { + "time": 7.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 207, + 158 + ] + }, + { + "time": 8.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 72, + 98 + ] + }, + { + "time": 8.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 196, + 237 + ] + }, + { + "time": 9.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 622, + 128 + ] + }, + { + "time": 9.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 218, + 118 + ] + }, + { + "time": 9.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 381 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_104.json b/dataset/scenario1/inputs/random_input_20251005161831_104.json new file mode 100644 index 0000000..e1a979a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_104.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 446, + 494 + ] + }, + { + "time": 1.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 210, + 381 + ] + }, + { + "time": 3.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 527, + 138 + ] + }, + { + "time": 4.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 500, + 281 + ] + }, + { + "time": 4.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 274, + 294 + ] + }, + { + "time": 5.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 395, + 431 + ] + }, + { + "time": 6.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 525, + 176 + ] + }, + { + "time": 7.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 85, + 344 + ] + }, + { + "time": 8.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 227, + 300 + ] + }, + { + "time": 8.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 196, + 343 + ] + }, + { + "time": 9.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 382, + 220 + ] + }, + { + "time": 9.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 532, + 301 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_105.json b/dataset/scenario1/inputs/random_input_20251005161831_105.json new file mode 100644 index 0000000..ca5b6a1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_105.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 568, + 97 + ] + }, + { + "time": 1.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 76, + 125 + ] + }, + { + "time": 3.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 541, + 426 + ] + }, + { + "time": 4.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 421, + 125 + ] + }, + { + "time": 5.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 256, + 135 + ] + }, + { + "time": 6.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 446, + 144 + ] + }, + { + "time": 7.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 670, + 463 + ] + }, + { + "time": 7.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 736, + 123 + ] + }, + { + "time": 9.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 610, + 275 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_106.json b/dataset/scenario1/inputs/random_input_20251005161831_106.json new file mode 100644 index 0000000..e6a3f6c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_106.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 453, + 432 + ] + }, + { + "time": 1.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 746, + 54 + ] + }, + { + "time": 2.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 348, + 425 + ] + }, + { + "time": 2.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 714, + 68 + ] + }, + { + "time": 3.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 405, + 331 + ] + }, + { + "time": 3.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 480, + 294 + ] + }, + { + "time": 4.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 310, + 462 + ] + }, + { + "time": 6.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 577, + 265 + ] + }, + { + "time": 7.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 64, + 63 + ] + }, + { + "time": 8.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 376, + 181 + ] + }, + { + "time": 8.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 108, + 126 + ] + }, + { + "time": 9.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 473, + 106 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_107.json b/dataset/scenario1/inputs/random_input_20251005161831_107.json new file mode 100644 index 0000000..276ccd1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_107.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 297, + 141 + ] + }, + { + "time": 1.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 592, + 264 + ] + }, + { + "time": 2.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 688, + 288 + ] + }, + { + "time": 3.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 124, + 472 + ] + }, + { + "time": 4.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 226, + 194 + ] + }, + { + "time": 4.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 130, + 479 + ] + }, + { + "time": 5.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 128, + 207 + ] + }, + { + "time": 6.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 635, + 356 + ] + }, + { + "time": 7.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 385, + 165 + ] + }, + { + "time": 8.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 401, + 442 + ] + }, + { + "time": 9.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 185, + 218 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_108.json b/dataset/scenario1/inputs/random_input_20251005161831_108.json new file mode 100644 index 0000000..b764372 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_108.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 191, + 306 + ] + }, + { + "time": 2.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 193, + 334 + ] + }, + { + "time": 4.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 379, + 246 + ] + }, + { + "time": 4.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 405, + 465 + ] + }, + { + "time": 6.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 426, + 288 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_109.json b/dataset/scenario1/inputs/random_input_20251005161831_109.json new file mode 100644 index 0000000..af4c045 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_109.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 615, + 259 + ] + }, + { + "time": 1.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 573, + 304 + ] + }, + { + "time": 2.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 422 + ] + }, + { + "time": 2.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 373, + 199 + ] + }, + { + "time": 3.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 379, + 221 + ] + }, + { + "time": 4.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 120, + 385 + ] + }, + { + "time": 5.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 619, + 53 + ] + }, + { + "time": 6.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 481, + 80 + ] + }, + { + "time": 8.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 493, + 359 + ] + }, + { + "time": 9.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 398, + 397 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_110.json b/dataset/scenario1/inputs/random_input_20251005161831_110.json new file mode 100644 index 0000000..8acdc3d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_110.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 604, + 480 + ] + }, + { + "time": 1.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 209, + 304 + ] + }, + { + "time": 2.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 536, + 218 + ] + }, + { + "time": 3.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 97, + 219 + ] + }, + { + "time": 4.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 743, + 167 + ] + }, + { + "time": 4.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 674, + 323 + ] + }, + { + "time": 5.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 629, + 91 + ] + }, + { + "time": 7.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 744, + 253 + ] + }, + { + "time": 7.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 204, + 170 + ] + }, + { + "time": 9.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 227, + 86 + ] + }, + { + "time": 9.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 373, + 497 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_111.json b/dataset/scenario1/inputs/random_input_20251005161831_111.json new file mode 100644 index 0000000..f4b24eb --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_111.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 636, + 499 + ] + }, + { + "time": 2.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 333, + 57 + ] + }, + { + "time": 3.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 104, + 499 + ] + }, + { + "time": 4.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 680, + 420 + ] + }, + { + "time": 5.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 259, + 140 + ] + }, + { + "time": 5.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 227, + 154 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_112.json b/dataset/scenario1/inputs/random_input_20251005161831_112.json new file mode 100644 index 0000000..6ef1b89 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_112.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 273, + 341 + ] + }, + { + "time": 2.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 661, + 389 + ] + }, + { + "time": 2.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 268, + 116 + ] + }, + { + "time": 2.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 727, + 283 + ] + }, + { + "time": 3.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 326, + 439 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_113.json b/dataset/scenario1/inputs/random_input_20251005161831_113.json new file mode 100644 index 0000000..623b5e7 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_113.json @@ -0,0 +1,65 @@ +[ + { + "time": 1.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 405, + 90 + ] + }, + { + "time": 2.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 501, + 353 + ] + }, + { + "time": 3.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 105, + 421 + ] + }, + { + "time": 4.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 487 + ] + }, + { + "time": 5.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 540, + 443 + ] + }, + { + "time": 6.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 655, + 204 + ] + }, + { + "time": 8.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 350, + 101 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_114.json b/dataset/scenario1/inputs/random_input_20251005161831_114.json new file mode 100644 index 0000000..c54a2a8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_114.json @@ -0,0 +1,119 @@ +[ + { + "time": 0.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 540, + 467 + ] + }, + { + "time": 1.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 237, + 363 + ] + }, + { + "time": 2.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 524, + 86 + ] + }, + { + "time": 2.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 524, + 129 + ] + }, + { + "time": 3.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 302, + 371 + ] + }, + { + "time": 4.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 245, + 418 + ] + }, + { + "time": 5.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 500, + 154 + ] + }, + { + "time": 5.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 579, + 177 + ] + }, + { + "time": 6.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 543, + 461 + ] + }, + { + "time": 7.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 78, + 240 + ] + }, + { + "time": 8.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 86, + 64 + ] + }, + { + "time": 8.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 548, + 171 + ] + }, + { + "time": 9.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 704, + 228 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_115.json b/dataset/scenario1/inputs/random_input_20251005161831_115.json new file mode 100644 index 0000000..145eec4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_115.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 632, + 119 + ] + }, + { + "time": 2.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 501, + 59 + ] + }, + { + "time": 2.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 488, + 416 + ] + }, + { + "time": 3.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 236, + 150 + ] + }, + { + "time": 4.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 326, + 354 + ] + }, + { + "time": 5.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 709, + 170 + ] + }, + { + "time": 6.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 287, + 444 + ] + }, + { + "time": 7.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 292 + ] + }, + { + "time": 8.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 250, + 95 + ] + }, + { + "time": 9.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 69, + 135 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_116.json b/dataset/scenario1/inputs/random_input_20251005161831_116.json new file mode 100644 index 0000000..90c6e83 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_116.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 490, + 464 + ] + }, + { + "time": 1.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 390 + ] + }, + { + "time": 2.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 135, + 293 + ] + }, + { + "time": 3.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 294, + 62 + ] + }, + { + "time": 4.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 118, + 486 + ] + }, + { + "time": 5.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 501, + 101 + ] + }, + { + "time": 5.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 364, + 235 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_117.json b/dataset/scenario1/inputs/random_input_20251005161831_117.json new file mode 100644 index 0000000..106b14d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_117.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 555, + 131 + ] + }, + { + "time": 1.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 577, + 372 + ] + }, + { + "time": 3.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 611, + 211 + ] + }, + { + "time": 3.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 392, + 144 + ] + }, + { + "time": 5.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 408, + 307 + ] + }, + { + "time": 6.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 460, + 411 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_118.json b/dataset/scenario1/inputs/random_input_20251005161831_118.json new file mode 100644 index 0000000..627d6e6 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_118.json @@ -0,0 +1,119 @@ +[ + { + "time": 0.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 270, + 356 + ] + }, + { + "time": 1.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 147, + 138 + ] + }, + { + "time": 2.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 233 + ] + }, + { + "time": 3.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 729, + 140 + ] + }, + { + "time": 4.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 294, + 500 + ] + }, + { + "time": 5.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 606, + 233 + ] + }, + { + "time": 5.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 579, + 64 + ] + }, + { + "time": 6.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 227, + 68 + ] + }, + { + "time": 7.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 130, + 345 + ] + }, + { + "time": 7.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 228 + ] + }, + { + "time": 8.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 628, + 343 + ] + }, + { + "time": 9.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 730, + 115 + ] + }, + { + "time": 9.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 334, + 284 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_119.json b/dataset/scenario1/inputs/random_input_20251005161831_119.json new file mode 100644 index 0000000..47ea8d1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_119.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 329, + 406 + ] + }, + { + "time": 1.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 454, + 357 + ] + }, + { + "time": 2.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 375, + 433 + ] + }, + { + "time": 3.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 429, + 265 + ] + }, + { + "time": 4.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 701, + 284 + ] + }, + { + "time": 5.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 449, + 233 + ] + }, + { + "time": 6.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 641, + 180 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_120.json b/dataset/scenario1/inputs/random_input_20251005161831_120.json new file mode 100644 index 0000000..56516db --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_120.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 597, + 445 + ] + }, + { + "time": 2.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 538, + 111 + ] + }, + { + "time": 3.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 214, + 334 + ] + }, + { + "time": 4.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 598, + 62 + ] + }, + { + "time": 6.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 506, + 467 + ] + }, + { + "time": 6.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 554, + 236 + ] + }, + { + "time": 7.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 318, + 339 + ] + }, + { + "time": 8.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 194, + 160 + ] + }, + { + "time": 9.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 262, + 256 + ] + }, + { + "time": 9.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 342, + 119 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_121.json b/dataset/scenario1/inputs/random_input_20251005161831_121.json new file mode 100644 index 0000000..0eb01e3 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_121.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 507, + 182 + ] + }, + { + "time": 1.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 434, + 451 + ] + }, + { + "time": 3.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 313, + 334 + ] + }, + { + "time": 3.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 475, + 125 + ] + }, + { + "time": 4.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 456, + 185 + ] + }, + { + "time": 5.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 317, + 125 + ] + }, + { + "time": 7.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 600, + 239 + ] + }, + { + "time": 7.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 117, + 56 + ] + }, + { + "time": 8.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 145, + 84 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_122.json b/dataset/scenario1/inputs/random_input_20251005161831_122.json new file mode 100644 index 0000000..9ae021a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_122.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 604, + 422 + ] + }, + { + "time": 1.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 425, + 368 + ] + }, + { + "time": 2.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 359, + 474 + ] + }, + { + "time": 2.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 218, + 380 + ] + }, + { + "time": 4.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 317, + 153 + ] + }, + { + "time": 4.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 594, + 117 + ] + }, + { + "time": 5.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 340, + 393 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_123.json b/dataset/scenario1/inputs/random_input_20251005161831_123.json new file mode 100644 index 0000000..e4078f1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_123.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 257, + 121 + ] + }, + { + "time": 1.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 275, + 173 + ] + }, + { + "time": 2.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 662, + 114 + ] + }, + { + "time": 3.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 258, + 451 + ] + }, + { + "time": 4.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 218, + 134 + ] + }, + { + "time": 5.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 447, + 439 + ] + }, + { + "time": 6.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 199, + 153 + ] + }, + { + "time": 6.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 471, + 50 + ] + }, + { + "time": 6.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 98, + 95 + ] + }, + { + "time": 7.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 192, + 200 + ] + }, + { + "time": 8.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 151, + 399 + ] + }, + { + "time": 8.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 603, + 176 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_124.json b/dataset/scenario1/inputs/random_input_20251005161831_124.json new file mode 100644 index 0000000..86a5523 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_124.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 607, + 219 + ] + }, + { + "time": 1.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 393, + 303 + ] + }, + { + "time": 1.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 63, + 205 + ] + }, + { + "time": 2.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 78, + 90 + ] + }, + { + "time": 3.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 630, + 188 + ] + }, + { + "time": 5.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 312, + 345 + ] + }, + { + "time": 6.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 420, + 151 + ] + }, + { + "time": 7.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 214, + 78 + ] + }, + { + "time": 8.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 388, + 384 + ] + }, + { + "time": 8.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 510, + 312 + ] + }, + { + "time": 9.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 419, + 61 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_125.json b/dataset/scenario1/inputs/random_input_20251005161831_125.json new file mode 100644 index 0000000..4a4a86c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_125.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 466, + 76 + ] + }, + { + "time": 1.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 602, + 394 + ] + }, + { + "time": 2.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 744, + 147 + ] + }, + { + "time": 3.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 428, + 359 + ] + }, + { + "time": 4.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 727, + 219 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_126.json b/dataset/scenario1/inputs/random_input_20251005161831_126.json new file mode 100644 index 0000000..b965983 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_126.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 180, + 269 + ] + }, + { + "time": 1.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 632, + 311 + ] + }, + { + "time": 2.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 173, + 119 + ] + }, + { + "time": 3.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 307, + 98 + ] + }, + { + "time": 4.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 652, + 295 + ] + }, + { + "time": 5.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 146, + 470 + ] + }, + { + "time": 6.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 137, + 215 + ] + }, + { + "time": 6.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 649, + 271 + ] + }, + { + "time": 8.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 397, + 473 + ] + }, + { + "time": 8.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 365, + 381 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_127.json b/dataset/scenario1/inputs/random_input_20251005161831_127.json new file mode 100644 index 0000000..889046d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_127.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 425 + ] + }, + { + "time": 1.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 724, + 176 + ] + }, + { + "time": 1.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 330, + 54 + ] + }, + { + "time": 2.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 301, + 146 + ] + }, + { + "time": 3.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 113, + 205 + ] + }, + { + "time": 4.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 266, + 332 + ] + }, + { + "time": 5.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 573, + 200 + ] + }, + { + "time": 5.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 462, + 140 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_128.json b/dataset/scenario1/inputs/random_input_20251005161831_128.json new file mode 100644 index 0000000..8b2e9b2 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_128.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 550, + 114 + ] + }, + { + "time": 2.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 170, + 398 + ] + }, + { + "time": 3.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 474, + 468 + ] + }, + { + "time": 4.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 720, + 242 + ] + }, + { + "time": 5.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 262, + 342 + ] + }, + { + "time": 7.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 345, + 412 + ] + }, + { + "time": 8.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 55, + 475 + ] + }, + { + "time": 8.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 428, + 193 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_129.json b/dataset/scenario1/inputs/random_input_20251005161831_129.json new file mode 100644 index 0000000..234754b --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_129.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 351, + 231 + ] + }, + { + "time": 1.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 214, + 245 + ] + }, + { + "time": 2.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 481, + 166 + ] + }, + { + "time": 3.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 633, + 489 + ] + }, + { + "time": 4.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 459, + 259 + ] + }, + { + "time": 4.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 659, + 117 + ] + }, + { + "time": 5.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 349, + 256 + ] + }, + { + "time": 6.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 505, + 447 + ] + }, + { + "time": 7.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 363, + 161 + ] + }, + { + "time": 8.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 258, + 230 + ] + }, + { + "time": 9.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 483, + 441 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_130.json b/dataset/scenario1/inputs/random_input_20251005161831_130.json new file mode 100644 index 0000000..1b401ff --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_130.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 476, + 242 + ] + }, + { + "time": 2.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 424, + 335 + ] + }, + { + "time": 2.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 252, + 126 + ] + }, + { + "time": 3.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 234, + 416 + ] + }, + { + "time": 3.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 91, + 145 + ] + }, + { + "time": 4.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 77, + 278 + ] + }, + { + "time": 5.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 695, + 136 + ] + }, + { + "time": 6.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 490, + 67 + ] + }, + { + "time": 7.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 709, + 344 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_131.json b/dataset/scenario1/inputs/random_input_20251005161831_131.json new file mode 100644 index 0000000..2eae148 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_131.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 150, + 350 + ] + }, + { + "time": 2.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 607, + 236 + ] + }, + { + "time": 3.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 609, + 188 + ] + }, + { + "time": 3.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 466, + 290 + ] + }, + { + "time": 4.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 487, + 178 + ] + }, + { + "time": 5.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 166, + 287 + ] + }, + { + "time": 6.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 160, + 100 + ] + }, + { + "time": 7.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 87, + 321 + ] + }, + { + "time": 8.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 262, + 95 + ] + }, + { + "time": 8.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 683, + 432 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_132.json b/dataset/scenario1/inputs/random_input_20251005161831_132.json new file mode 100644 index 0000000..e295a4f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_132.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 111, + 322 + ] + }, + { + "time": 1.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 204, + 140 + ] + }, + { + "time": 2.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 562, + 166 + ] + }, + { + "time": 2.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 233, + 470 + ] + }, + { + "time": 3.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 677, + 484 + ] + }, + { + "time": 4.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 730, + 494 + ] + }, + { + "time": 4.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 623, + 320 + ] + }, + { + "time": 5.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 201, + 288 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_133.json b/dataset/scenario1/inputs/random_input_20251005161831_133.json new file mode 100644 index 0000000..8b76d07 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_133.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 459, + 484 + ] + }, + { + "time": 2.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 690, + 389 + ] + }, + { + "time": 2.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 187 + ] + }, + { + "time": 3.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 709, + 235 + ] + }, + { + "time": 4.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 113, + 286 + ] + }, + { + "time": 5.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 487, + 244 + ] + }, + { + "time": 6.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 56, + 57 + ] + }, + { + "time": 7.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 708, + 245 + ] + }, + { + "time": 8.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 660, + 328 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_134.json b/dataset/scenario1/inputs/random_input_20251005161831_134.json new file mode 100644 index 0000000..80414ef --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_134.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 696, + 156 + ] + }, + { + "time": 1.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 528, + 345 + ] + }, + { + "time": 2.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 232, + 472 + ] + }, + { + "time": 3.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 477, + 71 + ] + }, + { + "time": 3.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 317, + 168 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_135.json b/dataset/scenario1/inputs/random_input_20251005161831_135.json new file mode 100644 index 0000000..58740c8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_135.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 435, + 282 + ] + }, + { + "time": 1.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 599, + 345 + ] + }, + { + "time": 1.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 654, + 331 + ] + }, + { + "time": 2.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 104, + 469 + ] + }, + { + "time": 3.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 374, + 107 + ] + }, + { + "time": 5.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 255, + 103 + ] + }, + { + "time": 6.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 332, + 106 + ] + }, + { + "time": 7.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 267, + 67 + ] + }, + { + "time": 8.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 367, + 352 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_136.json b/dataset/scenario1/inputs/random_input_20251005161831_136.json new file mode 100644 index 0000000..1d5704a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_136.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 305, + 163 + ] + }, + { + "time": 2.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 517, + 355 + ] + }, + { + "time": 3.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 129, + 440 + ] + }, + { + "time": 4.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 293, + 435 + ] + }, + { + "time": 5.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 310, + 405 + ] + }, + { + "time": 6.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 425, + 240 + ] + }, + { + "time": 7.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 746, + 367 + ] + }, + { + "time": 8.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 140, + 90 + ] + }, + { + "time": 8.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 216 + ] + }, + { + "time": 9.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 694, + 331 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_137.json b/dataset/scenario1/inputs/random_input_20251005161831_137.json new file mode 100644 index 0000000..f57dddd --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_137.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 327 + ] + }, + { + "time": 2.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 730, + 242 + ] + }, + { + "time": 3.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 157, + 358 + ] + }, + { + "time": 4.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 284, + 88 + ] + }, + { + "time": 5.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 112, + 110 + ] + }, + { + "time": 6.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 131, + 441 + ] + }, + { + "time": 8.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 164, + 150 + ] + }, + { + "time": 8.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 304, + 174 + ] + }, + { + "time": 9.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 239, + 281 + ] + }, + { + "time": 9.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 170, + 267 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_138.json b/dataset/scenario1/inputs/random_input_20251005161831_138.json new file mode 100644 index 0000000..02304f8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_138.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 670, + 398 + ] + }, + { + "time": 1.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 257, + 218 + ] + }, + { + "time": 2.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 173, + 287 + ] + }, + { + "time": 3.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 134, + 60 + ] + }, + { + "time": 4.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 310, + 453 + ] + }, + { + "time": 5.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 188, + 129 + ] + }, + { + "time": 6.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 315, + 464 + ] + }, + { + "time": 6.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 290, + 288 + ] + }, + { + "time": 7.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 206, + 78 + ] + }, + { + "time": 8.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 647, + 419 + ] + }, + { + "time": 8.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 413, + 485 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_139.json b/dataset/scenario1/inputs/random_input_20251005161831_139.json new file mode 100644 index 0000000..d3625ba --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_139.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 245, + 175 + ] + }, + { + "time": 1.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 66, + 239 + ] + }, + { + "time": 2.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 427, + 179 + ] + }, + { + "time": 4.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 53, + 310 + ] + }, + { + "time": 4.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 494, + 198 + ] + }, + { + "time": 5.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 443, + 76 + ] + }, + { + "time": 6.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 231, + 269 + ] + }, + { + "time": 7.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 322, + 336 + ] + }, + { + "time": 8.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 141 + ] + }, + { + "time": 9.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 53, + 376 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_140.json b/dataset/scenario1/inputs/random_input_20251005161831_140.json new file mode 100644 index 0000000..42d371c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_140.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 692, + 490 + ] + }, + { + "time": 1.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 655, + 68 + ] + }, + { + "time": 2.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 139, + 251 + ] + }, + { + "time": 3.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 193, + 198 + ] + }, + { + "time": 4.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 177 + ] + }, + { + "time": 5.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 120, + 473 + ] + }, + { + "time": 6.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 478, + 316 + ] + }, + { + "time": 6.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 128, + 57 + ] + }, + { + "time": 7.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 536, + 369 + ] + }, + { + "time": 8.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 716, + 136 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_141.json b/dataset/scenario1/inputs/random_input_20251005161831_141.json new file mode 100644 index 0000000..102771c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_141.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 176, + 375 + ] + }, + { + "time": 1.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 523, + 336 + ] + }, + { + "time": 3.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 636, + 235 + ] + }, + { + "time": 4.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 709, + 173 + ] + }, + { + "time": 5.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 433, + 429 + ] + }, + { + "time": 5.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 69, + 222 + ] + }, + { + "time": 5.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 175, + 318 + ] + }, + { + "time": 6.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 438, + 87 + ] + }, + { + "time": 7.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 229, + 447 + ] + }, + { + "time": 9.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 130, + 276 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_142.json b/dataset/scenario1/inputs/random_input_20251005161831_142.json new file mode 100644 index 0000000..a404395 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_142.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 249 + ] + }, + { + "time": 1.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 90, + 348 + ] + }, + { + "time": 2.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 190, + 203 + ] + }, + { + "time": 3.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 366, + 288 + ] + }, + { + "time": 4.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 375, + 227 + ] + }, + { + "time": 6.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 397, + 439 + ] + }, + { + "time": 6.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 497 + ] + }, + { + "time": 6.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 315, + 56 + ] + }, + { + "time": 7.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 279, + 98 + ] + }, + { + "time": 8.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 381, + 217 + ] + }, + { + "time": 9.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 110, + 393 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_143.json b/dataset/scenario1/inputs/random_input_20251005161831_143.json new file mode 100644 index 0000000..330dc9a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_143.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 482, + 385 + ] + }, + { + "time": 1.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 226, + 500 + ] + }, + { + "time": 2.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 503, + 220 + ] + }, + { + "time": 3.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 413, + 89 + ] + }, + { + "time": 3.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 379, + 117 + ] + }, + { + "time": 5.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 246, + 485 + ] + }, + { + "time": 6.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 155, + 269 + ] + }, + { + "time": 7.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 411, + 169 + ] + }, + { + "time": 8.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 439, + 127 + ] + }, + { + "time": 9.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 397, + 66 + ] + }, + { + "time": 9.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 114, + 177 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_144.json b/dataset/scenario1/inputs/random_input_20251005161831_144.json new file mode 100644 index 0000000..c9c7a4e --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_144.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 352, + 267 + ] + }, + { + "time": 1.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 83, + 395 + ] + }, + { + "time": 3.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 625, + 392 + ] + }, + { + "time": 4.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 581, + 51 + ] + }, + { + "time": 5.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 139, + 61 + ] + }, + { + "time": 6.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 486, + 439 + ] + }, + { + "time": 7.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 222, + 147 + ] + }, + { + "time": 8.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 378, + 98 + ] + }, + { + "time": 8.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 368, + 146 + ] + }, + { + "time": 9.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 316, + 405 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_145.json b/dataset/scenario1/inputs/random_input_20251005161831_145.json new file mode 100644 index 0000000..ba9a424 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_145.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 206 + ] + }, + { + "time": 0.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 554, + 235 + ] + }, + { + "time": 1.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 240, + 292 + ] + }, + { + "time": 2.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 424, + 351 + ] + }, + { + "time": 3.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 287, + 153 + ] + }, + { + "time": 4.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 250, + 189 + ] + }, + { + "time": 4.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 609, + 222 + ] + }, + { + "time": 5.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 67, + 407 + ] + }, + { + "time": 6.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 288, + 255 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_146.json b/dataset/scenario1/inputs/random_input_20251005161831_146.json new file mode 100644 index 0000000..10991bc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_146.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 386, + 124 + ] + }, + { + "time": 1.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 253, + 411 + ] + }, + { + "time": 2.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 729, + 321 + ] + }, + { + "time": 3.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 437, + 288 + ] + }, + { + "time": 5.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 295, + 87 + ] + }, + { + "time": 6.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 319, + 145 + ] + }, + { + "time": 7.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 523, + 269 + ] + }, + { + "time": 8.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 147, + 210 + ] + }, + { + "time": 9.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 713, + 103 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_147.json b/dataset/scenario1/inputs/random_input_20251005161831_147.json new file mode 100644 index 0000000..b9a2a51 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_147.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 315 + ] + }, + { + "time": 1.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 353 + ] + }, + { + "time": 2.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 285, + 483 + ] + }, + { + "time": 2.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 429, + 195 + ] + }, + { + "time": 3.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 267 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_148.json b/dataset/scenario1/inputs/random_input_20251005161831_148.json new file mode 100644 index 0000000..e9249f1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_148.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 643, + 283 + ] + }, + { + "time": 2.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 548, + 454 + ] + }, + { + "time": 3.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 92, + 172 + ] + }, + { + "time": 4.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 493, + 448 + ] + }, + { + "time": 5.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 518, + 86 + ] + }, + { + "time": 6.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 378, + 211 + ] + }, + { + "time": 7.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 93, + 223 + ] + }, + { + "time": 8.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 689, + 83 + ] + }, + { + "time": 9.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 400, + 226 + ] + }, + { + "time": 9.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 496, + 483 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_149.json b/dataset/scenario1/inputs/random_input_20251005161831_149.json new file mode 100644 index 0000000..309e13e --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_149.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 137, + 451 + ] + }, + { + "time": 2.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 323, + 56 + ] + }, + { + "time": 3.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 617, + 355 + ] + }, + { + "time": 4.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 606, + 460 + ] + }, + { + "time": 5.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 524, + 346 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_150.json b/dataset/scenario1/inputs/random_input_20251005161831_150.json new file mode 100644 index 0000000..70b5acd --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_150.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 224, + 368 + ] + }, + { + "time": 1.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 465, + 180 + ] + }, + { + "time": 2.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 444, + 224 + ] + }, + { + "time": 2.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 116, + 161 + ] + }, + { + "time": 4.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 182, + 362 + ] + }, + { + "time": 4.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 627, + 132 + ] + }, + { + "time": 5.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 492, + 426 + ] + }, + { + "time": 6.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 537, + 209 + ] + }, + { + "time": 6.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 650, + 274 + ] + }, + { + "time": 7.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 458, + 497 + ] + }, + { + "time": 8.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 178, + 337 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_151.json b/dataset/scenario1/inputs/random_input_20251005161831_151.json new file mode 100644 index 0000000..4fb5fb7 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_151.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 122, + 477 + ] + }, + { + "time": 1.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 83, + 61 + ] + }, + { + "time": 2.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 707, + 365 + ] + }, + { + "time": 3.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 544, + 313 + ] + }, + { + "time": 4.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 718, + 378 + ] + }, + { + "time": 5.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 139, + 248 + ] + }, + { + "time": 5.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 402 + ] + }, + { + "time": 7.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 292, + 358 + ] + }, + { + "time": 8.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 634, + 261 + ] + }, + { + "time": 8.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 737, + 241 + ] + }, + { + "time": 9.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 656, + 454 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_152.json b/dataset/scenario1/inputs/random_input_20251005161831_152.json new file mode 100644 index 0000000..6c36cf4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_152.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 489, + 220 + ] + }, + { + "time": 1.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 307, + 179 + ] + }, + { + "time": 2.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 501, + 346 + ] + }, + { + "time": 2.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 256, + 187 + ] + }, + { + "time": 3.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 464, + 175 + ] + }, + { + "time": 4.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 437 + ] + }, + { + "time": 5.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 337, + 237 + ] + }, + { + "time": 6.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 598, + 138 + ] + }, + { + "time": 7.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 94, + 327 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_153.json b/dataset/scenario1/inputs/random_input_20251005161831_153.json new file mode 100644 index 0000000..41bdd5d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_153.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 55, + 116 + ] + }, + { + "time": 1.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 108, + 366 + ] + }, + { + "time": 2.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 87, + 166 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 485, + 311 + ] + }, + { + "time": 4.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 530, + 350 + ] + }, + { + "time": 5.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 197, + 419 + ] + }, + { + "time": 6.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 125, + 366 + ] + }, + { + "time": 6.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 124 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_154.json b/dataset/scenario1/inputs/random_input_20251005161831_154.json new file mode 100644 index 0000000..1236653 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_154.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 529, + 255 + ] + }, + { + "time": 1.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 606, + 242 + ] + }, + { + "time": 2.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 92, + 362 + ] + }, + { + "time": 3.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 77, + 305 + ] + }, + { + "time": 4.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 96, + 182 + ] + }, + { + "time": 4.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 533, + 343 + ] + }, + { + "time": 5.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 86, + 413 + ] + }, + { + "time": 6.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 353, + 155 + ] + }, + { + "time": 7.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 424, + 156 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_155.json b/dataset/scenario1/inputs/random_input_20251005161831_155.json new file mode 100644 index 0000000..3b5c06f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_155.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 584, + 251 + ] + }, + { + "time": 0.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 484, + 148 + ] + }, + { + "time": 1.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 500, + 357 + ] + }, + { + "time": 2.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 115, + 102 + ] + }, + { + "time": 2.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 443, + 211 + ] + }, + { + "time": 3.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 408, + 439 + ] + }, + { + "time": 4.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 677, + 459 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_156.json b/dataset/scenario1/inputs/random_input_20251005161831_156.json new file mode 100644 index 0000000..710f19b --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_156.json @@ -0,0 +1,110 @@ +[ + { + "time": 1.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 167, + 436 + ] + }, + { + "time": 1.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 730, + 224 + ] + }, + { + "time": 2.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 595, + 266 + ] + }, + { + "time": 3.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 371, + 296 + ] + }, + { + "time": 4.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 146, + 90 + ] + }, + { + "time": 5.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 469, + 469 + ] + }, + { + "time": 6.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 636, + 493 + ] + }, + { + "time": 7.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 520, + 96 + ] + }, + { + "time": 7.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 550, + 299 + ] + }, + { + "time": 8.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 76, + 341 + ] + }, + { + "time": 9.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 399, + 338 + ] + }, + { + "time": 9.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 125, + 441 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_157.json b/dataset/scenario1/inputs/random_input_20251005161831_157.json new file mode 100644 index 0000000..84e6d12 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_157.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 422, + 163 + ] + }, + { + "time": 2.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 708, + 196 + ] + }, + { + "time": 2.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 236, + 160 + ] + }, + { + "time": 3.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 87, + 331 + ] + }, + { + "time": 3.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 115, + 170 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_158.json b/dataset/scenario1/inputs/random_input_20251005161831_158.json new file mode 100644 index 0000000..be66b38 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_158.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 486, + 265 + ] + }, + { + "time": 1.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 267, + 451 + ] + }, + { + "time": 2.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 715, + 95 + ] + }, + { + "time": 3.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 637, + 324 + ] + }, + { + "time": 4.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 660, + 323 + ] + }, + { + "time": 4.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 574, + 68 + ] + }, + { + "time": 5.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 513, + 359 + ] + }, + { + "time": 5.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 275, + 138 + ] + }, + { + "time": 7.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 142, + 88 + ] + }, + { + "time": 8.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 574, + 147 + ] + }, + { + "time": 9.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 248, + 442 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_159.json b/dataset/scenario1/inputs/random_input_20251005161831_159.json new file mode 100644 index 0000000..917622e --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_159.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 722, + 254 + ] + }, + { + "time": 1.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 355, + 489 + ] + }, + { + "time": 1.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 279, + 191 + ] + }, + { + "time": 2.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 194, + 63 + ] + }, + { + "time": 2.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 630, + 361 + ] + }, + { + "time": 3.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 349, + 214 + ] + }, + { + "time": 3.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 724, + 198 + ] + }, + { + "time": 4.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 691, + 461 + ] + }, + { + "time": 5.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 266, + 104 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_160.json b/dataset/scenario1/inputs/random_input_20251005161831_160.json new file mode 100644 index 0000000..ca4aea5 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_160.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 364, + 129 + ] + }, + { + "time": 1.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 739, + 123 + ] + }, + { + "time": 3.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 657, + 304 + ] + }, + { + "time": 4.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 374, + 440 + ] + }, + { + "time": 5.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 499, + 133 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_161.json b/dataset/scenario1/inputs/random_input_20251005161831_161.json new file mode 100644 index 0000000..b56e49c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_161.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.57, + "type": "mouse_down", + "object": "ball", + "pos": [ + 595, + 394 + ] + }, + { + "time": 0.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 557, + 269 + ] + }, + { + "time": 2.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 642, + 453 + ] + }, + { + "time": 3.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 118, + 405 + ] + }, + { + "time": 4.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 571, + 444 + ] + }, + { + "time": 4.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 108, + 205 + ] + }, + { + "time": 4.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 535, + 356 + ] + }, + { + "time": 6.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 184, + 177 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_162.json b/dataset/scenario1/inputs/random_input_20251005161831_162.json new file mode 100644 index 0000000..852d31f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_162.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 451, + 371 + ] + }, + { + "time": 1.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 659, + 328 + ] + }, + { + "time": 2.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 477, + 388 + ] + }, + { + "time": 4.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 467, + 106 + ] + }, + { + "time": 5.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 63, + 64 + ] + }, + { + "time": 6.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 538, + 73 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_163.json b/dataset/scenario1/inputs/random_input_20251005161831_163.json new file mode 100644 index 0000000..1c627fb --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_163.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 211, + 234 + ] + }, + { + "time": 2.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 652, + 315 + ] + }, + { + "time": 3.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 639, + 278 + ] + }, + { + "time": 3.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 594, + 233 + ] + }, + { + "time": 4.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 615, + 444 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_164.json b/dataset/scenario1/inputs/random_input_20251005161831_164.json new file mode 100644 index 0000000..d53453f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_164.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 325, + 446 + ] + }, + { + "time": 2.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 548, + 489 + ] + }, + { + "time": 2.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 589, + 277 + ] + }, + { + "time": 3.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 716, + 180 + ] + }, + { + "time": 4.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 513, + 214 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_165.json b/dataset/scenario1/inputs/random_input_20251005161831_165.json new file mode 100644 index 0000000..7ac487f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_165.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 518, + 374 + ] + }, + { + "time": 1.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 240, + 135 + ] + }, + { + "time": 2.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 145, + 250 + ] + }, + { + "time": 3.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 546, + 472 + ] + }, + { + "time": 3.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 747, + 247 + ] + }, + { + "time": 5.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 327, + 190 + ] + }, + { + "time": 6.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 551, + 244 + ] + }, + { + "time": 8.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 580, + 314 + ] + }, + { + "time": 8.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 63, + 206 + ] + }, + { + "time": 9.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 93, + 490 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_166.json b/dataset/scenario1/inputs/random_input_20251005161831_166.json new file mode 100644 index 0000000..e937ac4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_166.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 384, + 382 + ] + }, + { + "time": 1.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 288, + 191 + ] + }, + { + "time": 2.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 505, + 371 + ] + }, + { + "time": 3.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 124, + 151 + ] + }, + { + "time": 3.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 111, + 286 + ] + }, + { + "time": 4.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 614, + 274 + ] + }, + { + "time": 5.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 406, + 99 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_167.json b/dataset/scenario1/inputs/random_input_20251005161831_167.json new file mode 100644 index 0000000..6801a08 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_167.json @@ -0,0 +1,128 @@ +[ + { + "time": 0.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 414, + 101 + ] + }, + { + "time": 1.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 60, + 66 + ] + }, + { + "time": 1.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 294, + 406 + ] + }, + { + "time": 3.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 340, + 324 + ] + }, + { + "time": 3.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 93, + 249 + ] + }, + { + "time": 4.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 270, + 278 + ] + }, + { + "time": 4.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 329, + 438 + ] + }, + { + "time": 5.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 388, + 273 + ] + }, + { + "time": 6.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 249, + 359 + ] + }, + { + "time": 6.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 279, + 472 + ] + }, + { + "time": 7.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 99, + 177 + ] + }, + { + "time": 8.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 320, + 81 + ] + }, + { + "time": 9.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 476, + 449 + ] + }, + { + "time": 9.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 311, + 261 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_168.json b/dataset/scenario1/inputs/random_input_20251005161831_168.json new file mode 100644 index 0000000..d761c80 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_168.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 637, + 211 + ] + }, + { + "time": 1.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 497, + 362 + ] + }, + { + "time": 1.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 505, + 205 + ] + }, + { + "time": 2.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 394, + 275 + ] + }, + { + "time": 3.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 560, + 382 + ] + }, + { + "time": 4.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 537, + 174 + ] + }, + { + "time": 5.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 402, + 414 + ] + }, + { + "time": 6.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 122, + 333 + ] + }, + { + "time": 7.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 355, + 293 + ] + }, + { + "time": 8.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 571, + 241 + ] + }, + { + "time": 9.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 266, + 240 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_169.json b/dataset/scenario1/inputs/random_input_20251005161831_169.json new file mode 100644 index 0000000..0fcb0d1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_169.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 432, + 77 + ] + }, + { + "time": 2.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 557, + 269 + ] + }, + { + "time": 3.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 468, + 169 + ] + }, + { + "time": 4.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 431, + 96 + ] + }, + { + "time": 5.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 515, + 109 + ] + }, + { + "time": 6.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 690, + 383 + ] + }, + { + "time": 6.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 746, + 54 + ] + }, + { + "time": 8.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 391, + 319 + ] + }, + { + "time": 9.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 357, + 125 + ] + }, + { + "time": 9.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 393, + 161 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_170.json b/dataset/scenario1/inputs/random_input_20251005161831_170.json new file mode 100644 index 0000000..08b6609 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_170.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 145, + 132 + ] + }, + { + "time": 1.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 411, + 281 + ] + }, + { + "time": 2.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 233, + 89 + ] + }, + { + "time": 3.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 549, + 182 + ] + }, + { + "time": 3.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 94, + 208 + ] + }, + { + "time": 4.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 430 + ] + }, + { + "time": 4.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 336, + 286 + ] + }, + { + "time": 5.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 173, + 91 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_171.json b/dataset/scenario1/inputs/random_input_20251005161831_171.json new file mode 100644 index 0000000..af697cf --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_171.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 696, + 486 + ] + }, + { + "time": 1.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 626, + 213 + ] + }, + { + "time": 2.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 253, + 361 + ] + }, + { + "time": 3.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 71, + 411 + ] + }, + { + "time": 4.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 747, + 194 + ] + }, + { + "time": 6.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 212, + 493 + ] + }, + { + "time": 6.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 351, + 359 + ] + }, + { + "time": 7.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 708, + 395 + ] + }, + { + "time": 7.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 309, + 226 + ] + }, + { + "time": 8.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 343, + 319 + ] + }, + { + "time": 8.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 375, + 173 + ] + }, + { + "time": 9.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 576, + 263 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_172.json b/dataset/scenario1/inputs/random_input_20251005161831_172.json new file mode 100644 index 0000000..7940faa --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_172.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 222, + 112 + ] + }, + { + "time": 2.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 466, + 445 + ] + }, + { + "time": 3.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 144, + 207 + ] + }, + { + "time": 4.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 371, + 392 + ] + }, + { + "time": 6.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 570, + 278 + ] + }, + { + "time": 6.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 110, + 244 + ] + }, + { + "time": 7.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 310, + 301 + ] + }, + { + "time": 8.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 666, + 76 + ] + }, + { + "time": 9.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 157, + 197 + ] + }, + { + "time": 9.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 421, + 408 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_173.json b/dataset/scenario1/inputs/random_input_20251005161831_173.json new file mode 100644 index 0000000..bed187a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_173.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 390 + ] + }, + { + "time": 1.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 512, + 117 + ] + }, + { + "time": 3.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 714, + 160 + ] + }, + { + "time": 3.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 464, + 342 + ] + }, + { + "time": 4.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 380, + 283 + ] + }, + { + "time": 5.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 132, + 401 + ] + }, + { + "time": 5.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 576, + 427 + ] + }, + { + "time": 7.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 460, + 258 + ] + }, + { + "time": 8.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 228, + 419 + ] + }, + { + "time": 9.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 340, + 388 + ] + }, + { + "time": 9.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 494, + 377 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_174.json b/dataset/scenario1/inputs/random_input_20251005161831_174.json new file mode 100644 index 0000000..4e5e0f8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_174.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 74, + 161 + ] + }, + { + "time": 2.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 355, + 119 + ] + }, + { + "time": 2.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 749, + 379 + ] + }, + { + "time": 3.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 432, + 98 + ] + }, + { + "time": 4.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 610, + 457 + ] + }, + { + "time": 6.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 149, + 113 + ] + }, + { + "time": 7.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 442, + 151 + ] + }, + { + "time": 8.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 638, + 470 + ] + }, + { + "time": 9.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 599, + 249 + ] + }, + { + "time": 9.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 181, + 197 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_175.json b/dataset/scenario1/inputs/random_input_20251005161831_175.json new file mode 100644 index 0000000..2c1a7b4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_175.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 298, + 296 + ] + }, + { + "time": 1.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 575, + 434 + ] + }, + { + "time": 2.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 214, + 484 + ] + }, + { + "time": 2.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 506, + 462 + ] + }, + { + "time": 3.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 441, + 337 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_176.json b/dataset/scenario1/inputs/random_input_20251005161831_176.json new file mode 100644 index 0000000..649705f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_176.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 345, + 122 + ] + }, + { + "time": 1.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 732, + 129 + ] + }, + { + "time": 2.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 739, + 345 + ] + }, + { + "time": 3.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 687, + 252 + ] + }, + { + "time": 4.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 244, + 86 + ] + }, + { + "time": 4.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 572, + 279 + ] + }, + { + "time": 5.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 353 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_177.json b/dataset/scenario1/inputs/random_input_20251005161831_177.json new file mode 100644 index 0000000..87b5ac6 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_177.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 530, + 351 + ] + }, + { + "time": 2.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 611, + 251 + ] + }, + { + "time": 3.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 415, + 466 + ] + }, + { + "time": 4.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 275, + 86 + ] + }, + { + "time": 5.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 372, + 196 + ] + }, + { + "time": 6.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 697, + 209 + ] + }, + { + "time": 7.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 502, + 308 + ] + }, + { + "time": 8.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 357, + 234 + ] + }, + { + "time": 8.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 650, + 69 + ] + }, + { + "time": 9.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 715, + 408 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_178.json b/dataset/scenario1/inputs/random_input_20251005161831_178.json new file mode 100644 index 0000000..f0723ed --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_178.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 281, + 430 + ] + }, + { + "time": 1.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 205, + 181 + ] + }, + { + "time": 2.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 467, + 222 + ] + }, + { + "time": 3.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 83 + ] + }, + { + "time": 3.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 749, + 285 + ] + }, + { + "time": 4.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 280, + 82 + ] + }, + { + "time": 5.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 406, + 416 + ] + }, + { + "time": 7.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 607, + 204 + ] + }, + { + "time": 8.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 102, + 326 + ] + }, + { + "time": 9.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 579, + 443 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_179.json b/dataset/scenario1/inputs/random_input_20251005161831_179.json new file mode 100644 index 0000000..67dbf5a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_179.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 642, + 440 + ] + }, + { + "time": 2.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 110, + 74 + ] + }, + { + "time": 3.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 345, + 304 + ] + }, + { + "time": 4.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 546, + 413 + ] + }, + { + "time": 5.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 434, + 245 + ] + }, + { + "time": 5.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 356, + 92 + ] + }, + { + "time": 5.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 229, + 410 + ] + }, + { + "time": 6.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 103, + 436 + ] + }, + { + "time": 7.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 483, + 158 + ] + }, + { + "time": 8.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 156, + 118 + ] + }, + { + "time": 9.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 462, + 170 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_180.json b/dataset/scenario1/inputs/random_input_20251005161831_180.json new file mode 100644 index 0000000..e1da4ed --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_180.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 633, + 109 + ] + }, + { + "time": 1.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 59, + 253 + ] + }, + { + "time": 3.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 371, + 329 + ] + }, + { + "time": 3.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 338, + 301 + ] + }, + { + "time": 5.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 120, + 320 + ] + }, + { + "time": 6.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 337, + 451 + ] + }, + { + "time": 7.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 282, + 196 + ] + }, + { + "time": 8.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 389, + 221 + ] + }, + { + "time": 8.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 596, + 416 + ] + }, + { + "time": 9.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 91, + 475 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_181.json b/dataset/scenario1/inputs/random_input_20251005161831_181.json new file mode 100644 index 0000000..f3043d3 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_181.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 589, + 208 + ] + }, + { + "time": 2.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 720, + 409 + ] + }, + { + "time": 2.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 713, + 112 + ] + }, + { + "time": 3.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 200, + 327 + ] + }, + { + "time": 4.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 98, + 110 + ] + }, + { + "time": 5.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 210, + 324 + ] + }, + { + "time": 6.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 668, + 246 + ] + }, + { + "time": 6.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 657, + 323 + ] + }, + { + "time": 7.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 445, + 156 + ] + }, + { + "time": 8.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 226, + 125 + ] + }, + { + "time": 9.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 311, + 126 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_182.json b/dataset/scenario1/inputs/random_input_20251005161831_182.json new file mode 100644 index 0000000..e9bc460 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_182.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 348, + 416 + ] + }, + { + "time": 2.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 62, + 337 + ] + }, + { + "time": 3.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 179, + 469 + ] + }, + { + "time": 3.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 696, + 109 + ] + }, + { + "time": 4.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 183, + 233 + ] + }, + { + "time": 5.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 147, + 453 + ] + }, + { + "time": 6.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 519, + 354 + ] + }, + { + "time": 7.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 200, + 313 + ] + }, + { + "time": 8.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 646, + 382 + ] + }, + { + "time": 9.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 637, + 248 + ] + }, + { + "time": 9.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 328, + 232 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_183.json b/dataset/scenario1/inputs/random_input_20251005161831_183.json new file mode 100644 index 0000000..09a2719 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_183.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 518, + 198 + ] + }, + { + "time": 1.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 479, + 204 + ] + }, + { + "time": 1.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 175, + 279 + ] + }, + { + "time": 2.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 599, + 433 + ] + }, + { + "time": 4.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 101, + 351 + ] + }, + { + "time": 4.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 440, + 120 + ] + }, + { + "time": 4.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 306, + 207 + ] + }, + { + "time": 5.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 407, + 255 + ] + }, + { + "time": 6.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 372, + 62 + ] + }, + { + "time": 7.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 177, + 327 + ] + }, + { + "time": 8.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 67, + 157 + ] + }, + { + "time": 9.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 136 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_184.json b/dataset/scenario1/inputs/random_input_20251005161831_184.json new file mode 100644 index 0000000..32a521f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_184.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 339, + 305 + ] + }, + { + "time": 1.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 407, + 236 + ] + }, + { + "time": 1.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 646, + 207 + ] + }, + { + "time": 2.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 355, + 67 + ] + }, + { + "time": 3.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 743, + 79 + ] + }, + { + "time": 4.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 526, + 92 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_185.json b/dataset/scenario1/inputs/random_input_20251005161831_185.json new file mode 100644 index 0000000..6f7debc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_185.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 367, + 188 + ] + }, + { + "time": 0.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 102, + 449 + ] + }, + { + "time": 2.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 398, + 134 + ] + }, + { + "time": 3.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 472 + ] + }, + { + "time": 4.08, + "type": "mouse_down", + "object": "ball", + "pos": [ + 326, + 125 + ] + }, + { + "time": 5.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 471, + 430 + ] + }, + { + "time": 6.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 51 + ] + }, + { + "time": 7.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 398, + 190 + ] + }, + { + "time": 7.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 395 + ] + }, + { + "time": 9.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 489, + 330 + ] + }, + { + "time": 9.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 393, + 70 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_186.json b/dataset/scenario1/inputs/random_input_20251005161831_186.json new file mode 100644 index 0000000..8f55795 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_186.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 402, + 187 + ] + }, + { + "time": 0.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 404, + 318 + ] + }, + { + "time": 1.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 595, + 473 + ] + }, + { + "time": 2.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 165, + 429 + ] + }, + { + "time": 3.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 291, + 77 + ] + }, + { + "time": 4.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 242, + 218 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_187.json b/dataset/scenario1/inputs/random_input_20251005161831_187.json new file mode 100644 index 0000000..2b3b921 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_187.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 422, + 416 + ] + }, + { + "time": 1.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 499, + 155 + ] + }, + { + "time": 2.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 601, + 260 + ] + }, + { + "time": 2.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 716, + 87 + ] + }, + { + "time": 3.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 184, + 68 + ] + }, + { + "time": 4.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 658, + 246 + ] + }, + { + "time": 5.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 546, + 219 + ] + }, + { + "time": 6.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 700, + 450 + ] + }, + { + "time": 7.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 542, + 82 + ] + }, + { + "time": 8.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 674, + 193 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_188.json b/dataset/scenario1/inputs/random_input_20251005161831_188.json new file mode 100644 index 0000000..221dfbd --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_188.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 618, + 275 + ] + }, + { + "time": 0.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 83, + 435 + ] + }, + { + "time": 1.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 679, + 213 + ] + }, + { + "time": 1.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 716, + 138 + ] + }, + { + "time": 3.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 329, + 318 + ] + }, + { + "time": 4.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 677, + 103 + ] + }, + { + "time": 5.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 312, + 435 + ] + }, + { + "time": 6.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 271, + 483 + ] + }, + { + "time": 7.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 61, + 476 + ] + }, + { + "time": 8.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 560, + 216 + ] + }, + { + "time": 9.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 177, + 239 + ] + }, + { + "time": 9.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 228, + 162 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_189.json b/dataset/scenario1/inputs/random_input_20251005161831_189.json new file mode 100644 index 0000000..6d9d1c4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_189.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 535, + 202 + ] + }, + { + "time": 1.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 322, + 59 + ] + }, + { + "time": 1.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 142, + 74 + ] + }, + { + "time": 2.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 374, + 140 + ] + }, + { + "time": 3.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 227, + 295 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_190.json b/dataset/scenario1/inputs/random_input_20251005161831_190.json new file mode 100644 index 0000000..02c9fac --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_190.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 463, + 445 + ] + }, + { + "time": 2.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 734, + 196 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 252, + 191 + ] + }, + { + "time": 4.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 415, + 96 + ] + }, + { + "time": 4.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 641, + 88 + ] + }, + { + "time": 5.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 670, + 144 + ] + }, + { + "time": 6.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 345, + 122 + ] + }, + { + "time": 6.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 536, + 191 + ] + }, + { + "time": 8.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 706, + 402 + ] + }, + { + "time": 9.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 447, + 232 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_191.json b/dataset/scenario1/inputs/random_input_20251005161831_191.json new file mode 100644 index 0000000..bd1bdda --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_191.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 215 + ] + }, + { + "time": 1.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 416, + 316 + ] + }, + { + "time": 3.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 399, + 94 + ] + }, + { + "time": 3.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 704, + 243 + ] + }, + { + "time": 5.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 160, + 410 + ] + }, + { + "time": 6.59, + "type": "mouse_down", + "object": "ball", + "pos": [ + 52, + 63 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_192.json b/dataset/scenario1/inputs/random_input_20251005161831_192.json new file mode 100644 index 0000000..a4f4be0 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_192.json @@ -0,0 +1,137 @@ +[ + { + "time": 0.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 531, + 496 + ] + }, + { + "time": 0.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 672, + 297 + ] + }, + { + "time": 1.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 69, + 67 + ] + }, + { + "time": 1.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 695, + 382 + ] + }, + { + "time": 2.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 163, + 193 + ] + }, + { + "time": 3.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 718, + 86 + ] + }, + { + "time": 4.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 747, + 196 + ] + }, + { + "time": 5.3, + "type": "mouse_down", + "object": "ball", + "pos": [ + 53, + 322 + ] + }, + { + "time": 6.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 356, + 461 + ] + }, + { + "time": 6.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 407, + 188 + ] + }, + { + "time": 7.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 197, + 172 + ] + }, + { + "time": 7.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 499, + 114 + ] + }, + { + "time": 8.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 80, + 295 + ] + }, + { + "time": 9.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 229, + 412 + ] + }, + { + "time": 9.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 135, + 443 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_193.json b/dataset/scenario1/inputs/random_input_20251005161831_193.json new file mode 100644 index 0000000..e8c77aa --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_193.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 609, + 462 + ] + }, + { + "time": 2.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 428, + 67 + ] + }, + { + "time": 2.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 631, + 142 + ] + }, + { + "time": 3.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 451, + 241 + ] + }, + { + "time": 4.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 261, + 373 + ] + }, + { + "time": 4.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 389, + 318 + ] + }, + { + "time": 6.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 387, + 458 + ] + }, + { + "time": 7.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 390, + 275 + ] + }, + { + "time": 7.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 682, + 117 + ] + }, + { + "time": 8.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 529, + 90 + ] + }, + { + "time": 9.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 728, + 450 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_194.json b/dataset/scenario1/inputs/random_input_20251005161831_194.json new file mode 100644 index 0000000..1996dca --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_194.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 146 + ] + }, + { + "time": 1.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 113, + 362 + ] + }, + { + "time": 2.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 304, + 68 + ] + }, + { + "time": 3.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 595, + 379 + ] + }, + { + "time": 4.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 130, + 64 + ] + }, + { + "time": 5.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 368, + 152 + ] + }, + { + "time": 6.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 294, + 463 + ] + }, + { + "time": 7.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 384, + 66 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_195.json b/dataset/scenario1/inputs/random_input_20251005161831_195.json new file mode 100644 index 0000000..4849ab2 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_195.json @@ -0,0 +1,56 @@ +[ + { + "time": 0.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 267, + 161 + ] + }, + { + "time": 1.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 123, + 480 + ] + }, + { + "time": 1.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 264, + 75 + ] + }, + { + "time": 2.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 116, + 468 + ] + }, + { + "time": 3.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 203, + 368 + ] + }, + { + "time": 4.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 724, + 57 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_196.json b/dataset/scenario1/inputs/random_input_20251005161831_196.json new file mode 100644 index 0000000..c35a254 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_196.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 663, + 56 + ] + }, + { + "time": 1.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 239, + 404 + ] + }, + { + "time": 2.56, + "type": "mouse_down", + "object": "ball", + "pos": [ + 121, + 439 + ] + }, + { + "time": 3.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 642, + 183 + ] + }, + { + "time": 4.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 557, + 291 + ] + }, + { + "time": 4.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 347, + 397 + ] + }, + { + "time": 5.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 134, + 497 + ] + }, + { + "time": 5.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 124, + 342 + ] + }, + { + "time": 6.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 235, + 485 + ] + }, + { + "time": 8.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 521, + 380 + ] + }, + { + "time": 9.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 710, + 276 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_197.json b/dataset/scenario1/inputs/random_input_20251005161831_197.json new file mode 100644 index 0000000..24fd3ea --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_197.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 720, + 349 + ] + }, + { + "time": 1.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 438, + 76 + ] + }, + { + "time": 1.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 124 + ] + }, + { + "time": 2.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 548, + 309 + ] + }, + { + "time": 3.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 238, + 499 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_198.json b/dataset/scenario1/inputs/random_input_20251005161831_198.json new file mode 100644 index 0000000..8331c26 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_198.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 156, + 194 + ] + }, + { + "time": 1.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 243, + 111 + ] + }, + { + "time": 2.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 511, + 127 + ] + }, + { + "time": 3.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 139, + 490 + ] + }, + { + "time": 4.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 161, + 154 + ] + }, + { + "time": 5.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 738, + 163 + ] + }, + { + "time": 5.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 211, + 203 + ] + }, + { + "time": 6.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 701, + 486 + ] + }, + { + "time": 8.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 98, + 348 + ] + }, + { + "time": 9.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 154, + 194 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_199.json b/dataset/scenario1/inputs/random_input_20251005161831_199.json new file mode 100644 index 0000000..e74d4d5 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_199.json @@ -0,0 +1,56 @@ +[ + { + "time": 1.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 719, + 125 + ] + }, + { + "time": 2.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 634, + 369 + ] + }, + { + "time": 3.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 202, + 128 + ] + }, + { + "time": 4.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 123, + 419 + ] + }, + { + "time": 4.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 655, + 412 + ] + }, + { + "time": 5.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 587, + 187 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_200.json b/dataset/scenario1/inputs/random_input_20251005161831_200.json new file mode 100644 index 0000000..8a3e517 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_200.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 66, + 301 + ] + }, + { + "time": 1.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 140, + 285 + ] + }, + { + "time": 2.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 603, + 207 + ] + }, + { + "time": 3.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 107, + 259 + ] + }, + { + "time": 5.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 322, + 478 + ] + }, + { + "time": 6.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 208, + 339 + ] + }, + { + "time": 8.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 351, + 155 + ] + }, + { + "time": 8.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 617, + 304 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_65.json b/dataset/scenario1/inputs/random_input_20251005161831_65.json new file mode 100644 index 0000000..b29d035 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_65.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 621, + 281 + ] + }, + { + "time": 2.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 567, + 347 + ] + }, + { + "time": 3.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 540, + 103 + ] + }, + { + "time": 4.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 675, + 235 + ] + }, + { + "time": 5.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 180, + 495 + ] + }, + { + "time": 6.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 715, + 482 + ] + }, + { + "time": 7.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 373, + 422 + ] + }, + { + "time": 8.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 530, + 380 + ] + }, + { + "time": 9.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 580, + 439 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_66.json b/dataset/scenario1/inputs/random_input_20251005161831_66.json new file mode 100644 index 0000000..a0018cc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_66.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 384, + 408 + ] + }, + { + "time": 1.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 453, + 228 + ] + }, + { + "time": 2.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 472, + 321 + ] + }, + { + "time": 3.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 557, + 328 + ] + }, + { + "time": 4.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 216, + 428 + ] + }, + { + "time": 4.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 155, + 437 + ] + }, + { + "time": 5.01, + "type": "mouse_down", + "object": "ball", + "pos": [ + 723, + 258 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_67.json b/dataset/scenario1/inputs/random_input_20251005161831_67.json new file mode 100644 index 0000000..da306b4 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_67.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 260, + 308 + ] + }, + { + "time": 1.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 665, + 278 + ] + }, + { + "time": 2.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 260, + 356 + ] + }, + { + "time": 3.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 637, + 434 + ] + }, + { + "time": 4.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 421, + 150 + ] + }, + { + "time": 6.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 367, + 376 + ] + }, + { + "time": 6.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 133, + 462 + ] + }, + { + "time": 8.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 378, + 280 + ] + }, + { + "time": 9.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 387, + 264 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_68.json b/dataset/scenario1/inputs/random_input_20251005161831_68.json new file mode 100644 index 0000000..20e13a1 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_68.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 194, + 402 + ] + }, + { + "time": 1.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 748, + 441 + ] + }, + { + "time": 1.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 495, + 348 + ] + }, + { + "time": 2.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 243, + 152 + ] + }, + { + "time": 2.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 223, + 94 + ] + }, + { + "time": 4.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 297, + 381 + ] + }, + { + "time": 5.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 199, + 118 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_69.json b/dataset/scenario1/inputs/random_input_20251005161831_69.json new file mode 100644 index 0000000..ccc8217 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_69.json @@ -0,0 +1,65 @@ +[ + { + "time": 1.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 527, + 55 + ] + }, + { + "time": 1.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 242, + 229 + ] + }, + { + "time": 2.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 700, + 306 + ] + }, + { + "time": 2.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 483, + 75 + ] + }, + { + "time": 3.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 440, + 355 + ] + }, + { + "time": 4.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 539, + 193 + ] + }, + { + "time": 5.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 412, + 176 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_70.json b/dataset/scenario1/inputs/random_input_20251005161831_70.json new file mode 100644 index 0000000..78c69cf --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_70.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 378, + 65 + ] + }, + { + "time": 2.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 165, + 182 + ] + }, + { + "time": 2.81, + "type": "mouse_down", + "object": "ball", + "pos": [ + 107, + 117 + ] + }, + { + "time": 4.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 107, + 145 + ] + }, + { + "time": 4.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 279, + 50 + ] + }, + { + "time": 5.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 713, + 284 + ] + }, + { + "time": 5.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 99, + 402 + ] + }, + { + "time": 7.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 312, + 313 + ] + }, + { + "time": 7.55, + "type": "mouse_down", + "object": "ball", + "pos": [ + 505, + 56 + ] + }, + { + "time": 9.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 75, + 472 + ] + }, + { + "time": 9.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 662, + 338 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_71.json b/dataset/scenario1/inputs/random_input_20251005161831_71.json new file mode 100644 index 0000000..7d0dd53 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_71.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 92, + 113 + ] + }, + { + "time": 1.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 226, + 191 + ] + }, + { + "time": 2.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 263, + 276 + ] + }, + { + "time": 3.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 337, + 335 + ] + }, + { + "time": 4.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 312, + 433 + ] + }, + { + "time": 4.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 366, + 122 + ] + }, + { + "time": 5.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 395, + 258 + ] + }, + { + "time": 6.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 196, + 284 + ] + }, + { + "time": 7.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 223 + ] + }, + { + "time": 8.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 670, + 426 + ] + }, + { + "time": 9.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 628, + 122 + ] + }, + { + "time": 9.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 285, + 127 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_72.json b/dataset/scenario1/inputs/random_input_20251005161831_72.json new file mode 100644 index 0000000..65bf41a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_72.json @@ -0,0 +1,47 @@ +[ + { + "time": 1.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 708, + 488 + ] + }, + { + "time": 1.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 455, + 408 + ] + }, + { + "time": 3.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 384, + 345 + ] + }, + { + "time": 4.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 659, + 153 + ] + }, + { + "time": 5.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 275, + 92 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_73.json b/dataset/scenario1/inputs/random_input_20251005161831_73.json new file mode 100644 index 0000000..786e861 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_73.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 459, + 374 + ] + }, + { + "time": 2.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 447, + 111 + ] + }, + { + "time": 3.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 238, + 105 + ] + }, + { + "time": 4.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 649, + 226 + ] + }, + { + "time": 5.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 138, + 476 + ] + }, + { + "time": 6.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 182, + 376 + ] + }, + { + "time": 6.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 363, + 250 + ] + }, + { + "time": 7.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 694, + 307 + ] + }, + { + "time": 8.72, + "type": "mouse_down", + "object": "ball", + "pos": [ + 341, + 64 + ] + }, + { + "time": 9.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 206, + 352 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_74.json b/dataset/scenario1/inputs/random_input_20251005161831_74.json new file mode 100644 index 0000000..47aa5cc --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_74.json @@ -0,0 +1,47 @@ +[ + { + "time": 0.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 411, + 66 + ] + }, + { + "time": 1.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 392, + 268 + ] + }, + { + "time": 2.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 724, + 371 + ] + }, + { + "time": 3.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 742, + 424 + ] + }, + { + "time": 3.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 573, + 192 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_75.json b/dataset/scenario1/inputs/random_input_20251005161831_75.json new file mode 100644 index 0000000..d09e991 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_75.json @@ -0,0 +1,65 @@ +[ + { + "time": 1.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 502, + 349 + ] + }, + { + "time": 2.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 556, + 361 + ] + }, + { + "time": 3.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 477, + 498 + ] + }, + { + "time": 4.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 481, + 389 + ] + }, + { + "time": 5.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 375, + 347 + ] + }, + { + "time": 6.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 102, + 114 + ] + }, + { + "time": 7.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 391, + 489 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_76.json b/dataset/scenario1/inputs/random_input_20251005161831_76.json new file mode 100644 index 0000000..e1ec9c7 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_76.json @@ -0,0 +1,65 @@ +[ + { + "time": 1.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 432, + 414 + ] + }, + { + "time": 2.05, + "type": "mouse_down", + "object": "ball", + "pos": [ + 738, + 68 + ] + }, + { + "time": 2.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 134, + 174 + ] + }, + { + "time": 4.04, + "type": "mouse_down", + "object": "ball", + "pos": [ + 287, + 378 + ] + }, + { + "time": 4.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 551, + 332 + ] + }, + { + "time": 5.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 290, + 356 + ] + }, + { + "time": 6.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 500, + 180 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_77.json b/dataset/scenario1/inputs/random_input_20251005161831_77.json new file mode 100644 index 0000000..2a0befb --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_77.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 368, + 233 + ] + }, + { + "time": 2.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 220, + 302 + ] + }, + { + "time": 4.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 55, + 132 + ] + }, + { + "time": 4.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 526, + 258 + ] + }, + { + "time": 6.09, + "type": "mouse_down", + "object": "ball", + "pos": [ + 195, + 182 + ] + }, + { + "time": 6.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 148, + 398 + ] + }, + { + "time": 7.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 87, + 211 + ] + }, + { + "time": 8.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 247, + 326 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_78.json b/dataset/scenario1/inputs/random_input_20251005161831_78.json new file mode 100644 index 0000000..bf37d33 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_78.json @@ -0,0 +1,56 @@ +[ + { + "time": 1.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 689, + 476 + ] + }, + { + "time": 1.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 569, + 100 + ] + }, + { + "time": 1.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 241, + 429 + ] + }, + { + "time": 2.35, + "type": "mouse_down", + "object": "ball", + "pos": [ + 113, + 147 + ] + }, + { + "time": 3.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 434, + 61 + ] + }, + { + "time": 4.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 101, + 477 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_79.json b/dataset/scenario1/inputs/random_input_20251005161831_79.json new file mode 100644 index 0000000..e7ccf61 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_79.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 576, + 119 + ] + }, + { + "time": 1.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 517, + 325 + ] + }, + { + "time": 2.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 171, + 323 + ] + }, + { + "time": 3.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 66, + 414 + ] + }, + { + "time": 4.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 341 + ] + }, + { + "time": 5.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 628, + 300 + ] + }, + { + "time": 6.73, + "type": "mouse_down", + "object": "ball", + "pos": [ + 189, + 222 + ] + }, + { + "time": 7.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 388, + 191 + ] + }, + { + "time": 8.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 671, + 131 + ] + }, + { + "time": 9.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 213 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_80.json b/dataset/scenario1/inputs/random_input_20251005161831_80.json new file mode 100644 index 0000000..de8b209 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_80.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 463, + 438 + ] + }, + { + "time": 2.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 586, + 246 + ] + }, + { + "time": 3.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 272, + 500 + ] + }, + { + "time": 4.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 606, + 113 + ] + }, + { + "time": 6.17, + "type": "mouse_down", + "object": "ball", + "pos": [ + 418, + 63 + ] + }, + { + "time": 7.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 343, + 104 + ] + }, + { + "time": 8.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 372, + 371 + ] + }, + { + "time": 9.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 547, + 87 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_81.json b/dataset/scenario1/inputs/random_input_20251005161831_81.json new file mode 100644 index 0000000..b2995bb --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_81.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 506, + 402 + ] + }, + { + "time": 1.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 158, + 95 + ] + }, + { + "time": 2.14, + "type": "mouse_down", + "object": "ball", + "pos": [ + 406, + 225 + ] + }, + { + "time": 2.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 238, + 343 + ] + }, + { + "time": 3.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 514, + 233 + ] + }, + { + "time": 4.23, + "type": "mouse_down", + "object": "ball", + "pos": [ + 189, + 170 + ] + }, + { + "time": 5.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 581, + 481 + ] + }, + { + "time": 6.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 647, + 108 + ] + }, + { + "time": 7.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 53, + 463 + ] + }, + { + "time": 8.11, + "type": "mouse_down", + "object": "ball", + "pos": [ + 94, + 456 + ] + }, + { + "time": 9.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 668, + 170 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_82.json b/dataset/scenario1/inputs/random_input_20251005161831_82.json new file mode 100644 index 0000000..188dafd --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_82.json @@ -0,0 +1,119 @@ +[ + { + "time": 0.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 60, + 199 + ] + }, + { + "time": 1.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 101, + 160 + ] + }, + { + "time": 3.07, + "type": "mouse_down", + "object": "ball", + "pos": [ + 445, + 169 + ] + }, + { + "time": 4.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 504, + 468 + ] + }, + { + "time": 4.5, + "type": "mouse_down", + "object": "ball", + "pos": [ + 443, + 95 + ] + }, + { + "time": 5.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 203, + 296 + ] + }, + { + "time": 5.58, + "type": "mouse_down", + "object": "ball", + "pos": [ + 119, + 104 + ] + }, + { + "time": 5.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 101, + 380 + ] + }, + { + "time": 6.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 188, + 348 + ] + }, + { + "time": 7.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 321, + 52 + ] + }, + { + "time": 8.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 169, + 231 + ] + }, + { + "time": 9.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 545, + 225 + ] + }, + { + "time": 9.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 597, + 496 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_83.json b/dataset/scenario1/inputs/random_input_20251005161831_83.json new file mode 100644 index 0000000..29e4276 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_83.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.21, + "type": "mouse_down", + "object": "ball", + "pos": [ + 351, + 327 + ] + }, + { + "time": 1.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 369, + 155 + ] + }, + { + "time": 2.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 708, + 141 + ] + }, + { + "time": 4.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 486, + 351 + ] + }, + { + "time": 5.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 351, + 238 + ] + }, + { + "time": 6.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 733, + 212 + ] + }, + { + "time": 7.27, + "type": "mouse_down", + "object": "ball", + "pos": [ + 231, + 451 + ] + }, + { + "time": 7.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 607, + 138 + ] + }, + { + "time": 7.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 282, + 476 + ] + }, + { + "time": 8.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 347, + 467 + ] + }, + { + "time": 9.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 554, + 91 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_84.json b/dataset/scenario1/inputs/random_input_20251005161831_84.json new file mode 100644 index 0000000..7c2e7ed --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_84.json @@ -0,0 +1,83 @@ +[ + { + "time": 0.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 563, + 101 + ] + }, + { + "time": 2.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 667, + 67 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 78, + 299 + ] + }, + { + "time": 3.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 549, + 137 + ] + }, + { + "time": 4.94, + "type": "mouse_down", + "object": "ball", + "pos": [ + 252, + 350 + ] + }, + { + "time": 5.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 552, + 472 + ] + }, + { + "time": 6.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 479, + 336 + ] + }, + { + "time": 7.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 622, + 234 + ] + }, + { + "time": 9.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 255, + 332 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_85.json b/dataset/scenario1/inputs/random_input_20251005161831_85.json new file mode 100644 index 0000000..26682af --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_85.json @@ -0,0 +1,83 @@ +[ + { + "time": 1.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 711, + 317 + ] + }, + { + "time": 2.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 101, + 438 + ] + }, + { + "time": 3.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 363, + 65 + ] + }, + { + "time": 4.63, + "type": "mouse_down", + "object": "ball", + "pos": [ + 242, + 336 + ] + }, + { + "time": 5.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 284, + 129 + ] + }, + { + "time": 6.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 686, + 270 + ] + }, + { + "time": 6.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 99, + 377 + ] + }, + { + "time": 7.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 209, + 486 + ] + }, + { + "time": 9.37, + "type": "mouse_down", + "object": "ball", + "pos": [ + 445, + 468 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_86.json b/dataset/scenario1/inputs/random_input_20251005161831_86.json new file mode 100644 index 0000000..c21910c --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_86.json @@ -0,0 +1,56 @@ +[ + { + "time": 1.34, + "type": "mouse_down", + "object": "ball", + "pos": [ + 231, + 237 + ] + }, + { + "time": 2.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 598, + 260 + ] + }, + { + "time": 2.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 223, + 361 + ] + }, + { + "time": 2.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 577, + 322 + ] + }, + { + "time": 3.41, + "type": "mouse_down", + "object": "ball", + "pos": [ + 552, + 299 + ] + }, + { + "time": 3.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 449, + 322 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_87.json b/dataset/scenario1/inputs/random_input_20251005161831_87.json new file mode 100644 index 0000000..148d470 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_87.json @@ -0,0 +1,56 @@ +[ + { + "time": 1.12, + "type": "mouse_down", + "object": "ball", + "pos": [ + 153, + 313 + ] + }, + { + "time": 1.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 472, + 141 + ] + }, + { + "time": 1.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 209, + 192 + ] + }, + { + "time": 3.26, + "type": "mouse_down", + "object": "ball", + "pos": [ + 355, + 273 + ] + }, + { + "time": 3.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 250, + 189 + ] + }, + { + "time": 4.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 698, + 307 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_88.json b/dataset/scenario1/inputs/random_input_20251005161831_88.json new file mode 100644 index 0000000..1d8cf5f --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_88.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 746, + 54 + ] + }, + { + "time": 1.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 217, + 133 + ] + }, + { + "time": 2.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 242, + 192 + ] + }, + { + "time": 2.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 346, + 212 + ] + }, + { + "time": 3.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 700, + 422 + ] + }, + { + "time": 3.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 211, + 275 + ] + }, + { + "time": 4.91, + "type": "mouse_down", + "object": "ball", + "pos": [ + 163, + 78 + ] + }, + { + "time": 5.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 73, + 283 + ] + }, + { + "time": 6.89, + "type": "mouse_down", + "object": "ball", + "pos": [ + 649, + 114 + ] + }, + { + "time": 7.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 567, + 87 + ] + }, + { + "time": 8.95, + "type": "mouse_down", + "object": "ball", + "pos": [ + 720, + 153 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_89.json b/dataset/scenario1/inputs/random_input_20251005161831_89.json new file mode 100644 index 0000000..8259577 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_89.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.39, + "type": "mouse_down", + "object": "ball", + "pos": [ + 696, + 146 + ] + }, + { + "time": 0.7, + "type": "mouse_down", + "object": "ball", + "pos": [ + 691, + 275 + ] + }, + { + "time": 1.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 696, + 439 + ] + }, + { + "time": 2.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 470, + 121 + ] + }, + { + "time": 2.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 157, + 423 + ] + }, + { + "time": 3.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 587, + 420 + ] + }, + { + "time": 4.79, + "type": "mouse_down", + "object": "ball", + "pos": [ + 544, + 71 + ] + }, + { + "time": 6.29, + "type": "mouse_down", + "object": "ball", + "pos": [ + 254, + 348 + ] + }, + { + "time": 7.44, + "type": "mouse_down", + "object": "ball", + "pos": [ + 627, + 427 + ] + }, + { + "time": 8.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 328, + 104 + ] + }, + { + "time": 8.83, + "type": "mouse_down", + "object": "ball", + "pos": [ + 750, + 91 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_90.json b/dataset/scenario1/inputs/random_input_20251005161831_90.json new file mode 100644 index 0000000..59ac61b --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_90.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.38, + "type": "mouse_down", + "object": "ball", + "pos": [ + 664, + 99 + ] + }, + { + "time": 1.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 50, + 355 + ] + }, + { + "time": 2.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 226, + 350 + ] + }, + { + "time": 3.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 279, + 419 + ] + }, + { + "time": 4.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 80, + 429 + ] + }, + { + "time": 4.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 266, + 237 + ] + }, + { + "time": 5.51, + "type": "mouse_down", + "object": "ball", + "pos": [ + 621, + 77 + ] + }, + { + "time": 5.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 748, + 186 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_91.json b/dataset/scenario1/inputs/random_input_20251005161831_91.json new file mode 100644 index 0000000..96bb0c8 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_91.json @@ -0,0 +1,65 @@ +[ + { + "time": 0.52, + "type": "mouse_down", + "object": "ball", + "pos": [ + 200, + 412 + ] + }, + { + "time": 1.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 241, + 247 + ] + }, + { + "time": 2.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 300, + 173 + ] + }, + { + "time": 3.88, + "type": "mouse_down", + "object": "ball", + "pos": [ + 567, + 409 + ] + }, + { + "time": 5.16, + "type": "mouse_down", + "object": "ball", + "pos": [ + 222, + 64 + ] + }, + { + "time": 6.03, + "type": "mouse_down", + "object": "ball", + "pos": [ + 426, + 124 + ] + }, + { + "time": 7.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 378, + 361 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_92.json b/dataset/scenario1/inputs/random_input_20251005161831_92.json new file mode 100644 index 0000000..8bf121d --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_92.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.6, + "type": "mouse_down", + "object": "ball", + "pos": [ + 448, + 69 + ] + }, + { + "time": 1.49, + "type": "mouse_down", + "object": "ball", + "pos": [ + 523, + 474 + ] + }, + { + "time": 1.93, + "type": "mouse_down", + "object": "ball", + "pos": [ + 82, + 121 + ] + }, + { + "time": 2.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 452, + 148 + ] + }, + { + "time": 3.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 359, + 449 + ] + }, + { + "time": 4.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 97, + 187 + ] + }, + { + "time": 5.19, + "type": "mouse_down", + "object": "ball", + "pos": [ + 670, + 478 + ] + }, + { + "time": 6.28, + "type": "mouse_down", + "object": "ball", + "pos": [ + 246, + 331 + ] + }, + { + "time": 7.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 156, + 444 + ] + }, + { + "time": 8.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 173, + 320 + ] + }, + { + "time": 9.45, + "type": "mouse_down", + "object": "ball", + "pos": [ + 740, + 342 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_93.json b/dataset/scenario1/inputs/random_input_20251005161831_93.json new file mode 100644 index 0000000..09737ee --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_93.json @@ -0,0 +1,92 @@ +[ + { + "time": 0.82, + "type": "mouse_down", + "object": "ball", + "pos": [ + 578, + 318 + ] + }, + { + "time": 1.74, + "type": "mouse_down", + "object": "ball", + "pos": [ + 260, + 384 + ] + }, + { + "time": 2.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 462, + 70 + ] + }, + { + "time": 3.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 687, + 97 + ] + }, + { + "time": 4.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 416, + 319 + ] + }, + { + "time": 5.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 727, + 179 + ] + }, + { + "time": 6.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 341, + 215 + ] + }, + { + "time": 6.68, + "type": "mouse_down", + "object": "ball", + "pos": [ + 162, + 418 + ] + }, + { + "time": 7.86, + "type": "mouse_down", + "object": "ball", + "pos": [ + 98, + 336 + ] + }, + { + "time": 8.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 481, + 384 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_94.json b/dataset/scenario1/inputs/random_input_20251005161831_94.json new file mode 100644 index 0000000..1044269 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_94.json @@ -0,0 +1,92 @@ +[ + { + "time": 1.31, + "type": "mouse_down", + "object": "ball", + "pos": [ + 704, + 320 + ] + }, + { + "time": 1.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 546, + 245 + ] + }, + { + "time": 3.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 519, + 54 + ] + }, + { + "time": 4.22, + "type": "mouse_down", + "object": "ball", + "pos": [ + 71, + 469 + ] + }, + { + "time": 5.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 356, + 287 + ] + }, + { + "time": 6.47, + "type": "mouse_down", + "object": "ball", + "pos": [ + 602, + 415 + ] + }, + { + "time": 7.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 355, + 294 + ] + }, + { + "time": 8.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 365, + 200 + ] + }, + { + "time": 9.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 243, + 301 + ] + }, + { + "time": 9.96, + "type": "mouse_down", + "object": "ball", + "pos": [ + 748, + 189 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_95.json b/dataset/scenario1/inputs/random_input_20251005161831_95.json new file mode 100644 index 0000000..7e381ad --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_95.json @@ -0,0 +1,74 @@ +[ + { + "time": 0.76, + "type": "mouse_down", + "object": "ball", + "pos": [ + 189, + 491 + ] + }, + { + "time": 1.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 367, + 426 + ] + }, + { + "time": 2.36, + "type": "mouse_down", + "object": "ball", + "pos": [ + 698, + 444 + ] + }, + { + "time": 3.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 720, + 308 + ] + }, + { + "time": 4.06, + "type": "mouse_down", + "object": "ball", + "pos": [ + 538, + 288 + ] + }, + { + "time": 5.24, + "type": "mouse_down", + "object": "ball", + "pos": [ + 159, + 80 + ] + }, + { + "time": 5.75, + "type": "mouse_down", + "object": "ball", + "pos": [ + 337, + 179 + ] + }, + { + "time": 6.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 529, + 88 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_96.json b/dataset/scenario1/inputs/random_input_20251005161831_96.json new file mode 100644 index 0000000..81859eb --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_96.json @@ -0,0 +1,101 @@ +[ + { + "time": 0.97, + "type": "mouse_down", + "object": "ball", + "pos": [ + 684, + 266 + ] + }, + { + "time": 2.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 490, + 443 + ] + }, + { + "time": 2.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 749, + 116 + ] + }, + { + "time": 3.46, + "type": "mouse_down", + "object": "ball", + "pos": [ + 625, + 114 + ] + }, + { + "time": 3.84, + "type": "mouse_down", + "object": "ball", + "pos": [ + 714, + 265 + ] + }, + { + "time": 4.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 223, + 277 + ] + }, + { + "time": 5.61, + "type": "mouse_down", + "object": "ball", + "pos": [ + 535, + 464 + ] + }, + { + "time": 6.87, + "type": "mouse_down", + "object": "ball", + "pos": [ + 138, + 226 + ] + }, + { + "time": 7.78, + "type": "mouse_down", + "object": "ball", + "pos": [ + 443, + 261 + ] + }, + { + "time": 8.53, + "type": "mouse_down", + "object": "ball", + "pos": [ + 154, + 325 + ] + }, + { + "time": 9.15, + "type": "mouse_down", + "object": "ball", + "pos": [ + 479, + 126 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_97.json b/dataset/scenario1/inputs/random_input_20251005161831_97.json new file mode 100644 index 0000000..1d57c0a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_97.json @@ -0,0 +1,101 @@ +[ + { + "time": 1.0, + "type": "mouse_down", + "object": "ball", + "pos": [ + 255, + 174 + ] + }, + { + "time": 1.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 709, + 250 + ] + }, + { + "time": 1.85, + "type": "mouse_down", + "object": "ball", + "pos": [ + 561, + 107 + ] + }, + { + "time": 2.99, + "type": "mouse_down", + "object": "ball", + "pos": [ + 58, + 422 + ] + }, + { + "time": 3.66, + "type": "mouse_down", + "object": "ball", + "pos": [ + 198, + 348 + ] + }, + { + "time": 4.02, + "type": "mouse_down", + "object": "ball", + "pos": [ + 550, + 496 + ] + }, + { + "time": 5.32, + "type": "mouse_down", + "object": "ball", + "pos": [ + 345, + 137 + ] + }, + { + "time": 6.54, + "type": "mouse_down", + "object": "ball", + "pos": [ + 435, + 112 + ] + }, + { + "time": 7.62, + "type": "mouse_down", + "object": "ball", + "pos": [ + 102, + 222 + ] + }, + { + "time": 8.4, + "type": "mouse_down", + "object": "ball", + "pos": [ + 703, + 157 + ] + }, + { + "time": 8.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 715, + 376 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_98.json b/dataset/scenario1/inputs/random_input_20251005161831_98.json new file mode 100644 index 0000000..734d87a --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_98.json @@ -0,0 +1,110 @@ +[ + { + "time": 0.8, + "type": "mouse_down", + "object": "ball", + "pos": [ + 479, + 198 + ] + }, + { + "time": 1.64, + "type": "mouse_down", + "object": "ball", + "pos": [ + 452, + 368 + ] + }, + { + "time": 2.65, + "type": "mouse_down", + "object": "ball", + "pos": [ + 324, + 435 + ] + }, + { + "time": 3.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 218, + 428 + ] + }, + { + "time": 5.33, + "type": "mouse_down", + "object": "ball", + "pos": [ + 590, + 446 + ] + }, + { + "time": 5.77, + "type": "mouse_down", + "object": "ball", + "pos": [ + 184, + 267 + ] + }, + { + "time": 6.2, + "type": "mouse_down", + "object": "ball", + "pos": [ + 431, + 164 + ] + }, + { + "time": 7.13, + "type": "mouse_down", + "object": "ball", + "pos": [ + 399, + 448 + ] + }, + { + "time": 7.71, + "type": "mouse_down", + "object": "ball", + "pos": [ + 293, + 242 + ] + }, + { + "time": 8.1, + "type": "mouse_down", + "object": "ball", + "pos": [ + 733, + 52 + ] + }, + { + "time": 8.98, + "type": "mouse_down", + "object": "ball", + "pos": [ + 285, + 120 + ] + }, + { + "time": 9.42, + "type": "mouse_down", + "object": "ball", + "pos": [ + 652, + 66 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/inputs/random_input_20251005161831_99.json b/dataset/scenario1/inputs/random_input_20251005161831_99.json new file mode 100644 index 0000000..61d7f27 --- /dev/null +++ b/dataset/scenario1/inputs/random_input_20251005161831_99.json @@ -0,0 +1,74 @@ +[ + { + "time": 1.43, + "type": "mouse_down", + "object": "ball", + "pos": [ + 449, + 429 + ] + }, + { + "time": 2.25, + "type": "mouse_down", + "object": "ball", + "pos": [ + 524, + 485 + ] + }, + { + "time": 2.92, + "type": "mouse_down", + "object": "ball", + "pos": [ + 558, + 316 + ] + }, + { + "time": 3.9, + "type": "mouse_down", + "object": "ball", + "pos": [ + 52, + 178 + ] + }, + { + "time": 4.67, + "type": "mouse_down", + "object": "ball", + "pos": [ + 643, + 59 + ] + }, + { + "time": 5.69, + "type": "mouse_down", + "object": "ball", + "pos": [ + 596, + 441 + ] + }, + { + "time": 7.18, + "type": "mouse_down", + "object": "ball", + "pos": [ + 88, + 404 + ] + }, + { + "time": 8.48, + "type": "mouse_down", + "object": "ball", + "pos": [ + 360, + 118 + ] + } +] \ No newline at end of file diff --git a/dataset/scenario1/scenario1.py b/dataset/scenario1/scenario1.py new file mode 100644 index 0000000..368b573 --- /dev/null +++ b/dataset/scenario1/scenario1.py @@ -0,0 +1,199 @@ +import pygame +import pymunk +import pymunk.pygame_util +import cv2 +import datetime +import os +import json + +def setup_pygame(): + """Inicializa o Pygame e a tela.""" + pygame.init() + screen = pygame.display.set_mode((800, 600)) + pygame.display.set_caption("Cenario 1") + return screen, pygame.time.Clock() + +def create_scenario(space): + """Cria o chão estático do cenário.""" + body_chao = pymunk.Body(body_type=pymunk.Body.STATIC) + segment_chao = pymunk.Segment(body_chao, (0, 550), (800, 550), 5) + segment_chao.elasticity = 0.9 + segment_chao.friction = 1.0 + space.add(body_chao, segment_chao) + +def add_ball_at_mouse_position(space, pos): + """Adiciona uma nova bola no espaço, na posição do mouse""" + massa = 1 + raio = 15 + inercia = pymunk.moment_for_circle(massa, 0, raio) + bola_body = pymunk.Body(massa, inercia) + bola_body.position = pos + bola_shape = pymunk.Circle(bola_body, raio) + bola_shape.elasticity = 0.9 + bola_shape.friction = 0.8 + space.add(bola_body, bola_shape) + +# Loop principal de simulação, gravação e coleta de dados +def run_simulation_and_record(): + """Roda a simulação e grava um vídeo(mp4) e um arquivo de dados(json)""" + screen, clock = setup_pygame() + + # Configurar caminhos e nomes de arquivos + timestamp = datetime.datetime.now().strftime("%d-%m-%Y_%H-%M-%S") + video_filename = f"cenario_1_{timestamp}.mp4" + data_filename = f"cenario_1_data_{timestamp}.json" + + current_dir = os.path.dirname(__file__) + video_path = os.path.join(current_dir, 'videos', video_filename) + data_path = os.path.join(current_dir, 'inputs', data_filename) + + # Garante que as pastas 'inputs' e 'videos' existam dentro de 'scenario1' + os.makedirs(os.path.join(current_dir, 'inputs'), exist_ok=True) + os.makedirs(os.path.join(current_dir, 'videos'), exist_ok=True) + + # Configurar Video e Pymunk + FPS = 60 + fourcc = cv2.VideoWriter_fourcc(*'mp4v') + out = cv2.VideoWriter(video_path, fourcc, FPS, (800, 600)) + + space = pymunk.Space() + space.gravity = 0, 980 + draw_options = pymunk.pygame_util.DrawOptions(screen) + create_scenario(space) + + # Variaveis de Coleta de Dados + simulation_time = 0.0 + recorded_actions = [] + + running = True + while running: + dt = 1 / 60.0 # Passo de tempo fixo para a simulacao + + for event in pygame.event.get(): + if event.type == pygame.QUIT: + running = False + elif event.type == pygame.MOUSEBUTTONDOWN: + if event.button == 1: + add_ball_at_mouse_position(space, event.pos) + + # Coleta de dados da açao + action = { + "time": round(simulation_time, 4), + "type": "mouse_down", + "object": "ball", + "pos": [event.pos[0], event.pos[1]] + } + recorded_actions.append(action) + + # Atualizar Simulacao e Tempo + space.step(dt) + simulation_time += dt + + # Limpar a tela e desenhar + screen.fill((255, 255, 255)) + space.debug_draw(draw_options) + pygame.display.flip() + + # Gravar Frame + img_array = pygame.surfarray.array3d(screen) + img_array = cv2.cvtColor(img_array.swapaxes(0, 1), cv2.COLOR_RGB2BGR) + out.write(img_array) + + clock.tick(60) + + # Salvar o arquivo JSON + with open(data_path, 'w') as f: + json.dump(recorded_actions, f, indent=4) + + # Liberar recursos + out.release() + pygame.quit() + print(f"\nVídeo salvo: {video_path}") + print(f"Dados de Input (JSON) salvos: {data_path}") + +def run_automated_simulation(all_actions, input_filename): + """Roda a simulação automaticamente a partir de um JSON carregado.""" + + # Configurar caminhos e nomes de arquivos + base_name = os.path.splitext(input_filename)[0] # Remove a extensão .json + timestamp = datetime.datetime.now().strftime("%d-%m-%Y_%H-%M-%S") + video_filename = f"{base_name}_auto_{timestamp}.mp4" + + current_dir = os.path.dirname(__file__) + video_path = os.path.join(current_dir, 'videos', video_filename) + + # Garante que a pasta 'videos' exista + os.makedirs(os.path.join(current_dir, 'videos'), exist_ok=True) + + # Configurar Simulação + screen, clock = setup_pygame() + + FPS = 60 + fourcc = cv2.VideoWriter_fourcc(*'mp4v') + out = cv2.VideoWriter(video_path, fourcc, FPS, (800, 600)) + + space = pymunk.Space() + space.gravity = 0, 980 + draw_options = pymunk.pygame_util.DrawOptions(screen) + create_scenario(space) + + simulation_time = 0.0 + action_index = 0 + + # Define o tempo de término: 2 segundos após a última ação + end_time = all_actions[-1]["time"] + 2.0 if all_actions else 2.0 + + running = True + while running: + dt = 1 / 60.0 + + # Lógica de Reprodução Automática + while action_index < len(all_actions) and \ + all_actions[action_index]["time"] <= round(simulation_time, 4): + + action = all_actions[action_index] + + # Executar a Ação: Adicionar Bola na posição registrada + if action["type"] == "mouse_down" and action["object"] == "ball": + pos = (action["pos"][0], action["pos"][1]) + add_ball_at_mouse_position(space, pos) + + action_index += 1 + + # Fim da Simulação + if simulation_time >= end_time: + running = False + + # Permite fechar a janela, mesmo no modo auto + for event in pygame.event.get(): + if event.type == pygame.QUIT: + running = False + + # Atualizar Simulação e Tempo + space.step(dt) + simulation_time += dt + + # Limpar a tela e desenhar + screen.fill((255, 255, 255)) + space.debug_draw(draw_options) + pygame.display.flip() + + # Gravar Frame + img_array = pygame.surfarray.array3d(screen) + img_array = cv2.cvtColor(img_array.swapaxes(0, 1), cv2.COLOR_RGB2BGR) + out.write(img_array) + + clock.tick(60) + + # Liberar recursos + out.release() + pygame.quit() + print(f"\nVídeo automático salvo: {video_path}") + return video_path + +if __name__ == "__main__": + print("Resultados da simulação") + # Para rodar o modo manual, descomente a próxima linha: + # run_simulation_and_record() + + # Para rodar o modo automático, executar o arquivo 'batch_runner.py' \ No newline at end of file diff --git a/dataset/scenario1/videos/random_input_20251005161830_01_auto_05-10-2025_16-22-32.mp4 b/dataset/scenario1/videos/random_input_20251005161830_01_auto_05-10-2025_16-22-32.mp4 new file mode 100644 index 0000000..b1e0c6c Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_01_auto_05-10-2025_16-22-32.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_02_auto_05-10-2025_16-19-43.mp4 b/dataset/scenario1/videos/random_input_20251005161830_02_auto_05-10-2025_16-19-43.mp4 new file mode 100644 index 0000000..3a5a03e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_02_auto_05-10-2025_16-19-43.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_03_auto_05-10-2025_16-23-43.mp4 b/dataset/scenario1/videos/random_input_20251005161830_03_auto_05-10-2025_16-23-43.mp4 new file mode 100644 index 0000000..0136e59 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_03_auto_05-10-2025_16-23-43.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_04_auto_05-10-2025_16-22-20.mp4 b/dataset/scenario1/videos/random_input_20251005161830_04_auto_05-10-2025_16-22-20.mp4 new file mode 100644 index 0000000..d950ae6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_04_auto_05-10-2025_16-22-20.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_05_auto_05-10-2025_16-24-13.mp4 b/dataset/scenario1/videos/random_input_20251005161830_05_auto_05-10-2025_16-24-13.mp4 new file mode 100644 index 0000000..1595180 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_05_auto_05-10-2025_16-24-13.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_06_auto_05-10-2025_16-21-04.mp4 b/dataset/scenario1/videos/random_input_20251005161830_06_auto_05-10-2025_16-21-04.mp4 new file mode 100644 index 0000000..9c42177 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_06_auto_05-10-2025_16-21-04.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_07_auto_05-10-2025_16-22-34.mp4 b/dataset/scenario1/videos/random_input_20251005161830_07_auto_05-10-2025_16-22-34.mp4 new file mode 100644 index 0000000..11c30b3 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_07_auto_05-10-2025_16-22-34.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_08_auto_05-10-2025_16-18-54.mp4 b/dataset/scenario1/videos/random_input_20251005161830_08_auto_05-10-2025_16-18-54.mp4 new file mode 100644 index 0000000..4056874 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_08_auto_05-10-2025_16-18-54.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_09_auto_05-10-2025_16-20-24.mp4 b/dataset/scenario1/videos/random_input_20251005161830_09_auto_05-10-2025_16-20-24.mp4 new file mode 100644 index 0000000..2a56cf7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_09_auto_05-10-2025_16-20-24.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_10_auto_05-10-2025_16-19-25.mp4 b/dataset/scenario1/videos/random_input_20251005161830_10_auto_05-10-2025_16-19-25.mp4 new file mode 100644 index 0000000..d464588 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_10_auto_05-10-2025_16-19-25.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_11_auto_05-10-2025_16-22-32.mp4 b/dataset/scenario1/videos/random_input_20251005161830_11_auto_05-10-2025_16-22-32.mp4 new file mode 100644 index 0000000..992f689 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_11_auto_05-10-2025_16-22-32.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_12_auto_05-10-2025_16-21-28.mp4 b/dataset/scenario1/videos/random_input_20251005161830_12_auto_05-10-2025_16-21-28.mp4 new file mode 100644 index 0000000..e6c50d1 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_12_auto_05-10-2025_16-21-28.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_13_auto_05-10-2025_16-23-23.mp4 b/dataset/scenario1/videos/random_input_20251005161830_13_auto_05-10-2025_16-23-23.mp4 new file mode 100644 index 0000000..a41e14a Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_13_auto_05-10-2025_16-23-23.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_14_auto_05-10-2025_16-20-19.mp4 b/dataset/scenario1/videos/random_input_20251005161830_14_auto_05-10-2025_16-20-19.mp4 new file mode 100644 index 0000000..7293d11 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_14_auto_05-10-2025_16-20-19.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_15_auto_05-10-2025_16-23-41.mp4 b/dataset/scenario1/videos/random_input_20251005161830_15_auto_05-10-2025_16-23-41.mp4 new file mode 100644 index 0000000..9d2034f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_15_auto_05-10-2025_16-23-41.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_16_auto_05-10-2025_16-21-45.mp4 b/dataset/scenario1/videos/random_input_20251005161830_16_auto_05-10-2025_16-21-45.mp4 new file mode 100644 index 0000000..ee48f86 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_16_auto_05-10-2025_16-21-45.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_17_auto_05-10-2025_16-24-24.mp4 b/dataset/scenario1/videos/random_input_20251005161830_17_auto_05-10-2025_16-24-24.mp4 new file mode 100644 index 0000000..c23060d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_17_auto_05-10-2025_16-24-24.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_18_auto_05-10-2025_16-22-30.mp4 b/dataset/scenario1/videos/random_input_20251005161830_18_auto_05-10-2025_16-22-30.mp4 new file mode 100644 index 0000000..19e2681 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_18_auto_05-10-2025_16-22-30.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_19_auto_05-10-2025_16-22-06.mp4 b/dataset/scenario1/videos/random_input_20251005161830_19_auto_05-10-2025_16-22-06.mp4 new file mode 100644 index 0000000..26982e5 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_19_auto_05-10-2025_16-22-06.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_20_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161830_20_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..a5bff0d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_20_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_21_auto_05-10-2025_16-19-04.mp4 b/dataset/scenario1/videos/random_input_20251005161830_21_auto_05-10-2025_16-19-04.mp4 new file mode 100644 index 0000000..66c1fa2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_21_auto_05-10-2025_16-19-04.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_22_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161830_22_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..bab5bc6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_22_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_23_auto_05-10-2025_16-21-21.mp4 b/dataset/scenario1/videos/random_input_20251005161830_23_auto_05-10-2025_16-21-21.mp4 new file mode 100644 index 0000000..1e843e4 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_23_auto_05-10-2025_16-21-21.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_24_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161830_24_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..4a90409 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_24_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_25_auto_05-10-2025_16-19-18.mp4 b/dataset/scenario1/videos/random_input_20251005161830_25_auto_05-10-2025_16-19-18.mp4 new file mode 100644 index 0000000..4130a21 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_25_auto_05-10-2025_16-19-18.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_26_auto_05-10-2025_16-22-53.mp4 b/dataset/scenario1/videos/random_input_20251005161830_26_auto_05-10-2025_16-22-53.mp4 new file mode 100644 index 0000000..5bfb445 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_26_auto_05-10-2025_16-22-53.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_27_auto_05-10-2025_16-23-15.mp4 b/dataset/scenario1/videos/random_input_20251005161830_27_auto_05-10-2025_16-23-15.mp4 new file mode 100644 index 0000000..5a7c8ce Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_27_auto_05-10-2025_16-23-15.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_28_auto_05-10-2025_16-20-21.mp4 b/dataset/scenario1/videos/random_input_20251005161830_28_auto_05-10-2025_16-20-21.mp4 new file mode 100644 index 0000000..901a6fc Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_28_auto_05-10-2025_16-20-21.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_29_auto_05-10-2025_16-22-37.mp4 b/dataset/scenario1/videos/random_input_20251005161830_29_auto_05-10-2025_16-22-37.mp4 new file mode 100644 index 0000000..c0133c6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_29_auto_05-10-2025_16-22-37.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_30_auto_05-10-2025_16-19-40.mp4 b/dataset/scenario1/videos/random_input_20251005161830_30_auto_05-10-2025_16-19-40.mp4 new file mode 100644 index 0000000..99799bd Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_30_auto_05-10-2025_16-19-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_31_auto_05-10-2025_16-22-57.mp4 b/dataset/scenario1/videos/random_input_20251005161830_31_auto_05-10-2025_16-22-57.mp4 new file mode 100644 index 0000000..d152289 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_31_auto_05-10-2025_16-22-57.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_32_auto_05-10-2025_16-22-49.mp4 b/dataset/scenario1/videos/random_input_20251005161830_32_auto_05-10-2025_16-22-49.mp4 new file mode 100644 index 0000000..4cf9ad2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_32_auto_05-10-2025_16-22-49.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_33_auto_05-10-2025_16-19-52.mp4 b/dataset/scenario1/videos/random_input_20251005161830_33_auto_05-10-2025_16-19-52.mp4 new file mode 100644 index 0000000..9101574 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_33_auto_05-10-2025_16-19-52.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_34_auto_05-10-2025_16-19-02.mp4 b/dataset/scenario1/videos/random_input_20251005161830_34_auto_05-10-2025_16-19-02.mp4 new file mode 100644 index 0000000..70c7fcc Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_34_auto_05-10-2025_16-19-02.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_35_auto_05-10-2025_16-21-44.mp4 b/dataset/scenario1/videos/random_input_20251005161830_35_auto_05-10-2025_16-21-44.mp4 new file mode 100644 index 0000000..3ce0cbd Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_35_auto_05-10-2025_16-21-44.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_36_auto_05-10-2025_16-23-05.mp4 b/dataset/scenario1/videos/random_input_20251005161830_36_auto_05-10-2025_16-23-05.mp4 new file mode 100644 index 0000000..35e5698 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_36_auto_05-10-2025_16-23-05.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_37_auto_05-10-2025_16-20-24.mp4 b/dataset/scenario1/videos/random_input_20251005161830_37_auto_05-10-2025_16-20-24.mp4 new file mode 100644 index 0000000..4c7bdec Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_37_auto_05-10-2025_16-20-24.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_38_auto_05-10-2025_16-24-22.mp4 b/dataset/scenario1/videos/random_input_20251005161830_38_auto_05-10-2025_16-24-22.mp4 new file mode 100644 index 0000000..fabe1f3 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_38_auto_05-10-2025_16-24-22.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_39_auto_05-10-2025_16-20-02.mp4 b/dataset/scenario1/videos/random_input_20251005161830_39_auto_05-10-2025_16-20-02.mp4 new file mode 100644 index 0000000..c27efdc Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_39_auto_05-10-2025_16-20-02.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_40_auto_05-10-2025_16-20-59.mp4 b/dataset/scenario1/videos/random_input_20251005161830_40_auto_05-10-2025_16-20-59.mp4 new file mode 100644 index 0000000..9623d36 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_40_auto_05-10-2025_16-20-59.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_41_auto_05-10-2025_16-19-17.mp4 b/dataset/scenario1/videos/random_input_20251005161830_41_auto_05-10-2025_16-19-17.mp4 new file mode 100644 index 0000000..e0817e6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_41_auto_05-10-2025_16-19-17.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_42_auto_05-10-2025_16-22-00.mp4 b/dataset/scenario1/videos/random_input_20251005161830_42_auto_05-10-2025_16-22-00.mp4 new file mode 100644 index 0000000..b4b4279 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_42_auto_05-10-2025_16-22-00.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_43_auto_05-10-2025_16-19-21.mp4 b/dataset/scenario1/videos/random_input_20251005161830_43_auto_05-10-2025_16-19-21.mp4 new file mode 100644 index 0000000..d3bc4d6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_43_auto_05-10-2025_16-19-21.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_44_auto_05-10-2025_16-23-30.mp4 b/dataset/scenario1/videos/random_input_20251005161830_44_auto_05-10-2025_16-23-30.mp4 new file mode 100644 index 0000000..22223dc Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_44_auto_05-10-2025_16-23-30.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_45_auto_05-10-2025_16-19-58.mp4 b/dataset/scenario1/videos/random_input_20251005161830_45_auto_05-10-2025_16-19-58.mp4 new file mode 100644 index 0000000..9c16f4f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_45_auto_05-10-2025_16-19-58.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_46_auto_05-10-2025_16-20-03.mp4 b/dataset/scenario1/videos/random_input_20251005161830_46_auto_05-10-2025_16-20-03.mp4 new file mode 100644 index 0000000..2799349 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_46_auto_05-10-2025_16-20-03.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_47_auto_05-10-2025_16-21-18.mp4 b/dataset/scenario1/videos/random_input_20251005161830_47_auto_05-10-2025_16-21-18.mp4 new file mode 100644 index 0000000..62b0efa Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_47_auto_05-10-2025_16-21-18.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_48_auto_05-10-2025_16-18-58.mp4 b/dataset/scenario1/videos/random_input_20251005161830_48_auto_05-10-2025_16-18-58.mp4 new file mode 100644 index 0000000..4d237e9 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_48_auto_05-10-2025_16-18-58.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_49_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161830_49_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..2f9bf5b Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_49_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_50_auto_05-10-2025_16-20-16.mp4 b/dataset/scenario1/videos/random_input_20251005161830_50_auto_05-10-2025_16-20-16.mp4 new file mode 100644 index 0000000..b3a95e0 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_50_auto_05-10-2025_16-20-16.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_51_auto_05-10-2025_16-24-35.mp4 b/dataset/scenario1/videos/random_input_20251005161830_51_auto_05-10-2025_16-24-35.mp4 new file mode 100644 index 0000000..3713368 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_51_auto_05-10-2025_16-24-35.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_52_auto_05-10-2025_16-22-10.mp4 b/dataset/scenario1/videos/random_input_20251005161830_52_auto_05-10-2025_16-22-10.mp4 new file mode 100644 index 0000000..b4cb6b8 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_52_auto_05-10-2025_16-22-10.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_53_auto_05-10-2025_16-19-39.mp4 b/dataset/scenario1/videos/random_input_20251005161830_53_auto_05-10-2025_16-19-39.mp4 new file mode 100644 index 0000000..bb8bf50 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_53_auto_05-10-2025_16-19-39.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_54_auto_05-10-2025_16-20-11.mp4 b/dataset/scenario1/videos/random_input_20251005161830_54_auto_05-10-2025_16-20-11.mp4 new file mode 100644 index 0000000..2133b12 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_54_auto_05-10-2025_16-20-11.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_55_auto_05-10-2025_16-19-49.mp4 b/dataset/scenario1/videos/random_input_20251005161830_55_auto_05-10-2025_16-19-49.mp4 new file mode 100644 index 0000000..f3c2b24 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_55_auto_05-10-2025_16-19-49.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_56_auto_05-10-2025_16-21-07.mp4 b/dataset/scenario1/videos/random_input_20251005161830_56_auto_05-10-2025_16-21-07.mp4 new file mode 100644 index 0000000..d7e407e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_56_auto_05-10-2025_16-21-07.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_57_auto_05-10-2025_16-20-23.mp4 b/dataset/scenario1/videos/random_input_20251005161830_57_auto_05-10-2025_16-20-23.mp4 new file mode 100644 index 0000000..6f6093a Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_57_auto_05-10-2025_16-20-23.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_58_auto_05-10-2025_16-22-16.mp4 b/dataset/scenario1/videos/random_input_20251005161830_58_auto_05-10-2025_16-22-16.mp4 new file mode 100644 index 0000000..a70dc83 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_58_auto_05-10-2025_16-22-16.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_59_auto_05-10-2025_16-20-46.mp4 b/dataset/scenario1/videos/random_input_20251005161830_59_auto_05-10-2025_16-20-46.mp4 new file mode 100644 index 0000000..fa78dc2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_59_auto_05-10-2025_16-20-46.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_60_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161830_60_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..b57d4af Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_60_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_61_auto_05-10-2025_16-24-31.mp4 b/dataset/scenario1/videos/random_input_20251005161830_61_auto_05-10-2025_16-24-31.mp4 new file mode 100644 index 0000000..c596103 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_61_auto_05-10-2025_16-24-31.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_62_auto_05-10-2025_16-24-09.mp4 b/dataset/scenario1/videos/random_input_20251005161830_62_auto_05-10-2025_16-24-09.mp4 new file mode 100644 index 0000000..f74a40d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_62_auto_05-10-2025_16-24-09.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_63_auto_05-10-2025_16-21-44.mp4 b/dataset/scenario1/videos/random_input_20251005161830_63_auto_05-10-2025_16-21-44.mp4 new file mode 100644 index 0000000..b248307 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_63_auto_05-10-2025_16-21-44.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161830_64_auto_05-10-2025_16-23-57.mp4 b/dataset/scenario1/videos/random_input_20251005161830_64_auto_05-10-2025_16-23-57.mp4 new file mode 100644 index 0000000..dc91c5c Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161830_64_auto_05-10-2025_16-23-57.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_100_auto_05-10-2025_16-18-57.mp4 b/dataset/scenario1/videos/random_input_20251005161831_100_auto_05-10-2025_16-18-57.mp4 new file mode 100644 index 0000000..d938379 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_100_auto_05-10-2025_16-18-57.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_101_auto_05-10-2025_16-22-56.mp4 b/dataset/scenario1/videos/random_input_20251005161831_101_auto_05-10-2025_16-22-56.mp4 new file mode 100644 index 0000000..2caf12f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_101_auto_05-10-2025_16-22-56.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_102_auto_05-10-2025_16-21-11.mp4 b/dataset/scenario1/videos/random_input_20251005161831_102_auto_05-10-2025_16-21-11.mp4 new file mode 100644 index 0000000..53a1ecc Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_102_auto_05-10-2025_16-21-11.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_103_auto_05-10-2025_16-21-13.mp4 b/dataset/scenario1/videos/random_input_20251005161831_103_auto_05-10-2025_16-21-13.mp4 new file mode 100644 index 0000000..ad39872 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_103_auto_05-10-2025_16-21-13.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_104_auto_05-10-2025_16-22-09.mp4 b/dataset/scenario1/videos/random_input_20251005161831_104_auto_05-10-2025_16-22-09.mp4 new file mode 100644 index 0000000..1591227 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_104_auto_05-10-2025_16-22-09.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_105_auto_05-10-2025_16-21-27.mp4 b/dataset/scenario1/videos/random_input_20251005161831_105_auto_05-10-2025_16-21-27.mp4 new file mode 100644 index 0000000..10680e3 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_105_auto_05-10-2025_16-21-27.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_106_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_106_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..fd61e59 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_106_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_107_auto_05-10-2025_16-21-02.mp4 b/dataset/scenario1/videos/random_input_20251005161831_107_auto_05-10-2025_16-21-02.mp4 new file mode 100644 index 0000000..9f5b1ae Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_107_auto_05-10-2025_16-21-02.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_108_auto_05-10-2025_16-22-31.mp4 b/dataset/scenario1/videos/random_input_20251005161831_108_auto_05-10-2025_16-22-31.mp4 new file mode 100644 index 0000000..745fcbd Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_108_auto_05-10-2025_16-22-31.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_109_auto_05-10-2025_16-19-16.mp4 b/dataset/scenario1/videos/random_input_20251005161831_109_auto_05-10-2025_16-19-16.mp4 new file mode 100644 index 0000000..60999e5 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_109_auto_05-10-2025_16-19-16.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_110_auto_05-10-2025_16-19-16.mp4 b/dataset/scenario1/videos/random_input_20251005161831_110_auto_05-10-2025_16-19-16.mp4 new file mode 100644 index 0000000..a7f5bb1 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_110_auto_05-10-2025_16-19-16.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_111_auto_05-10-2025_16-19-05.mp4 b/dataset/scenario1/videos/random_input_20251005161831_111_auto_05-10-2025_16-19-05.mp4 new file mode 100644 index 0000000..a0fa329 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_111_auto_05-10-2025_16-19-05.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_112_auto_05-10-2025_16-19-06.mp4 b/dataset/scenario1/videos/random_input_20251005161831_112_auto_05-10-2025_16-19-06.mp4 new file mode 100644 index 0000000..e4940af Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_112_auto_05-10-2025_16-19-06.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_113_auto_05-10-2025_16-23-56.mp4 b/dataset/scenario1/videos/random_input_20251005161831_113_auto_05-10-2025_16-23-56.mp4 new file mode 100644 index 0000000..65508fe Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_113_auto_05-10-2025_16-23-56.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_114_auto_05-10-2025_16-23-38.mp4 b/dataset/scenario1/videos/random_input_20251005161831_114_auto_05-10-2025_16-23-38.mp4 new file mode 100644 index 0000000..b71f488 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_114_auto_05-10-2025_16-23-38.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_115_auto_05-10-2025_16-21-55.mp4 b/dataset/scenario1/videos/random_input_20251005161831_115_auto_05-10-2025_16-21-55.mp4 new file mode 100644 index 0000000..9839b9f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_115_auto_05-10-2025_16-21-55.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_116_auto_05-10-2025_16-20-16.mp4 b/dataset/scenario1/videos/random_input_20251005161831_116_auto_05-10-2025_16-20-16.mp4 new file mode 100644 index 0000000..a014632 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_116_auto_05-10-2025_16-20-16.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_117_auto_05-10-2025_16-22-13.mp4 b/dataset/scenario1/videos/random_input_20251005161831_117_auto_05-10-2025_16-22-13.mp4 new file mode 100644 index 0000000..d856168 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_117_auto_05-10-2025_16-22-13.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_118_auto_05-10-2025_16-20-39.mp4 b/dataset/scenario1/videos/random_input_20251005161831_118_auto_05-10-2025_16-20-39.mp4 new file mode 100644 index 0000000..2ae285d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_118_auto_05-10-2025_16-20-39.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_119_auto_05-10-2025_16-20-58.mp4 b/dataset/scenario1/videos/random_input_20251005161831_119_auto_05-10-2025_16-20-58.mp4 new file mode 100644 index 0000000..31ce6de Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_119_auto_05-10-2025_16-20-58.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_120_auto_05-10-2025_16-19-02.mp4 b/dataset/scenario1/videos/random_input_20251005161831_120_auto_05-10-2025_16-19-02.mp4 new file mode 100644 index 0000000..f8a32a7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_120_auto_05-10-2025_16-19-02.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_121_auto_05-10-2025_16-19-04.mp4 b/dataset/scenario1/videos/random_input_20251005161831_121_auto_05-10-2025_16-19-04.mp4 new file mode 100644 index 0000000..db8bb76 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_121_auto_05-10-2025_16-19-04.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_122_auto_05-10-2025_16-23-19.mp4 b/dataset/scenario1/videos/random_input_20251005161831_122_auto_05-10-2025_16-23-19.mp4 new file mode 100644 index 0000000..9751c20 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_122_auto_05-10-2025_16-23-19.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_123_auto_05-10-2025_16-22-43.mp4 b/dataset/scenario1/videos/random_input_20251005161831_123_auto_05-10-2025_16-22-43.mp4 new file mode 100644 index 0000000..606ee63 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_123_auto_05-10-2025_16-22-43.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_124_auto_05-10-2025_16-24-19.mp4 b/dataset/scenario1/videos/random_input_20251005161831_124_auto_05-10-2025_16-24-19.mp4 new file mode 100644 index 0000000..394fd80 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_124_auto_05-10-2025_16-24-19.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_125_auto_05-10-2025_16-19-35.mp4 b/dataset/scenario1/videos/random_input_20251005161831_125_auto_05-10-2025_16-19-35.mp4 new file mode 100644 index 0000000..57fd9da Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_125_auto_05-10-2025_16-19-35.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_126_auto_05-10-2025_16-24-10.mp4 b/dataset/scenario1/videos/random_input_20251005161831_126_auto_05-10-2025_16-24-10.mp4 new file mode 100644 index 0000000..af0761a Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_126_auto_05-10-2025_16-24-10.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_127_auto_05-10-2025_16-23-36.mp4 b/dataset/scenario1/videos/random_input_20251005161831_127_auto_05-10-2025_16-23-36.mp4 new file mode 100644 index 0000000..66582c7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_127_auto_05-10-2025_16-23-36.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_128_auto_05-10-2025_16-23-15.mp4 b/dataset/scenario1/videos/random_input_20251005161831_128_auto_05-10-2025_16-23-15.mp4 new file mode 100644 index 0000000..4d865f7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_128_auto_05-10-2025_16-23-15.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_129_auto_05-10-2025_16-23-34.mp4 b/dataset/scenario1/videos/random_input_20251005161831_129_auto_05-10-2025_16-23-34.mp4 new file mode 100644 index 0000000..52be3d7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_129_auto_05-10-2025_16-23-34.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_130_auto_05-10-2025_16-22-54.mp4 b/dataset/scenario1/videos/random_input_20251005161831_130_auto_05-10-2025_16-22-54.mp4 new file mode 100644 index 0000000..5a7844e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_130_auto_05-10-2025_16-22-54.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_131_auto_05-10-2025_16-21-00.mp4 b/dataset/scenario1/videos/random_input_20251005161831_131_auto_05-10-2025_16-21-00.mp4 new file mode 100644 index 0000000..1a1fd8b Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_131_auto_05-10-2025_16-21-00.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_132_auto_05-10-2025_16-24-00.mp4 b/dataset/scenario1/videos/random_input_20251005161831_132_auto_05-10-2025_16-24-00.mp4 new file mode 100644 index 0000000..4c8211d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_132_auto_05-10-2025_16-24-00.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_133_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_133_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..59a2622 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_133_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_134_auto_05-10-2025_16-21-54.mp4 b/dataset/scenario1/videos/random_input_20251005161831_134_auto_05-10-2025_16-21-54.mp4 new file mode 100644 index 0000000..0aa6f20 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_134_auto_05-10-2025_16-21-54.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_135_auto_05-10-2025_16-20-59.mp4 b/dataset/scenario1/videos/random_input_20251005161831_135_auto_05-10-2025_16-20-59.mp4 new file mode 100644 index 0000000..903b9ee Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_135_auto_05-10-2025_16-20-59.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_136_auto_05-10-2025_16-22-44.mp4 b/dataset/scenario1/videos/random_input_20251005161831_136_auto_05-10-2025_16-22-44.mp4 new file mode 100644 index 0000000..9e684e3 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_136_auto_05-10-2025_16-22-44.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_137_auto_05-10-2025_16-20-41.mp4 b/dataset/scenario1/videos/random_input_20251005161831_137_auto_05-10-2025_16-20-41.mp4 new file mode 100644 index 0000000..3dc6206 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_137_auto_05-10-2025_16-20-41.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_138_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_138_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..2e23e66 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_138_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_139_auto_05-10-2025_16-20-28.mp4 b/dataset/scenario1/videos/random_input_20251005161831_139_auto_05-10-2025_16-20-28.mp4 new file mode 100644 index 0000000..46a7c27 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_139_auto_05-10-2025_16-20-28.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_140_auto_05-10-2025_16-21-37.mp4 b/dataset/scenario1/videos/random_input_20251005161831_140_auto_05-10-2025_16-21-37.mp4 new file mode 100644 index 0000000..f2a2690 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_140_auto_05-10-2025_16-21-37.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_141_auto_05-10-2025_16-22-29.mp4 b/dataset/scenario1/videos/random_input_20251005161831_141_auto_05-10-2025_16-22-29.mp4 new file mode 100644 index 0000000..9587c54 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_141_auto_05-10-2025_16-22-29.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_142_auto_05-10-2025_16-22-19.mp4 b/dataset/scenario1/videos/random_input_20251005161831_142_auto_05-10-2025_16-22-19.mp4 new file mode 100644 index 0000000..ec86772 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_142_auto_05-10-2025_16-22-19.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_143_auto_05-10-2025_16-19-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_143_auto_05-10-2025_16-19-40.mp4 new file mode 100644 index 0000000..72f52c3 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_143_auto_05-10-2025_16-19-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_144_auto_05-10-2025_16-19-49.mp4 b/dataset/scenario1/videos/random_input_20251005161831_144_auto_05-10-2025_16-19-49.mp4 new file mode 100644 index 0000000..7865cec Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_144_auto_05-10-2025_16-19-49.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_145_auto_05-10-2025_16-19-25.mp4 b/dataset/scenario1/videos/random_input_20251005161831_145_auto_05-10-2025_16-19-25.mp4 new file mode 100644 index 0000000..81ecc72 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_145_auto_05-10-2025_16-19-25.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_146_auto_05-10-2025_16-22-57.mp4 b/dataset/scenario1/videos/random_input_20251005161831_146_auto_05-10-2025_16-22-57.mp4 new file mode 100644 index 0000000..3a55765 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_146_auto_05-10-2025_16-22-57.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_147_auto_05-10-2025_16-23-16.mp4 b/dataset/scenario1/videos/random_input_20251005161831_147_auto_05-10-2025_16-23-16.mp4 new file mode 100644 index 0000000..50e447d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_147_auto_05-10-2025_16-23-16.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_148_auto_05-10-2025_16-23-08.mp4 b/dataset/scenario1/videos/random_input_20251005161831_148_auto_05-10-2025_16-23-08.mp4 new file mode 100644 index 0000000..ddc28be Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_148_auto_05-10-2025_16-23-08.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_149_auto_05-10-2025_16-24-07.mp4 b/dataset/scenario1/videos/random_input_20251005161831_149_auto_05-10-2025_16-24-07.mp4 new file mode 100644 index 0000000..bbd9556 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_149_auto_05-10-2025_16-24-07.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_150_auto_05-10-2025_16-21-49.mp4 b/dataset/scenario1/videos/random_input_20251005161831_150_auto_05-10-2025_16-21-49.mp4 new file mode 100644 index 0000000..f00343a Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_150_auto_05-10-2025_16-21-49.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_151_auto_05-10-2025_16-21-22.mp4 b/dataset/scenario1/videos/random_input_20251005161831_151_auto_05-10-2025_16-21-22.mp4 new file mode 100644 index 0000000..0f1965e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_151_auto_05-10-2025_16-21-22.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_152_auto_05-10-2025_16-22-10.mp4 b/dataset/scenario1/videos/random_input_20251005161831_152_auto_05-10-2025_16-22-10.mp4 new file mode 100644 index 0000000..72dac9e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_152_auto_05-10-2025_16-22-10.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_153_auto_05-10-2025_16-20-14.mp4 b/dataset/scenario1/videos/random_input_20251005161831_153_auto_05-10-2025_16-20-14.mp4 new file mode 100644 index 0000000..b4d5421 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_153_auto_05-10-2025_16-20-14.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_154_auto_05-10-2025_16-20-03.mp4 b/dataset/scenario1/videos/random_input_20251005161831_154_auto_05-10-2025_16-20-03.mp4 new file mode 100644 index 0000000..ecdc3d4 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_154_auto_05-10-2025_16-20-03.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_155_auto_05-10-2025_16-19-37.mp4 b/dataset/scenario1/videos/random_input_20251005161831_155_auto_05-10-2025_16-19-37.mp4 new file mode 100644 index 0000000..2e86548 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_155_auto_05-10-2025_16-19-37.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_156_auto_05-10-2025_16-19-25.mp4 b/dataset/scenario1/videos/random_input_20251005161831_156_auto_05-10-2025_16-19-25.mp4 new file mode 100644 index 0000000..b97268f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_156_auto_05-10-2025_16-19-25.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_157_auto_05-10-2025_16-23-54.mp4 b/dataset/scenario1/videos/random_input_20251005161831_157_auto_05-10-2025_16-23-54.mp4 new file mode 100644 index 0000000..342ce0f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_157_auto_05-10-2025_16-23-54.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_158_auto_05-10-2025_16-19-48.mp4 b/dataset/scenario1/videos/random_input_20251005161831_158_auto_05-10-2025_16-19-48.mp4 new file mode 100644 index 0000000..0c39894 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_158_auto_05-10-2025_16-19-48.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_159_auto_05-10-2025_16-20-01.mp4 b/dataset/scenario1/videos/random_input_20251005161831_159_auto_05-10-2025_16-20-01.mp4 new file mode 100644 index 0000000..07ed166 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_159_auto_05-10-2025_16-20-01.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_160_auto_05-10-2025_16-23-26.mp4 b/dataset/scenario1/videos/random_input_20251005161831_160_auto_05-10-2025_16-23-26.mp4 new file mode 100644 index 0000000..4fc78f7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_160_auto_05-10-2025_16-23-26.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_161_auto_05-10-2025_16-20-11.mp4 b/dataset/scenario1/videos/random_input_20251005161831_161_auto_05-10-2025_16-20-11.mp4 new file mode 100644 index 0000000..735c3ff Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_161_auto_05-10-2025_16-20-11.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_162_auto_05-10-2025_16-20-32.mp4 b/dataset/scenario1/videos/random_input_20251005161831_162_auto_05-10-2025_16-20-32.mp4 new file mode 100644 index 0000000..db4b928 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_162_auto_05-10-2025_16-20-32.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_163_auto_05-10-2025_16-23-14.mp4 b/dataset/scenario1/videos/random_input_20251005161831_163_auto_05-10-2025_16-23-14.mp4 new file mode 100644 index 0000000..6c31661 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_163_auto_05-10-2025_16-23-14.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_164_auto_05-10-2025_16-19-05.mp4 b/dataset/scenario1/videos/random_input_20251005161831_164_auto_05-10-2025_16-19-05.mp4 new file mode 100644 index 0000000..c9c0def Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_164_auto_05-10-2025_16-19-05.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_165_auto_05-10-2025_16-21-25.mp4 b/dataset/scenario1/videos/random_input_20251005161831_165_auto_05-10-2025_16-21-25.mp4 new file mode 100644 index 0000000..4c32aee Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_165_auto_05-10-2025_16-21-25.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_166_auto_05-10-2025_16-19-33.mp4 b/dataset/scenario1/videos/random_input_20251005161831_166_auto_05-10-2025_16-19-33.mp4 new file mode 100644 index 0000000..15c03ce Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_166_auto_05-10-2025_16-19-33.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_167_auto_05-10-2025_16-19-41.mp4 b/dataset/scenario1/videos/random_input_20251005161831_167_auto_05-10-2025_16-19-41.mp4 new file mode 100644 index 0000000..152399d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_167_auto_05-10-2025_16-19-41.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_168_auto_05-10-2025_16-21-51.mp4 b/dataset/scenario1/videos/random_input_20251005161831_168_auto_05-10-2025_16-21-51.mp4 new file mode 100644 index 0000000..666344a Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_168_auto_05-10-2025_16-21-51.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_169_auto_05-10-2025_16-23-22.mp4 b/dataset/scenario1/videos/random_input_20251005161831_169_auto_05-10-2025_16-23-22.mp4 new file mode 100644 index 0000000..0364453 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_169_auto_05-10-2025_16-23-22.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_170_auto_05-10-2025_16-21-14.mp4 b/dataset/scenario1/videos/random_input_20251005161831_170_auto_05-10-2025_16-21-14.mp4 new file mode 100644 index 0000000..a862666 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_170_auto_05-10-2025_16-21-14.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_171_auto_05-10-2025_16-20-32.mp4 b/dataset/scenario1/videos/random_input_20251005161831_171_auto_05-10-2025_16-20-32.mp4 new file mode 100644 index 0000000..a6aa918 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_171_auto_05-10-2025_16-20-32.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_172_auto_05-10-2025_16-20-47.mp4 b/dataset/scenario1/videos/random_input_20251005161831_172_auto_05-10-2025_16-20-47.mp4 new file mode 100644 index 0000000..b7bc4a6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_172_auto_05-10-2025_16-20-47.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_173_auto_05-10-2025_16-21-29.mp4 b/dataset/scenario1/videos/random_input_20251005161831_173_auto_05-10-2025_16-21-29.mp4 new file mode 100644 index 0000000..63ea904 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_173_auto_05-10-2025_16-21-29.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_174_auto_05-10-2025_16-20-49.mp4 b/dataset/scenario1/videos/random_input_20251005161831_174_auto_05-10-2025_16-20-49.mp4 new file mode 100644 index 0000000..7361f60 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_174_auto_05-10-2025_16-20-49.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_175_auto_05-10-2025_16-22-19.mp4 b/dataset/scenario1/videos/random_input_20251005161831_175_auto_05-10-2025_16-22-19.mp4 new file mode 100644 index 0000000..4a30e25 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_175_auto_05-10-2025_16-22-19.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_176_auto_05-10-2025_16-22-29.mp4 b/dataset/scenario1/videos/random_input_20251005161831_176_auto_05-10-2025_16-22-29.mp4 new file mode 100644 index 0000000..e99ba56 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_176_auto_05-10-2025_16-22-29.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_177_auto_05-10-2025_16-21-55.mp4 b/dataset/scenario1/videos/random_input_20251005161831_177_auto_05-10-2025_16-21-55.mp4 new file mode 100644 index 0000000..5e6f6ab Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_177_auto_05-10-2025_16-21-55.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_178_auto_05-10-2025_16-20-50.mp4 b/dataset/scenario1/videos/random_input_20251005161831_178_auto_05-10-2025_16-20-50.mp4 new file mode 100644 index 0000000..2f216f6 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_178_auto_05-10-2025_16-20-50.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_179_auto_05-10-2025_16-22-05.mp4 b/dataset/scenario1/videos/random_input_20251005161831_179_auto_05-10-2025_16-22-05.mp4 new file mode 100644 index 0000000..88a134d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_179_auto_05-10-2025_16-22-05.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_180_auto_05-10-2025_16-22-48.mp4 b/dataset/scenario1/videos/random_input_20251005161831_180_auto_05-10-2025_16-22-48.mp4 new file mode 100644 index 0000000..930a438 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_180_auto_05-10-2025_16-22-48.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_181_auto_05-10-2025_16-20-47.mp4 b/dataset/scenario1/videos/random_input_20251005161831_181_auto_05-10-2025_16-20-47.mp4 new file mode 100644 index 0000000..3842c7f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_181_auto_05-10-2025_16-20-47.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_182_auto_05-10-2025_16-23-30.mp4 b/dataset/scenario1/videos/random_input_20251005161831_182_auto_05-10-2025_16-23-30.mp4 new file mode 100644 index 0000000..d7f6cc2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_182_auto_05-10-2025_16-23-30.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_183_auto_05-10-2025_16-20-07.mp4 b/dataset/scenario1/videos/random_input_20251005161831_183_auto_05-10-2025_16-20-07.mp4 new file mode 100644 index 0000000..237c454 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_183_auto_05-10-2025_16-20-07.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_184_auto_05-10-2025_16-22-33.mp4 b/dataset/scenario1/videos/random_input_20251005161831_184_auto_05-10-2025_16-22-33.mp4 new file mode 100644 index 0000000..a2ad7d5 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_184_auto_05-10-2025_16-22-33.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_185_auto_05-10-2025_16-20-35.mp4 b/dataset/scenario1/videos/random_input_20251005161831_185_auto_05-10-2025_16-20-35.mp4 new file mode 100644 index 0000000..32cf867 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_185_auto_05-10-2025_16-20-35.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_186_auto_05-10-2025_16-22-15.mp4 b/dataset/scenario1/videos/random_input_20251005161831_186_auto_05-10-2025_16-22-15.mp4 new file mode 100644 index 0000000..7e49e10 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_186_auto_05-10-2025_16-22-15.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_187_auto_05-10-2025_16-23-19.mp4 b/dataset/scenario1/videos/random_input_20251005161831_187_auto_05-10-2025_16-23-19.mp4 new file mode 100644 index 0000000..f22f69d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_187_auto_05-10-2025_16-23-19.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_188_auto_05-10-2025_16-19-20.mp4 b/dataset/scenario1/videos/random_input_20251005161831_188_auto_05-10-2025_16-19-20.mp4 new file mode 100644 index 0000000..94c3365 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_188_auto_05-10-2025_16-19-20.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_189_auto_05-10-2025_16-19-48.mp4 b/dataset/scenario1/videos/random_input_20251005161831_189_auto_05-10-2025_16-19-48.mp4 new file mode 100644 index 0000000..cf93ffd Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_189_auto_05-10-2025_16-19-48.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_190_auto_05-10-2025_16-18-54.mp4 b/dataset/scenario1/videos/random_input_20251005161831_190_auto_05-10-2025_16-18-54.mp4 new file mode 100644 index 0000000..255833b Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_190_auto_05-10-2025_16-18-54.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_191_auto_05-10-2025_16-20-42.mp4 b/dataset/scenario1/videos/random_input_20251005161831_191_auto_05-10-2025_16-20-42.mp4 new file mode 100644 index 0000000..e15c540 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_191_auto_05-10-2025_16-20-42.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_192_auto_05-10-2025_16-20-54.mp4 b/dataset/scenario1/videos/random_input_20251005161831_192_auto_05-10-2025_16-20-54.mp4 new file mode 100644 index 0000000..3771779 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_192_auto_05-10-2025_16-20-54.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_193_auto_05-10-2025_16-21-14.mp4 b/dataset/scenario1/videos/random_input_20251005161831_193_auto_05-10-2025_16-21-14.mp4 new file mode 100644 index 0000000..999a640 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_193_auto_05-10-2025_16-21-14.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_194_auto_05-10-2025_16-22-30.mp4 b/dataset/scenario1/videos/random_input_20251005161831_194_auto_05-10-2025_16-22-30.mp4 new file mode 100644 index 0000000..82771ab Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_194_auto_05-10-2025_16-22-30.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_195_auto_05-10-2025_16-20-04.mp4 b/dataset/scenario1/videos/random_input_20251005161831_195_auto_05-10-2025_16-20-04.mp4 new file mode 100644 index 0000000..d83b973 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_195_auto_05-10-2025_16-20-04.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_196_auto_05-10-2025_16-22-17.mp4 b/dataset/scenario1/videos/random_input_20251005161831_196_auto_05-10-2025_16-22-17.mp4 new file mode 100644 index 0000000..4d4620d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_196_auto_05-10-2025_16-22-17.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_197_auto_05-10-2025_16-21-37.mp4 b/dataset/scenario1/videos/random_input_20251005161831_197_auto_05-10-2025_16-21-37.mp4 new file mode 100644 index 0000000..2a6b9a2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_197_auto_05-10-2025_16-21-37.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_198_auto_05-10-2025_16-21-41.mp4 b/dataset/scenario1/videos/random_input_20251005161831_198_auto_05-10-2025_16-21-41.mp4 new file mode 100644 index 0000000..f5bb99e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_198_auto_05-10-2025_16-21-41.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_199_auto_05-10-2025_16-22-48.mp4 b/dataset/scenario1/videos/random_input_20251005161831_199_auto_05-10-2025_16-22-48.mp4 new file mode 100644 index 0000000..a179b33 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_199_auto_05-10-2025_16-22-48.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_200_auto_05-10-2025_16-19-18.mp4 b/dataset/scenario1/videos/random_input_20251005161831_200_auto_05-10-2025_16-19-18.mp4 new file mode 100644 index 0000000..622e78d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_200_auto_05-10-2025_16-19-18.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_65_auto_05-10-2025_16-20-38.mp4 b/dataset/scenario1/videos/random_input_20251005161831_65_auto_05-10-2025_16-20-38.mp4 new file mode 100644 index 0000000..e6f8dca Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_65_auto_05-10-2025_16-20-38.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_66_auto_05-10-2025_16-20-26.mp4 b/dataset/scenario1/videos/random_input_20251005161831_66_auto_05-10-2025_16-20-26.mp4 new file mode 100644 index 0000000..2ef6070 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_66_auto_05-10-2025_16-20-26.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_67_auto_05-10-2025_16-21-29.mp4 b/dataset/scenario1/videos/random_input_20251005161831_67_auto_05-10-2025_16-21-29.mp4 new file mode 100644 index 0000000..cda051b Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_67_auto_05-10-2025_16-21-29.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_68_auto_05-10-2025_16-19-36.mp4 b/dataset/scenario1/videos/random_input_20251005161831_68_auto_05-10-2025_16-19-36.mp4 new file mode 100644 index 0000000..aae8ba2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_68_auto_05-10-2025_16-19-36.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_69_auto_05-10-2025_16-21-50.mp4 b/dataset/scenario1/videos/random_input_20251005161831_69_auto_05-10-2025_16-21-50.mp4 new file mode 100644 index 0000000..bce4c29 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_69_auto_05-10-2025_16-21-50.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_70_auto_05-10-2025_16-19-38.mp4 b/dataset/scenario1/videos/random_input_20251005161831_70_auto_05-10-2025_16-19-38.mp4 new file mode 100644 index 0000000..04d6418 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_70_auto_05-10-2025_16-19-38.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_71_auto_05-10-2025_16-21-45.mp4 b/dataset/scenario1/videos/random_input_20251005161831_71_auto_05-10-2025_16-21-45.mp4 new file mode 100644 index 0000000..f0ed54b Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_71_auto_05-10-2025_16-21-45.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_72_auto_05-10-2025_16-20-32.mp4 b/dataset/scenario1/videos/random_input_20251005161831_72_auto_05-10-2025_16-20-32.mp4 new file mode 100644 index 0000000..3af6414 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_72_auto_05-10-2025_16-20-32.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_73_auto_05-10-2025_16-21-30.mp4 b/dataset/scenario1/videos/random_input_20251005161831_73_auto_05-10-2025_16-21-30.mp4 new file mode 100644 index 0000000..b2a56af Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_73_auto_05-10-2025_16-21-30.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_74_auto_05-10-2025_16-21-18.mp4 b/dataset/scenario1/videos/random_input_20251005161831_74_auto_05-10-2025_16-21-18.mp4 new file mode 100644 index 0000000..58bfd58 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_74_auto_05-10-2025_16-21-18.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_75_auto_05-10-2025_16-22-08.mp4 b/dataset/scenario1/videos/random_input_20251005161831_75_auto_05-10-2025_16-22-08.mp4 new file mode 100644 index 0000000..88518ad Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_75_auto_05-10-2025_16-22-08.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_76_auto_05-10-2025_16-20-30.mp4 b/dataset/scenario1/videos/random_input_20251005161831_76_auto_05-10-2025_16-20-30.mp4 new file mode 100644 index 0000000..73e3f6a Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_76_auto_05-10-2025_16-20-30.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_77_auto_05-10-2025_16-21-22.mp4 b/dataset/scenario1/videos/random_input_20251005161831_77_auto_05-10-2025_16-21-22.mp4 new file mode 100644 index 0000000..7fc16db Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_77_auto_05-10-2025_16-21-22.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_78_auto_05-10-2025_16-21-10.mp4 b/dataset/scenario1/videos/random_input_20251005161831_78_auto_05-10-2025_16-21-10.mp4 new file mode 100644 index 0000000..27252ab Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_78_auto_05-10-2025_16-21-10.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_79_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_79_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..1e5977e Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_79_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_80_auto_05-10-2025_16-24-00.mp4 b/dataset/scenario1/videos/random_input_20251005161831_80_auto_05-10-2025_16-24-00.mp4 new file mode 100644 index 0000000..fadc30b Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_80_auto_05-10-2025_16-24-00.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_81_auto_05-10-2025_16-23-00.mp4 b/dataset/scenario1/videos/random_input_20251005161831_81_auto_05-10-2025_16-23-00.mp4 new file mode 100644 index 0000000..8a86391 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_81_auto_05-10-2025_16-23-00.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_82_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_82_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..464de32 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_82_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_83_auto_05-10-2025_16-23-28.mp4 b/dataset/scenario1/videos/random_input_20251005161831_83_auto_05-10-2025_16-23-28.mp4 new file mode 100644 index 0000000..310d8b3 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_83_auto_05-10-2025_16-23-28.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_84_auto_05-10-2025_16-24-17.mp4 b/dataset/scenario1/videos/random_input_20251005161831_84_auto_05-10-2025_16-24-17.mp4 new file mode 100644 index 0000000..9b2195f Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_84_auto_05-10-2025_16-24-17.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_85_auto_05-10-2025_16-23-02.mp4 b/dataset/scenario1/videos/random_input_20251005161831_85_auto_05-10-2025_16-23-02.mp4 new file mode 100644 index 0000000..5e428ac Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_85_auto_05-10-2025_16-23-02.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_86_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_86_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..8de7535 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_86_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_87_auto_05-10-2025_16-22-06.mp4 b/dataset/scenario1/videos/random_input_20251005161831_87_auto_05-10-2025_16-22-06.mp4 new file mode 100644 index 0000000..2deb40d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_87_auto_05-10-2025_16-22-06.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_88_auto_05-10-2025_16-18-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_88_auto_05-10-2025_16-18-40.mp4 new file mode 100644 index 0000000..3bd96c7 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_88_auto_05-10-2025_16-18-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_89_auto_05-10-2025_16-19-40.mp4 b/dataset/scenario1/videos/random_input_20251005161831_89_auto_05-10-2025_16-19-40.mp4 new file mode 100644 index 0000000..bcff409 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_89_auto_05-10-2025_16-19-40.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_90_auto_05-10-2025_16-19-20.mp4 b/dataset/scenario1/videos/random_input_20251005161831_90_auto_05-10-2025_16-19-20.mp4 new file mode 100644 index 0000000..97ea08d Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_90_auto_05-10-2025_16-19-20.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_91_auto_05-10-2025_16-23-27.mp4 b/dataset/scenario1/videos/random_input_20251005161831_91_auto_05-10-2025_16-23-27.mp4 new file mode 100644 index 0000000..a0449e2 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_91_auto_05-10-2025_16-23-27.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_92_auto_05-10-2025_16-18-59.mp4 b/dataset/scenario1/videos/random_input_20251005161831_92_auto_05-10-2025_16-18-59.mp4 new file mode 100644 index 0000000..fce8204 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_92_auto_05-10-2025_16-18-59.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_93_auto_05-10-2025_16-20-02.mp4 b/dataset/scenario1/videos/random_input_20251005161831_93_auto_05-10-2025_16-20-02.mp4 new file mode 100644 index 0000000..ff44701 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_93_auto_05-10-2025_16-20-02.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_94_auto_05-10-2025_16-23-41.mp4 b/dataset/scenario1/videos/random_input_20251005161831_94_auto_05-10-2025_16-23-41.mp4 new file mode 100644 index 0000000..0b9b206 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_94_auto_05-10-2025_16-23-41.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_95_auto_05-10-2025_16-22-42.mp4 b/dataset/scenario1/videos/random_input_20251005161831_95_auto_05-10-2025_16-22-42.mp4 new file mode 100644 index 0000000..e3c6074 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_95_auto_05-10-2025_16-22-42.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_96_auto_05-10-2025_16-20-44.mp4 b/dataset/scenario1/videos/random_input_20251005161831_96_auto_05-10-2025_16-20-44.mp4 new file mode 100644 index 0000000..338dfa8 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_96_auto_05-10-2025_16-20-44.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_97_auto_05-10-2025_16-20-11.mp4 b/dataset/scenario1/videos/random_input_20251005161831_97_auto_05-10-2025_16-20-11.mp4 new file mode 100644 index 0000000..bb034f8 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_97_auto_05-10-2025_16-20-11.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_98_auto_05-10-2025_16-23-05.mp4 b/dataset/scenario1/videos/random_input_20251005161831_98_auto_05-10-2025_16-23-05.mp4 new file mode 100644 index 0000000..9303f98 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_98_auto_05-10-2025_16-23-05.mp4 differ diff --git a/dataset/scenario1/videos/random_input_20251005161831_99_auto_05-10-2025_16-19-16.mp4 b/dataset/scenario1/videos/random_input_20251005161831_99_auto_05-10-2025_16-19-16.mp4 new file mode 100644 index 0000000..7ccd664 Binary files /dev/null and b/dataset/scenario1/videos/random_input_20251005161831_99_auto_05-10-2025_16-19-16.mp4 differ diff --git a/dataset/scenarios/scenario2.py b/dataset/scenario2/scenario2.py similarity index 100% rename from dataset/scenarios/scenario2.py rename to dataset/scenario2/scenario2.py diff --git a/dataset/scenarios/scenario1.py b/dataset/scenarios/scenario1.py deleted file mode 100644 index 52c7ca6..0000000 --- a/dataset/scenarios/scenario1.py +++ /dev/null @@ -1,96 +0,0 @@ -import pygame -import pymunk -import pymunk.pygame_util -import cv2 -import datetime -import os - -def setup_pygame(): - """Inicializa o Pygame e a tela.""" - pygame.init() - screen = pygame.display.set_mode((800, 600)) - pygame.display.set_caption("Cenario 1") - return screen, pygame.time.Clock() - -def create_scenario(space): - """Cria o chão estático do cenário.""" - body_chao = pymunk.Body(body_type=pymunk.Body.STATIC) - segment_chao = pymunk.Segment(body_chao, (0, 550), (800, 550), 5) - segment_chao.elasticity = 0.9 - segment_chao.friction = 1.0 - space.add(body_chao, segment_chao) - -def add_ball_at_mouse_position(space, pos): - """Adiciona uma nova bola no espaço, na posição do mouse.""" - massa = 1 - raio = 15 - inercia = pymunk.moment_for_circle(massa, 0, raio) - bola_body = pymunk.Body(massa, inercia) - bola_body.position = pos - bola_shape = pymunk.Circle(bola_body, raio) - bola_shape.elasticity = 0.9 - bola_shape.friction = 0.8 - space.add(bola_body, bola_shape) - -def run_simulation_and_record(): - """Roda a simulação e grava um vídeo.""" - screen, clock = setup_pygame() - - # Gerar um nome de arquivo unico com data e hora - timestamp = datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S") - video_filename = f"cenario1:{timestamp}.mp4" - - # Salva o vídeo na pasta 'videos', um nivel acima da atual - video_path = os.path.join(os.path.dirname(__file__), '..', 'videos', video_filename) - - FPS = 60 - fourcc = cv2.VideoWriter_fourcc(*'mp4v') - out = cv2.VideoWriter(video_path, fourcc, FPS, (800, 600)) - - # Configurar o espaço do Pymunk - space = pymunk.Space() - space.gravity = 0, 980 - draw_options = pymunk.pygame_util.DrawOptions(screen) - - # Criar o cenário (o chão) - create_scenario(space) - - running = True - while running: - # Gerenciamento de eventos - for event in pygame.event.get(): - if event.type == pygame.QUIT: - running = False - elif event.type == pygame.MOUSEBUTTONDOWN: - if event.button == 1: - # Ao clicar, adiciona uma bola - add_ball_at_mouse_position(space, event.pos) - - # Limpar a tela - screen.fill((255, 255, 255)) - - # Desenhar os objetos do Pymunk - space.debug_draw(draw_options) - - # Atualizar a simulação - space.step(1 / 60.0) - - # Atualizar a tela do Pygame - pygame.display.flip() - - # Gravar o quadro atual para o vídeo - img_array = pygame.surfarray.array3d(screen) - img_array = cv2.cvtColor(img_array.swapaxes(0, 1), cv2.COLOR_RGB2BGR) - out.write(img_array) - - # Controlar o FPS - clock.tick(60) - - # Liberar o gravador e fechar o Pygame - out.release() - pygame.quit() - print(f"Vídeo salvo como {video_path}") - -# Executar a simulação e a gravação -if __name__ == "__main__": - run_simulation_and_record() \ No newline at end of file diff --git a/dataset/scenarios/scenarios.md b/dataset/scenarios_docs.md similarity index 99% rename from dataset/scenarios/scenarios.md rename to dataset/scenarios_docs.md index a187673..1d8c6e9 100644 --- a/dataset/scenarios/scenarios.md +++ b/dataset/scenarios_docs.md @@ -36,7 +36,7 @@ A diversidade do dataset pode ser alcaçada ao juntar a interação com o usuár ### 2. Objetivos -- Testar a física de colisão em superfícies não-planas (como rampas e curvas) +- Testar a física de colisão em superfícies não-planas (como rampas e curvas) - Analisar a interação entre diferentes formas de objetos (círculos e quadrados). diff --git a/dataset/videos/cenario1:2025-09-14_14-32-13.mp4 b/dataset/videos/cenario1:2025-09-14_14-32-13.mp4 deleted file mode 100644 index 4f707f4..0000000 Binary files a/dataset/videos/cenario1:2025-09-14_14-32-13.mp4 and /dev/null differ diff --git a/dataset/videos/cenario2:2025-09-14_14-46-55.mp4 b/dataset/videos/cenario2:2025-09-14_14-46-55.mp4 deleted file mode 100644 index 8245f41..0000000 Binary files a/dataset/videos/cenario2:2025-09-14_14-46-55.mp4 and /dev/null differ