• 0 Votes
    6 Posts
    705 Views
    mituM

    @pibell90 said in A new resoloution option should be added to raspi-config:

    @pibell90 Yeah I don't think that 720x480 has a DMT mode, so is there anyway to bypass that altogether?

    You can create a custom video mode - see https://forums.raspberrypi.com/viewtopic.php?t=24679, which is aimerd specifically at this kind of scenarios.

  • Retroarch no Core installer

    4
    0 Votes
    4 Posts
    2k Views
    mituM

    @CobraDesign47 said in Retroarch no Core installer:

    . Could someone help?

    RetroPie doesn't have a 'standard' RetroArch installation w.r.t. cores. Cores are managed manually from RetroPie setup and they're automatically set to be started depending on the system where the ROM/game is located. You don't need to start RetroArch and then open a core/content like you'd normalluy do on a bare RetroArch installation, instead you launch the game/ROM directly from EmulationStation.

    As for the original question - did you configure your keyboard in EmulationStation - as an input/controller ? It should automatically configure the keyboard for RetroArch also.

  • 0 Votes
    2 Posts
    787 Views
    J

    @jdoc I reached out to Xarcade, and this was their response:

    Hi John,

    Thank you for your interest in our Tankstick Max.

    To address the issue with the trackball/spinner for Raspberry Pi, we have two solutions:

    Custom Script: We have designed a custom script specifically for switching in the Raspberry Pi system. You can find the details here:
    I've attached the instructions for installing and using the spinner/trackball switching script on your RetroPie system. This document will guide you through setting up the script and provide details on how to utilize it effectively.

    Trackball/Spinner Mixing Adapter: We are releasing a trackball/spinner mixing adapter that combines both the spinner and trackball into a single device. This will resolve the issue for Raspberry Pi users. The adapter will be available at a low cost and ready for purchase in 1-2 months.

    I hope this helps!

    Best regards,

    Xgaming Support

    From the attached PDF:

    INSTALLATION INSTRUCTIONS

    AUTOMATIC INSTALLATION
    From terminal (press [F4] from EmulationStation to enter terminal) or, using SSH, enter the following
    commands EXACTLY as they appear:
    • cd
    • wget https://downloads.sourceforge.net/project/build-a-cade/xarcade.sh
    • chmod +x xarcade.sh
    • sudo ./xarcade.sh
    When the installation completes, you will be prompted to cleanup installation files (optional) and to
    reboot for changes to take effect.
    After the system is reloaded, load a game of your choice. Ensure the correct device (SPINNER or
    TRACKBALL) is active for the game. If not, press the RED BUTTON and then reload the game (exit with
    HOTKEY+START). After reloading, the correct device should be active. The current device remains active
    until the RED BUTTON is pressed, which switches input to the OTHER device. MANUAL INSTALLATION
    From terminal (press [F4] from EmulationStation to enter terminal) or, using SSH, enter the following
    commands EXACTLY as they appear:
    • cd
    • sudo apt update
    • sudo apt-get install python3-pip
    • sudo pip3 install evdev
    • wget https://downloads.sourceforge.net/project/build-a-cade/switchmouse.py
    • wget https://downloads.sourceforge.net/project/build-a-cade/red-button.sh
    • chmod +x red-button.sh
    • sed -i '1i sudo python3 /home/pi/switchmouse.py &' /opt/retropie/configs/all/autostart.sh
    • sudo reboot
    USAGE INSTRUCTIONS
    After installation and reboot, pressing the red button on the X-Arcade Tankstick MAX changes the
    input_player1_mouse_index in retroarch.cfg for the ARCADE system. Changes to the file are made
    instantly, but, if pressed while a game is running, the newly selected mouse won’t be active until the
    game is reloaded.
    To disable or reenable this feature, exit emulationstation by pressing [F4] on the keyboard, and enter the
    following command: sudo ./red-button.sh
    FILE DESCRIPTIONS
    xarcade.sh
    This Bash script automates the installation process for setting up X-Arcade switchmouse.py, a script used
    for changing the active mouse device in Retroarch between a Spinner and a Trackball using the RED
    button on the X-Arcade Tankstick MAX. Here's a breakdown of what the script does: Download Script: Downloads the switchmouse.py script and red-button.sh script from a
    specified URL. Update System Files: Updates the system's package lists to ensure it has the latest information
    about available packages. Install Dependencies: Installs necessary dependencies for running the switchmouse.py script,
    including python3-pip and evdev. Modify autostart.sh: Checks if the line sudo python3 /home/pi/switchmouse.py & is already
    present in the autostart.sh file. If not, it adds this line to the beginning of the file. Set File Ownership: Changes ownership of files to ensure they are owned by the user pi. Cleanup Installation Files: Offers the option to remove the installation files (xarcade.sh, which is
    the current script being executed) after installation. If the user chooses not to remove it, informs
    where the script is stored for manual deletion. Prompt for Reboot: Asks the user if they want to reboot the system to apply changes. If the user
    agrees, initiates a reboot; otherwise, informs the user that changes will take effect on the next
    reboot.
    Additionally, the script provides information on how to disable or enable the feature in the future by
    running sudo ./red-button.sh from the terminal.
    This script automates the setup process, making it easier for users to configure their systems for using X-
    Arcade switchmouse.py functionality.
    switchmouse.py Change Mouse Input for Retroarch: This script is designed to change the
    input_player1_mouse_index configuration in Retroarch between a Spinner and a Trackball using
    the RED button on the X-Arcade Tankstick MAX (middle mouse button). Create Configuration File: The script checks for the existence of the Retroarch configuration file
    (retroarch.cfg) in /opt/retropie/configs/arcade/. If the file doesn't exist, it creates it and sets
    the default value for input_player1_mouse_index. Find Next Mouse Device: It finds the next available Tankstick MAX mouse device in the system.
    This is done by looking for devices with the identifier "1241_1111" in the /dev/input/by-id/
    directory. Update Configuration File: The script updates the retroarch.cfg file with the index of the next
    mouse device found. It modifies the input_player1_mouse_index configuration line accordingly. Find Middle Mouse Button Event Device: It searches for the event device corresponding to the
    middle mouse button on the X-Arcade Tankstick MAX. This is done by scanning the /dev/input/
    directory for devices that support the middle mouse button event. Main Function: The main function of the script continuously monitors events from the middle
    mouse button device. When the middle mouse button is pressed, it triggers the process to
    switch to the next available mouse device and updates the Retroarch configuration file
    accordingly.
    Overall, this script automates the process of switching between Spinner and Trackball inputs in Retroarch
    using the middle mouse button on the X-Arcade Tankstick MAX, providing a convenient way for users to
    toggle between these input devices during gameplay.
    red-button.sh
    This Bash script automates the process of enabling or disabling mouse switching functionality using the
    red button the X-Arcade Tankstick MAX. Here's what the script accomplishes: Check Current Status: The script checks if the line sudo python3 /home/pi/switchmouse.py is
    present in the autostart.sh file located at /opt/retropie/configs/all/autostart.sh. This line
    initiates the functionality responsible for toggling between different mouse inputs. Toggle Functionality: If the line is found, indicating that mouse switching is currently enabled,
    the script prompts the user to confirm whether they want to disable it. Conversely, if the line is
    not found, indicating that mouse switching is disabled, it prompts the user to enable it. Update autostart.sh: Depending on the user's response, the script either removes or adds the
    line responsible for mouse switching to the autostart.sh file. This modification is performed
    using sed commands. Reboot Prompt: If any changes are made to the autostart.sh file, indicating a modification in
    mouse switching status, the script prompts the user to reboot the system for the changes to take
    effect. It ensures that the user's response is validated and provides appropriate feedback. Feedback: If no changes are made, the script informs the user that no modifications were
    performed.
    This script streamlines the process of managing mouse switching functionality, providing users with a
    convenient way to enable or disable this feature using the red button on their X-Arcade Tankstick MAX,
    with clear prompts and feedback throughout the process.
  • Kodi version is out-of-date

    4
    0 Votes
    4 Posts
    1k Views
  • retropie on USB

    2
    0 Votes
    2 Posts
    368 Views
    mituM

    If you can install RaspiOS on that partition and have it working, then you can install RetroPie (manually) over it. Using the Raspberry Pi image provided is not going to work to install RetroPie just for a partition.

  • Feature Request: Addition of Mupen64Plus GLide64MK2.

    1
    0 Votes
    1 Posts
    260 Views
    No one has replied
  • A Pi 5 Question

    3
    0 Votes
    3 Posts
    504 Views
    M

    @ExarKunIv That's what I figured. Thank you for the reply & link.

  • Can't run eduke32 on Raspberry pi 5 and Retropie 4.8.7

    1
    0 Votes
    1 Posts
    320 Views
    No one has replied
  • Can't run eduke32 (RPI 1B, RetroPie 4.8)

    Locked
    4
    0 Votes
    4 Posts
    431 Views
    mituM

    This is a 2 years old topic, please stop necro-posting.

    @shift support for the PI5 is still developed and some things may not work at this time. Post your logs in the PI5 topic please.

  • How to remove not fully installed package?

    2
    0 Votes
    2 Posts
    543 Views
    mituM

    Please add some info about your setup (like detailed in https://retropie.org.uk/forum/topic/3/read-this-first) when opening a support topic.

    You can uninstall the .deb package manually, but to skip the post-install/post-remove scripts, look for the /var/lib/dpkg/info/<package-name>.postrm or /var/lib/dpkg/info/<package-name>.postinst files and remove them before manually removing the .deb package.

  • Emulationstation custom collection rom names

    7
    0 Votes
    7 Posts
    2k Views
    mituM

    Looking at the code, it seems the removal of any (extra) text from the game names is intentional and not a bug, probably to eliminate confusion when the system name is appended.
    So if the game is named "Street Figther II' (World)", then in the collection it would be displayed (by default) as "Street Figther II' (arcade)" instead of "Street Figther II' (World) (arcade)". With the Show System Name in Collections option disabled, the game is displayed as "Street Figther II' (World)", since there's no additional (arcade) suffix to be displayed.

  • problem with audio in retropie

    6
    0 Votes
    6 Posts
    968 Views
    mituM

    @zipino82 Yes, I can see it, thank you. Please also provide the rest of the info requested.

  • insérer jeux sur carte sd

    Moved
    6
    0 Votes
    6 Posts
    566 Views
    S

    @Distel85 said in insérer jeux sur carte sd:

    it copies itself on retroppie once the usb key is inserted or is it necessary to do a special manipulation

    I think it should start automatically once inserted but if that not working, you may need to reboot after inserted the USB.

    Are you trying to keep the USB inserted always and keep the games on the USB (folder name should be retropie-mount), or rather just temporarily copy the games off the USB and onto the internal SD card when you may then remove the USB (folder on the USB should be named simply retropie in this case).

    I have no idea 'information on the subject

    See:
    https://retropie.org.uk/docs/Transferring-Roms/#usb-stick
    and
    https://retropie.org.uk/docs/Running-ROMs-from-a-USB-drive/

    @Distel85 said in insérer jeux sur carte sd:

    @sleve_mcdichael my games are in .zip but I see that it must be in .bin and I cannot find a converter to modify the address of the file

    Some systems games (psx for example) do need to be "unpacked" first. You can use a tool like 7-zip or WinRar to unpack the .zip file on your PC. If it unpacks to multiple .bin/.cue files, make sure to include the .cue and all of the .bin file(s) (if there's more than one) when moving them around.

  • Naomi - copying the Mame/Arcade/Neo Geo Real Naming convention

    4
    0 Votes
    4 Posts
    715 Views
    retropieuser555R

    @Lolonois that's perfect thank you

  • Dxx-rebirth - Descent I/II game data & add-ons

    1
    0 Votes
    1 Posts
    409 Views
    No one has replied
  • GemRB support?

    64
    0 Votes
    64 Posts
    11k Views
    shavecatS

    Hey i saw this...
    does anyone know how to install gemrb ? (pi4 retropie)
    or just the gemrb.sh file ?
    thanks

  • 1 Votes
    33 Posts
    11k Views
    L

    @challenger2010 I did a clean install and the scoreboard lights up with all "0" when the game boots it does nothing. Could it be I need to run a diff version of Daphne that supports the -usbsb switch?

  • Errors in Retroarch update

    3
    0 Votes
    3 Posts
    1k Views
    I

    @mitu , thanks a lot! was indeed the retroarch folder.

  • GZDoom crash (Opengl 3.3 needed)

    9
    0 Votes
    9 Posts
    1k Views
    ExarKunIvE

    @mitu said in GZDoom crash (Opengl 3.3 needed):

    +vid_preferbackend 3

    Yes that will make it work. Now will it work for that wad. I don't know.

    My hang up when I had a script in my collection. Was it was a unsupported version for certain wads.

  • 0 Votes
    17 Posts
    2k Views
    F

    But now, it cannot save. I'm running it on the lxde desktop because I couldn't run any program that can turn a controller's joystick into a mouse in a port game

Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.