Skip to content

Latest commit

 

History

History
91 lines (43 loc) · 4.42 KB

README.md

File metadata and controls

91 lines (43 loc) · 4.42 KB

RomInflater

RomInflater is an application designed to inflate a compressed ROM and launch the inflated file through an emulator. It is intended to be used within a frontend or a launcher.

When RomInflater inflates a compressed ROM, the original file is left untouched, the extracted files are stored in "cache". The cache size can be configured in the main window. When this reserved space is full, the older inflated files are removed automatically.

RomInflater

Usage

In this example, the ROM hack G.U. Vol.1 Rebirth (UNDUB) (USA).7z will be launched using the flatpak version of PCSX2. This is the command to execute from a frontend, launcher or terminal.

RomInflater-x86_64.AppImage "hack G.U. Vol.1 Rebirth (UNDUB) (USA).7z" .iso "flatpak run net.pcsx2.PCSX2 --fullscreen --nogui %INFLATEDFILE%"

The inflate dialog will be displayed and the ROM will be launched, once it has been inflated:

RomInflater

The command shown above is explained like this:

  • hack G.U. Vol.1 Rebirth (UNDUB) (USA).7z is the filename of the compressed ROM (Zip and 7z formats are supported).
  • .iso is the extension to look up after inflating (more than one extension or filename can be searched for).
  • flatpak run net.pcsx2.PCSX2 --fullscreen --nogui %INFLATEDFILE% is the command to execute after inflating. %INFLATEDFILE% will be replaced with the absolute path of the inflated suitable file.

More than one file extensions or filenames to look up can be passed as parameters. In this example, the ROM Final Fantasy VIII (USA) (Disc 4).zip will be launched using Retroarch. The extensions .cue and .bin will be searched for.

RomInflater-x86_64.AppImage "Final Fantasy VIII (USA) (Disc 4).zip" .cue .bin "retroarch -L ~/.config/retroarch/cores/mednafen_psx_hw_libretro.so %INFLATEDFILE%"

If more than one suitable file is found, a launcher dialog will be displayed:

RomInflater

If multiple .cue files are found, a .m3u file will be automatically generated with the .cue files listed in order. In case the ROM is to be used with the Beetle Saturn core in Retroarch.

RomInflater

Steam

RomInflater can be used to inflate and launch ROMs using the Steam version of Retroarch. In this example, the ROM Silent Hill (USA).zip will be launched using the Steam version of Retroarch with the Beetle PSX core (The core should be installed as DLC).

Click on ADD A GAME -> Add a Non-Steam Game:

RomInflater

Browse to the location of the RomInflater AppImage, select it and add it:

RomInflater

From the list of games, right clik over RomInflater and select properties:

RomInflater

Edit the properties whith these values:

  • TITLE Silent Hill.

  • TARGET The absolute path of the RomInflater AppImage.

  • START IN The absolute path of the Steam Retroarch installation.

  • LAUNCH OPTIONS The parameters that RomInflater will use to inflate and launch the ROM. In this example:

    "~/Games/Silent Hill (USA).zip" .cue "~/.steam/steam/steamapps/common/SteamLinuxRuntime_sniper/run -- ./retroarch.sh -L mednafen_psx_libretro.so %INFLATEDFILE%"

RomInflater

About

The directory containing the inflated ROMs is usually in ~/.local/share/io.github.RomInflater

RomInflater is distributed under the GPLv3 license.

Uses these third party software libraries:

  • QT The Qt framework contains a comprehensive set of highly intuitive and modularized C++ library classes and is loaded with APIs to simplify your application development (Used for the GUI).
  • libarchive Multi-format archive and compression library (Used to inflate the ROMs).

It is distributed as an AppImage.

Download

You can download the latest AppImage from the release section.