Voljega / ExoDOSConverter

a custom game converter from the ExoDOS collection to emulation station based distribution format
151 stars 12 forks source link

Handle dosbox-pure zip format #113

Closed Voljega closed 6 months ago

Voljega commented 8 months ago

Create a dedicated dosbox-pure GUI option to fulle handle the zip format.

Post-conversion, for each game, do the following:

toniosj commented 7 months ago

I could do tests if you develop it. It will be a pleasure.

Voljega commented 7 months ago

@toniosj I'll try to do a kick rough dev to validate it through tests which I'll post here

Then I will refine it

Voljega commented 7 months ago

@toniosj here's a first version wich seems to work well, you need to check the new parameter ''Rezip for dosbox-pure" a few caveats:

anyway, waiting for your feeback :)

BE AWARE it might not be compatible with Long Folder Names option at the moment

eXoConverter-dosbox-pure-alpha.zip

Wacky Wheels worked for me, but not The 7th Guest

toniosj commented 7 months ago

eXoConverter 0.9.5-beta Script path : C:\Users\Antonio\Downloads\eXoConverter-dosbox-pure-alpha Traceback (most recent call last): File "main.py", line 15, in File "exogui.py", line 112, in draw File "exogui.py", line 129, in drawMainframe File "exogui.py", line 166, in drawPathsFrame File "util.py", line 335, in fullnameToGameDir File "util.py", line 347, in buildCollectionCSV FileNotFoundError: [Errno 2] No such file or directory: 'H:\eXo\eXoDOS\data\eXoDOSv6.csv' [2280] Failed to execute script main

toniosj commented 7 months ago

eXoConverter 0.9.5-beta Script path : C:\Users\Antonio\Downloads\eXoConverter-dosbox-pure-alpha Traceback (most recent call last): File "main.py", line 15, in File "exogui.py", line 112, in draw File "exogui.py", line 129, in drawMainframe File "exogui.py", line 166, in drawPathsFrame File "util.py", line 335, in fullnameToGameDir File "util.py", line 347, in buildCollectionCSV FileNotFoundError: [Errno 2] No such file or directory: 'H:\eXo\eXoDOS\data\eXoDOSv6.csv' [2280] Failed to execute script main

Fixed changing lines

outputDir = H:\ExoDOSConverted collectionDir = H:\eXo\eXoDOS

to

outputDir = collectionDir =

in conf-exo.conf

toniosj commented 7 months ago

I've tried Alone In The Dark and it works great.

I think that 7th. Guest (exodos version) uses a special driver sound. My spanish version of 7th. Guest works.

Voljega commented 7 months ago

Ok well more tests then !

I'm pretty stoked, gould be cool to do a selection of games working fine and distribute it with the software as a .sel

Le lun. 20 nov. 2023 à 13:47, toniosj @.***> a écrit :

I've tried Alone In The Dark and it works great.

I think that 7th. Guest (exodos version) uses a special driver sound. My spanish version of 7th. Guest works.

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1819002368, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4PCTM26X7RWFQGA443YFNGORAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJZGAYDEMZWHA . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

Could you add Long Folder Names with two options?

Voljega commented 7 months ago

Already done but not release nor pushed ;)

However the two full names are the same ? Do you mean with or without the year ?

Le lun. 20 nov. 2023 à 15:20, toniosj @.***> a écrit :

Could you add Long Folder Names with two options?

  • Original eXoDOS filename
  • METADATA filename

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1819155223, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4INIMV7OKSUSLNBAQ3YFNRJPAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJZGE2TKMRSGM . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

Already done but not release nor pushed ;) However the two full names are the same ? Do you mean with or without the year ? Le lun. 20 nov. 2023 à 15:20, toniosj @.> a écrit : Could you add Long Folder Names with two options? - Original eXoDOS filename - METADATA filename — Reply to this email directly, view it on GitHub <#113 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4INIMV7OKSUSLNBAQ3YFNRJPAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJZGE2TKMRSGM . You are receiving this because you authored the thread.Message ID: @.>

https://github.com/Voljega/ExoDOSConverter/issues/112

toniosj commented 7 months ago

I've found the problem with 7th Guest.

I think, eXoDOSConverter creates dosbox.cfg part using: eXoConverter-dosbox-pure-alpha\data\dosbox-0.74-default.conf

Try to overwrite your 7th Guest dosbox.conf (dosbox.cfg part) with original exodos dosbox options of the game:

[sdl]
fullscreen=false
fulldouble=false
fullresolution=0x0
windowresolution=1280x960
output=openglnb
mapperfile=mapper.map
[dosbox]
machine=svga_s3
memsize=32
[render]
aspect=true
scaler=normal2x
[cpu]
core=auto
cputype=auto
cycles=15000
[pci]
[mixer]
[midi]
fluid.soundfont=.\mt32\SoundCanvas.sf2
mt32.romdir=.\mt32
[sblaster]
sbmixer=false
[gus]
[speaker]
[joystick]
[serial]
[dos]
[ipx]
Voljega commented 7 months ago

Yes the new recommanded method in exodosv6 is to take the default dosbox.conf and to overwrite it with the specific one from the game...

However in that case it doesn't seem to work.

Thank you for the investigation I'll have a look too

Le lun. 20 nov. 2023 à 15:46, toniosj @.***> a écrit :

I've found the problem with 7th Guest.

I think, eXoDOSConverter creates dosbox.cfg part using: eXoConverter-dosbox-pure-alpha\data\dosbox-0.74-default.conf

Try to overwrite your 7th Guest dosbox.conf (dosbox.cfg part) with original exodos dosbox options of the game:

