descawed / tesconvert

A tool for converting player characters between The Elder Scrolls III: Morrowind and The Elder Scrolls IV: Oblivion
0 stars 0 forks source link

Configuration #10

Closed descawed closed 4 years ago

descawed commented 4 years ago

Need some way to ingest configuration options. Command line arguments make a lot of sense, but the ultimate goal is that most users will see this tool invoked mainly by mods on the back-end, where they won't have the option to specify command line arguments. To address this, a configuration file might make sense, which can then be overridden on a case-by-case basis via command line arguments. Alternatively, we could have MCM options that then control what command line arguments are passed to the program. I don't think this is currently an option in OpenMW, however.

descawed commented 4 years ago

Added configuration via command line using the clap library. I'm going to leave it like this for now. If the need for a configuration file arises in the future, we can address that then.