forked from mirror/joycontrol
Dropped "run_test_controller_buttons.py" script in favor of command line interface.
This commit is contained in:
@@ -1,18 +1,137 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import argparse
|
||||
import asyncio
|
||||
import logging
|
||||
import os
|
||||
from contextlib import contextmanager
|
||||
|
||||
from aioconsole import ainput
|
||||
|
||||
from joycontrol import logging_default as log
|
||||
from joycontrol.command_line_interface import ControllerCLI
|
||||
from joycontrol.controller import Controller
|
||||
from joycontrol.controller_state import ControllerState, button_push
|
||||
from joycontrol.memory import FlashMemory
|
||||
from joycontrol.protocol import controller_protocol_factory
|
||||
from joycontrol.server import create_hid_server
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
"""Emulates Switch controller. Opens joycontrol.command_line_interface to send button commands and more.
|
||||
|
||||
While running the cli, call "help" for an explanation of available commands.
|
||||
|
||||
Usage:
|
||||
run_controller_cli.py <controller> [--device_id | -d <bluetooth_adapter_id>]
|
||||
[--spi_flash <spi_flash_memory_file>]
|
||||
[--reconnect_bt_addr | -r <console_bluetooth_address>]
|
||||
[--log | -l <communication_log_file>]
|
||||
run_controller_cli.py -h | --help
|
||||
|
||||
Arguments:
|
||||
controller Choose which controller to emulate. Either "JOYCON_R", "JOYCON_L" or "PRO_CONTROLLER"
|
||||
|
||||
Options:
|
||||
-d --device_id <bluetooth_adapter_id> ID of the bluetooth adapter. Integer matching the digit in the hci* notation
|
||||
(e.g. hci0, hci1, ...) or Bluetooth mac address of the adapter in string
|
||||
notation (e.g. "FF:FF:FF:FF:FF:FF").
|
||||
Note: Selection of adapters may not work if the bluez "input" plugin is
|
||||
enabled.
|
||||
|
||||
--spi_flash <spi_flash_memory_file> Memory dump of a real Switch controller. Required for joystick emulation.
|
||||
Allows displaying of JoyCon colors.
|
||||
Memory dumbs can be created using the dump_spi_flash.py script.
|
||||
|
||||
-r --reconnect_bt_addr <console_bluetooth_address> Previously connected Switch console Bluetooth address in string
|
||||
notation (e.g. "FF:FF:FF:FF:FF:FF") for reconnection.
|
||||
Does not require the "Change Grip/Order" menu to be opened,
|
||||
|
||||
-l --log <communication_log_file> Write hid communication (input reports and output reports) to a file.
|
||||
"""
|
||||
|
||||
|
||||
async def test_controller_buttons(controller_state: ControllerState):
|
||||
"""
|
||||
Example controller script.
|
||||
Navigates to the "Test Controller Buttons" menu and presses all buttons.
|
||||
"""
|
||||
if controller_state.get_controller() != Controller.PRO_CONTROLLER:
|
||||
raise ValueError('This script only works with the Pro Controller!')
|
||||
|
||||
# waits until controller is fully connected
|
||||
await controller_state.connect()
|
||||
|
||||
await ainput(prompt='Make sure the Switch is in the Home menu and press <enter> to continue.')
|
||||
|
||||
"""
|
||||
# We assume we are in the "Change Grip/Order" menu of the switch
|
||||
await button_push(controller_state, 'home')
|
||||
|
||||
# wait for the animation
|
||||
await asyncio.sleep(1)
|
||||
"""
|
||||
|
||||
# Goto settings
|
||||
await button_push(controller_state, 'down', sec=1)
|
||||
await button_push(controller_state, 'right', sec=2)
|
||||
await asyncio.sleep(0.3)
|
||||
await button_push(controller_state, 'left')
|
||||
await asyncio.sleep(0.3)
|
||||
await button_push(controller_state, 'a')
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
# go all the way down
|
||||
await button_push(controller_state, 'down', sec=4)
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
# goto "Controllers and Sensors" menu
|
||||
for _ in range(2):
|
||||
await button_push(controller_state, 'up')
|
||||
await asyncio.sleep(0.3)
|
||||
await button_push(controller_state, 'right')
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
# go all the way down
|
||||
await button_push(controller_state, 'down', sec=3)
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
# goto "Test Input Devices" menu
|
||||
await button_push(controller_state, 'up')
|
||||
await asyncio.sleep(0.3)
|
||||
await button_push(controller_state, 'a')
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
# goto "Test Controller Buttons" menu
|
||||
await button_push(controller_state, 'a')
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
# push all buttons except home and capture
|
||||
button_list = controller_state.button_state.get_available_buttons()
|
||||
if 'capture' in button_list:
|
||||
button_list.remove('capture')
|
||||
if 'home' in button_list:
|
||||
button_list.remove('home')
|
||||
|
||||
user_input = asyncio.ensure_future(
|
||||
ainput(prompt='Pressing all buttons... Press <enter> to stop.')
|
||||
)
|
||||
|
||||
# push all buttons consecutively until user input
|
||||
while not user_input.done():
|
||||
for button in button_list:
|
||||
await button_push(controller_state, button)
|
||||
await asyncio.sleep(0.1)
|
||||
|
||||
if user_input.done():
|
||||
break
|
||||
|
||||
# await future to trigger exceptions in case something went wrong
|
||||
await user_input
|
||||
|
||||
# go back to home
|
||||
await button_push(controller_state, 'home')
|
||||
|
||||
|
||||
async def _main(controller, reconnect_bt_addr=None, capture_file=None, spi_flash=None, device_id=None):
|
||||
factory = controller_protocol_factory(controller, spi_flash=spi_flash)
|
||||
@@ -22,7 +141,19 @@ async def _main(controller, reconnect_bt_addr=None, capture_file=None, spi_flash
|
||||
|
||||
controller_state = protocol.get_controller_state()
|
||||
|
||||
# Create command line interface and add some extra commands
|
||||
cli = ControllerCLI(controller_state)
|
||||
|
||||
# Wrap the script so we can pass the controller state. The doc string will be printed when calling 'help'
|
||||
async def _run_test_controller_buttons():
|
||||
"""
|
||||
test_buttons - Navigates to the "Test Controller Buttons" menu and presses all buttons.
|
||||
"""
|
||||
await test_controller_buttons(controller_state)
|
||||
|
||||
# add the script from above
|
||||
cli.add_command('test_buttons', _run_test_controller_buttons)
|
||||
|
||||
await cli.run()
|
||||
|
||||
logger.info('Stopping communication...')
|
||||
|
||||
Reference in New Issue
Block a user