mpf 0.57.3.dev3__tar.gz → 0.57.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.github/workflows/build_wheels.yml +5 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.github/workflows/prospector.yml +13 -3
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.github/workflows/run_tests.yml +19 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.prospector.yaml +1 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/AUTHORS.md +1 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/PKG-INFO +14 -8
- {mpf-0.57.3.dev3 → mpf-0.57.4}/README.md +5 -5
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/_version.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/assets/show.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/random_event_player.py +27 -31
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/variable_player.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_spec.yaml +38 -5
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp_interface.py +12 -8
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/config_validator.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/crash_reporter.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/device_manager.py +1 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/logging.py +5 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/machine.py +2 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/machine_vars.py +8 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/mode_device.py +3 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/placeholder_manager.py +1 -17
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/platform.py +50 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/randomizer.py +2 -3
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/segment_mappings.py +202 -101
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/service_controller.py +5 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/text_ui.py +5 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/utility_functions.py +1 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/ball_count_handler.py +2 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/ball_device.py +8 -9
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/outgoing_balls_handler.py +5 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/switch_counter.py +2 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/diverter.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/logic_blocks.py +33 -10
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/multiball.py +0 -3
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/multiball_lock.py +1 -5
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/playfield.py +1 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/servo.py +4 -2
- mpf-0.57.4/mpf/devices/shaker.py +69 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/shot.py +2 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/shot_group.py +4 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/stepper.py +36 -15
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/timer.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/attract/code/attract.py +13 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/bonus/code/bonus.py +4 -5
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/carousel/code/carousel.py +9 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/code/high_score.py +32 -45
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service/code/service.py +3 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/mpfconfig.yaml +3 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/base.py +1 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/exp.py +22 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/net_neuron.py +5 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast.py +79 -8
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_audio.py +41 -32
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_defines.py +27 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_driver.py +6 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_exp_board.py +2 -5
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_port_detector.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_servo.py +2 -1
- mpf-0.57.4/mpf/platforms/fast/fast_shaker.py +47 -0
- mpf-0.57.4/mpf/platforms/fast/fast_stepper.py +111 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_switch.py +8 -2
- mpf-0.57.4/mpf/platforms/interfaces/shaker_platform_interface.py +29 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/stepper_platform_interface.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/light_segment_displays.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp.py +2 -3
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_modern_lights.py +2 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/p_roc_devices.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pin2dmd.py +19 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_lights.py +2 -4
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pololu/pololu_tic.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/spike/spike.py +2 -2
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/step_stick.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/trinamics_steprocker.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/virtual.py +108 -8
- mpf-0.57.4/mpf/platforms/zedmd.py +130 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_arm64/extending.so +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_arm64/libserialport.so.0 +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_arm64/libsockpp.so.1 +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_arm64/libzedmd.so +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_x64/extending.so +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_x64/libserialport.so.0 +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_x64/libsockpp.so.1 +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/linux_x64/libzedmd.so +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_arm64/extending.so +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_arm64/libserialport.dylib +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_arm64/libsockpp.dylib +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_arm64/libzedmd.dylib +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_x64/extending.so +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_x64/libserialport.dylib +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_x64/libsockpp.dylib +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/macos_x64/libzedmd.dylib +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/win_x64/extending.pyd +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/win_x64/libserialport64.dll +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/win_x64/sockpp64.dll +0 -0
- mpf-0.57.4/mpf/platforms/zedmd_lib/win_x64/zedmd64.dll +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/auditor.py +9 -7
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/platform_integration_test_runner.py +1 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus/modes/bonus/config/bonus.yaml +6 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/carousel/config/config.yaml +1 -0
- mpf-0.57.4/mpf/tests/machine_files/carousel/modes/nowrap_carousel/config/nowrap_carousel.yaml +12 -0
- mpf-0.57.4/mpf/tests/machine_files/diverter/config/test_hold_activation_time_template.yaml +24 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/audio.yaml +8 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/audio2.yaml +1 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/nano.yaml +1 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/neuron.yaml +10 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/retro.yaml +1 -0
- mpf-0.57.4/mpf/tests/machine_files/light/config/light_autonumber.yaml +18 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/service_mode/config/config.yaml +4 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/config/test_shot_groups.yaml +4 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/base2/config/base2.yaml +4 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/mode1/config/mode1.yaml +18 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/timer/modes/mode_with_timers/config/mode_with_timers.yaml +5 -3
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Auditor.py +23 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Bonus.py +26 -6
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_CarouselMode.py +59 -9
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Diverter.py +49 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Audio.py +14 -9
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Neuron.py +30 -17
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_LightGroups.py +8 -8
- mpf-0.57.4/mpf/tests/test_LightNumbering.py +38 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Lisy.py +3 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_LogicBlocks.py +44 -1
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PKONE.py +4 -0
- mpf-0.57.4/mpf/tests/test_Randomizer.py +273 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Shots.py +30 -15
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Spike.py +4 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf.egg-info/PKG-INFO +14 -8
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf.egg-info/SOURCES.txt +29 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf.egg-info/requires.txt +5 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/pyproject.toml +5 -2
- mpf-0.57.3.dev3/mpf/tests/test_Randomizer.py +0 -203
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.bandit +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.coveragerc +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.github/dependabot.yml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/.gitignore +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/CONTRIBUTING.md +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/LICENSE.md +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/Makefile +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/RELEASE.md +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/Makefile +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-114x114.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-120x120.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-144x144.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-152x152.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-57x57.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-60x60.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-72x72.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/apple-touch-icon-76x76.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/favicon-128.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/favicon-16x16.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/favicon-196x196.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/favicon-32x32.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/favicon-96x96.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/favicon.ico +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/mstile-144x144.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/mstile-150x150.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/mstile-310x150.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/mstile-310x310.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/icons/mstile-70x70.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/mpf-logo-200.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/mpf-logo-tiny.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/images/mpf-logo-tiny@2x.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_static/mpf.css +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/config_players.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/config_players_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/devices.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/devices_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/machine.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/machine_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/misc.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/misc_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/modes.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/modes_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/platforms.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/platforms_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/self.machine.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/tests.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/_templates/tests_overview.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/ball_end.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/ball_start.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/device.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/error.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/goodbye.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/hello.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/machine_variable.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/mode_start.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/mode_stop.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/monitor_start.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/monitor_stop.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/player_added.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/player_turn_start.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/player_variable.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/register_trigger.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/remove_trigger.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/reset.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/reset_complete.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/switch.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/bcp/trigger.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/code/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/code/machine_code.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/code/mode_code.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/conf.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/Send variables via self.machine.events.post.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/dev_environment.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/event_annotations.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/hardware.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/mc.widget_player.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/dev/plugins.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/functions/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/functions/machine_variables.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/functions/player_variables.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/genindex.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/images/custom_mode_code.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/images/scriptlet.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/images/test_classes.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/make.bat +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/overview/boot_process.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/overview/files.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/overview/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/overview/installation.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/overview/yaml.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/requirements.txt +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/fuzz_testing.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/index.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/running_mpf_tests.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/tutorial/1.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/tutorial/2.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/writing_machine_tests.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/docs/testing/writing_mpf_tests.rst +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/get_version.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/__main__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/assets/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/events/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/shows/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/shows/shows/minimal_light_show.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/shows/shows/minimal_light_show_token.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/shows/shows/multi_step_tags.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/shows/shows/single_step_tag.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/machine_files/switch_hits/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/test_benchmark_events.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/test_benchmark_light_shows.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/benchmarks/test_benchmark_switch_hits.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/both.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/build.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/core.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/create_config.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/diagnosis.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/game.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/hardware.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/logging_formatters.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/service.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/test.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/commands/wire.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/bcp_plugin_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/blinkenlight_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/block_event_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/coil_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/device_config_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/event_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/flasher_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/flat_config_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/hardware_sound_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/light_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/plugin_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/queue_event_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/queue_relay_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/score_queue_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/segment_display_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/config_players/show_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/assets.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/async_mode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/ball_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/ball_search.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp_client.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp_pickle_client.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp_server.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp_socket_client.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/bcp/bcp_transport.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/case_insensitive_dict.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/clock.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/config_loader.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/config_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/config_processor.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/config_spec_loader.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/custom_code.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/data_manager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/delays.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/device.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/device_monitor.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/enable_disable_mixin.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/events.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/file_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/file_manager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/light_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/mode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/mode_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/mpf_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/platform_batch_light_system.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/platform_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/plugin.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/rgb_color.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/rgba_color.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/settings_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/show_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/switch_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/core/system_wide_device.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/accelerometer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/achievement.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/achievement_group.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/autofire.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/ball_device_ejector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/ball_device_state_handler.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/default_ball_search.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/enable_coil_ejector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/entrance_switch_counter.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/event_ejector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/hold_coil_ejector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/incoming_balls_handler.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/physical_ball_counter.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_device/pulse_coil_ejector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_hold.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_routing.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/ball_save.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/blinkenlight.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/combo_switch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/device_mixins.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/digital_output.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/digital_score_reel.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/driver.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/drop_target.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/dual_wound_coil.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/extra_ball.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/extra_ball_group.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/flipper.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/hardware_sound_system.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/kickback.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/light.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/light_group.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/magnet.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/motor.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/playfield_transfer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/power_supply_unit.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/rgb_dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/score_queue.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/score_reel.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/score_reel_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/score_reel_group.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/segment_display/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/segment_display/segment_display.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/segment_display/segment_display_text.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/segment_display/text_stack_entry.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/segment_display/transition_manager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/segment_display/transitions.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/sequence_shot.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/shot_profile.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/show_queue.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/speedometer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/spinner.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/state_machine.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/switch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/devices/timed_switch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/exceptions/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/exceptions/base_error.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/exceptions/config_file_error.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/exceptions/driver_limits_error.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/exceptions/runtime_error.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/file_interfaces/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/file_interfaces/pickle_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/file_interfaces/yaml_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/attract/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/attract/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/attract/config/attract.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/bonus/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/bonus/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/carousel/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/carousel/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/credits/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/credits/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/credits/code/credits.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/credits/config/credits.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/game/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/game/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/game/code/game.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/game/config/game.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/images/back_arrow_7x7.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/images/back_arrow_7x7_selected.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/images/end_11x7.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/high_score/images/end_11x7_selected.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/match/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/match/code/match.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/match/config/match.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service/config/service.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service/sounds/power_off.ogg +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service/sounds/switch_hit.ogg +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service_dmd/config/service_dmd.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/service_segment_display/config/service_segment_display.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/tilt/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/tilt/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/tilt/code/tilt.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/modes/tilt/config/tilt.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/parsers/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/parsers/event_reference_parser.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/parsers/special_events.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/base_serial_communicator.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/driver_light_platform.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fadecandy.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/TODO.md +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/aud.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/emu.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/net_nano.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/net_retro.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/rgb.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/communicators/seg.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_gi.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_io_board.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_led.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_light.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/fast/fast_segment_display.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/i2c_servo_controller.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/accelerometer_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/dmd_platform.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/driver_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/hardware_sound_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/i2c_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/light_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/segment_display_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/servo_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/interfaces/switch_platform_interface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/lisy/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/lisy/defines.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/lisy/lisy.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/mma8451.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/mypinballs/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/mypinballs/mypinballs.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/openpixel.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_coil.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_incand.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_rs232_intf.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_serial_communicator.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_servo.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/opp/opp_switch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/osc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/p3_roc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/p_roc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/p_roc_common.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/osx/pinproc.so +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp310-win32.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp310-win_amd64.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp311-win32.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp311-win_amd64.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp312-win32.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp312-win_amd64.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp38-win32.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp38-win_amd64.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp39-win32.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pinproc/windows/pinproc.cp39-win_amd64.pyd +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_coil.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_extension.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_lightshow.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_serial_communicator.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_servo.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pkone/pkone_switch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pololu/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pololu/pololu_ticcmd_wrapper.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/pololu_maestro.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/rpi/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/rpi/rpi.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/rpi_dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/smart_virtual.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/smartmatrix.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/smbus2.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/snux.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/spi_bit_bang.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/spike/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/spike/spike_defines.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/system11.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/trinamics/README +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/trinamics/TMCL.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/trinamics/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/virtual_pinball/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/virtual_pinball/virtual_pinball.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/generate.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/platform_pb2.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/platform_pb2_grpc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/protobuf/platform.proto +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/service.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/test_client.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/test_server.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/platforms/visual_pinball_engine/visual_pinball_engine.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/info_lights.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/switch_player.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/twitch/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/twitch/twitch_client.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/twitch_bot.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/plugins/virtual_segment_display_connector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfBcpTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfDocTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfFakeGameTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfGameTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfIntegrationDocTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfMachineTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfPlatformIntegrationTest.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/MpfTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/README.md +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/TestDataManager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/loop.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/accelerometer/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/achievement/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/achievement/modes/auto_select/config/auto_select.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/achievement/modes/base/config/base.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/achievement/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/apc/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/config/test_asset_loading.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/custom1/show8.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/mode_start/show9.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/on_demand/show10.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/preload/show7.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/show6.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/custom1/show11.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/custom1/show13.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/on_demand/show5.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/preload/show4.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/preload/subfolder/show4b.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/show1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/show12.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/show2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/asset_manager/shows/show3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/auditor/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/auditor/modes/base/config/base.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/autofire/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_controller/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_controller/config/regression.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_auto_manual_plunger.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_event_confirmation.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_event_ejector.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_jam_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_jam_switch_initial.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_manual_with_target.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_no_plunger_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_routing.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_switch_confirmation.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_ball_device_trigger_events.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_enable_coil.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_enable_coil_multiple.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_gottlieb_trough.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_gottlieb_trough_with_initial_balls.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_hold_coil.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_jam_and_ball_left.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_modern_trough_plunger_setup.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_player_controlled_eject.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_playfield_lock.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_pulse_eject.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_single_device.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_system_11_trough.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_system_11_trough_startup.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/test_too_long_exit_count_delay.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/trough_entrance_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_device/config/trough_entrance_switch_initial_balls.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_holds/config/test_ball_holds.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_holds/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_routing/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_routing/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_save/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_save/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_save/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_search/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_search/config/config_ball_device.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_search/config/config_with_balls.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_search/config/mechanical_eject.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_search/config/missing_initial.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/ball_search/config/no_eject.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bcp/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bcp/config/multiple_connections_config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bcp/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bcp/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blinkenlight/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blinkenlight/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blinkenlight/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blocking_events/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blocking_events/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blocking_events/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/blocking_events/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_additional_events/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_additional_events/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_additional_events/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_no_keep_multiplier/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_no_keep_multiplier/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/bonus_no_keep_multiplier/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/carousel/modes/blocking_carousel/config/blocking_carousel.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/carousel/modes/carousel/config/carousel.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/carousel/modes/conditional_carousel/config/conditional_carousel.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/carousel/modes/second_carousel/config/second_carousel.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/coil_player/config/coil_player.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/coil_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/combo_switches/config/combo_switches.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/combo_switches/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_errors/broken_show/config/show.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_errors/broken_show/shows/broken_show.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_interface/config/test_config_interface.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_interface/config/test_config_interface_missing_version.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_interface/config/test_config_interface_old_version.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_loader/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_loader/modes/game/config/game.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_loader/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_loader/modes/mode1/shows/mode1_show.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_loader/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_loader/shows/show1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_players/config/test_config_players.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_players/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_players/modes/mode1/shows/mode1_show.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_players/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_players/shows/show1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_processor/typo.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_processor/working.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/config_processor/working_subconfig.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/counters/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/counters/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/credits/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/credits/config/config_credit_tiers.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/credits/config/config_freeplay.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/credits/config/config_inhibit.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/credits/modes/credits/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/custom_code/code/__init__.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/custom_code/code/test_code.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/custom_code/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/data_manager/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/device/config/coils.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/device/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/device/config/config_dual_wound_coil.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/device_collection/config/test_device_collection.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/digital_output/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/digital_score_reels/config/test_digital_score_reels.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/diverter_with_activation_events.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/only_events_no_coils.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_activation_switch_and_eject_confirm_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_delayed_eject.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_diverter_auto_disable.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_diverter_dual_wound_coil.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_diverter_with_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_eject_to_oposide_sides.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_eject_to_oposide_sides2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_hold_activation_time.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_hold_no_activation_time.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_missing_ball_at_source.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/diverter/config/test_pulsed_activation_time.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/dmd/config/testDmd.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/dmd/config/testRgbDmd.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/drop_targets/config/test_drop_targets.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/drop_targets/config/test_multiple_drop_resets_on_startup.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/drop_targets/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_manager/config/test_event_manager.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_manager/modes/game_mode/config/game_mode.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_manager/modes/test_mode/config/test_mode.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_players/config/test_event_player.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_players/config/test_queue_event_player.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_players/config/test_random_event_player.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_players/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/event_players/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/extra_ball/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/extra_ball/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/dmd.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/error_lights.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/exp.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/fast/config/seg.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/flippers/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/flippers/config/hold_no_eos.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/flippers/config/software_eos_repulse.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/game/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/game/config/config_with_balls.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/head2head/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/high_score/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/high_score_reverse/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/high_score_reverse/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/high_score_vars/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/high_score_vars/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/i2c_servo_controller/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/info_lights/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/kickback/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light/config/light.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light/config/light_default_color_correction.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light/config/light_groups.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light/config/lights_on_drivers.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light/config/matrix_lights.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/config/light_player.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/config/light_player_named_colors.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/shows/show_ext1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/shows/show_ext2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_player/shows/show_ext3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_segment_displays/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/light_segment_displays/config/config_dots.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/lisy/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/lisy/config/config_modern.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/lisy/config/config_system11.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/logic_blocks/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/logic_blocks/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/logic_blocks/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/logic_blocks/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/logic_blocks/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/machine_vars/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/magnet/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/match_mode/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/match_mode/config/config_highscore.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/match_mode/modes/match/config/match.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mma8451/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_broken_mode_config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_empty_modes_section.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_loading_invalid_modes.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_missing_mode_section.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_mode_without_config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_modes.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/config/test_modes_in_game.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/broken_mode/config/broken_mode.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/broken_mode2/config/broken_mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode1/config/test.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode3/code/mode3.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/config/mode5.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/config/test.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/mode8/config/mode8.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/mode8/config/test.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode6/config/mode6.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode6/config/test.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode7/config/mode7.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode7/config/test.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_restart_on_next_ball/config/mode_restart_on_next_ball.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mode_tests/modes/mode_without_config/config/README +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/motor/config/drop_target.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/motor/config/ghostbusters.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/motor/config/multiposition_motor.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/motor/config/multiposition_motor_home_in_the_middle.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/motor/config/multiposition_motor_start_on_end_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mpftestcase/config/test_mpftestcase.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball/modes/mode5/config/mode5.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testDefault.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testMinVirtualPhysical.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testNoVirtual.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testPhysicalOnly.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testPhysicalOnlyNoStealing.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testSourceDevices.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/config/testVirtualOnly.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/blocking/config/blocking.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/default/config/default.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/min_virtual_physical/config/min_virtual_physical.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/no_virtual/config/no_virtual.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/physical_only/config/physical_only.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/physical_only_no_stealing/config/physical_only_no_stealing.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/source_devices/config/source_devices.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/multiball_locks/modes/virtual_only/config/virtual_only.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/mypinballs/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/null/config/null.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/openpixel/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/openpixel/config/fadecandy.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/opp/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/opp/config/config2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/opp/config/config_stm32.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/osc/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/p3_roc/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/p_roc/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/p_roc/config/snux.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/p_roc/config/wpc.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/pkone/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/platform/config/test_platform.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/platform/config/test_virtual.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/player_vars/config/player_vars.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/playfield/config/test_playfield.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/playfield_transfer/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/plugin_config_player/config/plugin_config_player.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/plugin_config_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/plugin_config_player/modes/mode1/shows/show2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/plugin_config_player/modes/mode1/shows/show3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/plugin_config_player/shows/show1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/pololu_maestro/config/pololu_maestro.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/pololu_tic/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/randomizer/config/randomizer.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/rpi/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/rpi_dmd/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/score_queue/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/score_queue/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/score_reels/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/segment_display/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/segment_display/config/config_colors.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/segment_display/config/config_flashing.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/segment_display/config/config_transition.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/segment_display/config/game.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/segment_display/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/sequence_shot/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/sequence_shot/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/servo/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/settings/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/config/test_shot_group_rotate_with_exclude.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/config/test_shots.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/base/config/base.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/base3/config/base3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shots/modes/rotate_with_exclude/config/rotate_with_exclude.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/config/test_show_player_queue.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/config/test_show_pools.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/config/test_shows.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/config/test_sync_ms.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/8linesweep.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/myparentshow.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/on_demand/mychildshow.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/test_show1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/test_show2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/test_show3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/test_show_key_token.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/shows/shows/test_variable_show.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smart_matrix/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smart_matrix/config/old_cookie.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smart_virtual_platform/config/test_coil_fired_plunger.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smart_virtual_platform/config/test_entrance_switch.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smart_virtual_platform/config/test_smart_virtual.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smart_virtual_platform/config/test_smart_virtual_initial.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/smbus2/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/snux/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/spi_bit_bang/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/spike/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/spinners/config/test_spinners.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/state_machine/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/state_machine/modes/game_mode/config/game_mode.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/state_machine/modes/non_game_mode/config/non_game_mode.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/step_stick/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/stepper/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/switch_controller/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/switch_player/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt/config/config_mechanical_eject.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt/config/config_system_11_trough.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt/config/settings.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt/modes/base/config/base.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt/modes/tilt/config/tilt.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/tilt_defaults/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/timed_switches/config/timed_switches.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/timed_switches/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/timer/config/test_timer.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/timer/modes/mode_with_timers2/config/mode_with_timers2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/trinamics_steprocker/config/trinamics_steprocker.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/twitch_client/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/variable_player/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/variable_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/variable_player/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/variable_player/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/variable_player/modes/mode_for_logic_block/config/mode_for_logic_block.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/variable_player/modes/non_game_mode/config/non_game_mode.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/virtual_pinball/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/virtual_segment_display_connector/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/vpe/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/machine_files/vpx/config/config.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/platforms/fast.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/platforms/pinproc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/regression_tests/light_player_subscriptions.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/regression_tests/shot_same_show_differnent_token.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/regression_tests/shots_with_token_in_profile_and_shot.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/regression_tests/show_player_subscriptions.yaml +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Accelerometer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Achievement.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_AssetManager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Attract.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Autofire.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallController.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDevice.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceAutoManualPlunger.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceEnableCoil.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceEventConfirmation.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceEventEjector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceHoldCoil.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceJamSwitch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceManualWithTarget.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceModernTroughPlungerSetup.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceNoPlungerSwitch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDevicePlayfieldLock.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDevicePulseEject.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceRouting.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceSingle.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceSwitchConfirmation.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDeviceTriggerEvents.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallDevice_SmartVirtual.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallHold.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallRouting.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallSave.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BallSearch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BcpInterface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BcpMc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BcpServer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BcpSocketClient.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Blinkenlight.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_BlockingEvents.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Clock.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_CoilPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ComboSwitches.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_CommandCreateConfig.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Commands.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Config.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ConfigErrors.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ConfigLoader.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ConfigMissingVersion.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ConfigOldVersion.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ConfigPlayers.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ConfigProcessor.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_CreditsMode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_CustomCode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DataManager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Delay.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceCollection.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceDriver.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceFlasher.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceGI.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceLight.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceManager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DeviceMatrixLight.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DigitalOutput.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DigitalScoreReels.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DropTargets.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_DualWoundCoil.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_EventManager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_EventPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ExtraBall.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fadecandy.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Dmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Exp.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Nano.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Retro.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Fast_Seg.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Flippers.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_FlippersHoldNoEos.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_FlippersSoftwareEosRepulse.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Game.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_GottliebTrough.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Head2Head.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_HighScoreMode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_HighScoreModeWithVars.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_I2cServoController.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_InfoLights.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Kickback.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_LightPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_LightPositions.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_LightSegmentDisplays.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MMA8451.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MachineVariables.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Magnet.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MatchMode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Modes.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ModesConfigValidation.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Motors.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MpfTestCase.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MultiBall.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MultiballLock.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_MyPinballs.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_OPP.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Openpixel.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Osc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_P3_Roc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_P_Roc.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PlaceholderManager.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Platform.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PlayerVars.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Playfield.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PlayfieldTransfer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PluginConfigPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PololuMaestro.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_PololuTic.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_QueueEventPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_RGBColor.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_RandomEventPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Rpi.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_RpiDmd.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ScoreQueue.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ScoreReels.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SegmentDisplay.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SegmentMappings.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SequenceShot.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ServiceCli.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ServiceMode.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Servo.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Settings.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ShotGroups.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_ShowPools.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Shows.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SmartMatrix.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SmartVirtualPlatform.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Smbus2.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Snux.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SpiBitBang.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Spinners.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_StateMachine.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_StepStick.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Stepper.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SwitchController.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SwitchPlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_SwitchPositions.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_System11Trough.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Tilt.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_TimedSwitch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Timer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_TooLongExitCountDelay.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_TrinamicsStepRocker.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_TroughEntranceSwitch.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_TwitchClient.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Utility_Functions.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_VPX.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_VariablePlayer.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_Virtual.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_VirtualPinball.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_VirtualSegmentDisplayConnector.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_VisualPinballEngine.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/test_YamlInterface.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/tests/vpe_simulator.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/wire/base.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf/wire/fast.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf-logo-200.png +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf.egg-info/dependency_links.txt +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf.egg-info/entry_points.txt +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mpf.egg-info/top_level.txt +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/mypy.ini +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/setup.cfg +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/setup.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/sonar-project.properties +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/test_machine.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/test_regression.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/tools/afl_fuzz.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/tools/afl_howto.txt +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/tools/convert_segments.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/tools/debug_run_game.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/tools/p3_switch_test.py +0 -0
- {mpf-0.57.3.dev3 → mpf-0.57.4}/tools/smart_matrix_dmd_teensy_code/smart_matrix_dmd_teensy_code.ino +0 -0
|
@@ -17,15 +17,16 @@ jobs:
|
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Checkout MPF
|
|
20
|
-
uses: actions/checkout@
|
|
20
|
+
uses: actions/checkout@v4
|
|
21
21
|
|
|
22
22
|
- name: Setup python
|
|
23
|
-
uses: actions/setup-python@
|
|
23
|
+
uses: actions/setup-python@v5
|
|
24
24
|
with:
|
|
25
|
-
python-version: 3.
|
|
25
|
+
python-version: 3.12
|
|
26
26
|
|
|
27
27
|
- name: Install MPF
|
|
28
28
|
run: |
|
|
29
|
+
sudo apt-get install -y libjpeg-dev
|
|
29
30
|
pip install --upgrade pip setuptools wheel build
|
|
30
31
|
pip install -e .
|
|
31
32
|
|
|
@@ -35,7 +36,7 @@ jobs:
|
|
|
35
36
|
- name: Build wheel
|
|
36
37
|
run: python -m build
|
|
37
38
|
|
|
38
|
-
- uses: actions/upload-artifact@
|
|
39
|
+
- uses: actions/upload-artifact@v4
|
|
39
40
|
with:
|
|
40
41
|
path: ./dist/*.*
|
|
41
42
|
|
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
name: Lint all Python files
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- dev
|
|
7
|
+
- 0.80.x
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- dev
|
|
11
|
+
- 0.80.x
|
|
12
|
+
|
|
4
13
|
|
|
5
14
|
jobs:
|
|
6
15
|
prospector:
|
|
7
16
|
name: Run Prospector on all Python files
|
|
8
17
|
runs-on: ubuntu-latest
|
|
9
|
-
|
|
18
|
+
|
|
10
19
|
steps:
|
|
11
20
|
- name: Checkout repository
|
|
12
21
|
uses: actions/checkout@v2
|
|
@@ -14,10 +23,11 @@ jobs:
|
|
|
14
23
|
- name: Setup python
|
|
15
24
|
uses: actions/setup-python@v4
|
|
16
25
|
with:
|
|
17
|
-
python-version: 3.
|
|
26
|
+
python-version: 3.12
|
|
18
27
|
|
|
19
28
|
- name: Install MPF
|
|
20
29
|
run: |
|
|
30
|
+
sudo apt-get install -y libjpeg-dev
|
|
21
31
|
pip install --upgrade pip setuptools wheel build prospector
|
|
22
32
|
pip install -e .
|
|
23
33
|
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
name: Test on all platforms
|
|
2
2
|
|
|
3
|
-
on:
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- dev
|
|
7
|
+
- 0.80.x
|
|
8
|
+
pull_request:
|
|
9
|
+
branches:
|
|
10
|
+
- dev
|
|
11
|
+
- 0.80.x
|
|
4
12
|
|
|
5
13
|
jobs:
|
|
6
14
|
tests:
|
|
@@ -18,6 +26,8 @@ jobs:
|
|
|
18
26
|
python-version: "3.10"
|
|
19
27
|
- os: windows-latest
|
|
20
28
|
python-version: 3.11
|
|
29
|
+
- os: windows-latest
|
|
30
|
+
python-version: 3.12
|
|
21
31
|
- os: ubuntu-latest
|
|
22
32
|
python-version: 3.8
|
|
23
33
|
- os: ubuntu-latest
|
|
@@ -26,6 +36,8 @@ jobs:
|
|
|
26
36
|
python-version: "3.10"
|
|
27
37
|
- os: ubuntu-latest
|
|
28
38
|
python-version: 3.11
|
|
39
|
+
- os: ubuntu-latest
|
|
40
|
+
python-version: 3.12
|
|
29
41
|
- os: macos-latest
|
|
30
42
|
python-version: 3.8
|
|
31
43
|
- os: macos-latest
|
|
@@ -34,6 +46,8 @@ jobs:
|
|
|
34
46
|
python-version: "3.10"
|
|
35
47
|
- os: macos-latest
|
|
36
48
|
python-version: 3.11
|
|
49
|
+
- os: macos-latest
|
|
50
|
+
python-version: 3.12
|
|
37
51
|
|
|
38
52
|
steps:
|
|
39
53
|
- name: Checkout MPF
|
|
@@ -44,6 +58,10 @@ jobs:
|
|
|
44
58
|
with:
|
|
45
59
|
python-version: ${{ matrix.python-version }}
|
|
46
60
|
|
|
61
|
+
- name: Install Linux dependencies
|
|
62
|
+
if: matrix.os == 'ubuntu-latest'
|
|
63
|
+
run: sudo apt-get install -y libjpeg-dev
|
|
64
|
+
|
|
47
65
|
- name: Install MPF
|
|
48
66
|
run: |
|
|
49
67
|
pip install --upgrade pip setuptools wheel build coveralls
|
|
@@ -23,6 +23,7 @@ pylint:
|
|
|
23
23
|
disable:
|
|
24
24
|
- pointless-string-statement # pointless statement, which is how our event docstrings are seen
|
|
25
25
|
- too-few-public-methods
|
|
26
|
+
- too-many-positional-arguments # many methods have many positional args
|
|
26
27
|
- unsubscriptable-object # broken on python 3.9
|
|
27
28
|
# The following linter rules are disabled to make a refactor managable in chunks
|
|
28
29
|
- consider-using-f-string # temporarily disabling due to the 900+ instances to be replaced
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: mpf
|
|
3
|
-
Version: 0.57.
|
|
3
|
+
Version: 0.57.4
|
|
4
4
|
Summary: The Mission Pinball Framework (MPF)
|
|
5
5
|
Author-email: The Mission Pinball Framework Team <brian@missionpinball.org>
|
|
6
6
|
License: MIT
|
|
@@ -14,13 +14,14 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
18
|
Classifier: Natural Language :: English
|
|
18
19
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
19
20
|
Classifier: Operating System :: Microsoft :: Windows
|
|
20
21
|
Classifier: Operating System :: POSIX :: Linux
|
|
21
22
|
Classifier: Topic :: Artistic Software
|
|
22
23
|
Classifier: Topic :: Games/Entertainment :: Arcade
|
|
23
|
-
Requires-Python:
|
|
24
|
+
Requires-Python: <3.13,>=3.8
|
|
24
25
|
Description-Content-Type: text/markdown
|
|
25
26
|
License-File: LICENSE.md
|
|
26
27
|
License-File: AUTHORS.md
|
|
@@ -31,6 +32,7 @@ Requires-Dist: psutil==5.9.8
|
|
|
31
32
|
Requires-Dist: pyserial==3.5
|
|
32
33
|
Requires-Dist: pyserial-asyncio==0.6
|
|
33
34
|
Requires-Dist: ruamel.yaml==0.18.6
|
|
35
|
+
Requires-Dist: setuptools~=72.2.0
|
|
34
36
|
Requires-Dist: sortedcontainers==2.4.0
|
|
35
37
|
Requires-Dist: terminaltables==3.1.10
|
|
36
38
|
Requires-Dist: Pillow==9.5.0
|
|
@@ -44,6 +46,8 @@ Provides-Extra: osc
|
|
|
44
46
|
Requires-Dist: python-osc==1.8.3; extra == "osc"
|
|
45
47
|
Provides-Extra: pin2dmd
|
|
46
48
|
Requires-Dist: pyusb==1.1.0; extra == "pin2dmd"
|
|
49
|
+
Provides-Extra: zedmd
|
|
50
|
+
Requires-Dist: numpy>=1.7.0; extra == "zedmd"
|
|
47
51
|
Provides-Extra: rpi
|
|
48
52
|
Requires-Dist: apigpio-mpf==0.0.4; extra == "rpi"
|
|
49
53
|
Provides-Extra: uvloop
|
|
@@ -66,11 +70,13 @@ Requires-Dist: grpcio_tools==1.34.0; extra == "all"
|
|
|
66
70
|
Requires-Dist: grpcio==1.34.0; extra == "all"
|
|
67
71
|
Requires-Dist: protobuf==3.14.0; extra == "all"
|
|
68
72
|
Requires-Dist: uvloop==0.19.0; extra == "all"
|
|
73
|
+
Requires-Dist: numpy>=1.7.0; extra == "all"
|
|
74
|
+
Dynamic: license-file
|
|
69
75
|
|
|
70
76
|
Mission Pinball Framework (MPF)
|
|
71
77
|
===============================
|
|
72
78
|
|
|
73
|
-
<img align="center" height="146" src="https://missionpinball.org/images/mpf-logo-full.png"/>
|
|
79
|
+
<img align="center" height="146" src="https://missionpinball.org/latest/images/mpf-logo-full.png"/>
|
|
74
80
|
|
|
75
81
|
<em>...Let's build a pinball machine!</em>
|
|
76
82
|
|
|
@@ -94,7 +100,7 @@ Documentation
|
|
|
94
100
|
Support
|
|
95
101
|
-------
|
|
96
102
|
|
|
97
|
-
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/community/).
|
|
103
|
+
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/latest/community/).
|
|
98
104
|
|
|
99
105
|
Individual pinball hardware companies may provide additional support for users of their hardware, often via their own Slack, Discord, or other chat groups. If you get stuck, you can ask for help in the MPF-users group, or you reach out to your hardware provider.
|
|
100
106
|
|
|
@@ -103,15 +109,15 @@ Maintenance, Pull Requests, & Bug Fixes
|
|
|
103
109
|
|
|
104
110
|
As a community project, we welcome pull requests and bug fixes. However, we do not have the resources to provide support for MPF. If you are interested in becoming a maintainer, please contact us at brian@missionpinball.org.
|
|
105
111
|
|
|
106
|
-
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/community/).
|
|
112
|
+
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/latest/community/).
|
|
107
113
|
|
|
108
114
|
Contributing
|
|
109
115
|
------------
|
|
110
116
|
|
|
111
117
|
Individual pinball hardware makers are responsible for their own platform interface maintenance and contributions.
|
|
112
118
|
|
|
113
|
-
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/about/contributing_to_mpf/)
|
|
114
|
-
and [Contributing Documentation](https://missionpinball.org/about/help_docs/) pages.
|
|
119
|
+
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/latest/about/contributing_to_mpf/)
|
|
120
|
+
and [Contributing Documentation](https://missionpinball.org/latest/about/help_docs/) pages.
|
|
115
121
|
|
|
116
122
|
License
|
|
117
123
|
-------
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Mission Pinball Framework (MPF)
|
|
2
2
|
===============================
|
|
3
3
|
|
|
4
|
-
<img align="center" height="146" src="https://missionpinball.org/images/mpf-logo-full.png"/>
|
|
4
|
+
<img align="center" height="146" src="https://missionpinball.org/latest/images/mpf-logo-full.png"/>
|
|
5
5
|
|
|
6
6
|
<em>...Let's build a pinball machine!</em>
|
|
7
7
|
|
|
@@ -25,7 +25,7 @@ Documentation
|
|
|
25
25
|
Support
|
|
26
26
|
-------
|
|
27
27
|
|
|
28
|
-
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/community/).
|
|
28
|
+
MPF is an open source community project which has no official support. Some MPF users participate in the MPF-Users Google group or GitHub Discussion. Links [here](https://missionpinball.org/latest/community/).
|
|
29
29
|
|
|
30
30
|
Individual pinball hardware companies may provide additional support for users of their hardware, often via their own Slack, Discord, or other chat groups. If you get stuck, you can ask for help in the MPF-users group, or you reach out to your hardware provider.
|
|
31
31
|
|
|
@@ -34,15 +34,15 @@ Maintenance, Pull Requests, & Bug Fixes
|
|
|
34
34
|
|
|
35
35
|
As a community project, we welcome pull requests and bug fixes. However, we do not have the resources to provide support for MPF. If you are interested in becoming a maintainer, please contact us at brian@missionpinball.org.
|
|
36
36
|
|
|
37
|
-
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/community/).
|
|
37
|
+
Bugs or other issues related to MPF itself can be posted to the [MPF Discussions page on GitHub](https://missionpinball.org/latest/community/).
|
|
38
38
|
|
|
39
39
|
Contributing
|
|
40
40
|
------------
|
|
41
41
|
|
|
42
42
|
Individual pinball hardware makers are responsible for their own platform interface maintenance and contributions.
|
|
43
43
|
|
|
44
|
-
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/about/contributing_to_mpf/)
|
|
45
|
-
and [Contributing Documentation](https://missionpinball.org/about/help_docs/) pages.
|
|
44
|
+
MPF is a passion project created and maintained by volunteers. If you're a Python coder, documentation writer, or pinball maker, feel free to make a change and submit a pull request. For more information about contributing see the [Contributing Code](https://missionpinball.org/latest/about/contributing_to_mpf/)
|
|
45
|
+
and [Contributing Documentation](https://missionpinball.org/latest/about/help_docs/) pages.
|
|
46
46
|
|
|
47
47
|
License
|
|
48
48
|
-------
|
|
@@ -10,7 +10,7 @@ PyPI.
|
|
|
10
10
|
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
|
-
__version__ = '0.57.
|
|
13
|
+
__version__ = '0.57.4' # Also consider whether MPF-MC pyproject.toml should be updated
|
|
14
14
|
'''The full version of MPF.'''
|
|
15
15
|
|
|
16
16
|
__short_version__ = '0.57'
|
|
@@ -114,7 +114,7 @@ class Show:
|
|
|
114
114
|
|
|
115
115
|
if step_num < total_steps_num - 1 and 'time' in data[step_num + 1]: # pragma: no cover
|
|
116
116
|
self._show_validation_error("Found invalid 'time' entry in step after {} which contains a duration. "
|
|
117
|
-
"Remove either of them!".format(step_num),
|
|
117
|
+
"Remove either of them!".format(step_num), 8)
|
|
118
118
|
return Util.string_to_secs(step['duration'])
|
|
119
119
|
|
|
120
120
|
def load(self, data: Optional[Dict]):
|
|
@@ -23,48 +23,44 @@ class RandomEventPlayer(ConfigPlayer):
|
|
|
23
23
|
"""Return true if scope is not player."""
|
|
24
24
|
return settings['scope'] != "player"
|
|
25
25
|
|
|
26
|
-
def
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
settings['events'], self.machine, template_type="event")
|
|
32
|
-
r'''player_var: random_(x).(y)
|
|
26
|
+
def _build_randomizer(self, settings):
|
|
27
|
+
randomizer = Randomizer(settings['events'], self.machine, template_type="event")
|
|
28
|
+
|
|
29
|
+
if settings['force_all']:
|
|
30
|
+
randomizer.force_all = True
|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
or do with this, rather this is just FYI on what the player
|
|
37
|
-
variables that start with "random\_" are.
|
|
38
|
-
'''
|
|
32
|
+
if not settings['force_different']:
|
|
33
|
+
randomizer.force_different = False
|
|
39
34
|
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
if settings['disable_random']:
|
|
36
|
+
randomizer.disable_random = True
|
|
42
37
|
|
|
43
|
-
|
|
44
|
-
|
|
38
|
+
randomizer.fallback_value = settings.get('fallback_event')
|
|
39
|
+
return randomizer
|
|
45
40
|
|
|
46
|
-
|
|
47
|
-
|
|
41
|
+
def _get_randomizer(self, settings, context, calling_context):
|
|
42
|
+
key = "random_{}.{}".format(context, calling_context)
|
|
43
|
+
if settings['scope'] == "player":
|
|
44
|
+
if not self.machine.game.player[key]:
|
|
45
|
+
self.machine.game.player[key] = self._build_randomizer(settings)
|
|
48
46
|
|
|
49
|
-
|
|
47
|
+
'''player_var: random_(x).(y)
|
|
50
48
|
|
|
49
|
+
desc: Holds references to Randomizer settings that need to be
|
|
50
|
+
tracked on a player basis. There is nothing you need to know
|
|
51
|
+
or do with this, rather this is just FYI on what the player
|
|
52
|
+
variables that start with "random_" are.
|
|
53
|
+
'''
|
|
51
54
|
return self.machine.game.player[key]
|
|
52
55
|
|
|
53
56
|
if key not in self._machine_wide_dict:
|
|
54
|
-
self._machine_wide_dict[key] =
|
|
55
|
-
settings['events'], self.machine, template_type="event")
|
|
56
|
-
|
|
57
|
-
if settings['force_all']:
|
|
58
|
-
self._machine_wide_dict[key].force_all = True
|
|
59
|
-
|
|
60
|
-
if not settings['force_different']:
|
|
61
|
-
self._machine_wide_dict[key].force_different = False
|
|
62
|
-
|
|
63
|
-
if settings['disable_random']:
|
|
64
|
-
self._machine_wide_dict[key].disable_random = True
|
|
57
|
+
self._machine_wide_dict[key] = self._build_randomizer(settings)
|
|
65
58
|
|
|
66
|
-
|
|
59
|
+
'''machine_var: random_(x).(y)
|
|
67
60
|
|
|
61
|
+
desc: Holds references to Randomizer settings that need to be
|
|
62
|
+
tracked on a machine basis.
|
|
63
|
+
'''
|
|
68
64
|
return self._machine_wide_dict[key]
|
|
69
65
|
|
|
70
66
|
def play(self, settings, context, calling_context, priority=0, **kwargs):
|
|
@@ -42,7 +42,7 @@ class VariablePlayer(ConfigPlayer):
|
|
|
42
42
|
|
|
43
43
|
if s['action'] not in ("set", "set_machine"):
|
|
44
44
|
self.raise_config_error('Cannot use add on subscriptions. '
|
|
45
|
-
'Use action set or set_machine.',
|
|
45
|
+
'Use action set or set_machine.', 9, context=context)
|
|
46
46
|
|
|
47
47
|
args = {"value": value}
|
|
48
48
|
|
|
@@ -449,7 +449,7 @@ diverters:
|
|
|
449
449
|
__type__: device
|
|
450
450
|
activate_events: event_handler|event_handler:ms|None
|
|
451
451
|
activation_coil: single|machine(coils)|None
|
|
452
|
-
activation_time: single|
|
|
452
|
+
activation_time: single|template_ms|None
|
|
453
453
|
activation_switches: list|machine(switches)|None
|
|
454
454
|
allow_multiple_concurrent_ejects_to_same_side: single|bool|true
|
|
455
455
|
cool_down_time: single|ms|0
|
|
@@ -622,6 +622,7 @@ fast:
|
|
|
622
622
|
__type__: config
|
|
623
623
|
net: single|subconfig(fast_net)|None
|
|
624
624
|
exp: single|subconfig(fast_exp)|None
|
|
625
|
+
exp_int: single|subconfig(fast_exp)|None
|
|
625
626
|
aud: single|subconfig(fast_aud)|None
|
|
626
627
|
seg: single|subconfig(fast_seg)|None
|
|
627
628
|
dmd: single|subconfig(fast_dmd)|None
|
|
@@ -643,6 +644,7 @@ fast_net:
|
|
|
643
644
|
default_quick_debounce_close: single|ms|2
|
|
644
645
|
default_normal_debounce_open: single|ms|4
|
|
645
646
|
default_normal_debounce_close: single|ms|4
|
|
647
|
+
mute_unconfigured_switches: single|bool|false
|
|
646
648
|
gi_hz: single|int|30
|
|
647
649
|
lamp_hz: single|int|30
|
|
648
650
|
fast_io_loop:
|
|
@@ -748,6 +750,9 @@ fast_servos:
|
|
|
748
750
|
min_us: single|int|1000
|
|
749
751
|
home_us: single|int|1500
|
|
750
752
|
max_runtime: single|ms|2000 # 65535 max
|
|
753
|
+
fast_stepper_settings:
|
|
754
|
+
__valid_in__: machine # todo add to validator
|
|
755
|
+
default_speed: single|int|600
|
|
751
756
|
file_shows:
|
|
752
757
|
__valid_in__: machine, mode # todo add to validator
|
|
753
758
|
__type__: config_dict
|
|
@@ -808,6 +813,7 @@ hardware:
|
|
|
808
813
|
accelerometers: list|str|default
|
|
809
814
|
i2c: list|str|default
|
|
810
815
|
stepper_controllers: list|str|default
|
|
816
|
+
shaker_controllers: list|str|default
|
|
811
817
|
hardware_sound_system: list|str|default
|
|
812
818
|
hardware_sound_systems:
|
|
813
819
|
__valid_in__: machine
|
|
@@ -1018,6 +1024,7 @@ counter_control_events: # subconfig for mode counters
|
|
|
1018
1024
|
action: single|enum(add,subtract,jump)|
|
|
1019
1025
|
event: single|event_handler|
|
|
1020
1026
|
value: single|template_int|None
|
|
1027
|
+
priority: single|int|0
|
|
1021
1028
|
sequences:
|
|
1022
1029
|
__valid_in__: machine, mode
|
|
1023
1030
|
__type__: device
|
|
@@ -1117,7 +1124,7 @@ mpf:
|
|
|
1117
1124
|
plugins: ignore
|
|
1118
1125
|
platforms: ignore
|
|
1119
1126
|
paths: ignore
|
|
1120
|
-
report_crashes: single|enum(ask,never,always)|
|
|
1127
|
+
report_crashes: single|enum(ask,never,always)|never
|
|
1121
1128
|
rgbw_white_behavior: single|enum(white_only,min_rgb,duck_rgb)|duck_rgb
|
|
1122
1129
|
mpf-mc:
|
|
1123
1130
|
__valid_in__: machine # todo add to validator
|
|
@@ -1240,7 +1247,7 @@ pin2dmd:
|
|
|
1240
1247
|
debug: single|bool|false
|
|
1241
1248
|
console_log: single|enum(none,basic,full)|none
|
|
1242
1249
|
file_log: single|enum(none,basic,full)|basic
|
|
1243
|
-
resolution: single|enum(128x32,192x64)|128x32
|
|
1250
|
+
resolution: single|enum(128x32,192x64,256x64)|128x32
|
|
1244
1251
|
panel: single|enum(rgb,rbg)|rgb
|
|
1245
1252
|
pkone:
|
|
1246
1253
|
__valid_in__: machine
|
|
@@ -1941,23 +1948,40 @@ spinners:
|
|
|
1941
1948
|
steppers:
|
|
1942
1949
|
__valid_in__: machine
|
|
1943
1950
|
__type__: device
|
|
1944
|
-
named_positions: dict|float:str|None
|
|
1945
1951
|
home_events: event_handler|event_handler:ms|None
|
|
1952
|
+
home_on_startup: single|bool|true
|
|
1946
1953
|
homing_mode: single|enum(hardware,switch)|hardware
|
|
1947
1954
|
homing_switch: single|machine(switches)|None
|
|
1948
1955
|
homing_direction: single|enum(clockwise,counterclockwise)|clockwise
|
|
1956
|
+
homing_speed: single|int|None
|
|
1949
1957
|
pos_min: single|int|0
|
|
1950
1958
|
pos_max: single|int|1000
|
|
1951
1959
|
ball_search_min: single|int|0
|
|
1952
1960
|
ball_search_max: single|int|1
|
|
1953
1961
|
ball_search_wait: single|ms|5s
|
|
1954
1962
|
include_in_ball_search: single|bool|true
|
|
1955
|
-
relative_positions: dict|float:
|
|
1963
|
+
relative_positions: dict|float:subconfig(stepper_position_settings)|None
|
|
1956
1964
|
reset_position: single|int|0
|
|
1957
1965
|
reset_events: event_handler|event_handler:ms|machine_reset_phase_3, ball_starting, ball_will_end, service_mode_entered
|
|
1966
|
+
named_positions: dict|float:subconfig(stepper_position_settings)|None
|
|
1967
|
+
number: single|str|
|
|
1968
|
+
platform: single|str|None
|
|
1969
|
+
platform_settings: single|dict|None
|
|
1970
|
+
stepper_position_settings:
|
|
1971
|
+
event: single|str|
|
|
1972
|
+
speed: single|int|None
|
|
1973
|
+
shakers:
|
|
1974
|
+
__valid_in__: machine
|
|
1975
|
+
__type__: device
|
|
1976
|
+
default_power: single|float|0.0
|
|
1958
1977
|
number: single|str|
|
|
1978
|
+
control_events: dict|str:subconfig(shaker_pulse_settings)|None
|
|
1959
1979
|
platform: single|str|None
|
|
1960
1980
|
platform_settings: single|dict|None
|
|
1981
|
+
shaker_pulse_settings:
|
|
1982
|
+
action: single|enum(pulse,stop)|pulse
|
|
1983
|
+
power: single|float|None
|
|
1984
|
+
duration: single|template_secs|None
|
|
1961
1985
|
spike_stepper_settings:
|
|
1962
1986
|
homing_speed: single|int|10
|
|
1963
1987
|
speed: single|int|20
|
|
@@ -2390,3 +2414,12 @@ window:
|
|
|
2390
2414
|
top: single|int|None
|
|
2391
2415
|
no_window: single|bool|false
|
|
2392
2416
|
effects: ignore
|
|
2417
|
+
|
|
2418
|
+
zedmd:
|
|
2419
|
+
__valid_in__: machine
|
|
2420
|
+
__type__: config_dict
|
|
2421
|
+
console_log: single|enum(none,basic,full)|none
|
|
2422
|
+
file_log: single|enum(none,basic,full)|basic
|
|
2423
|
+
debug: single|bool|false
|
|
2424
|
+
width: single|int|32
|
|
2425
|
+
height: single|int|32
|
|
@@ -101,10 +101,10 @@ class BcpInterface(MpfController):
|
|
|
101
101
|
if not self.machine.bcp.transport.get_transports_for_handler(event):
|
|
102
102
|
self.machine.events.remove_handler_by_event(event=event, handler=self.bcp_trigger)
|
|
103
103
|
|
|
104
|
-
async def _bcp_receive_set_machine_var(self, client, name, value):
|
|
104
|
+
async def _bcp_receive_set_machine_var(self, client, name, value, persist=False):
|
|
105
105
|
"""Set machine var via bcp."""
|
|
106
106
|
del client
|
|
107
|
-
self.machine.variables.set_machine_var(name, value)
|
|
107
|
+
self.machine.variables.set_machine_var(name, value, persist)
|
|
108
108
|
# document variables injected by MC
|
|
109
109
|
'''machine_var: mc_version
|
|
110
110
|
|
|
@@ -458,8 +458,8 @@ class BcpInterface(MpfController):
|
|
|
458
458
|
self.machine.register_monitor('machine_vars', self._machine_var_change)
|
|
459
459
|
|
|
460
460
|
# Send initial machine variable values
|
|
461
|
-
|
|
462
|
-
|
|
461
|
+
self._send_machine_vars(client)
|
|
462
|
+
self._send_machine_settings(client)
|
|
463
463
|
|
|
464
464
|
# Establish handler for machine variable changes
|
|
465
465
|
self.machine.bcp.transport.add_handler_to_transport("_machine_vars", client)
|
|
@@ -471,10 +471,14 @@ class BcpInterface(MpfController):
|
|
|
471
471
|
if not self.machine.bcp.transport.get_transports_for_handler("_machine_vars"):
|
|
472
472
|
self.machine.machine_var_monitor = False
|
|
473
473
|
|
|
474
|
-
def
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
474
|
+
def _send_machine_settings(self, client, setting_type=None):
|
|
475
|
+
settings = [setting_type] if setting_type else ["standard", "feature", "game", "coin", "hw_volume"]
|
|
476
|
+
for s in settings:
|
|
477
|
+
self.machine.bcp.transport.send_to_client(
|
|
478
|
+
client, bcp_command='settings',
|
|
479
|
+
settings=Util.convert_to_simply_type(self.machine.settings.get_settings(s)))
|
|
480
|
+
|
|
481
|
+
def _send_machine_vars(self, client):
|
|
478
482
|
for var_name, settings in self.machine.variables.machine_vars.items():
|
|
479
483
|
self.machine.bcp.transport.send_to_client(client, bcp_command='machine_variable',
|
|
480
484
|
name=var_name,
|
|
@@ -588,7 +588,7 @@ class ConfigValidator:
|
|
|
588
588
|
try:
|
|
589
589
|
return Util.string_to_secs(item)
|
|
590
590
|
except ValueError:
|
|
591
|
-
raise self.validation_error(item, validation_failure_info, "Cannot convert value to secs.",
|
|
591
|
+
raise self.validation_error(item, validation_failure_info, "Cannot convert value to secs.", 10)
|
|
592
592
|
|
|
593
593
|
return None
|
|
594
594
|
|
|
@@ -176,7 +176,7 @@ def analyze_traceback(tb, inspection_level=None, limit=None):
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
def _send_crash_report(report, reporting_url):
|
|
179
|
-
r = requests.post(reporting_url, json=report)
|
|
179
|
+
r = requests.post(reporting_url, json=report, timeout=60)
|
|
180
180
|
if r.status_code != 200:
|
|
181
181
|
print("Failed to send report. Got response code {}. Error: {}", r.status_code, r.content)
|
|
182
182
|
else:
|
|
@@ -301,8 +301,7 @@ class DeviceCollection(dict):
|
|
|
301
301
|
self.machine.log.warning("Iterating device collections directly is deprecated and will be removed. "
|
|
302
302
|
"Access by value(): device_collections[%s] -> device_collections['%s'].values()",
|
|
303
303
|
self.name, self.name)
|
|
304
|
-
|
|
305
|
-
yield item
|
|
304
|
+
yield from self.values()
|
|
306
305
|
|
|
307
306
|
def items_tagged(self, tag) -> List["Device"]:
|
|
308
307
|
"""Return of list of device objects which have a certain tag.
|
|
@@ -160,12 +160,13 @@ class LogMixin:
|
|
|
160
160
|
if error_no:
|
|
161
161
|
error_slug = "Log-{}-{}".format(self.log.name if self.log else "", error_no)
|
|
162
162
|
error_url = log_url.format(error_slug)
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
|
|
164
|
+
if context:
|
|
165
|
+
return "{} Context: {} Log Code: {} ({})".format(msg, context, error_slug, error_url)
|
|
166
|
+
return "{} Log Code: {} ({})".format(msg, error_slug, error_url)
|
|
167
|
+
|
|
165
168
|
if context:
|
|
166
169
|
return "{} Context: {} ".format(msg, context)
|
|
167
|
-
if error_no:
|
|
168
|
-
return "{} Log Code: {} ({})".format(msg, error_slug, error_url)
|
|
169
170
|
|
|
170
171
|
return msg
|
|
171
172
|
|
|
@@ -61,6 +61,7 @@ if MYPY: # pragma: no cover
|
|
|
61
61
|
from mpf.devices.digital_output import DigitalOutput # pylint: disable-msg=cyclic-import,unused-import
|
|
62
62
|
from logging import Logger # noqa
|
|
63
63
|
from mpf.devices.autofire import AutofireCoil # pylint: disable-msg=cyclic-import,unused-import
|
|
64
|
+
from mpf.devices.shaker import Shaker # pylint: disable-msg=cyclic-import,unused-import
|
|
64
65
|
from mpf.devices.stepper import Stepper # pylint: disable-msg=cyclic-import,unused-import
|
|
65
66
|
from mpf.config_players.show_player import ShowPlayer # pylint: disable-msg=cyclic-import,unused-import
|
|
66
67
|
from mpf.devices.dmd import Dmd # pylint: disable-msg=cyclic-import,unused-import
|
|
@@ -167,6 +168,7 @@ class MachineController(LogMixin):
|
|
|
167
168
|
self.autofire_coils = {} # type: Dict[str, AutofireCoil]
|
|
168
169
|
self.motors = {} # type: Dict[str, Motor]
|
|
169
170
|
self.digital_outputs = {} # type: Dict[str, DigitalOutput]
|
|
171
|
+
self.shakers = {} # type: Dict[str, Shaker]
|
|
170
172
|
self.shows = {} # type: Dict[str, Show]
|
|
171
173
|
self.shots = {} # type: Dict[str, Shot]
|
|
172
174
|
self.shot_groups = {} # type: Dict[str, ShotGroup]
|
|
@@ -93,6 +93,11 @@ class MachineVariables(LogMixin):
|
|
|
93
93
|
|
|
94
94
|
desc: Architecture of your machine (32bit/64bit).
|
|
95
95
|
'''
|
|
96
|
+
self.set_machine_var(name="log_file_path", value=self.machine.options.get('full_logfile_path', ""))
|
|
97
|
+
'''machine_var: log_file_path
|
|
98
|
+
|
|
99
|
+
desc: Absolute path of the file log for the current running game.
|
|
100
|
+
'''
|
|
96
101
|
|
|
97
102
|
def __getitem__(self, key):
|
|
98
103
|
"""Allow the user to access a machine variable with []. This would be used is machine.variables["var_name"]."""
|
|
@@ -177,6 +182,9 @@ class MachineVariables(LogMixin):
|
|
|
177
182
|
----
|
|
178
183
|
name: String name of the variable you're setting the value for.
|
|
179
184
|
value: The value you're setting. This can be any Type.
|
|
185
|
+
persist: Whether to persist this machine var to disk. Only
|
|
186
|
+
applies to new/unconfigured vars; vars defined in the
|
|
187
|
+
machine_vars config will use their config setting.
|
|
180
188
|
"""
|
|
181
189
|
if name not in self.machine_vars:
|
|
182
190
|
self.configure_machine_var(name=name, persist=persist)
|
|
@@ -22,13 +22,13 @@ class ModeDevice(Device, metaclass=abc.ABCMeta):
|
|
|
22
22
|
self.mode = None # type: Optional[Mode]
|
|
23
23
|
|
|
24
24
|
async def device_added_to_mode(self, mode: Mode) -> None:
|
|
25
|
-
"""Add device to a
|
|
25
|
+
"""Add device to a loading mode.
|
|
26
26
|
|
|
27
27
|
Args:
|
|
28
28
|
----
|
|
29
29
|
mode: Mode which loaded the device
|
|
30
30
|
"""
|
|
31
|
-
|
|
31
|
+
self.mode = mode
|
|
32
32
|
await self._initialize()
|
|
33
33
|
|
|
34
34
|
def device_loaded_in_mode(self, mode: Mode, player: Player) -> None:
|
|
@@ -42,7 +42,7 @@ class ModeDevice(Device, metaclass=abc.ABCMeta):
|
|
|
42
42
|
player: Current active player
|
|
43
43
|
"""
|
|
44
44
|
del player
|
|
45
|
-
|
|
45
|
+
del mode
|
|
46
46
|
|
|
47
47
|
@property
|
|
48
48
|
def can_exist_outside_of_game(self) -> bool:
|
|
@@ -88,4 +88,3 @@ class ModeDevice(Device, metaclass=abc.ABCMeta):
|
|
|
88
88
|
mode: Mode which stopped
|
|
89
89
|
"""
|
|
90
90
|
del mode
|
|
91
|
-
self.mode = None
|