libretro / uae4arm-libretro

Port of uae4arm for libretro (rpi/android)
6 stars 8 forks source link

disk control support #4

Open apison opened 5 years ago

apison commented 5 years ago

Please could someone add function to swap a disk? This emulator is the fastest amiga core, it only miss this function in order to be fully playable.

lineacero commented 3 years ago

¿Podría alguien agregar una función para intercambiar un disco? Este emulador es el núcleo amiga más rápido, solo falta esta función para ser completamente jugable.

Yes please,,change df0 and df1 please,, for psvita please

Chips-fr commented 3 years ago

Disk swapping is supported, but in a very limited way: only for DF0: and each disk should be named with "(Disk x of y)" Ex:

Game(Disk 1 of 3).adf Game(Disk 2 of 3).adf Game(Disk 3 of 3).adf

Then use L & R to swap disk.

I don't have a vita to test but it works well on raspberry. If you want to use DF1: you need to use a uae file which is more complex...

lineacero commented 3 years ago

very thanks company

lineacero commented 3 years ago

very thanks


De: DARCEL Frédéric notifications@github.com Enviado: miércoles, 27 de enero de 2021 10:44 Para: libretro/uae4arm-libretro uae4arm-libretro@noreply.github.com Cc: lineacero chicomadrid28025@hotmail.com; Comment comment@noreply.github.com Asunto: Re: [libretro/uae4arm-libretro] disk control support (#4)

Disk swapping is supported, but in a very limited way: only for DF0: and each disk should be named with "(Disk x of y)" Ex:

Game(Disk 1 of 3).adf Game(Disk 2 of 3).adf Game(Disk 3 of 3).adf

Then use L & R to swap disk.

I don't have a vita to test but it works well on raspberry. If you want to use DF1: you need to use a uae file which is more complex...

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/libretro/uae4arm-libretro/issues/4#issuecomment-768164248, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH3WUVBEEZ4JIIUYT4NPDWDS37OATANCNFSM4FWHJEWA.

z3tof commented 2 years ago

If you want to use DF1: you need to use a uae file which is more complex...

how do you use an uae file ? Which syntax to use DF1 ?

lineacero commented 2 years ago

Very,very thanks my friend


De: z3tof @.> Enviado: martes, 25 de enero de 2022 16:05 Para: libretro/uae4arm-libretro @.> Cc: Lineacero @.>; Comment @.> Asunto: Re: [libretro/uae4arm-libretro] disk control support (#4)

If you want to use DF1: you need to use a uae file which is more complex...

how do you use an uae file ? Which syntax to use DF1 ?

— Reply to this email directly, view it on GitHubhttps://github.com/libretro/uae4arm-libretro/issues/4#issuecomment-1021280518, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AH3WUVHAULZL7ZIE4J5EEM3UX2333ANCNFSM4FWHJEWA. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub. You are receiving this because you commented.Message ID: @.***>

Chips-fr commented 2 years ago

If you want to use DF1: you need to use a uae file which is more complex...

how do you use an uae file ? Which syntax to use DF1 ?

You will find many examples using google but syntax can change slighly between different uae version.

It's a text file with .uae extension. For floppy i think every uae version use same syntax: floppyx with number x for drive number.

Let's say you have a game on 2 floppy and you want "game_df0.adf" in drive 0 and "game_df1.adf" in drive 1. Then create a "game.uae" with following two lines inside:

floppy0=game_df0.adf floppy1=game_df1.adf

Then put this uae in the same directory as the adf files and load. I haven't tested this example but it should work. Sometimes you need to add full path in floppy name. There are many others options. For ex if you want 3 drives you need to add "nr_floppies=3" line in .uae file.

z3tof commented 2 years ago

i tried what you said but it didn't work..

i tried with relative and absolute path, with and without floppyXtype...

my uae file :

nr_floppies=3 floppy0=/recalbox/share/roms/amiga600/Indiana Jones and the Last Crusade - The Graphic Adventure v1.4 (1989-10-06)(Lucasfilm)(FR)(Disk 1 of 3)[cr].adf floppy0type=1 floppy1=/recalbox/share/roms/amiga600/Indiana Jones and the Last Crusade - The Graphic Adventure v1.4 (1989-10-06)(Lucasfilm)(FR)(Disk 2 of 3).adf floppy1type=1 floppy2=/recalbox/share/roms/amiga600/Indiana Jones and the Last Crusade - The Graphic Adventure v1.4 (1989-10-06)(Lucasfilm)(FR)(Disk 3 of 3).adf floppy2type=1

zetof

z3tof commented 2 years ago

@Chips-fr

Finaly, it works with absolute path...

The problem was that wasn't the .uae file which was launch by libretro

Thanks for your help.

zetof