Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
RK3ENTRY_1.0_bin.zip | 2019-10-12 | 128.5 kB | |
RK3ENTRY_1.0_src.zip | 2019-10-12 | 130.1 kB | |
readme.txt | 2019-10-12 | 2.2 kB | |
Totals: 3 Items | 260.8 kB | 0 |
//------------------------------------------------------------------------------ // // PK3Entry // Copyright (C) 2019 by Jim Valavanis // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA // 02111-1307, USA. // //------------------------------------------------------------------------------ This is a tool that: -Inserts PK3 files inside a WAD file The output WAD file contains long filename aliases (PK3ENTRY lump) The PK3ENTRY lump is parsed by DelphiDoom PK3 loader and create long filename aliases from WAD lumps. -Split WAD files that contain PK3ENTRY lump(s) to PK3 and WAD USAGE -To insert PK3 files inside a WAD file :/>PK3ENTRY -i infile1 [infile2....] -ow outfile [-r] [-i] : specify input PK3/WAD files [-ow] : specify output WAD file [-r] : rename common lumps (ACTORDEF, VOXELDEF, ...) -Split WAD files that contain contain PK3ENTRY lump(s) :/>PK3ENTRY -s infile [-oz outfile] [-ow outfile] [-s] : specify input WAD files to split [-oz] : specify output PK3/ZIP file [-ow] : specify output WAD file with the remaining lumps ADDITIONAL PARAMETERS: [-help] : show this help screen [-wait] : wait for key when done [-nowait] : does not wait for key when done [-quiet] : does not show screen information [-nobck] : does not create backup file //------------------------------------------------------------------------------ HISTORY version 1.0 (20191012) ---------------------- Initial release