mpf 0.57.5.dev3__tar.gz → 0.80.0__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.5.dev3 → mpf-0.80.0}/.github/workflows/run_tests.yml +2 -12
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.gitignore +2 -1
- {mpf-0.57.5.dev3 → mpf-0.80.0}/PKG-INFO +4 -6
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/_version.py +5 -2
- mpf-0.80.0/mpf/commands/both.py +87 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/game.py +9 -16
- mpf-0.80.0/mpf/commands/init.py +70 -0
- mpf-0.80.0/mpf/commands/templates/attract.yaml +7 -0
- mpf-0.80.0/mpf/commands/templates/base.yaml +9 -0
- mpf-0.80.0/mpf/commands/templates/config.yaml +12 -0
- mpf-0.80.0/mpf/config_players/bus_player.py +36 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/plugin_player.py +17 -1
- mpf-0.80.0/mpf/config_players/slide_player.py +36 -0
- mpf-0.80.0/mpf/config_players/sound_player.py +39 -0
- mpf-0.80.0/mpf/config_players/widget_player.py +34 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_spec.yaml +33 -543
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp_socket_client.py +4 -2
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/config_processor.py +10 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/config_validator.py +14 -1
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/machine.py +2 -2
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/bonus/code/bonus.py +22 -11
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/carousel/code/carousel.py +20 -15
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/code/high_score.py +48 -23
- mpf-0.80.0/mpf/modes/high_score/config/high_score.yaml +57 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service/code/service.py +200 -250
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service/config/service.yaml +5 -9
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/tilt/config/tilt.yaml +15 -23
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/mpfconfig.yaml +4 -21
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pin2dmd.py +8 -8
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus/modes/bonus/config/bonus.yaml +4 -4
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_additional_events/modes/bonus/config/bonus.yaml +2 -2
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/modes/bonus/config/bonus.yaml +2 -2
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_no_keep_multiplier/modes/bonus/config/bonus.yaml +2 -2
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/carousel/modes/conditional_carousel/config/conditional_carousel.yaml +1 -1
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/carousel/modes/second_carousel/config/second_carousel.yaml +1 -1
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/service_mode/config/config.yaml +17 -17
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Bonus.py +115 -114
- mpf-0.80.0/mpf/tests/test_CarouselMode.py +191 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_HighScoreMode.py +16 -16
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_HighScoreModeWithVars.py +6 -8
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ServiceMode.py +22 -211
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf.egg-info/PKG-INFO +4 -6
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf.egg-info/SOURCES.txt +9 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf.egg-info/requires.txt +2 -2
- mpf-0.80.0/mpf.spec +54 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/pyproject.toml +3 -5
- mpf-0.57.5.dev3/mpf/commands/both.py +0 -28
- mpf-0.57.5.dev3/mpf/modes/high_score/config/high_score.yaml +0 -138
- mpf-0.57.5.dev3/mpf/tests/test_CarouselMode.py +0 -242
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.bandit +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.coveragerc +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.github/dependabot.yml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.github/workflows/build_wheels.yml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.github/workflows/prospector.yml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/.prospector.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/AUTHORS.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/CONTRIBUTING.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/LICENSE.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/Makefile +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/README.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/RELEASE.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/Makefile +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-114x114.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-120x120.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-144x144.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-152x152.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-57x57.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-60x60.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-72x72.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/apple-touch-icon-76x76.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/favicon-128.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/favicon-16x16.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/favicon-196x196.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/favicon-32x32.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/favicon-96x96.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/favicon.ico +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/mstile-144x144.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/mstile-150x150.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/mstile-310x150.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/mstile-310x310.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/icons/mstile-70x70.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/mpf-logo-200.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/mpf-logo-tiny.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/images/mpf-logo-tiny@2x.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_static/mpf.css +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/config_players.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/config_players_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/devices.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/devices_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/machine.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/machine_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/misc.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/misc_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/modes.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/modes_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/platforms.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/platforms_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/self.machine.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/tests.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/_templates/tests_overview.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/ball_end.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/ball_start.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/device.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/error.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/goodbye.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/hello.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/machine_variable.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/mode_start.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/mode_stop.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/monitor_start.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/monitor_stop.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/player_added.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/player_turn_start.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/player_variable.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/register_trigger.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/remove_trigger.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/reset.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/reset_complete.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/switch.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/bcp/trigger.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/code/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/code/machine_code.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/code/mode_code.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/conf.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/Send variables via self.machine.events.post.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/dev_environment.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/event_annotations.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/hardware.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/mc.widget_player.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/dev/plugins.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/functions/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/functions/machine_variables.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/functions/player_variables.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/genindex.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/images/custom_mode_code.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/images/scriptlet.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/images/test_classes.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/make.bat +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/overview/boot_process.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/overview/files.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/overview/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/overview/installation.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/overview/yaml.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/requirements.txt +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/fuzz_testing.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/index.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/running_mpf_tests.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/tutorial/1.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/tutorial/2.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/writing_machine_tests.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/docs/testing/writing_mpf_tests.rst +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/get_version.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/__main__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/assets/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/assets/show.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/events/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/shows/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/shows/shows/minimal_light_show.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/shows/shows/minimal_light_show_token.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/shows/shows/multi_step_tags.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/shows/shows/single_step_tag.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/machine_files/switch_hits/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/test_benchmark_events.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/test_benchmark_light_shows.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/benchmarks/test_benchmark_switch_hits.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/build.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/core.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/create_config.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/diagnosis.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/hardware.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/logging_formatters.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/service.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/test.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/commands/wire.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/bcp_plugin_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/blinkenlight_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/block_event_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/coil_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/device_config_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/event_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/flasher_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/flat_config_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/hardware_sound_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/light_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/queue_event_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/queue_relay_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/random_event_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/score_queue_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/segment_display_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/show_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/config_players/variable_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/assets.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/async_mode.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/ball_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/ball_search.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp_client.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp_pickle_client.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp_server.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/bcp/bcp_transport.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/case_insensitive_dict.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/clock.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/config_loader.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/config_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/config_spec_loader.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/crash_reporter.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/custom_code.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/data_manager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/delays.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/device.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/device_manager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/device_monitor.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/enable_disable_mixin.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/events.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/file_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/file_manager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/light_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/logging.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/machine_vars.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/mode.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/mode_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/mode_device.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/mpf_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/placeholder_manager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/platform.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/platform_batch_light_system.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/platform_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/plugin.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/randomizer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/rgb_color.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/rgba_color.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/segment_mappings.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/service_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/settings_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/show_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/switch_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/system_wide_device.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/text_ui.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/core/utility_functions.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/accelerometer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/achievement.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/achievement_group.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/autofire.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/ball_count_handler.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/ball_device.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/ball_device_ejector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/ball_device_state_handler.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/default_ball_search.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/enable_coil_ejector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/entrance_switch_counter.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/event_ejector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/hold_coil_ejector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/incoming_balls_handler.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/outgoing_balls_handler.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/physical_ball_counter.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/pulse_coil_ejector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_device/switch_counter.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_hold.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_routing.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/ball_save.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/blinkenlight.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/combo_switch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/device_mixins.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/digital_output.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/digital_score_reel.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/diverter.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/driver.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/drop_target.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/dual_wound_coil.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/extra_ball.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/extra_ball_group.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/flipper.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/hardware_sound_system.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/kickback.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/light.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/light_group.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/logic_blocks.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/magnet.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/motor.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/multiball.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/multiball_lock.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/playfield.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/playfield_transfer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/power_supply_unit.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/rgb_dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/score_queue.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/score_reel.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/score_reel_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/score_reel_group.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/segment_display/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/segment_display/segment_display.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/segment_display/segment_display_text.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/segment_display/text_stack_entry.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/segment_display/transition_manager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/segment_display/transitions.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/sequence_shot.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/servo.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/shaker.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/shot.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/shot_group.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/shot_profile.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/show_queue.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/speedometer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/spinner.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/state_machine.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/stepper.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/switch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/timed_switch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/devices/timer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/exceptions/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/exceptions/base_error.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/exceptions/config_file_error.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/exceptions/driver_limits_error.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/exceptions/runtime_error.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/file_interfaces/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/file_interfaces/pickle_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/file_interfaces/yaml_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/attract/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/attract/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/attract/code/attract.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/attract/config/attract.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/bonus/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/bonus/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/bonus/config/bonus.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/carousel/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/carousel/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/credits/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/credits/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/credits/code/credits.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/credits/config/credits.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/game/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/game/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/game/code/game.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/game/config/game.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/images/back_arrow_7x7.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/images/back_arrow_7x7_selected.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/images/end_11x7.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/high_score/images/end_11x7_selected.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/match/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/match/code/match.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/match/config/match.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service/sounds/power_off.ogg +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service/sounds/switch_hit.ogg +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service_dmd/config/service_dmd.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/service_segment_display/config/service_segment_display.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/tilt/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/tilt/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/modes/tilt/code/tilt.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/parsers/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/parsers/event_reference_parser.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/parsers/special_events.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/base_serial_communicator.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/driver_light_platform.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fadecandy.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/TODO.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/aud.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/base.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/emu.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/exp.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/net_nano.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/net_neuron.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/net_retro.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/rgb.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/communicators/seg.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_audio.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_defines.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_driver.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_exp_board.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_gi.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_io_board.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_led.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_light.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_port_detector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_segment_display.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_servo.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_shaker.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_stepper.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/fast/fast_switch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/i2c_servo_controller.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/accelerometer_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/dmd_platform.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/driver_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/hardware_sound_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/i2c_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/light_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/segment_display_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/servo_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/shaker_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/stepper_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/interfaces/switch_platform_interface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/light_segment_displays.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/lisy/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/lisy/defines.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/lisy/lisy.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/mma8451.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/mypinballs/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/mypinballs/mypinballs.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/openpixel.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_coil.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_incand.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_modern_lights.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_rs232_intf.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_serial_communicator.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_servo.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/opp/opp_switch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/osc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/p3_roc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/p_roc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/p_roc_common.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/p_roc_devices.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/osx/pinproc.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp310-win32.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp310-win_amd64.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp311-win32.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp311-win_amd64.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp312-win32.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp312-win_amd64.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp38-win32.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp38-win_amd64.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp39-win32.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pinproc/windows/pinproc.cp39-win_amd64.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_coil.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_extension.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_lights.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_lightshow.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_serial_communicator.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_servo.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pkone/pkone_switch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pololu/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pololu/pololu_tic.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pololu/pololu_ticcmd_wrapper.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/pololu_maestro.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/rpi/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/rpi/rpi.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/rpi_dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/smart_virtual.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/smartmatrix.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/smbus2.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/snux.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/spi_bit_bang.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/spike/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/spike/spike.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/spike/spike_defines.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/step_stick.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/system11.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/trinamics/README +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/trinamics/TMCL.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/trinamics/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/trinamics_steprocker.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/virtual.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/virtual_pinball/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/virtual_pinball/virtual_pinball.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/generate.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/platform_pb2.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/platform_pb2_grpc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/protobuf/platform.proto +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/service.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/test_client.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/test_server.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/visual_pinball_engine/visual_pinball_engine.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_arm64/extending.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_arm64/libserialport.so.0 +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_arm64/libsockpp.so.1 +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_arm64/libzedmd.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_x64/extending.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_x64/libserialport.so.0 +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_x64/libsockpp.so.1 +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/linux_x64/libzedmd.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_arm64/extending.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_arm64/libserialport.dylib +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_arm64/libsockpp.dylib +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_arm64/libzedmd.dylib +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_x64/extending.so +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_x64/libserialport.dylib +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_x64/libsockpp.dylib +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/macos_x64/libzedmd.dylib +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/win_x64/extending.pyd +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/win_x64/libserialport64.dll +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/win_x64/sockpp64.dll +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/platforms/zedmd_lib/win_x64/zedmd64.dll +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/auditor.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/info_lights.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/platform_integration_test_runner.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/switch_player.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/twitch/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/twitch/twitch_client.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/twitch_bot.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/plugins/virtual_segment_display_connector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfBcpTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfDocTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfFakeGameTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfGameTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfIntegrationDocTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfMachineTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfPlatformIntegrationTest.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/MpfTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/README.md +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/TestDataManager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/loop.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/accelerometer/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/achievement/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/achievement/modes/auto_select/config/auto_select.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/achievement/modes/base/config/base.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/achievement/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/apc/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/config/test_asset_loading.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/custom1/show8.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/mode_start/show9.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/on_demand/show10.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/preload/show7.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/modes/mode1/shows/show6.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/custom1/show11.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/custom1/show13.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/on_demand/show5.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/preload/show4.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/preload/subfolder/show4b.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/show1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/show12.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/show2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/asset_manager/shows/show3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/auditor/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/auditor/modes/base/config/base.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/autofire/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_controller/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_controller/config/regression.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_auto_manual_plunger.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_event_confirmation.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_event_ejector.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_jam_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_jam_switch_initial.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_manual_with_target.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_no_plunger_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_routing.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_switch_confirmation.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_ball_device_trigger_events.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_enable_coil.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_enable_coil_multiple.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_gottlieb_trough.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_gottlieb_trough_with_initial_balls.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_hold_coil.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_jam_and_ball_left.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_modern_trough_plunger_setup.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_player_controlled_eject.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_playfield_lock.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_pulse_eject.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_single_device.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_system_11_trough.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_system_11_trough_startup.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/test_too_long_exit_count_delay.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/trough_entrance_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_device/config/trough_entrance_switch_initial_balls.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_holds/config/test_ball_holds.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_holds/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_routing/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_routing/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_save/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_save/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_save/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_search/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_search/config/config_ball_device.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_search/config/config_with_balls.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_search/config/mechanical_eject.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_search/config/missing_initial.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/ball_search/config/no_eject.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bcp/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bcp/config/multiple_connections_config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bcp/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bcp/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blinkenlight/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blinkenlight/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blinkenlight/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blocking_events/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blocking_events/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blocking_events/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/blocking_events/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_additional_events/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_additional_events/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_dynamic_keep_multiplier/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_no_keep_multiplier/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/bonus_no_keep_multiplier/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/carousel/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/carousel/modes/blocking_carousel/config/blocking_carousel.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/carousel/modes/carousel/config/carousel.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/carousel/modes/nowrap_carousel/config/nowrap_carousel.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/coil_player/config/coil_player.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/coil_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/combo_switches/config/combo_switches.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/combo_switches/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_errors/broken_show/config/show.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_errors/broken_show/shows/broken_show.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_interface/config/test_config_interface.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_interface/config/test_config_interface_missing_version.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_interface/config/test_config_interface_old_version.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_loader/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_loader/modes/game/config/game.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_loader/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_loader/modes/mode1/shows/mode1_show.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_loader/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_loader/shows/show1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_players/config/test_config_players.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_players/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_players/modes/mode1/shows/mode1_show.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_players/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_players/shows/show1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_processor/typo.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_processor/working.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/config_processor/working_subconfig.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/counters/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/counters/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/credits/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/credits/config/config_credit_tiers.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/credits/config/config_freeplay.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/credits/config/config_inhibit.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/credits/modes/credits/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/custom_code/code/__init__.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/custom_code/code/test_code.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/custom_code/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/data_manager/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/device/config/coils.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/device/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/device/config/config_dual_wound_coil.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/device_collection/config/test_device_collection.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/digital_output/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/digital_score_reels/config/test_digital_score_reels.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/diverter_with_activation_events.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/only_events_no_coils.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_activation_switch_and_eject_confirm_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_delayed_eject.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_diverter_auto_disable.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_diverter_dual_wound_coil.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_diverter_with_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_eject_to_oposide_sides.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_eject_to_oposide_sides2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_hold_activation_time.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_hold_activation_time_template.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_hold_no_activation_time.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_missing_ball_at_source.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/diverter/config/test_pulsed_activation_time.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/dmd/config/testDmd.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/dmd/config/testRgbDmd.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/drop_targets/config/test_drop_targets.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/drop_targets/config/test_multiple_drop_resets_on_startup.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/drop_targets/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_manager/config/test_event_manager.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_manager/modes/game_mode/config/game_mode.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_manager/modes/test_mode/config/test_mode.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_players/config/test_event_player.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_players/config/test_queue_event_player.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_players/config/test_random_event_player.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_players/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/event_players/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/extra_ball/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/extra_ball/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/audio.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/audio2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/dmd.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/error_lights.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/exp.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/nano.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/neuron.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/retro.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/fast/config/seg.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/flippers/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/flippers/config/hold_no_eos.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/flippers/config/software_eos_repulse.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/game/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/game/config/config_with_balls.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/head2head/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/high_score/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/high_score_reverse/config/high_score.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/high_score_reverse/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/high_score_vars/config/high_score.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/high_score_vars/modes/high_score/config/high_score.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/i2c_servo_controller/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/info_lights/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/kickback/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light/config/light.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light/config/light_autonumber.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light/config/light_default_color_correction.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light/config/light_groups.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light/config/lights_on_drivers.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light/config/matrix_lights.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/config/light_player.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/config/light_player_named_colors.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/shows/show_ext1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/shows/show_ext2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_player/shows/show_ext3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_segment_displays/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/light_segment_displays/config/config_dots.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/lisy/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/lisy/config/config_modern.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/lisy/config/config_system11.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/logic_blocks/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/logic_blocks/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/logic_blocks/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/logic_blocks/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/logic_blocks/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/machine_vars/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/magnet/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/match_mode/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/match_mode/config/config_highscore.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/match_mode/modes/match/config/match.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mma8451/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_broken_mode_config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_empty_modes_section.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_loading_invalid_modes.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_missing_mode_section.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_mode_without_config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_modes.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/config/test_modes_in_game.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/broken_mode/config/broken_mode.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/broken_mode2/config/broken_mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode1/config/test.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode3/code/mode3.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/config/mode5.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/config/test.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/mode8/config/mode8.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/mode5/mode8/config/test.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode6/config/mode6.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode6/config/test.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode7/config/mode7.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_in_sub_folder/sub_mode/mode7/config/test.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_restart_on_next_ball/config/mode_restart_on_next_ball.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mode_tests/modes/mode_without_config/config/README +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/motor/config/drop_target.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/motor/config/ghostbusters.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/motor/config/multiposition_motor.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/motor/config/multiposition_motor_home_in_the_middle.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/motor/config/multiposition_motor_start_on_end_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mpftestcase/config/test_mpftestcase.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball/modes/mode5/config/mode5.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testDefault.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testMinVirtualPhysical.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testNoVirtual.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testPhysicalOnly.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testPhysicalOnlyNoStealing.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testSourceDevices.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/config/testVirtualOnly.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/blocking/config/blocking.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/default/config/default.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/min_virtual_physical/config/min_virtual_physical.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/no_virtual/config/no_virtual.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/physical_only/config/physical_only.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/physical_only_no_stealing/config/physical_only_no_stealing.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/source_devices/config/source_devices.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/multiball_locks/modes/virtual_only/config/virtual_only.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/mypinballs/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/null/config/null.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/openpixel/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/openpixel/config/fadecandy.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/opp/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/opp/config/config2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/opp/config/config_stm32.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/osc/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/p3_roc/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/p_roc/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/p_roc/config/snux.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/p_roc/config/wpc.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/pkone/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/platform/config/test_platform.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/platform/config/test_virtual.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/player_vars/config/player_vars.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/playfield/config/test_playfield.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/playfield_transfer/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/plugin_config_player/config/plugin_config_player.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/plugin_config_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/plugin_config_player/modes/mode1/shows/show2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/plugin_config_player/modes/mode1/shows/show3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/plugin_config_player/shows/show1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/pololu_maestro/config/pololu_maestro.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/pololu_tic/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/randomizer/config/randomizer.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/rpi/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/rpi_dmd/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/score_queue/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/score_queue/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/score_reels/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/segment_display/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/segment_display/config/config_colors.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/segment_display/config/config_flashing.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/segment_display/config/config_transition.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/segment_display/config/game.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/segment_display/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/sequence_shot/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/sequence_shot/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/servo/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/settings/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/config/test_shot_group_rotate_with_exclude.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/config/test_shot_groups.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/config/test_shots.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/base/config/base.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/base2/config/base2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/base3/config/base3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shots/modes/rotate_with_exclude/config/rotate_with_exclude.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/config/test_show_player_queue.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/config/test_show_pools.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/config/test_shows.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/config/test_sync_ms.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/modes/mode4/config/mode4.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/8linesweep.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/myparentshow.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/on_demand/mychildshow.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/test_show1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/test_show2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/test_show3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/test_show_key_token.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/shows/shows/test_variable_show.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smart_matrix/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smart_matrix/config/old_cookie.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smart_virtual_platform/config/test_coil_fired_plunger.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smart_virtual_platform/config/test_entrance_switch.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smart_virtual_platform/config/test_smart_virtual.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smart_virtual_platform/config/test_smart_virtual_initial.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/smbus2/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/snux/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/spi_bit_bang/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/spike/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/spinners/config/test_spinners.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/state_machine/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/state_machine/modes/game_mode/config/game_mode.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/state_machine/modes/non_game_mode/config/non_game_mode.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/step_stick/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/stepper/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/switch_controller/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/switch_player/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt/config/config_mechanical_eject.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt/config/config_system_11_trough.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt/config/settings.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt/modes/base/config/base.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt/modes/tilt/config/tilt.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/tilt_defaults/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/timed_switches/config/timed_switches.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/timed_switches/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/timer/config/test_timer.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/timer/modes/mode_with_timers/config/mode_with_timers.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/timer/modes/mode_with_timers2/config/mode_with_timers2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/trinamics_steprocker/config/trinamics_steprocker.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/twitch_client/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/variable_player/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/variable_player/modes/mode1/config/mode1.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/variable_player/modes/mode2/config/mode2.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/variable_player/modes/mode3/config/mode3.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/variable_player/modes/mode_for_logic_block/config/mode_for_logic_block.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/variable_player/modes/non_game_mode/config/non_game_mode.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/virtual_pinball/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/virtual_segment_display_connector/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/vpe/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/machine_files/vpx/config/config.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/platforms/fast.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/platforms/pinproc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/regression_tests/light_player_subscriptions.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/regression_tests/shot_same_show_differnent_token.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/regression_tests/shots_with_token_in_profile_and_shot.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/regression_tests/show_player_subscriptions.yaml +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Accelerometer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Achievement.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_AssetManager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Attract.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Auditor.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Autofire.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallController.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDevice.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceAutoManualPlunger.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceEnableCoil.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceEventConfirmation.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceEventEjector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceHoldCoil.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceJamSwitch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceManualWithTarget.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceModernTroughPlungerSetup.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceNoPlungerSwitch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDevicePlayfieldLock.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDevicePulseEject.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceRouting.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceSingle.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceSwitchConfirmation.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDeviceTriggerEvents.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallDevice_SmartVirtual.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallHold.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallRouting.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallSave.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BallSearch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BcpInterface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BcpMc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BcpServer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BcpSocketClient.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Blinkenlight.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_BlockingEvents.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Clock.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_CoilPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ComboSwitches.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_CommandCreateConfig.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Commands.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Config.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ConfigErrors.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ConfigLoader.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ConfigMissingVersion.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ConfigOldVersion.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ConfigPlayers.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ConfigProcessor.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_CreditsMode.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_CustomCode.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DataManager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Delay.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceCollection.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceDriver.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceFlasher.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceGI.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceLight.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceManager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DeviceMatrixLight.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DigitalOutput.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DigitalScoreReels.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Diverter.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DropTargets.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_DualWoundCoil.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_EventManager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_EventPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ExtraBall.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fadecandy.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Audio.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Dmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Exp.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Nano.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Neuron.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Retro.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Fast_Seg.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Flippers.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_FlippersHoldNoEos.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_FlippersSoftwareEosRepulse.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Game.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_GottliebTrough.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Head2Head.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_I2cServoController.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_InfoLights.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Kickback.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_LightGroups.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_LightNumbering.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_LightPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_LightPositions.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_LightSegmentDisplays.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Lisy.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_LogicBlocks.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MMA8451.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MachineVariables.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Magnet.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MatchMode.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Modes.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ModesConfigValidation.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Motors.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MpfTestCase.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MultiBall.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MultiballLock.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_MyPinballs.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_OPP.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Openpixel.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Osc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_P3_Roc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PKONE.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_P_Roc.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PlaceholderManager.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Platform.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PlayerVars.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Playfield.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PlayfieldTransfer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PluginConfigPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PololuMaestro.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_PololuTic.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_QueueEventPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_RGBColor.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_RandomEventPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Randomizer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Rpi.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_RpiDmd.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ScoreQueue.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ScoreReels.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SegmentDisplay.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SegmentMappings.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SequenceShot.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ServiceCli.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Servo.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Settings.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ShotGroups.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Shots.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_ShowPools.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Shows.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SmartMatrix.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SmartVirtualPlatform.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Smbus2.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Snux.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SpiBitBang.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Spike.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Spinners.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_StateMachine.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_StepStick.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Stepper.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SwitchController.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SwitchPlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_SwitchPositions.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_System11Trough.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Tilt.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_TimedSwitch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Timer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_TooLongExitCountDelay.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_TrinamicsStepRocker.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_TroughEntranceSwitch.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_TwitchClient.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Utility_Functions.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_VPX.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_VariablePlayer.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_Virtual.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_VirtualPinball.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_VirtualSegmentDisplayConnector.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_VisualPinballEngine.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/test_YamlInterface.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/tests/vpe_simulator.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/wire/base.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf/wire/fast.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf-logo-200.png +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf.egg-info/dependency_links.txt +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf.egg-info/entry_points.txt +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mpf.egg-info/top_level.txt +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/mypy.ini +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/setup.cfg +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/setup.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/sonar-project.properties +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/test_machine.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/test_regression.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/tools/afl_fuzz.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/tools/afl_howto.txt +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/tools/convert_segments.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/tools/debug_run_game.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/tools/p3_switch_test.py +0 -0
- {mpf-0.57.5.dev3 → mpf-0.80.0}/tools/smart_matrix_dmd_teensy_code/smart_matrix_dmd_teensy_code.ino +0 -0
|
@@ -18,10 +18,6 @@ jobs:
|
|
|
18
18
|
fail-fast: false
|
|
19
19
|
matrix:
|
|
20
20
|
include:
|
|
21
|
-
- os: windows-latest
|
|
22
|
-
python-version: 3.8
|
|
23
|
-
- os: windows-latest
|
|
24
|
-
python-version: 3.9
|
|
25
21
|
- os: windows-latest
|
|
26
22
|
python-version: "3.10"
|
|
27
23
|
- os: windows-latest
|
|
@@ -32,10 +28,7 @@ jobs:
|
|
|
32
28
|
python-version: 3.13
|
|
33
29
|
- os: windows-latest
|
|
34
30
|
python-version: 3.14
|
|
35
|
-
|
|
36
|
-
python-version: 3.8
|
|
37
|
-
- os: ubuntu-latest
|
|
38
|
-
python-version: 3.9
|
|
31
|
+
|
|
39
32
|
- os: ubuntu-latest
|
|
40
33
|
python-version: "3.10"
|
|
41
34
|
- os: ubuntu-latest
|
|
@@ -46,10 +39,7 @@ jobs:
|
|
|
46
39
|
python-version: 3.13
|
|
47
40
|
- os: ubuntu-latest
|
|
48
41
|
python-version: 3.14
|
|
49
|
-
|
|
50
|
-
python-version: 3.8
|
|
51
|
-
- os: macos-latest
|
|
52
|
-
python-version: 3.9
|
|
42
|
+
|
|
53
43
|
- os: macos-latest
|
|
54
44
|
python-version: "3.10"
|
|
55
45
|
- os: macos-latest
|
|
@@ -25,7 +25,8 @@ venv/
|
|
|
25
25
|
# Usually these files are written by a python script from a template
|
|
26
26
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
27
27
|
*.manifest
|
|
28
|
-
|
|
28
|
+
# AVW: Going to include the spec at least for reference
|
|
29
|
+
.spec
|
|
29
30
|
|
|
30
31
|
# Installer logs
|
|
31
32
|
pip-log.txt
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpf
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.80.0
|
|
4
4
|
Summary: The Mission Pinball Framework (MPF)
|
|
5
5
|
Author-email: The Mission Pinball Framework Team <brian@missionpinball.org>
|
|
6
6
|
License: MIT
|
|
@@ -10,8 +10,6 @@ Keywords: pinball
|
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -23,7 +21,7 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
23
21
|
Classifier: Operating System :: POSIX :: Linux
|
|
24
22
|
Classifier: Topic :: Artistic Software
|
|
25
23
|
Classifier: Topic :: Games/Entertainment :: Arcade
|
|
26
|
-
Requires-Python: <3.15,>=3.
|
|
24
|
+
Requires-Python: <3.15,>=3.10
|
|
27
25
|
Description-Content-Type: text/markdown
|
|
28
26
|
License-File: LICENSE.md
|
|
29
27
|
License-File: AUTHORS.md
|
|
@@ -37,7 +35,7 @@ Requires-Dist: ruamel.yaml==0.18.6
|
|
|
37
35
|
Requires-Dist: setuptools~=72.2.0
|
|
38
36
|
Requires-Dist: sortedcontainers==2.4.0
|
|
39
37
|
Requires-Dist: terminaltables==3.1.10
|
|
40
|
-
Requires-Dist: Pillow>=
|
|
38
|
+
Requires-Dist: Pillow>=11.3.0
|
|
41
39
|
Provides-Extra: crash-reporter
|
|
42
40
|
Requires-Dist: requests==2.28.2; extra == "crash-reporter"
|
|
43
41
|
Provides-Extra: irc
|
|
@@ -61,7 +59,7 @@ Requires-Dist: protobuf==5.29.3; extra == "vpe"
|
|
|
61
59
|
Provides-Extra: all
|
|
62
60
|
Requires-Dist: prompt_toolkit==3.0.43; extra == "all"
|
|
63
61
|
Requires-Dist: asciimatics==1.15.0; extra == "all"
|
|
64
|
-
Requires-Dist: terminaltables==3.1.
|
|
62
|
+
Requires-Dist: terminaltables==3.1.10; extra == "all"
|
|
65
63
|
Requires-Dist: requests==2.28.2; extra == "all"
|
|
66
64
|
Requires-Dist: irc==19.0.1; extra == "all"
|
|
67
65
|
Requires-Dist: smbus2_asyncio==0.0.5; extra == "all"
|
|
@@ -10,15 +10,18 @@ PyPI.
|
|
|
10
10
|
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
|
-
__version__ = '0.
|
|
13
|
+
__version__ = '0.80.0'
|
|
14
14
|
'''The full version of MPF.'''
|
|
15
15
|
|
|
16
|
-
__short_version__ = '0.
|
|
16
|
+
__short_version__ = '0.80'
|
|
17
17
|
'''The major.minor version of MPF.'''
|
|
18
18
|
|
|
19
19
|
__bcp_version__ = '1.1'
|
|
20
20
|
'''The version of BCP this build of MPF uses.'''
|
|
21
21
|
|
|
22
|
+
__gmc_version__ = '1.0.0'
|
|
23
|
+
'''The version of GMC this build of MPF requires.'''
|
|
24
|
+
|
|
22
25
|
__config_version__ = '6'
|
|
23
26
|
'''The config file version this build of MPF uses.'''
|
|
24
27
|
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"""Command which launches both the MPF core engine and MPF-MC."""
|
|
2
|
+
|
|
3
|
+
from importlib import import_module
|
|
4
|
+
import argparse
|
|
5
|
+
import configparser
|
|
6
|
+
import shutil
|
|
7
|
+
import subprocess
|
|
8
|
+
import os
|
|
9
|
+
import re
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _start_mpf(mpf_path, machine_path, args):
|
|
13
|
+
module = import_module('mpf.commands.game')
|
|
14
|
+
module.Command(mpf_path, machine_path, args)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def _spawn_gmc(gmc_args, mpf_args):
|
|
18
|
+
full_godot_exec_path = shutil.which(gmc_args.godot_exec_path)
|
|
19
|
+
|
|
20
|
+
# Verify that the godot executable exists
|
|
21
|
+
if not full_godot_exec_path:
|
|
22
|
+
raise FileNotFoundError("Unable to find Godot executable at '%s'. Please check this file, "
|
|
23
|
+
"your PATH, or specify an executable with the -G argument." % gmc_args.godot_exec_path)
|
|
24
|
+
|
|
25
|
+
full_gmc_project_path = os.path.join(gmc_args.gmc_project_path, "project.godot")
|
|
26
|
+
try:
|
|
27
|
+
os.stat(full_gmc_project_path)
|
|
28
|
+
except FileNotFoundError:
|
|
29
|
+
raise FileNotFoundError("Unable to find GMC project.godot file in '%s'. Please check this folder "
|
|
30
|
+
"or specify a project directory with the -g argument." % gmc_args.gmc_project_path)
|
|
31
|
+
|
|
32
|
+
# Some args for MPF we'll borrow as well
|
|
33
|
+
transferred_args = []
|
|
34
|
+
# TODO: Refactor the ArgParse to use subparsers
|
|
35
|
+
# and parent parsers to simplify the whole affair.
|
|
36
|
+
verbose_regex = r'-[\w]*[vV]'
|
|
37
|
+
if re.match(verbose_regex, " ".join(mpf_args)):
|
|
38
|
+
transferred_args.append("-v")
|
|
39
|
+
|
|
40
|
+
#pylint: disable-msg=consider-using-with
|
|
41
|
+
subprocess.Popen(
|
|
42
|
+
[full_godot_exec_path, *transferred_args],
|
|
43
|
+
cwd=gmc_args.gmc_project_path
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class Command:
|
|
48
|
+
|
|
49
|
+
"""Command which runs game and gmc."""
|
|
50
|
+
|
|
51
|
+
def __init__(self, mpf_path, machine_path, args):
|
|
52
|
+
"""Run game and gmc."""
|
|
53
|
+
# First load a config file for possible default values
|
|
54
|
+
config = configparser.ConfigParser(strict=False, allow_no_value=True)
|
|
55
|
+
try:
|
|
56
|
+
# It feels cleaner to use the same config file as GMC, even though the
|
|
57
|
+
# name is misleading
|
|
58
|
+
config_path = os.path.join(machine_path, "gmc.cfg")
|
|
59
|
+
os.stat(config_path)
|
|
60
|
+
config.read(config_path)
|
|
61
|
+
except FileNotFoundError:
|
|
62
|
+
pass
|
|
63
|
+
|
|
64
|
+
parser = argparse.ArgumentParser(description='Starts MPF and GMC concurrently')
|
|
65
|
+
|
|
66
|
+
parser.add_argument("-g",
|
|
67
|
+
action="store", dest="gmc_project_path",
|
|
68
|
+
default=config.get("cli", "gmc_project_path", fallback=machine_path).strip('\'"'),
|
|
69
|
+
help="Path to the GMC project folder, if not current directory.")
|
|
70
|
+
|
|
71
|
+
parser.add_argument("-G",
|
|
72
|
+
action="store", dest="godot_exec_path",
|
|
73
|
+
default=config.get("cli", "godot_exec_path", fallback="godot").strip('\'"'),
|
|
74
|
+
help="Path to the Godot executable")
|
|
75
|
+
|
|
76
|
+
parser.add_argument("-L",
|
|
77
|
+
action="store", dest="gmc_log_file",
|
|
78
|
+
metavar='gmc_log_file',
|
|
79
|
+
default=config.get("cli", "gmc_log_file", fallback=None),
|
|
80
|
+
help=argparse.SUPPRESS)
|
|
81
|
+
|
|
82
|
+
# Parse the GMC-specific args and pass the leftovers to MPF
|
|
83
|
+
gmc_args, mpf_args = parser.parse_known_args(args)
|
|
84
|
+
|
|
85
|
+
_spawn_gmc(gmc_args, mpf_args)
|
|
86
|
+
|
|
87
|
+
_start_mpf(mpf_path, machine_path, mpf_args)
|
|
@@ -140,17 +140,6 @@ class Command:
|
|
|
140
140
|
"used for all"
|
|
141
141
|
" devices")
|
|
142
142
|
|
|
143
|
-
# The following are just included for full compatibility with mc
|
|
144
|
-
# which is needed when using "mpf both".
|
|
145
|
-
|
|
146
|
-
parser.add_argument("-L",
|
|
147
|
-
action="store", dest="mc_file_name",
|
|
148
|
-
metavar='mc_file_name',
|
|
149
|
-
default=None, help=argparse.SUPPRESS)
|
|
150
|
-
|
|
151
|
-
parser.add_argument("--no-sound",
|
|
152
|
-
action="store_true", dest="no_sound", default=False)
|
|
153
|
-
|
|
154
143
|
self.args = parser.parse_args(args)
|
|
155
144
|
self.args.configfile = Util.string_to_event_list(self.args.configfile)
|
|
156
145
|
|
|
@@ -160,10 +149,10 @@ class Command:
|
|
|
160
149
|
if exception.errno != errno.EEXIST:
|
|
161
150
|
raise
|
|
162
151
|
|
|
163
|
-
full_logfile_path = os.path.join(machine_path, self.args.logfile)
|
|
152
|
+
self.args.full_logfile_path = os.path.join(machine_path, self.args.logfile)
|
|
164
153
|
|
|
165
154
|
try:
|
|
166
|
-
os.remove(full_logfile_path)
|
|
155
|
+
os.remove(self.args.full_logfile_path)
|
|
167
156
|
except OSError:
|
|
168
157
|
pass
|
|
169
158
|
|
|
@@ -188,7 +177,7 @@ class Command:
|
|
|
188
177
|
self.console_queue_listener.start()
|
|
189
178
|
|
|
190
179
|
# initialize file log
|
|
191
|
-
file_log = logging.FileHandler(full_logfile_path)
|
|
180
|
+
file_log = logging.FileHandler(self.args.full_logfile_path)
|
|
192
181
|
if self.args.jsonlogging:
|
|
193
182
|
formatter = JSONFormatter()
|
|
194
183
|
else:
|
|
@@ -273,8 +262,12 @@ class Command:
|
|
|
273
262
|
logging.exception(exception)
|
|
274
263
|
|
|
275
264
|
logging.shutdown()
|
|
276
|
-
self.console_queue_listener
|
|
277
|
-
|
|
265
|
+
if self.console_queue_listener:
|
|
266
|
+
self.console_queue_listener.stop()
|
|
267
|
+
self.console_queue_listener = None
|
|
268
|
+
if self.file_queue_listener:
|
|
269
|
+
self.file_queue_listener.stop()
|
|
270
|
+
self.file_queue_listener = None
|
|
278
271
|
|
|
279
272
|
if self.args.pause:
|
|
280
273
|
input('Press ENTER to continue...') # nosec
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"""Command to initialize an MPF project folder."""
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
import pathlib
|
|
5
|
+
import shutil
|
|
6
|
+
|
|
7
|
+
SUBCOMMAND = True
|
|
8
|
+
INITIAL_MODES = ("attract", "base")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Command:
|
|
12
|
+
|
|
13
|
+
"""Initializes an MPF project folder."""
|
|
14
|
+
|
|
15
|
+
__slots__ = ("path", )
|
|
16
|
+
|
|
17
|
+
def __init__(self, argv, path):
|
|
18
|
+
"""Generate config and mode folders."""
|
|
19
|
+
# If a path is provided, use it
|
|
20
|
+
if len(argv) > 1:
|
|
21
|
+
path = os.path.join(path, argv[1])
|
|
22
|
+
self.path = path
|
|
23
|
+
|
|
24
|
+
print(f"Initializing MPF project at path {self.path}")
|
|
25
|
+
|
|
26
|
+
try:
|
|
27
|
+
os.stat(self.path)
|
|
28
|
+
except FileNotFoundError:
|
|
29
|
+
os.makedirs(self.path)
|
|
30
|
+
|
|
31
|
+
self.generate_config_file()
|
|
32
|
+
self.generate_mode_folder()
|
|
33
|
+
|
|
34
|
+
print("MPF project initialization complete!")
|
|
35
|
+
|
|
36
|
+
def generate_config_file(self):
|
|
37
|
+
"""Create a config folder and default config.yaml file."""
|
|
38
|
+
config_dir = os.path.join(self.path, "config")
|
|
39
|
+
try:
|
|
40
|
+
os.stat(config_dir)
|
|
41
|
+
except FileNotFoundError:
|
|
42
|
+
os.mkdir(config_dir)
|
|
43
|
+
|
|
44
|
+
config_file = os.path.join(config_dir, "config.yaml")
|
|
45
|
+
try:
|
|
46
|
+
os.stat(config_file)
|
|
47
|
+
except FileNotFoundError:
|
|
48
|
+
base_config_file = os.path.join(pathlib.Path(__file__).parent.absolute(), "templates/config.yaml")
|
|
49
|
+
shutil.copy2(base_config_file, config_file)
|
|
50
|
+
|
|
51
|
+
def generate_mode_folder(self):
|
|
52
|
+
"""Create mode folder and default mode subfolders."""
|
|
53
|
+
mode_dir = os.path.join(self.path, "modes")
|
|
54
|
+
try:
|
|
55
|
+
os.stat(mode_dir)
|
|
56
|
+
except FileNotFoundError:
|
|
57
|
+
os.mkdir(mode_dir)
|
|
58
|
+
|
|
59
|
+
for mode in INITIAL_MODES:
|
|
60
|
+
mode_path = os.path.join(mode_dir, mode, "config")
|
|
61
|
+
try:
|
|
62
|
+
os.stat(mode_path)
|
|
63
|
+
except FileNotFoundError:
|
|
64
|
+
os.makedirs(mode_path)
|
|
65
|
+
mode_config = os.path.join(mode_path, f"{mode}.yaml")
|
|
66
|
+
try:
|
|
67
|
+
os.stat(mode_config)
|
|
68
|
+
except FileNotFoundError:
|
|
69
|
+
mode_config_template = os.path.join(pathlib.Path(__file__).parent.absolute(), f"templates/{mode}.yaml")
|
|
70
|
+
shutil.copy2(mode_config_template, mode_config)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#config_version=6
|
|
2
|
+
|
|
3
|
+
## MPF Main Machine Config File
|
|
4
|
+
#
|
|
5
|
+
# This file defines your system-wide properties like switches,
|
|
6
|
+
# drivers, ball devices, hardware platforms, and more. You can
|
|
7
|
+
# include everything here, or create sub-config files to be
|
|
8
|
+
# imported and merged with this one.
|
|
9
|
+
|
|
10
|
+
modes:
|
|
11
|
+
- attract
|
|
12
|
+
- base
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"""Bus player plugin for MPF to support GMC."""
|
|
2
|
+
|
|
3
|
+
from functools import partial
|
|
4
|
+
from mpf.config_players.plugin_player import PluginPlayer
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class BusPlayer(PluginPlayer):
|
|
8
|
+
|
|
9
|
+
"""Base class for part of the bus player which runs as part of MPF.
|
|
10
|
+
|
|
11
|
+
Note: This class is loaded by MPF and everything in it is in the context of
|
|
12
|
+
MPF, not the mc.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
config_file_section = 'bus_player'
|
|
16
|
+
show_section = 'buses'
|
|
17
|
+
|
|
18
|
+
def _validate_config_item(self, device, device_settings):
|
|
19
|
+
# device is bus name, device_settings is configuration
|
|
20
|
+
|
|
21
|
+
device_settings = self.machine.config_validator.validate_config(
|
|
22
|
+
'bus_player', device_settings)
|
|
23
|
+
|
|
24
|
+
return_dict = dict()
|
|
25
|
+
return_dict[device] = device_settings
|
|
26
|
+
|
|
27
|
+
return return_dict
|
|
28
|
+
|
|
29
|
+
def _register_trigger(self, event, **kwargs):
|
|
30
|
+
"""Register trigger via BCP for MC."""
|
|
31
|
+
del kwargs
|
|
32
|
+
client = self.machine.bcp.transport.get_named_client("local_display")
|
|
33
|
+
if client:
|
|
34
|
+
self.machine.bcp.interface.add_registered_trigger_event_for_client(client, event)
|
|
35
|
+
else:
|
|
36
|
+
self.machine.events.add_handler("bcp_clients_connected", partial(self._register_trigger, event))
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"""Plugin config player."""
|
|
2
2
|
from mpf.config_players.device_config_player import DeviceConfigPlayer
|
|
3
|
+
from mpf.core.placeholder_manager import BaseTemplate, NativeTypeTemplate
|
|
3
4
|
|
|
4
5
|
|
|
5
6
|
class PluginPlayer(DeviceConfigPlayer):
|
|
@@ -80,9 +81,24 @@ class PluginPlayer(DeviceConfigPlayer):
|
|
|
80
81
|
|
|
81
82
|
def play(self, settings, context, calling_context, priority=0, **kwargs):
|
|
82
83
|
"""Trigger remote player via BCP."""
|
|
84
|
+
# The triggering event's kwargs are passed through, and the triggering
|
|
85
|
+
# event may have come from BCP. Explicitly set _from_bcp=False so that
|
|
86
|
+
# this play event won't be swallowed.
|
|
87
|
+
if '_from_bcp' in kwargs:
|
|
88
|
+
del kwargs['_from_bcp']
|
|
89
|
+
# If any templates need evaluating, do so *before* sending via BCP
|
|
90
|
+
eval_settings = {}
|
|
91
|
+
for s, settings_dict in settings.items():
|
|
92
|
+
for key, value in settings_dict.items():
|
|
93
|
+
if isinstance(value, (BaseTemplate, NativeTypeTemplate)):
|
|
94
|
+
if s not in eval_settings:
|
|
95
|
+
eval_settings[s] = settings_dict.copy()
|
|
96
|
+
eval_settings[s][key] = value.evaluate(kwargs)
|
|
97
|
+
|
|
83
98
|
self.machine.bcp.interface.bcp_trigger(
|
|
84
99
|
name='{}_play'.format(self.show_section),
|
|
85
|
-
settings=settings,
|
|
100
|
+
settings={**settings, **eval_settings},
|
|
101
|
+
context=context, calling_context=calling_context,
|
|
86
102
|
priority=priority, **kwargs)
|
|
87
103
|
|
|
88
104
|
def clear_context(self, context):
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"""Slide player for MPF to support GMC."""
|
|
2
|
+
from functools import partial
|
|
3
|
+
|
|
4
|
+
from mpf.config_players.plugin_player import PluginPlayer
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class SlidePlayer(PluginPlayer):
|
|
8
|
+
|
|
9
|
+
"""Base class for part of the slide player which runs as part of MPF.
|
|
10
|
+
|
|
11
|
+
Note: This class is loaded by MPF and everything in it is in the context of
|
|
12
|
+
MPF, not the mc.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
config_file_section = 'slide_player'
|
|
16
|
+
show_section = 'slides'
|
|
17
|
+
|
|
18
|
+
def _validate_config_item(self, device, device_settings):
|
|
19
|
+
# device is slide name, device_settings is configuration
|
|
20
|
+
|
|
21
|
+
device_settings = self.machine.config_validator.validate_config(
|
|
22
|
+
'slide_player', device_settings)
|
|
23
|
+
|
|
24
|
+
return_dict = dict()
|
|
25
|
+
return_dict[device] = device_settings
|
|
26
|
+
|
|
27
|
+
return return_dict
|
|
28
|
+
|
|
29
|
+
def _register_trigger(self, event, **kwargs):
|
|
30
|
+
"""Register trigger via BCP for MC."""
|
|
31
|
+
del kwargs
|
|
32
|
+
client = self.machine.bcp.transport.get_named_client("local_display")
|
|
33
|
+
if client:
|
|
34
|
+
self.machine.bcp.interface.add_registered_trigger_event_for_client(client, event)
|
|
35
|
+
else:
|
|
36
|
+
self.machine.events.add_handler("bcp_clients_connected", partial(self._register_trigger, event))
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"""Sound player plugin for MPF to support GMC."""
|
|
2
|
+
from functools import partial
|
|
3
|
+
from mpf.config_players.plugin_player import PluginPlayer
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class SoundPlayer(PluginPlayer):
|
|
7
|
+
|
|
8
|
+
"""Base class for part of the sound player which runs as part of MPF.
|
|
9
|
+
|
|
10
|
+
Note: This class is loaded by MPF and everything in it is in the context of
|
|
11
|
+
MPF, not the mpf-mc. MPF finds this instance because the mpf-mc setup.py
|
|
12
|
+
has the following entry_point configured:
|
|
13
|
+
|
|
14
|
+
sound_player=mpfmc.config_players.sound_player:register_with_mpf
|
|
15
|
+
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
config_file_section = 'sound_player'
|
|
19
|
+
show_section = 'sounds'
|
|
20
|
+
|
|
21
|
+
def _validate_config_item(self, device, device_settings):
|
|
22
|
+
# device is slide name, device_settings is configuration
|
|
23
|
+
|
|
24
|
+
device_settings = self.machine.config_validator.validate_config(
|
|
25
|
+
'sound_player', device_settings)
|
|
26
|
+
|
|
27
|
+
return_dict = dict()
|
|
28
|
+
return_dict[device] = device_settings
|
|
29
|
+
|
|
30
|
+
return return_dict
|
|
31
|
+
|
|
32
|
+
def _register_trigger(self, event, **kwargs):
|
|
33
|
+
"""Register trigger via BCP for MC."""
|
|
34
|
+
del kwargs
|
|
35
|
+
client = self.machine.bcp.transport.get_named_client("local_display")
|
|
36
|
+
if client:
|
|
37
|
+
self.machine.bcp.interface.add_registered_trigger_event_for_client(client, event)
|
|
38
|
+
else:
|
|
39
|
+
self.machine.events.add_handler("bcp_clients_connected", partial(self._register_trigger, event))
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""Widget player plugin for MPF to support GMC."""
|
|
2
|
+
from functools import partial
|
|
3
|
+
from mpf.config_players.plugin_player import PluginPlayer
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class WidgetPlayer(PluginPlayer):
|
|
7
|
+
|
|
8
|
+
"""Widget Player in MPF.
|
|
9
|
+
|
|
10
|
+
Note: This class is loaded by MPF and everything in it is in the context of MPF.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
config_file_section = 'widget_player'
|
|
14
|
+
show_section = 'widgets'
|
|
15
|
+
|
|
16
|
+
def _validate_config_item(self, device, device_settings):
|
|
17
|
+
# device is slide name, device_settings is configuration
|
|
18
|
+
|
|
19
|
+
device_settings = self.machine.config_validator.validate_config(
|
|
20
|
+
'widget_player', device_settings)
|
|
21
|
+
|
|
22
|
+
return_dict = dict()
|
|
23
|
+
return_dict[device] = device_settings
|
|
24
|
+
|
|
25
|
+
return return_dict
|
|
26
|
+
|
|
27
|
+
def _register_trigger(self, event, **kwargs):
|
|
28
|
+
"""Register trigger via BCP for MC."""
|
|
29
|
+
del kwargs
|
|
30
|
+
client = self.machine.bcp.transport.get_named_client("local_display")
|
|
31
|
+
if client:
|
|
32
|
+
self.machine.bcp.interface.add_registered_trigger_event_for_client(client, event)
|
|
33
|
+
else:
|
|
34
|
+
self.machine.events.add_handler("bcp_clients_connected", partial(self._register_trigger, event))
|