[sdl] fullscreen=false fulldouble=false fullresolution=0x0 windowresolution=1280x960 output=openglnb mapperfile=mapper.map [dosbox] machine=svga_s3 memsize=32 [render] aspect=true scaler=normal2x [cpu] core=auto cputype=auto cycles=15000 [pci] [mixer] [midi] fluid.soundfont=.\mt32\SoundCanvas.sf2 mt32.romdir=.\mt32 [sblaster] sbmixer=false [gus] [speaker] [joystick] [serial] [dos] [ipx]

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1819202948, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4OVDSTVSOG3AN7I56TYFNULJAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJZGIYDEOJUHA . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

Yes the new recommanded method in exodosv6 is to take the default dosbox.conf and to overwrite it with the specific one from the game... However in that case it doesn't seem to work. Thank you for the investigation I'll have a look too Le lun. 20 nov. 2023 à 15:46, toniosj @.> a écrit : I've found the problem with 7th Guest. I think, eXoDOSConverter creates dosbox.cfg part using: eXoConverter-dosbox-pure-alpha\data\dosbox-0.74-default.conf Try to overwrite your 7th Guest dosbox.conf (dosbox.cfg part) with original exodos dosbox options of the game: [sdl] fullscreen=false fulldouble=false fullresolution=0x0 windowresolution=1280x960 output=openglnb mapperfile=mapper.map [dosbox] machine=svga_s3 memsize=32 [render] aspect=true scaler=normal2x [cpu] core=auto cputype=auto cycles=15000 [pci] [mixer] [midi] fluid.soundfont=.\mt32\SoundCanvas.sf2 mt32.romdir=.\mt32 [sblaster] sbmixer=false [gus] [speaker] [joystick] [serial] [dos] [ipx] — Reply to this email directly, view it on GitHub <#113 (comment)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4OVDSTVSOG3AN7I56TYFNULJAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJZGIYDEOJUHA . You are receiving this because you authored the thread.Message ID: @.>

I've found the problem with The 7th Guest. It's a eXodos problem.

Try:

Modify file: \7thguest\T7G\SB16\GROOVIE.INI

Change line

ProgDir=C:\t7g\

with

ProgDir=C:\7thguest\t7g\

Test game and Select Option 1 SOUNDBLASTER.

Voljega commented 7 months ago

might be more a generator problem, a while ago I decided to generate game conf data in a subfolder to keep it cleaner and more portable but apparently it's causing issues with a fair amount of games ...

so i might just revert that, it's pretty easy

Voljega commented 7 months ago

New version with fix for the launch issue and now generating each games at root level Whole UI rehaul too, still need work on the mapper part eXoConverter-0.9.5-beta-alpha.zip

toniosj commented 7 months ago

Great! I'm going to test it. Ah, Recalbox supports Dosbox-Pure, maybe you should add rezip to Recalbox ;)

Now The 7th. Guest works perfecly. Alone In The Dark works. Goody works.

toniosj commented 7 months ago

I see that in last exodosconverter beta, in dosbox.conf apperas this line: imgmount -u d inside [autoexec] part But, it doesn't exist in exodos

Voljega commented 7 months ago

Yes it's because dosbox-pure automatically mount all drives, so you have to unmount them before you mount them otherwise the drive is already in use. However it seems it's not the case when using zip, so I'll remove this in that case (I'll do test to see when it works and when it doesn't)

For 7th guest I don't have mouse mapping through the gamepad though, do you have it ?

toniosj commented 7 months ago

For 7th guest I don't have mouse mapping through the gamepad though, do you have it ?

Not in 7th guest, but Indiana Jones and Fate of Atlantis I can use pad as mouse. Maybe dosboxpure problem with 7th guest.

toniosj commented 7 months ago

Yes the new recommanded method in exodosv6 is to take the default dosbox.conf and to overwrite it with the specific one from the game... However in that case it doesn't seem to work. Thank you for the investigation I'll have a look too

I've tested, if we use de dosbox.conf default, MT32 sound it doesn't work, but if we overwrite it with the specific one from the game, it works great as you said.

Voljega commented 7 months ago

So does it work with the one generated by the converter ?

Le mar. 21 nov. 2023 à 15:43, toniosj @.***> a écrit :

Yes the new recommanded method in exodosv6 is to take the default dosbox.conf and to overwrite it with the specific one from the game... However in that case it doesn't seem to work. Thank you for the investigation I'll have a look too

I've tested, if we use de dosbox.conf default, MT32 sound it doesn't work, but if we overwrite it with the specific one from the game, it works great as you said.

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1821059869, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4PRPBOYTWLWJIWP45LYFS4YPAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMRRGA2TSOBWHE . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

No, converter uses a default file for all games.

Voljega commented 7 months ago

No it doesn't unless there's a bug ? It uses the default file and overwrite with the one from the game as recommanded ?

Le mar. 21 nov. 2023 à 16:03, toniosj @.***> a écrit :

No, converter uses a default file for all games.

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1821098279, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4OKN35PKCONL7K2GNDYFS7FNAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMRRGA4TQMRXHE . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

ExoDosConverter is not doing that, but it should. ;)

Voljega commented 7 months ago

Then there's a bug because it's what it's supposed to do. Can you give me a game example ?

Le mar. 21 nov. 2023 à 16:20, toniosj @.***> a écrit :

ExoDosConverter is not doing that, but it should. ;)

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1821131455, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4KU3JBZ4LXATNYQZXTYFTBEHAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMRRGEZTCNBVGU . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

Indiana Jones and the Fate of Atlantis (1992)

Voljega commented 7 months ago

The specific conf for this game (eXoDOS\eXo\eXoDOS\!dos\IndiJFoA\dosbox.conf) doesn't have any reference to MT32 if I'm not mistaken ?

