View Single Post
Love & Thunder Love & Thunder's Avatar

JCF Member

Joined: Sep 2011

Posts: 1,101

Love & Thunder has disabled reputation

Nov 2, 2020, 12:00 PM
Love & Thunder is offline
Reply With Quote
Quote:
Originally Posted by Simon View Post
Love & Thunder, can you post your adapted launcher batch file? Even if we end up with 1.3 plus fixes, HH95 will need the sound settings.
Hi. Sorry I didn't see this sooner.

It's actually an autoexec section in a DOSBox conf file, to match the form of the current Jazz launcher.

Here's my full, modified dosbox_jazz_single.conf file.

Code:
[ipx]
# ipx: Enable ipx over UDP/IP emulation.

ipx=false

[autoexec]
# Lines in this section will be run at startup.
# You can put your MOUNT lines here.
@echo off
mount c ".."
mount C "..\cloud_saves" -t overlay
c:
goto launcher

:launcher
cls
ECHO [1;32m[42mÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
ECHO º ------------------------------------------ º
ECHO º Jazz Jackrabbit Collection                 º
ECHO º ------------------------------------------ º
ECHO º  Jazz Jackrabbit CD-ROM version            º
ECHO º    1) Launch game                          º
ECHO º    2) Sound and Language Settings          º
ECHO º ------------------------------------------ º
ECHO º  Jazz Jackrabbit Holiday Hare '94          º
ECHO º    3) Launch game                          º
ECHO º    4) Sound and Language Settings          º
ECHO º ------------------------------------------ º
ECHO º  Jazz Jackrabbit Holiday Hare '95          º
ECHO º    5) Launch game                          º
ECHO º    6) Sound and Language Settings          º
ECHO º ------------------------------------------ º
ECHO º    7) Exit program                         º
ECHO º ------------------------------------------ º
ECHO ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ[0m

choice /c1234567 /s Which game do you want to run? [1-7]: /n 
if errorlevel 7 goto exit
if errorlevel 6 goto setup95
if errorlevel 5 goto hh95
if errorlevel 4 goto setup94
if errorlevel 3 goto hh94
if errorlevel 2 goto setupcd
if errorlevel 1 goto jazz

:jazz
cls
jazz.exe
goto exit

:setupcd
cls
setup.exe
cd..
goto launcher

:hh94
cls
cd hh94
jazz.exe
goto exit

:setup94
cls
cd hh94
setup.exe
cd..
goto launcher

:hh95
cls
cd hh95
jazz.exe
goto exit

:setup95
cls
cd hh95
setup.exe
cd..
goto launcher

:exit
exit
I used the GOG version as a base, but added Holiday Hare '94, and ways to launch the setup for both Holiday Hares, and I formatted the menu slightly differently to reflect this.
Note that this will only work if you have Holiday Hare 94 installed in a folder called "HH94", and '95 in a folder called "HH95", in the game's folder.

This is what it looks like when you run it:


Should I add options for 1.0 as well, or are we pitching that as a goodie?

Thanks for posting your fixes, though regarding Orbitus 2, are all of those changes necessary? I thought only the column on the right (and the realigned items) would be necessary to restore the original functionality of the level?
__________________

Last edited by Love & Thunder; Nov 2, 2020 at 12:10 PM.