blues/README.md

56 lines
1.5 KiB
Markdown
Raw 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-05-29 01:54:47 +02:00
There is also early support for [Prehistork 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
2018-08-12 14:27:20 +02:00
The game data files of the DOS or Amiga version 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
The game 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
The game data files of the DOS version are required.
```
*.SQZ, *.TRK
```
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
2018-07-08 16:08:53 +02:00
```