/
MetCode
/
Arkanoid_for_human
Обзор
Документация
Войти
/
MetCode
/
Arkanoid_for_human
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
resources/data/settings.json
94 строки
2 KB
mxchgeCode
Initial commit: Arkanoid game with MVC architecture
13 дек 2025, 04:01
13 дек 2025, 04:01
709ca45
Код
Авторство
О чём код?
{ "ball_speed": 12, "game_settings": { "screen_width": 800, "screen_height": 600, "fps": 60, "fullscreen": false, "vsync": true, "audio_enabled": true, "sound_volume": 0.8, "music_volume": 0.6 }, "ai_settings": { "ai_enabled": true, "ai_difficulty": "expert", "trajectory_prediction": true, "learning_enabled": true, "model_version": "2.3", "trajectory_precision": 0.95, "position_tolerance": 8, "learning_rate": 0.001, "exploration_factor": 0.1, "confidence_threshold": 0.8, "optimization_iterations": 100, "adaptive_difficulty": true }, "paddle_settings": { "width": 100, "height": 15, "speed": 8, "safety_margin": 20 }, "ball_settings": { "radius": 8, "initial_speed": 5, "speed_increment": 0.1, "max_speed": 15, "gravity": 0.1 }, "bricks_settings": { "rows": 8, "columns": 10, "width": 70, "height": 20, "padding": 2, "top_offset": 50, "left_offset": 15 }, "controls": { "move_left": [ "LEFT", "a", "A" ], "move_right": [ "RIGHT", "d", "D" ], "pause": [ "SPACE" ], "quit": [ "ESCAPE" ], "ai_toggle": [ "h", "H" ], "new_game": [ "n", "N" ] }, "scoring": { "base_points": 10, "speed_multiplier": true, "combo_multiplier": true, "combo_threshold": 3, "max_combo": 10 }, "visual_settings": { "show_trajectory": false, "show_ai_prediction": false, "show_fps": false, "trajectory_color": [ 255, 255, 0 ], "trajectory_alpha": 128, "highlight_best_move": true } }