blues/README.md

66 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2018-07-08 16:08:53 +02:00
# Blues Brothers
2018-12-16 13:34:03 +01:00
This is a rewrite of the [Blues Brothers](https://www.mobygames.com/game/blues-brothers) and [Blues Brothers: Jukebox Adventure](https://www.mobygames.com/game/blues-brothers-jukebox-adventure) game engines developed by [Titus Interactive](https://www.mobygames.com/company/titus-interactive-sa).
2018-07-08 16:08:53 +02:00
2018-12-16 13:34:03 +01:00
![Screenshot1](blues1.png) ![Screenshot2](bbja2.png)
2018-07-08 16:08:53 +02:00
2019-06-02 02:55:05 +02:00
There is also support for [Prehistorik 2](https://www.mobygames.com/game/prehistorik-2).
2018-07-08 16:08:53 +02:00
## Requirements
2018-12-16 13:34:03 +01:00
### Blues Brothers
2019-06-01 15:24:36 +02:00
The data files of the Amiga or DOS version, full game or [demo](https://archive.org/details/TheBluesBrothers_1020), are required.
2018-07-08 16:08:53 +02:00
```
*.BIN, *.CK1, *.CK2, *.SQL, *.SQV, *.SQZ
```
2018-12-16 13:34:03 +01:00
For sounds and music, the Amiga version files or the [ExoticA](https://www.exotica.org.uk/wiki/The_Blues_Brothers) set need to be copied.
### Jukebox Adventure
2019-06-01 15:24:36 +02:00
The data files of the DOS version are required.
2018-07-08 16:08:53 +02:00
```
2018-12-16 13:34:03 +01:00
*.EAT, *.MOD
2018-07-08 16:08:53 +02:00
```
2019-05-29 01:54:47 +02:00
### Prehistorik 2
2019-06-01 15:24:36 +02:00
The data files of the DOS version, full game or [demo](http://cd.textfiles.com/ccbcurrsh1/demos/pre2.zip), are required.
2019-05-29 01:54:47 +02:00
```
*.SQZ, *.TRK
```
2019-06-02 01:47:35 +02:00
## Changes
2022-03-12 23:41:23 +01:00
Compared to the original DOS executables, the rewritten engines feature:
2019-06-02 01:47:35 +02:00
- horizontal scrolling
- configurable screen size
2022-03-12 23:41:23 +01:00
- game cheats: unlimited lifes and energy, no hit
2019-06-02 01:47:35 +02:00
2018-07-08 16:08:53 +02:00
## Running
By default, the executable loads the data files from the current directory.
2018-12-16 13:34:03 +01:00
This can be changed using command line switches.
2018-07-08 16:08:53 +02:00
```
2018-08-12 16:55:27 +02:00
Usage: blues [OPTIONS]...
--datapath=PATH Path to data files (default '.')
--level=NUM Start at level NUM
--cheats=MASK Cheats bitmask
--startpos=XxY Start at position (X,Y)
--fullscreen Enable fullscreen
2018-12-16 13:34:03 +01:00
--scale=N Graphics scaling factor (default 2)
--filter=NAME Graphics scaling filter (default 'nearest')
2018-08-12 16:55:27 +02:00
--screensize=WxH Graphics screen size (default 320x200)
--cga Enable CGA colors
--dosscroll Enable DOS style screen scrolling
2022-02-25 20:12:38 +01:00
--hybrid Enable fuchsia color as in Hybrid crack
2018-07-08 16:08:53 +02:00
```