Playstation USB 어댑터 누락 버튼

Playstation USB 어댑터 누락 버튼

PC/Linux에서 PS2 Guitar Hero II 컨트롤러를 사용하려고 합니다. 다양한 Playstation-USB 어댑터를 사용해 본 후 마침내 입력 지연이 발생하지 않는 어댑터를 찾았습니다.

그러나 Linux에서는 다음과 같은 모든 버튼을 감지하는 데 문제가 있습니다.linux-input 메일링 리스트 스레드.

윈도우

  • 모든 버튼이 감지되었으나 방향 키(스트럼 위/아래)가 "Whammy bar"와 동일한 축에 잘못 매핑되었습니다. 이것은 게임을 중단시키는 것이 아니라 단지 불편을 끼칠 뿐입니다.

리눅스

  • Linux 감지 컨트롤러에는 ID 054c:0268 Sony Corp. Batoh Device / PlayStation 3 Controller13개의 버튼과 6개의 축이 있습니다.

  • 일부 버튼은 이벤트를 발생시키지 않습니다./dev/input/jsX

  • 버튼이 작동하지 않아요하다에서 감지된 HID 이벤트를 발생시킵니다 /dev/hidrawX.

이제 이것이 버그라는 것을 이해하고 드라이버가 수정될 때까지 기다려야 합니다. 수리 과정에서 해결책을 찾고 싶습니다.

원시 HID 이벤트를 입력 이벤트에 매핑하기 위해 일부 udev 규칙을 쉽게 작성할 수 있습니까?

또한 Windows에서 Wireshark를 사용하여 USB 핸드셰이크 프로세스를 캡처했습니다.

답변1

나는 그것을 사용하여 작동하게했습니다.Python용 히다피. 결국에는 쉬웠습니다. 도구가 부족했을 뿐이었습니다.

누구든지 지침이 필요한 경우 전체 스크립트는 다음과 같습니다.

from __future__ import print_function

import hid
import time
import uinput

MAPPING = {
    'green': uinput.BTN_0,
    'red': uinput.BTN_1,
    'yellow': uinput.BTN_2,
    'blue': uinput.BTN_3,
    'orange': uinput.BTN_4,
    'tilt': uinput.BTN_SELECT,  # SELECT
    'start': uinput.BTN_START,  # START
    'select': uinput.BTN_SELECT,  # SELECT
    'whammy': uinput.ABS_X,  # WHAMMY
    'strumdown': uinput.BTN_DPAD_DOWN,
    'strumup': uinput.BTN_DPAD_UP,
}

DEVICE = uinput.Device(MAPPING.values())

# enumerate USB devices

for d in hid.enumerate():
    keys = list(d.keys())
    keys.sort()
    for key in keys:
        print("%s : %s" % (key, d[key]))
    print()

# try opening a device, then perform write and read


def diff(new_arr, old_arr):
    for i in range(len(new_arr)):
        if new_arr[i] != old_arr[i]:
            yield (i, new_arr[i]) 


try:
    print("Opening the device")

    h = hid.device()
    h.open(0x054c, 0x0268)  # VendorID/ProductID

    print("Manufacturer: %s" % h.get_manufacturer_string())
    print("Product: %s" % h.get_product_string())
    print("Serial No: %s" % h.get_serial_number_string())

    # enable non-blocking mode
    h.set_nonblocking(1)

    # write some data to the device
    print("Write the data")
    h.write([0, 63, 35, 35] + [0] * 61)

    # wait
    time.sleep(0.05)

    # read back the answer
    print("Read the data")
    previous = None
    INPUT = {
        'green': False,
        'red': False,
        'yellow': False,
        'blue': False,
        'orange': False,
        'tilt': False,
        'start': False,
        'select': False,
        'whammy': False,
        'strumdown': False,
        'strumup': False,
    }

    def set_input(key, val, tmp):
        prev = INPUT[key]
        if tmp >= val:
            tmp -= val
            INPUT[key] = True
        else:
            INPUT[key] = False

        if prev != INPUT[key]:
            # SEND EVENT
            DEVICE.emit(MAPPING[key], INPUT[key])
            pass

        return tmp

    counter = 0
    while True:
        try:
            time.sleep(0.001)
            d = h.read(64)
            counter += 1
            if d:
                if previous and d != previous:
                    for ret in diff(d, previous):
                        if ret[0] == 7:
                            DEVICE.emit(MAPPING['whammy'], ret[1])

                        if ret[0] == 2:
                            tmp = ret[1] - 128
                            tmp = set_input('strumdown', 64, tmp)
                            tmp = set_input('strumup', 16, tmp)
                            tmp = set_input('start', 8, tmp)
                            tmp = set_input('select', 1, tmp)

                        if ret[0] == 3:
                            tmp = ret[1]
                            tmp = set_input('orange', 128, tmp)
                            tmp = set_input('blue', 64, tmp)
                            tmp = set_input('red', 32, tmp)
                            tmp = set_input('yellow', 16, tmp)
                            tmp = set_input('green', 2, tmp)
                            tmp = set_input('tilt', 1, tmp)

                previous = d
            else:
                continue
        except KeyboardInterrupt:
            break
        print(counter, end="\r")
        # print(INPUT)

    print("Closing the device")
    h.close()

except IOError as ex:
    print(ex)
    print("You probably don't have the hard coded device. Update the hid.device line")
    print("in this script with one from the enumeration list output above and try again.")

print("Done")

관련 정보