# Config file for Dosbox-0.74
[sdl]
fullscreen=false
fulldouble=false
fullresolution=0x0
windowresolution=1280x960
output=openglnb
mapperfile=mapper.map
[dosbox]
machine=svga_s3
memsize=16
[render]
aspect=true
scaler=normal2x
[cpu]
core=auto
cputype=auto
cycles=auto
[mixer]
[midi]
[sblaster]
[gus]
[speaker]
[joystick]
[serial]
[dos]
[ipx]
[autoexec]
cd ..
cd ..
mount c .\eXoDOS\IndiJFoA
c:
@cd IndiJFoA
@cls
@INDY4A
exit

and it seems to only use parameters alreay in the basix dosbox.conf (which you can find in the converter at ExoDOSConverter\data\dosbox-0.74-default.conf)

so maybe is it more an incompatibility with what's kept of the basis conf ?

toniosj commented 7 months ago

That is not the correct game. IndiJFoA = Indiana Jones and The Fate of Atlantis - The Action Game (1992)

Correct path: \eXoDOS\eXo\eXoDOS\!dos\indy4

indy4 = Indiana Jones and the Fate of Atlantis (1992)

# Config file for Dosbox-ECE r4230
[sdl]
fullscreen=false
fulldouble=false
fullresolution=0x0
windowresolution=1280x960
output=openglnb
mapperfile=mapper.map
[dosbox]
machine=svga_s3
memsize=63
[render]
aspect=true
scaler=normal2x
[cpu]
core=auto
cputype=auto
cycles=auto
[pci]
[mixer]
[midi]
mididevice=mt32
fluid.soundfont=.\mt32\SoundCanvas.sf2
mt32.romdir=.\mt32
[sblaster]
[gus]
[speaker]
[joystick]
[serial]
[dos]
[ipx]
[autoexec]
mount c .\eXoDOS\indy4
imgmount d ".\eXoDOS\indy4\cd\ATLANTIS.cue" -t cdrom
c:
cd fate
cls
@call run
exit
Voljega commented 7 months ago

ok then the generated dosbox.conf inside the zip does include the extra parameters from the specific dosbox.conf file of the game

[sdl]
fullscreen=true
fulldouble=false
fullresolution=desktop
windowresolution=1280x960
output=texture
autolock=true
sensitivity=100
waitonerror=true
priority=higher,normal
mapperfile=mapper.map
usescancodes=true
renderer=auto
vsync=false
[dosbox]
language=
machine=svga_s3
captures=capture
memsize=63
[render]
frameskip=0
aspect=true
scaler=normal2x
[cpu]
core=auto
cputype=auto
cycles=auto
cycleup=10
cycledown=20
[mixer]
nosound=false
rate=44100
blocksize=1024
prebuffer=20
[midi]
mpu401=intelligent
mididevice=mt32
midiconfig=
fluid.soundfont=.\mt32\SoundCanvas.sf2
mt32.romdir=.\mt32
[sblaster]
sbtype=sb16
sbbase=220
irq=7
dma=1
hdma=5
sbmixer=true
oplmode=auto
oplemu=default
oplrate=44100
[gus]
gus=false
gusrate=44100
gusbase=240
gusirq=5
gusdma=3
ultradir=C:\ULTRASND
[speaker]
pcspeaker=true
pcrate=44100
tandy=auto
tandyrate=44100
disney=true
[joystick]
joysticktype=auto
timed=true
autofire=false
swap34=false
buttonwrap=false
[serial]
serial1=dummy
serial2=dummy
serial3=disabled
serial4=disabled
[dos]
xms=true
ems=true
umb=true
keyboardlayout=auto
[ipx]
ipx=false
[pci]
[autoexec]
imgmount -u d
imgmount d .\cd\atlantis.cue -t cdrom
pause
c:
cd fate
call run

But:

Anyway, did you manage to launch the converted game through dosbox-pure in batocera and how ? with which dosbox.conf ?

toniosj commented 7 months ago

So maybe this folder should be copied inside the game folder ? No, I use dosbox-pure in Recalbox, and those files you must copy in bios directory. And games work perfect. There is no need to do anything about this.

Anyway, did you manage to launch the converted game through dosbox-pure in batocera and how ? with which dosbox.conf ? Your process generates 2 files: dosbox.cfg dosbox.bat

and then, you mix them to dosbox.conf.

dosbox.bat is correct, but the problem is in dosbox.cfg, because it is generated with default options.

dosbox.cfg should be use the eXoDOS\eXo\eXoDOS\!dos\_game_\dosbox.conf file, the entire file except the [autoexec]part, because the [autoexec] part is correct in the dosbox.bat

I use Recalbox 9.1, with doboxbox-pure 0.9.7

Voljega commented 7 months ago

dosbox.bat is correct, but the problem is in dosbox.cfg, because it is generated with default options. dosbox.cfg should be use the eXoDOS\eXo\eXoDOS!dos_game_\dosbox.conf file, the entire file except the [autoexec] part, because the [autoexec] part is correct in the dosbox.bat

No this is not right, once again it's not generated with the default options, but with the default options then overriden with the game specific config ? This is what I got in the resulting dosbox.conf inside the zip and the specific instructions of the game from eXoDOS\eXo\eXoDOS\!dos\indy4\dosbox.conf are here as you can see ([midi] section for instance)

[sdl]
fullscreen=true
fulldouble=false
fullresolution=desktop
windowresolution=1280x960
output=texture
autolock=true
sensitivity=100
waitonerror=true
priority=higher,normal
mapperfile=mapper.map
usescancodes=true
renderer=auto
vsync=false
[dosbox]
language=
machine=svga_s3
captures=capture
memsize=63
[render]
frameskip=0
aspect=true
scaler=normal2x
[cpu]
core=auto
cputype=auto
cycles=auto
cycleup=10
cycledown=20
[mixer]
nosound=false
rate=44100
blocksize=1024
prebuffer=20
[midi]
mpu401=intelligent
mididevice=mt32
midiconfig=
fluid.soundfont=.\mt32\SoundCanvas.sf2
mt32.romdir=.\mt32
[sblaster]
sbtype=sb16
sbbase=220
irq=7
dma=1
hdma=5
sbmixer=true
oplmode=auto
oplemu=default
oplrate=44100
[gus]
gus=false
gusrate=44100
gusbase=240
gusirq=5
gusdma=3
ultradir=C:\ULTRASND
[speaker]
pcspeaker=true
pcrate=44100
tandy=auto
tandyrate=44100
disney=true
[joystick]
joysticktype=auto
timed=true
autofire=false
swap34=false
buttonwrap=false
[serial]
serial1=dummy
serial2=dummy
serial3=disabled
serial4=disabled
[dos]
xms=true
ems=true
umb=true
keyboardlayout=auto
[ipx]
ipx=false
[pci]
[autoexec]
imgmount -u d
imgmount d .\cd\atlantis.cue -t cdrom
pause
c:
cd fate
call run

So either:

Voljega commented 7 months ago

partial view of default dosbox.conf on the left, generated dosbox.conf on the right, as you can see they are different and options from the game specific dosbox.conf have overriden the default values image

toniosj commented 7 months ago

Yes, you are right, I was wrong. Sorry so much!! I've compared two .conf files of different games and it has the specific conf game from exodos. The problem with MT32 was in my core configuration in Retroarch. Shit. Sorry if I've wasted your time. Thank you for your patience.

maybe the issue is that you are using Recalbox conversion ? because on my side I only test with Batocera, and I think some things are only activated for Batocera, for instance the dosbox pure zipping thing is only activated for batocera conversion ?

Sorry, I think I explained myself wrong. I use Batocera's export mode, but I try it on an Rpi with Recalbox and Retroarch PC.

Voljega commented 7 months ago

No problem, it's what's test are for ;) Yeah I noticed there was a parameter in retroarch for MT32 in dosbox-pure ! So if this retroarch parameter is checked (and the mt32 files are in the bios folder), am i right that the actual conversion works fine ?

toniosj commented 7 months ago

Yes! Actual conversion works fine!

I've found the problem with MT32. I see in your dosbox-0.74-default.confa parameter called midiconfig=

If I delete that parameter, all conversions work perfect with MT32.

So, if I delete this parameter in dosbox-0.74-default.conf before conversions, I'll have no problem!

Thanks!

Voljega commented 7 months ago

I'll do better, I won't include the parameters with no value in the conversion

toniosj commented 7 months ago

Great!

Voljega commented 7 months ago

last version for today :) eXoConverter-v0.9.5-db-alpha.zip

toniosj commented 7 months ago

Errors converting The 11th Hour with eXoConverter-v0.9.5-db-alpha.zip:

>>> 1/1 >>> 11thHour: starting conversion
  Metadata: The 11th Hour (1995), genres: Adventure |  Puzzle
  computed genre Adventure-Visual
  copy pics and manual
  unzipping H:\torrent\eXoDOS\eXo\eXoDOS\11th Hour, The (1995).zip
  unzipped
  copy dosbox conf
    clean single imgmount
      <ERROR> path I:\exodoscoverted_pure\11thHour.pc\.\discs\1.cu1.cue doesn't exist
    imgmount path: imgmount d ".\discs\1.cue" -t iso --> imgmount d .\discs\1.cu1.cue -t iso
    clean single imgmount
      <ERROR> path I:\exodoscoverted_pure\11thHour.pc\.\discs\2.cu2.cue doesn't exist
    imgmount path: imgmount e ".\discs\2.cue" -t iso --> imgmount e .\discs\2.cu2.cue -t iso
    clean single imgmount
      <ERROR> path I:\exodoscoverted_pure\11thHour.pc\.\discs\3.cu3.cue doesn't exist
    imgmount path: imgmount f ".\discs\3.cue" -t iso --> imgmount f .\discs\3.cu3.cue -t iso
    clean single imgmount
      <ERROR> path I:\exodoscoverted_pure\11thHour.pc\.\discs\4.cu4.cue doesn't exist
    imgmount path: imgmount g ".\discs\4.cue" -t iso --> imgmount g .\discs\4.cu4.cue -t iso
    <WARNING> game uses call run.bat
    Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\11thHour.pc\run.bat
    Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\11thHour.pc\go.bat
  Batocera/Retrobat post-conversion

<--------- Post-conversion --------->

<--------- Finished Process --------->

No errors with https://github.com/Voljega/ExoDOSConverter/releases/tag/0.9.5-beta

Voljega commented 7 months ago

Fixes: eXoConverter-0.9.5-db-alpha-4.zip

toniosj commented 7 months ago

Great!

toniosj commented 7 months ago

