A simple WAD extraction command line tool for Doom-engine mods
Find a file
2021-08-08 13:25:08 +02:00
.github/workflows - added continuous integration via github actions 2021-08-08 13:24:47 +02:00
zlib
.gitignore
CMakeLists.txt
convert.cpp
copying.txt
fileformat.cpp
fileformat.h
main.cpp v 2.0 2021-08-08 09:52:56 +02:00
README.md - reformatted compile instructions in readme 2021-08-08 13:25:08 +02:00
resourcefile.h - added Build GRP extraction function. 2021-08-08 09:13:29 +02:00
tarray.h
wadext.cpp - replaced backslash in 'decompiled/textures' with regular slash. 2021-08-08 10:05:31 +02:00
wadext.h
wadfile.cpp - added Build GRP extraction function. 2021-08-08 09:13:29 +02:00
wadman.h

wadext

Intro

A simple WAD extraction command line tool for Doom engine (id Tech 1) mods.

Usage

wadext [options] filename

Options

-nogfxconvert : Leave Doom format patches and flats in their original form, if not specified they will be converted to PNG.

-nosndconvert : Leave Doom format sounds in their original form, if not specified they will be converted to WAV.

-heretic, -hexen, -strife: Force usage of the named game's palette if the WAD does not contain one. Default is Doom palette

-strip: Remove node lumps from extracted maps.

-tx: Converts a set of TEXTURE1/TEXTURE2/PNAMES in the current directory to a textures.txt file.

Compile instructions

git clone https://github.com/coelckers/wadext.git
cd wadext
cmake .
cmake --build .