mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-02 22:41:56 +03:00
Switching tree of mods.
This commit is contained in:
parent
948afe7c4a
commit
d54a8af3ad
1 changed files with 69 additions and 31 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue