-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add the ability to require more than just existence for requirement metadata #99
Comments
Evaluating the checks as part of evaluating conditions wouldn't work because that would mean that requirements that have true conditions and that pass their checks would get filtered out, but they're needed as part of sorting, so that idea won't work. There could also be other reasons why you'd want to have the list of valid requirements whether or not they're present. One solution could be to expose a method for just evaluating conditions, which could be:
|
Coming back to this:
As a missing load after file or incompatibility is no different from that file metadata not being defined, So, for example:
means that
There's no way to represent that logic using just An example
means that That means you could rewrite that inc as:
An example
means that
That means you could rewrite that after as:
|
As I've been exploring the feasibility of importing mlox's metadata into the Morrowind masterlist (see loot/morrowind#114), I've found that one of the things that mlox supports and LOOT doesn't is the ability to show an error for a missing requirement when a plugin exists but doesn't fulfill some condition (it's the wrong version, has the wrong size or has a description with unexpected content, or a combination of those).
For example, in mlox you can have a rule like:
The closest you can get to this with LOOT's metadata is:
You can't put the condition on the
req
entry because that effectively means "check that this file exists when it does not have a version greater than 1.2", not "check that this file exists and has a version greater than 1.2".This isn't an issue for importing mlox's metadata, because adding a plugin message to cover the additional requirement ends up having the same effect, but it would be nice to have the ability to fully represent the requirement in the
req
entry.To achieve that, I've come up with the following:
File
metadata object,check
, which holds a condition string that is used to more precisely identify the file.req
file entries (because areq
entry should be kept if the file can't be found).With the
check
field, the example above would become:This would break the ABI, but would otherwise be backwards-compatible.
I'm undecided on what to do if the check isn't defined: the above assumes no change from the existing behaviour, but an alternative would be to use
file("<file entry name>")
as the check to evaluate if no check is defined for a file. That would be a change from the current behaviour, as it would mean that libloot's output when evaluating conditions would only include thereq
s that don't exist and theinc
s that do, but without that change evaluating conditions would filter out files with checks that aren't installed but leave in files without checks that aren't installed, which seems more inconsistent.It's woth noting that if an
inc
file is a plugin, LOOT will only show an error message if the file exists and it is active, and with this change LOOT would still need to check the latter.The text was updated successfully, but these errors were encountered: