slightly lost in a keyboard of confusion
  • Good day everyone,
    I am a noob to playing with the PI2, I have successfully installed MATE to a chip, and I have been using Linux now for over 10 years, and MAME for 5. I installed the PiPlay to an 8gb chip with little issue. It works (apparently), but I do not seem to get the keyboard commands. Perhaps just a (duh) moment but, if I enter an emulator from the main screen, I do not seem to be able to go back to the main menu. Nor am I sure how to go back to the main menu from the terminal. Also when I viewed the youtube vid for the version I have, I dont seem to be able to make the float over screen to pop up.
    Does someone have a list of keyboard commands? A how to etc?

    Thanks :)
  • /home/pi/pimame/pimame-menu/controller.yaml contains all of the commands:

    JOYSTICK:
    HORIZONTAL_AXIS: 0
    VERTICAL_AXIS: 1

    DIRECTIONAL:
    LEFT: -1
    RIGHT: 1
    UP: -1
    DOWN: 1

    BUTTONS:
    SELECT: 2
    BACK: 1
    MENU: 0
    Quit: [1,2]

    KEYBOARD:
    UP:
    - pygame.K_UP
    - pygame.K_KP8
    - pygame.K_w
    DOWN:
    - pygame.K_DOWN
    - pygame.K_KP2
    - pygame.K_s
    LEFT:
    - pygame.K_LEFT
    - pygame.K_KP4
    - pygame.K_a
    RIGHT:
    - pygame.K_RIGHT
    - pygame.K_KP6
    - pygame.K_d
    SELECT:
    - pygame.K_RETURN
    - pygame.K_SPACE
    - pygame.K_KP_ENTER
    BACK:
    - pygame.K_ESCAPE
    - pygame.K_u
    MENU:
    - pygame.K_TAB
    - pygame.K_n
    QUIT:
    - "[pygame.K_LCTRL, pygame.K_q]"
    - "[pygame.K_n, pygame.K_j]"

    OPTIONS:
    AXIS_DRIFT_TOLERANCE: .9
  • If you press 'TAB' in the main menu, it will bring up the popup menu, then you can select 'controller setup' in order to change your controller preferences for the emulators.

    From the command line, if you need to get back into piplay, simply type exit

    Hope this helps!
  • will give it a try tonight, thank you

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!