Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuv422/td3extract
A tool for extracting data files from the game - Test Drive III "The Passion"
https://github.com/yuv422/td3extract
dos game
Last synced: 10 days ago
JSON representation
A tool for extracting data files from the game - Test Drive III "The Passion"
- Host: GitHub
- URL: https://github.com/yuv422/td3extract
- Owner: yuv422
- License: mit
- Created: 2023-06-06T03:41:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-17T13:09:40.000Z (over 1 year ago)
- Last Synced: 2024-11-19T19:53:44.261Z (2 months ago)
- Topics: dos, game
- Language: C++
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TD3Extract
A tool for extracting data files from the game - Test Drive III "The Passion"Test Drive III game files are packed in the following archive files.
`DATAA.DAT`, `DATAB.DAT`, `DATAC.DAT`, `C.DAT` and `SCENEnn.DAT`This tool will extract the files back to their original filenames. It can also patch
the original game EXE to allow loading data from the unpacked files instead of the
archived `.DAT` files.Usage
=====```
TD3Extract optionOptions:
-extractFiles : Extract files
-patchEXE : Patch TD3.EXE to use extracted files
-decompressLZW inLZFile outFile : Decompress LZW compressed file.
-unpackRLE inFile outFile : Decompress RLE compressed file.
-extractImage inFile width paletteFile : Decompress packed game image file
into PNG file.
-encodeImage inFile outFile : Compress PNG image into RLE+LZW
encoded format for use by the game.
```Engine File Formats
-------------------More details on files used by the game can be found in the [/info](/info) directory.