config_description=Configuration for disk
config_hardware=true
config_host=true
config_version=4.4.0
config_hardware_path=
config_host_path=
config_all_path=
amiberry.rom_path=./
amiberry.floppy_path=./
amiberry.hardfile_path=./
amiberry.cd_path=./
;
; *** Controller/Input Configuration
;
joyport0=mouse
joyport0_autofire=none
joyport0_friendlyname=Mouse
joyport0_name=MOUSE0
;
joyport1=joy1
joyport1_autofire=none
joyport1_friendlyname=Microsoft X-Box 360 pad
joyport1_name=JOY1
;
;
;
input.joymouse_speed_analog=2
input.joymouse_speed_digital=10
input.joymouse_deadzone=33
input.joystick_deadzone=33
input.analog_joystick_multiplier=18
input.analog_joystick_offset=-5
input.mouse_speed=100
input.autofire_speed=600
input.autoswitch=1
kbd_lang=us
;
; *** Host-Specific
;
amiberry.gfx_auto_height=false
amiberry.gfx_correct_aspect=1
amiberry.kbd_led_num=-1
amiberry.kbd_led_scr=-1
amiberry.scaling_method=-1
amiberry.allow_host_run=false
amiberry.use_analogue_remap=false
amiberry.use_retroarch_quit=true
amiberry.use_retroarch_menu=true
amiberry.use_retroarch_reset=false
amiberry.active_priority=1
amiberry.inactive_priority=0
amiberry.minimized_priority=0
amiberry.minimized_input=0
;
; *** Common / Paths
;
use_gui=yes
kickstart_rom_file=/test/kickstart/Kickstart4.0.rom
kickstart_rom_file_id=FC24AE0D,KS ROM v3.1 (A500,A600,A2000)
kickstart_ext_rom_file=
flash_file=
cart_file=
rtc_file=
kickshifter=false
;
; *** Floppy Drives
;
floppy_volume=33
floppy0=
floppy1=
floppy2=
floppy2type=0
floppy3=
floppy3type=0
nr_floppies=4
floppy_speed=400
;
; *** Hard Drives
;
scsi=false
;
; *** CD / CD32
;
cd_speed=100
;
; *** Display / Screen Setup
;
gfx_framerate=1
gfx_width=720
gfx_height=540
gfx_top_windowed=0
gfx_left_windowed=0
gfx_width_windowed=720
gfx_height_windowed=540
gfx_width_fullscreen=800
gfx_height_fullscreen=600
gfx_refreshrate=50
gfx_refreshrate_rtg=60
gfx_backbuffers=2
gfx_backbuffers_rtg=1
gfx_vsync=false
gfx_vsyncmode=normal
gfx_vsync_picasso=false
gfx_vsyncmode_picasso=normal
gfx_lores=false
gfx_resolution=hires
gfx_lores_mode=normal
gfx_flickerfixer=false
gfx_linemode=none
gfx_fullscreen_amiga=false
gfx_fullscreen_picasso=false
gfx_center_horizontal=smart
gfx_center_vertical=none
gfx_colour_mode=16bit
gfx_blacker_than_black=false
gfx_api=directdraw
gfx_api_options=hardware
;
; *** CPU options
;
cpu_speed=real
cpu_throttle=0.0
cpu_type=68000
cpu_model=68000
cpu_compatible=true
cpu_24bit_addressing=true
cpu_data_cache=false
cpu_multiplier=2
cpu_cycle_exact=false
cpu_memory_cycle_exact=false
blitter_cycle_exact=false
cycle_exact=false
fpu_strict=false
comp_trustbyte=direct
comp_trustword=direct
comp_trustlong=direct
comp_trustnaddr=direct
comp_nf=true
comp_constjump=true
comp_flushmode=soft
compfpu=false
comp_catchfault=true
cachesize=0
;
; *** Memory
;
z3mapping=real
fastmem_size=8
a3000mem_size=0
mbresmem_size=0
z3mem_size=0
z3mem_start=0x40000000
bogomem_size=2
gfxcard_hardware_vblank=false
gfxcard_hardware_sprite=false
gfxcard_multithread=false
chipmem_size=4
rtg_modes=0x112
;
; *** Chipset
;
immediate_blits=false
fast_copper=true
ntsc=false
chipset=aga
collision_level=playfields
chipset_compatible=Generic
rtc=MSM6242B
resetwarning=false
cia_todbug=true
;
; *** Sound Options
;
sound_output=exact
sound_channels=stereo
sound_stereo_separation=7
sound_stereo_mixing_delay=0
sound_max_buff=16384
sound_frequency=44100
sound_interpol=anti
sound_filter=emulated
sound_filter_type=standard
sound_volume=0
sound_volume_paula=0
sound_volume_cd=20
sound_volume_ahi=0
sound_volume_midi=0
sound_volume_genlock=0
sound_auto=true
sound_cdaudio=false
sound_stereo_swap_paula=false
sound_stereo_swap_ahi=false
;
; *** Misc. Options
;
parallel_on_demand=false
serial_on_demand=false
serial_hardware_ctsrts=true
serial_direct=false
uaeserial=false
sana2=false
bsdsocket_emu=false
synchronize_clock=false
maprom=0x0
parallel_postscript_emulation=false
parallel_postscript_detection=false
ghostscript_parameters=
parallel_autoflush=5
;
; *** WHDLoad Booter. Options
;
whdload_slave=
whdload_showsplash=false
whdload_buttonwait=false
whdload_custom1=0
whdload_custom2=0
whdload_custom3=0
whdload_custom4=0
whdload_custom5=0
whdload_custom=
####
#!/usr/bin/perl
use strict; # https://perlmonks.org/?node_id=11151867
use warnings;
open my $fh, '<', 'config.uae' or die;
my $configlist = join '', <$fh>;
close $fh;
open $fh, '<', 'gamelist.txt' or die;
while( <$fh> )
{
chomp;
(my $newfile = $configlist) =~ s/floppy0=\K/$_/;
open my $outfh, '>', "$_.uae" or die;
print $outfh $newfile;
close $outfh;
}
close $fh;
####
#!/bin/bash
# remove all whitespace and replace with underscores
find /home/pi/RetroPie/roms/amiga/*/ -type f -name "* *" -exec bash -c 'mv "$0" "${0// /_}"' {} \;
wait
# add all games to a list, add the bare configuration file to all directories then add file path to list
for d in /home/pi/RetroPie/roms/amiga/games/*/
do
(cd "$d" && ls > gamelist.txt && cp /home/pi/RetroPie/roms/amiga/scripts/config.uae "$d" &&
awk -i inplace 'BEGIN{"pwd"|getline d} {print d "/" $0}' gamelist.txt &&
cp /home/pi/RetroPie/roms/amiga/scripts/amiberry.pl "$d" &&
cd "$d" && perl amiberry.pl)
done
wait
#remove additional files in game folders
sh cleanup.sh
####
for d in /home/pi/RetroPie/roms/amiga/games/*/
do
(cd "$d" && rm gamelis* | rm confi* | rm amiberry*)
done