better logic to find valid output dimensions

pull/1358/head
Ryan Gibb 2021-12-29 11:33:53 +00:00
parent 39983c16da
commit c3e6014d68
1 changed files with 11 additions and 8 deletions

View File

@ -142,16 +142,19 @@ bool isValidOutput(const Json::Value &config, const std::string &name,
std::string comparator = str.substr(0, i);
int value = std::stoi(str.substr(i));
if (dimension == "height" && comparator == "<" && height >= value) {
return false;
} else if (dimension == "height" && comparator == ">" && height <= value) {
return false;
}else if (dimension == "width" && comparator == "<" && width >= value) {
return false;
}else if (dimension == "width" && comparator == ">" && width <= value) {
int comparison_value;
if (dimension == "height") {
comparison_value = height;
} else if (dimension == "weight") {
comparison_value = weight;
} else {
continue;
}
if ((comparator == "<" && comparison_value >= value) ||
(comparator == ">" && comparison_value <= value)) {
return false;
}
return true;
}
}
return true;