Errors detected:

   Error <class 'UnicodeDecodeError'> while converting game 747400
   <ERROR> path I:\exodoscoverted_pure\Airlines (1994).pc\.\floppy doesn't exist
 Metadata: Aliens (1996)(Error Free Productions) (1996), genres: Action |  Shooter
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Aliens (1996)(Error Free Productions).zip
     <ERROR> path I:\exodoscoverted_pure\Backgammon (1983) (1983).pc\.\bkgm1983\Backgammon.img doesn't exist
   <ERROR> path I:\exodoscoverted_pure\Bible Adventures (1994).pc\.\floppy doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game blind
     <ERROR> path I:\exodoscoverted_pure\Blood (1997).pc\.\cdcd1.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\BooTris (1993).pc\.\BooTris\bootris.img doesn't exist
     <ERROR> path I:\exodoscoverted_pure\BootGame (1994).pc\.\BootGame\DISK_IMG\BOOTGAME.IMG doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Brix II (1988).pc\.\RLOFT2.ISO doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game Canade
     <ERROR> path I:\exodoscoverted_pure\Carmageddon - Max Pack (1998).pc\.\cdDON.CUE doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game ClbCas
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game DDMSocce
     <ERROR> path I:\exodoscoverted_pure\Drakkar (1989).pc\.\Enchante\floppy.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\DukeZONE II (1997).pc\ .\eXoDOS\CD\Duke!Zone II (USA).cue doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game ess
 Error <class 'UnicodeDecodeError'> while converting game Elysian
 Error <class 'UnicodeDecodeError'> while converting game Escape99
     <ERROR> path I:\exodoscoverted_pure\Escape from Mars (1984).pc\.\WolfROTT\cd doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Extreme Velocity (1995).pc\.\cd doesn't exist
     <ERROR> path I:\exodoscoverted_pure\F-15 Strike Eagle (1985).pc\ega.img doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game FadThe
 Error <class 'UnicodeDecodeError'> while converting game Fenix
 Error <class 'UnicodeDecodeError'> while converting game FreakOut
 Error <class 'UnicodeDecodeError'> while converting game Frightma
   <ERROR> path I:\exodoscoverted_pure\Full Metal Planet (1990).pc\.\floppy doesn't exist
 Error <class 'UnicodeEncodeError'> while converting game TheGames
 Error <class 'UnicodeDecodeError'> while converting game ghenkhan
 Error <class 'FileNotFoundError'> while converting game GPTen87
 Error <class 'UnicodeDecodeError'> while converting game HDriv2
     <ERROR> path I:\exodoscoverted_pure\Inca (1985) (1985).pc\.\Inca1985\Inca.img doesn't exist
 Metadata: Inspector Gadget: Mission 1 – Global Terror! (1991), genres: Adventure |  Education
   Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Inspector Gadget - Mission 1 – Global Terror (1991).pc\run.bat
     <ERROR> path I:\exodoscoverted_pure\International Hockey (1987).pc\.\IntHock\INTLHOCK.IMG doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game JimmyWhi
     <ERROR> path I:\exodoscoverted_pure\Kaiser Deluxe (1995).pc\.\cd\KAISER_DELUXE.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\King's Quest I - Quest for the Crown (PCjr) (1984).pc\.\KQ1pcjr\floppy\disk.img doesn't exist
     <ERROR> path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H1.IMG doesn't exist
     <ERROR> path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H2.IMG doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game KryptonE
 Metadata: The Legacy: Realm of Terror (1993), genres: Adventure |  Role-Playing
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Legacy - Realm of Terror (1993).zip
   mount path: mount a .\eXoDOS\legacy\floppy -t floppy --> mount a "/userdata/roms/dos/The Legacy - Realm of Terror (1993).pc/floppy" -t floppy
   Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\The Legacy - Realm of Terror (1993).pc\run.bat
     <ERROR> path I:\exodoscoverted_pure\Marble Master (1997).pc\.\CD\SWING.cue doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game MasterLe
     <ERROR> path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\INST31.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\DATA31.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\PROG31.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Operation Just Because (1995).pc\.\cd\operation-just-cause.iso doesn't exist
 Metadata: Rob Blanc III: The Temporal Terrorists (2000), genres: Adventure
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Rob Blanc III - The Temporal Terrorists (2000).zip
 Error <class 'UnicodeDecodeError'> while converting game SetCatan
     <ERROR> path I:\exodoscoverted_pure\Shattered Steel (1996).pc\.\cd\Shattered Steel.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Sorry Ass (2016).pc\.\SorryAss\SORRYASS.IMA doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game Spheroid
     <ERROR> path I:\exodoscoverted_pure\Spitfire Ace (1984).pc\.\spitface\spitfire.img doesn't exist
 Error <class 'UnboundLocalError'> while converting game TNM7SE
     <ERROR> path I:\exodoscoverted_pure\Tales of Mystery (1984).pc\.\TaleMyst\floppy\SIDE1.IMG doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Tales of Mystery (1984).pc\.\TaleMyst\floppy\SIDE2.IMG doesn't exist
 Metadata: Terminal Terror (1994), genres: Action |  First Person Shooter
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terminal Terror (1994).zip
   Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Terminal Terror (1994).pc\start.bat
 Metadata: Terror in Christmas Town (1995), genres: Action |  First Person Shooter
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terror in Christmas Town (1995).zip
>> 6669/7633 >>> Terrorin: starting conversion
 Metadata: Terror in the Ice Caverns (1987), genres: Adventure |  Interactive Fiction
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terror in the Ice Caverns (1987).zip
   cd command: 'cd Terrorin' -> path is game name and no existing subpath, removed
>> 6670/7633 >>> Terrorof: starting conversion
 Metadata: Terror of the Catacombs (1993), genres: Action |  First Person Shooter
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terror of the Catacombs (1993).zip
   cd command: 'cd Terrorof' -> path is game name and no existing subpath, removed
   Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Terror of the Catacombs (1993).pc\run.bat
 Error <class 'UnicodeDecodeError'> while converting game TORNADO
 Error <class 'UnicodeDecodeError'> while converting game UltPinB
 Error <class 'KeyError'> while converting game Viper98
 <ERROR> error 404 while downloading from web H:\torrent\eXoDOS\eXo\eXoDOS\Where in the World is Carmen Sandiego CD (1993).zip: Not Found
 Error <class 'UnboundLocalError'> while converting game wwcscd
 Metadata: X-COM: Terror from the Deep (1995), genres: Construction and Management Simulation |  Strategy
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\X-COM - Terror from the Deep (1995).zip
     renamed X-COM Terror From The Deep.iso to x-comte.iso
   imgmount path: imgmount d ".\eXoDOS\XCOMTe\cd\X-COM Terror From The Deep.iso" -t cdrom --> imgmount d .\cd\x-comte.iso -t cdrom
 Error <class 'IndexError'> while converting game zombvill
     <ERROR> path I:\exodoscoverted_pure\Zuran Defender (1983).pc\.\Zuran\ZURANDEF.IMG doesn't exist
--------- Errors rundown --------->
7 errors were found during process
ee error log in your outputDir for more info
scadas 83 ocurrencias en 1 archivos de 1
)
 Error <class 'UnicodeDecodeError'> while converting game 747400
   <ERROR> path I:\exodoscoverted_pure\Airlines (1994).pc\.\floppy doesn't exist
 Metadata: Aliens (1996)(Error Free Productions) (1996), genres: Action |  Shooter
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Aliens (1996)(Error Free Productions).zip
     <ERROR> path I:\exodoscoverted_pure\Backgammon (1983) (1983).pc\.\bkgm1983\Backgammon.img doesn't exist
   <ERROR> path I:\exodoscoverted_pure\Bible Adventures (1994).pc\.\floppy doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game blind
     <ERROR> path I:\exodoscoverted_pure\Blood (1997).pc\.\cdcd1.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\BooTris (1993).pc\.\BooTris\bootris.img doesn't exist
     <ERROR> path I:\exodoscoverted_pure\BootGame (1994).pc\.\BootGame\DISK_IMG\BOOTGAME.IMG doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Brix II (1988).pc\.\RLOFT2.ISO doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game Canade
     <ERROR> path I:\exodoscoverted_pure\Carmageddon - Max Pack (1998).pc\.\cdDON.CUE doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game ClbCas
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game DDMSocce
     <ERROR> path I:\exodoscoverted_pure\Drakkar (1989).pc\.\Enchante\floppy.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\DukeZONE II (1997).pc\ .\eXoDOS\CD\Duke!Zone II (USA).cue doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game ess
 Error <class 'UnicodeDecodeError'> while converting game Elysian
 Error <class 'UnicodeDecodeError'> while converting game Escape99
     <ERROR> path I:\exodoscoverted_pure\Escape from Mars (1984).pc\.\WolfROTT\cd doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Extreme Velocity (1995).pc\.\cd doesn't exist
     <ERROR> path I:\exodoscoverted_pure\F-15 Strike Eagle (1985).pc\ega.img doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game FadThe
 Error <class 'UnicodeDecodeError'> while converting game Fenix
 Error <class 'UnicodeDecodeError'> while converting game FreakOut
 Error <class 'UnicodeDecodeError'> while converting game Frightma
   <ERROR> path I:\exodoscoverted_pure\Full Metal Planet (1990).pc\.\floppy doesn't exist
 Error <class 'UnicodeEncodeError'> while converting game TheGames
 Error <class 'UnicodeDecodeError'> while converting game ghenkhan
 Error <class 'FileNotFoundError'> while converting game GPTen87
 Error <class 'UnicodeDecodeError'> while converting game HDriv2
     <ERROR> path I:\exodoscoverted_pure\Inca (1985) (1985).pc\.\Inca1985\Inca.img doesn't exist
 Metadata: Inspector Gadget: Mission 1 – Global Terror! (1991), genres: Adventure |  Education
   Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Inspector Gadget - Mission 1 – Global Terror (1991).pc\run.bat
     <ERROR> path I:\exodoscoverted_pure\International Hockey (1987).pc\.\IntHock\INTLHOCK.IMG doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game JimmyWhi
     <ERROR> path I:\exodoscoverted_pure\Kaiser Deluxe (1995).pc\.\cd\KAISER_DELUXE.cue doesn't exist
     <ERROR> path I:\exodoscoverted_pure\King's Quest I - Quest for the Crown (PCjr) (1984).pc\.\KQ1pcjr\floppy\disk.img doesn't exist
     <ERROR> path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H1.IMG doesn't exist
     <ERROR> path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H2.IMG doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game KryptonE
 Metadata: The Legacy: Realm of Terror (1993), genres: Adventure |  Role-Playing
 unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Legacy - Realm of Terror (1993).zip
   mount path: mount a .\eXoDOS\legacy\floppy -t floppy --> mount a "/userdata/roms/dos/The Legacy - Realm of Terror (1993).pc/floppy" -t floppy
   Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\The Legacy - Realm of Terror (1993).pc\run.bat
     <ERROR> path I:\exodoscoverted_pure\Marble Master (1997).pc\.\CD\SWING.cue doesn't exist
 Error <class 'UnicodeDecodeError'> while converting game MasterLe
     <ERROR> path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\INST31.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\DATA31.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\PROG31.IMA doesn't exist
     <ERROR> path I:\exodoscoverted_pure\Operation Just Because (1995).pc\.\cd\operation-just-cause.iso doesn't exist

error_log.txt

If you need, the complete log, I could send you.

Voljega commented 7 months ago

That's ok with the name of the game I can reproduce it ! Thank you for the list

Le jeu. 23 nov. 2023 à 10:48, toniosj @.***> a écrit :

Errors detected:

Error <class 'UnicodeDecodeError'> while converting game 747400

path I:\exodoscoverted_pure\Airlines (1994).pc\.\floppy doesn't exist Metadata: Aliens (1996)(Error Free Productions) (1996), genres: Action | Shooter unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Aliens (1996)(Error Free Productions).zip path I:\exodoscoverted_pure\Backgammon (1983) (1983).pc\.\bkgm1983\Backgammon.img doesn't exist path I:\exodoscoverted_pure\Bible Adventures (1994).pc\.\floppy doesn't exist Error while converting game blind path I:\exodoscoverted_pure\Blood (1997).pc\.\cdcd1.cue doesn't exist path I:\exodoscoverted_pure\BooTris (1993).pc\.\BooTris\bootris.img doesn't exist path I:\exodoscoverted_pure\BootGame (1994).pc\.\BootGame\DISK_IMG\BOOTGAME.IMG doesn't exist path I:\exodoscoverted_pure\Brix II (1988).pc\.\RLOFT2.ISO doesn't exist Error while converting game Canade path I:\exodoscoverted_pure\Carmageddon - Max Pack (1998).pc\.\cdDON.CUE doesn't exist Error while converting game ClbCas path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist Error while converting game DDMSocce path I:\exodoscoverted_pure\Drakkar (1989).pc\.\Enchante\floppy.IMA doesn't exist path I:\exodoscoverted_pure\DukeZONE II (1997).pc\ .\eXoDOS\CD\Duke!Zone II (USA).cue doesn't exist Error while converting game ess Error while converting game Elysian Error while converting game Escape99 path I:\exodoscoverted_pure\Escape from Mars (1984).pc\.\WolfROTT\cd doesn't exist path I:\exodoscoverted_pure\Extreme Velocity (1995).pc\.\cd doesn't exist path I:\exodoscoverted_pure\F-15 Strike Eagle (1985).pc\ega.img doesn't exist Error while converting game FadThe Error while converting game Fenix Error while converting game FreakOut Error while converting game Frightma path I:\exodoscoverted_pure\Full Metal Planet (1990).pc\.\floppy doesn't exist Error while converting game TheGames Error while converting game ghenkhan Error while converting game GPTen87 Error while converting game HDriv2 path I:\exodoscoverted_pure\Inca (1985) (1985).pc\.\Inca1985\Inca.img doesn't exist Metadata: Inspector Gadget: Mission 1 – Global Terror! (1991), genres: Adventure | Education Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Inspector Gadget - Mission 1 – Global Terror (1991).pc\run.bat path I:\exodoscoverted_pure\International Hockey (1987).pc\.\IntHock\INTLHOCK.IMG doesn't exist Error while converting game JimmyWhi path I:\exodoscoverted_pure\Kaiser Deluxe (1995).pc\.\cd\KAISER_DELUXE.cue doesn't exist path I:\exodoscoverted_pure\King's Quest I - Quest for the Crown (PCjr) (1984).pc\.\KQ1pcjr\floppy\disk.img doesn't exist path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H1.IMG doesn't exist path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H2.IMG doesn't exist Error while converting game KryptonE Metadata: The Legacy: Realm of Terror (1993), genres: Adventure | Role-Playing unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Legacy - Realm of Terror (1993).zip mount path: mount a .\eXoDOS\legacy\floppy -t floppy --> mount a "/userdata/roms/dos/The Legacy - Realm of Terror (1993).pc/floppy" -t floppy Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\The Legacy - Realm of Terror (1993).pc\run.bat path I:\exodoscoverted_pure\Marble Master (1997).pc\.\CD\SWING.cue doesn't exist Error while converting game MasterLe path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\INST31.IMA doesn't exist path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\DATA31.IMA doesn't exist path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\PROG31.IMA doesn't exist path I:\exodoscoverted_pure\Operation Just Because (1995).pc\.\cd\operation-just-cause.iso doesn't exist Metadata: Rob Blanc III: The Temporal Terrorists (2000), genres: Adventure unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Rob Blanc III - The Temporal Terrorists (2000).zip Error while converting game SetCatan path I:\exodoscoverted_pure\Shattered Steel (1996).pc\.\cd\Shattered Steel.cue doesn't exist path I:\exodoscoverted_pure\Sorry Ass (2016).pc\.\SorryAss\SORRYASS.IMA doesn't exist Error while converting game Spheroid path I:\exodoscoverted_pure\Spitfire Ace (1984).pc\.\spitface\spitfire.img doesn't exist Error while converting game TNM7SE path I:\exodoscoverted_pure\Tales of Mystery (1984).pc\.\TaleMyst\floppy\SIDE1.IMG doesn't exist path I:\exodoscoverted_pure\Tales of Mystery (1984).pc\.\TaleMyst\floppy\SIDE2.IMG doesn't exist Metadata: Terminal Terror (1994), genres: Action | First Person Shooter unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terminal Terror (1994).zip Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Terminal Terror (1994).pc\start.bat Metadata: Terror in Christmas Town (1995), genres: Action | First Person Shooter unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terror in Christmas Town (1995).zip >> 6669/7633 >>> Terrorin: starting conversion Metadata: Terror in the Ice Caverns (1987), genres: Adventure | Interactive Fiction unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terror in the Ice Caverns (1987).zip cd command: 'cd Terrorin' -> path is game name and no existing subpath, removed >> 6670/7633 >>> Terrorof: starting conversion Metadata: Terror of the Catacombs (1993), genres: Action | First Person Shooter unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Terror of the Catacombs (1993).zip cd command: 'cd Terrorof' -> path is game name and no existing subpath, removed Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Terror of the Catacombs (1993).pc\run.bat Error while converting game TORNADO Error while converting game UltPinB Error while converting game Viper98 error 404 while downloading from web H:\torrent\eXoDOS\eXo\eXoDOS\Where in the World is Carmen Sandiego CD (1993).zip: Not Found Error while converting game wwcscd Metadata: X-COM: Terror from the Deep (1995), genres: Construction and Management Simulation | Strategy unzipping H:\torrent\eXoDOS\eXo\eXoDOS\X-COM - Terror from the Deep (1995).zip renamed X-COM Terror From The Deep.iso to x-comte.iso imgmount path: imgmount d ".\eXoDOS\XCOMTe\cd\X-COM Terror From The Deep.iso" -t cdrom --> imgmount d .\cd\x-comte.iso -t cdrom Error while converting game zombvill path I:\exodoscoverted_pure\Zuran Defender (1983).pc\.\Zuran\ZURANDEF.IMG doesn't exist --------- Errors rundown ---------> 7 errors were found during process ee error log in your outputDir for more info scadas 83 ocurrencias en 1 archivos de 1 ) Error while converting game 747400 path I:\exodoscoverted_pure\Airlines (1994).pc\.\floppy doesn't exist Metadata: Aliens (1996)(Error Free Productions) (1996), genres: Action | Shooter unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Aliens (1996)(Error Free Productions).zip path I:\exodoscoverted_pure\Backgammon (1983) (1983).pc\.\bkgm1983\Backgammon.img doesn't exist path I:\exodoscoverted_pure\Bible Adventures (1994).pc\.\floppy doesn't exist Error while converting game blind path I:\exodoscoverted_pure\Blood (1997).pc\.\cdcd1.cue doesn't exist path I:\exodoscoverted_pure\BooTris (1993).pc\.\BooTris\bootris.img doesn't exist path I:\exodoscoverted_pure\BootGame (1994).pc\.\BootGame\DISK_IMG\BOOTGAME.IMG doesn't exist path I:\exodoscoverted_pure\Brix II (1988).pc\.\RLOFT2.ISO doesn't exist Error while converting game Canade path I:\exodoscoverted_pure\Carmageddon - Max Pack (1998).pc\.\cdDON.CUE doesn't exist Error while converting game ClbCas path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Counterstrike CD3.cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Allied Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Command & Conquer - Red Alert (USA) (Soviet Disc) (Rerelease) (19991021).cue doesn't exist path I:\exodoscoverted_pure\Command & Conquer - Red Alert (1996).pc\.\cd\Red Alert Aftermath CD4.cue doesn't exist Error while converting game DDMSocce path I:\exodoscoverted_pure\Drakkar (1989).pc\.\Enchante\floppy.IMA doesn't exist path I:\exodoscoverted_pure\DukeZONE II (1997).pc\ .\eXoDOS\CD\Duke!Zone II (USA).cue doesn't exist Error while converting game ess Error while converting game Elysian Error while converting game Escape99 path I:\exodoscoverted_pure\Escape from Mars (1984).pc\.\WolfROTT\cd doesn't exist path I:\exodoscoverted_pure\Extreme Velocity (1995).pc\.\cd doesn't exist path I:\exodoscoverted_pure\F-15 Strike Eagle (1985).pc\ega.img doesn't exist Error while converting game FadThe Error while converting game Fenix Error while converting game FreakOut Error while converting game Frightma path I:\exodoscoverted_pure\Full Metal Planet (1990).pc\.\floppy doesn't exist Error while converting game TheGames Error while converting game ghenkhan Error while converting game GPTen87 Error while converting game HDriv2 path I:\exodoscoverted_pure\Inca (1985) (1985).pc\.\Inca1985\Inca.img doesn't exist Metadata: Inspector Gadget: Mission 1 – Global Terror! (1991), genres: Adventure | Education Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\Inspector Gadget - Mission 1 – Global Terror (1991).pc\run.bat path I:\exodoscoverted_pure\International Hockey (1987).pc\.\IntHock\INTLHOCK.IMG doesn't exist Error while converting game JimmyWhi path I:\exodoscoverted_pure\Kaiser Deluxe (1995).pc\.\cd\KAISER_DELUXE.cue doesn't exist path I:\exodoscoverted_pure\King's Quest I - Quest for the Crown (PCjr) (1984).pc\.\KQ1pcjr\floppy\disk.img doesn't exist path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H1.IMG doesn't exist path I:\exodoscoverted_pure\King's Quest II - Romancing the Throne (PCjr) (1985).pc\.\KQ2pcjr\KQ2V11H2.IMG doesn't exist Error while converting game KryptonE Metadata: The Legacy: Realm of Terror (1993), genres: Adventure | Role-Playing unzipping H:\torrent\eXoDOS\eXo\eXoDOS\Legacy - Realm of Terror (1993).zip mount path: mount a .\eXoDOS\legacy\floppy -t floppy --> mount a "/userdata/roms/dos/The Legacy - Realm of Terror (1993).pc/floppy" -t floppy Handle Bat File (enc:ascii->utf-8) I:\exodoscoverted_pure\The Legacy - Realm of Terror (1993).pc\run.bat path I:\exodoscoverted_pure\Marble Master (1997).pc\.\CD\SWING.cue doesn't exist Error while converting game MasterLe path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\INST31.IMA doesn't exist path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\DATA31.IMA doesn't exist path I:\exodoscoverted_pure\The New Print Shop Companion (1989).pc\.\NewPS\floppy\PROG31.IMA doesn't exist path I:\exodoscoverted_pure\Operation Just Because (1995).pc\.\cd\operation-just-cause.iso doesn't exist error_log.txt If you need, the complete log, I could send you. — Reply to this email directly, view it on GitHub , or unsubscribe . You are receiving this because you authored the thread.Message ID: ***@***.***>
toniosj commented 7 months ago

Complete log

Voljega commented 7 months ago

If you have the error_log at the root of your export folder, it's more detailed

Le jeu. 23 nov. 2023 à 11:33, toniosj @.***> a écrit :

Complete log https://drive.google.com/file/d/12_yyK80U6RKEuSbvniXxw8p3Ms78q7jN/view?usp=sharing

— Reply to this email directly, view it on GitHub https://github.com/Voljega/ExoDOSConverter/issues/113#issuecomment-1824158712, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAKXF4JJEPXU2PGVY3Y3UJTYF4Q6RAVCNFSM6AAAAAA7Q5P5XCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMRUGE2TQNZRGI . You are receiving this because you authored the thread.Message ID: @.***>

toniosj commented 7 months ago

error_log

toniosj commented 7 months ago

Do you need any test or more info?

Voljega commented 7 months ago

There seems to be at least two big bugs at the moment, so I'll fix that an then you can do more tests ;)

toniosj commented 7 months ago

Ok!

Voljega commented 7 months ago

(won't be there all weekend though, so don't unless I manage to fix something tonight, don't expect progress ...)