Attract-Mode Support Forum
Attract-Mode Support => General => Topic started by: yelever on April 13, 2017, 10:29:41 PM
-
Got most emulators running on attract mode. Using fs-uae for amiga whd games through retropie on ubuntu . I have whdload files for my games and have scanned them through fs-uae launcher and can start them no problem but when I go to run them through attract mode I just get the workbench hand screen like there's no disk in the emulator and it only sees the uae config file but doesn't load the game. I was thinking maybe I need to point attract mode to fs-uae launcher instead of the standard runcommand.sh. Would that automatically run the games through attract mode using fs-uae?
-
Does it work properly in EmulationStation?
Post your /etc/emulationstation/es_systems.cfg and your ~/.attract/emulators/fs-uae.cfg files.
-
Does the same in emulationstation. Yes I know my directory paths are different as I have all my roms on a different drive and copied the amiga whdload games over just to make sure for emulationstation. I think I have to point the executable to fs-uae launcher to get the games to work instead of the standard runcommand.sh.
# Generated by Attract-Mode v2.2.1
#
executable /opt/retropie/supplementary/runcommand/runcommand.sh
args 0 _SYS_ amiga "[romfilename]"
rompath /media/yelever/Roms/amiga
romext .adf;.adz;.dms;.ipf;.uae;.zip;.sh;.ADF;.ADZ;.DMS;.IPF;.UAE;.ZIP;.SH
system Commodore Amiga
artwork flyer /media/yelever/Roms/amiga/flyer;/home/yelever/RetroPie/roms/amiga/flyer
artwork marquee /media/yelever/Roms/amiga/marquee;/home/yelever/RetroPie/roms/amiga/marquee
artwork snap /media/yelever/Roms/amiga/snap;/home/yelever/RetroPie/roms/amiga/snap
artwork wheel /media/yelever/Roms/amiga/wheel;/home/yelever/RetroPie/roms/amiga/wheel
Es config with roms copied over just in case.
<system><name>amiga</name><fullname>Commodore Amiga</fullname><path>/home/yelever/RetroPie/roms/amiga</path><extension>.adf .adz .dms .ipf .uae .zip .sh .ADF .ADZ .DMS .IPF .UAE .ZIP .SH</extension><command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ amiga %ROM%</command><platform>amiga</platform><theme>amiga</theme></system>
-
Do you have the BIOS files installed in the correct location?
What type of files are your roms: .zip, .uae, etc.?
Post your /opt/retropie/configs/all/amiga/emulator.cfg file.
-
I have the bios files and using uae files along with the corresponding whdload files. Everything works with fs-uae launcher but through attract mode it just boots no game is loaded.
default = "fs-uae"
fs-uae = "bash /opt/retropie/emulators/fs-uae/bin/fs-uae.sh %ROM%"
-
What's the content of the /opt/retropie/emulators/fs-uae/bin/fs-uae.sh?
Also, what version of Ubuntu are you running?
-
Running xubuntu
#!/usr/bin/env bash
# This file is part of The RetroPie Project
#
# The RetroPie Project is the legal property of its developers, whose names are
# too numerous to list here. Please refer to the COPYRIGHT.md file distributed with this source.
#
# See the LICENSE.md file at the top-level directory of this distribution and
# at https://raw.githubusercontent.com/RetroPie/RetroPie-Setup/master/LICENSE.md
#
rom="$1"
rootdir="/opt/retropie"
datadir="$HOME/RetroPie"
romdir="$datadir/roms/amiga"
savedir="$romdir"
biosdir="$datadir/BIOS"
kickfile="$biosdir/kick13.rom"
source "$rootdir/lib/archivefuncs.sh"
if [[ ! -f "$kickfile" ]]; then
dialog --msgbox "You need to copy the Amiga kickstart file (kick13.rom) to the folder $biosdir to boot the Amiga emulator." 22 76
exit 1
fi
archiveExtract "$rom" ".adf .adz .dms .ipf"
# check successful extraction and if we have at least one file
if [[ $? == 0 ]]; then
rom="${arch_files[0]}"
romdir="$arch_dir"
floppy_images=()
for i in "${!arch_files
floppy_images+=("--floppy_image_$i=${arch_files[$i]}")
done
fi
fs-uae --floppy_drive_0="$rom" "${floppy_images- }" --kickstart_file="$kickfile" --floppies_dir="$romdir" --save_states_dir="$savedir"
archiveCleanup
-
Have you enable the WHDLoad feature of FS-UAE as described here https://fs-uae.net/whdload-support?
-
Yes as I can run the games through the launcher
-
Yes as I can run the games through the launcher
Provide an example of how you running them through the launcher. Are you clicking on an icon on the desktop or launching from the command line? Basically you need to figure out the correct command line syntax so it can be placed in the AM emulator.cfg file.
-
Running launcher from a desktop icon.
-
What file is does the icon run?
-
All I could find is this command by right clicking the icon and properties
fs-uae-launcher %f
-
Ok, fs-uae-launcher is going to be the executable that you'll use.
Run fs-uae-launcher and create a configuration file for one of your games. Name it the same as the game but with the .fs-uae file extension.
Go to the terminal and type "fs-uae-launcher <your-game-name>.fs-uae" and see if your game runs.
-
I just get this
bash: Xenon 2 (2 Disk): No such file or directory
-
OK got it to kinda work. It just boots to the launcher but the games doesn't run like I've only opened the launcher.
-
Ok, good. Try providing the path to the configuration file you created in the command.
Some thing like this
fs-uae-launcher "/path/to/configurations/<your-game-name>.fs-uae"
-
Not sure what you mean.
-
Not sure what you mean.
Did you make the configuration file like I said here http://forum.attractmode.org/index.php?topic=1614.msg11503#msg11503 (http://forum.attractmode.org/index.php?topic=1614.msg11503#msg11503)?
What is the full path to the configuration file and what is the file named?
-
The path is /media/yelever/Roms/amiga/Xenon 2 (2 Disk).uae
It saves the config as uae files
-
The path is /media/yelever/Roms/amiga/Xenon 2 (2 Disk).uae
It saves the config as uae files
Try running this from the command prompt
fs-uae-launcher "/media/yelever/Roms/amiga/Xenon 2 (2 Disk).uae"
-
Just brings up the launcher but doesn't run the game.