Switching tree of mods.

This commit is contained in:
Yaroslavik 2018-11-11 22:29:31 +02:00 committed by GitHub
parent 948afe7c4a
commit d54a8af3ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,12 +87,16 @@ function updateOptional()
{
profile.markOptional(modfile.string);
LogHelper.debug("Selected mod %s", modfile.string);
optionalModTreeToggle(true, modfile.string);
}
else
{
profile.unmarkOptional(modfile.string);
LogHelper.debug("Unselected mod %s", modfile.string);
optionalModTreeToggle(false, modfile.string);
}
upd = true;
updateOptional();
});
checkboxlist.add(testMod);
@ -114,5 +118,39 @@ function updateOptional()
checkboxlist.add(sep);
});
if(upd) holder.getChildren().clear();
holder.getChildren().addAll(checkboxlist);
};
function optionalModTreeToggle(enable, Imodfile) { //Переключение ветки модов
var profile = profilesList[serverHolder.old].object;
if(optModNames.modInfo[Imodfile] != null) {
var modInfo = optModNames.modInfo[Imodfile];
var modList = optModNames.modInfo;
if(modInfo.group != null && modInfo.submod != null) {
if(modInfo.submod == false){//Отключение core-модификации
Object.keys(modList).forEach(function(key, id) {
if(modList[key] != null && modList[key].group != null && modList[key].submod != null) {
if(modList[key].group == modInfo.group && modList[key].submod == true && enable == false) {
profile.unmarkOptional(key);
LogHelper.debug("Unselected subMod %s", key);
}
}
});
}
if(modInfo.submod == true){//Включение суб-модификации (Без core суб-моды работать не будут, так что его нужно включать)
Object.keys(modList).forEach(function(key, id) {
if(modList[key] != null && modList[key].group != null && modList[key].submod != null) {
if(modList[key].group == modInfo.group && modList[key].submod == false && enable == true) {
profile.markOptional(key);
LogHelper.debug("Selected coreMod %s", key);
}
}
});
}
}
}
}