Project.cfg

From KK's Wiki
Revision as of 21:17, 30 September 2020 by Krzysiek (Talk | contribs) (Created page with "Category:dreadtool ''This page is still under construction - much of the information is still to be filled'' == File structure == The ''project.cfg'' is the main configu...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This page is still under construction - much of the information is still to be filled

File structure

The project.cfg is the main configuration file containing options for the tool. These options can be overridden in user.cfg file - any options specified there will get priority. The expected usage here is that the project.cfg will contain all required base settings, while user.cfg will list only temporary user modifications. The user.cfg file should be ignored by the source versioning system used.

Example file

The file is a simple text file, which structure and format should clearly be understood below.

# This is a comment
script-file-0: "dread/code/_defs.code";
script-file-1: "dread/code/weapons.code";
script-file-2: "dread/code/pickups.code";
script-file-3: "dread/code/mon_SPOS.code";
script-file-4: "dread/code/mon_CPOS.code";
script-file-5: "dread/code/mon_HEAD.code";
script-compiled-inline-export: "export/scripts.i";

# This is another comment
map-wad: "dread/maps/DemoMap01.wad";
assets-definition: "dread/assets.txt";

export-inline-file-target: "export/frame.inc";
export-inline-file-test: "export/frame.inc";
export-texture-atlas-preview: "export/tex.png";


Configuration variables

assets-definition

Relative path to the Assets.txt file.

assets-definition: "dread/assets.txt";


map-wad

Relative path to the WAD file containing map to be converted.

map-wad: "dread/maps/DemoMap01.wad";


script-file-#

List of script files to be compiled for the game. # is a number of the file starting from 0.

script-file-0: "dread/code/_defs.code";
script-file-1: "dread/code/weapons.code";
script-file-2: "dread/code/pickups.code";
script-file-3: "dread/code/mon_SPOS.code";
script-file-4: "dread/code/mon_CPOS.code";
script-file-5: "dread/code/mon_HEAD.code";