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
|
@ -59,26 +59,26 @@ function updateOptional()
|
||||||
var list = profile.getOptional();
|
var list = profile.getOptional();
|
||||||
var checkboxlist = new java.util.ArrayList;
|
var checkboxlist = new java.util.ArrayList;
|
||||||
list.forEach(function(modfile,i,arr) {
|
list.forEach(function(modfile,i,arr) {
|
||||||
var modName = modfile.string, modDescription = "", subm = false;
|
var modName = modfile.string, modDescription = "", subm = false;
|
||||||
if(optModNames.modInfo[modfile.string] != null){//Есть ли хоть какое ни будь представление описания модификации?
|
if(optModNames.modInfo[modfile.string] != null){//Есть ли хоть какое ни будь представление описания модификации?
|
||||||
var optModN = optModNames.modInfo[modfile.string];
|
var optModN = optModNames.modInfo[modfile.string];
|
||||||
if(optModN.name != null)//Есть ли у модификации имя?
|
if(optModN.name != null)//Есть ли у модификации имя?
|
||||||
modName = optModN.name;
|
modName = optModN.name;
|
||||||
if(optModN.description != null) //Есть ли описание?
|
if(optModN.description != null) //Есть ли описание?
|
||||||
modDescription = optModN.description;
|
modDescription = optModN.description;
|
||||||
if(optModN.submod != null && optModN.submod == true)//Это суб-модификация?
|
if(optModN.submod != null && optModN.submod == true)//Это суб-модификация?
|
||||||
subm = true;
|
subm = true;
|
||||||
} else if(optModNames.optAutoModName) {
|
} else if(optModNames.optAutoModName) {
|
||||||
//Попытка автоматически создать представляемое имя модификации.
|
//Попытка автоматически создать представляемое имя модификации.
|
||||||
modName = modName.replace(new RegExp("(.*?(\/))",'g'),'');
|
modName = modName.replace(new RegExp("(.*?(\/))",'g'),'');
|
||||||
modName = modName.replace(new RegExp("(-|_|[\\d]|\\+).*",'g'),'');
|
modName = modName.replace(new RegExp("(-|_|[\\d]|\\+).*",'g'),'');
|
||||||
//Первая буква - заглавная
|
//Первая буква - заглавная
|
||||||
modName = modName[0].toUpperCase() + modName.slice(1);
|
modName = modName[0].toUpperCase() + modName.slice(1);
|
||||||
}
|
}
|
||||||
var testMod = new javafx.scene.control.CheckBox(modName);
|
var testMod = new javafx.scene.control.CheckBox(modName);
|
||||||
|
|
||||||
if(subm)//Это суб-модификация?
|
if(subm)//Это суб-модификация?
|
||||||
testMod.setTranslateX(25);
|
testMod.setTranslateX(25);
|
||||||
|
|
||||||
testMod.setSelected(modfile.mark);
|
testMod.setSelected(modfile.mark);
|
||||||
testMod.setOnAction(function(event) {
|
testMod.setOnAction(function(event) {
|
||||||
|
@ -87,32 +87,70 @@ function updateOptional()
|
||||||
{
|
{
|
||||||
profile.markOptional(modfile.string);
|
profile.markOptional(modfile.string);
|
||||||
LogHelper.debug("Selected mod %s", modfile.string);
|
LogHelper.debug("Selected mod %s", modfile.string);
|
||||||
|
optionalModTreeToggle(true, modfile.string);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
profile.unmarkOptional(modfile.string);
|
profile.unmarkOptional(modfile.string);
|
||||||
LogHelper.debug("Unselected mod %s", modfile.string);
|
LogHelper.debug("Unselected mod %s", modfile.string);
|
||||||
|
optionalModTreeToggle(false, modfile.string);
|
||||||
}
|
}
|
||||||
|
upd = true;
|
||||||
|
updateOptional();
|
||||||
});
|
});
|
||||||
checkboxlist.add(testMod);
|
checkboxlist.add(testMod);
|
||||||
|
|
||||||
if(modDescription != "") { //Добавляем оаисание
|
if(modDescription != "") { //Добавляем оаисание
|
||||||
textDescr = new javafx.scene.text.Text(modDescription);
|
textDescr = new javafx.scene.text.Text(modDescription);
|
||||||
if(subm){//Это суб-модификация?
|
if(subm){//Это суб-модификация?
|
||||||
textDescr.setWrappingWidth(345);
|
textDescr.setWrappingWidth(345);
|
||||||
textDescr.setTranslateX(50);
|
textDescr.setTranslateX(50);
|
||||||
} else {
|
} else {
|
||||||
textDescr.setWrappingWidth(370);
|
textDescr.setWrappingWidth(370);
|
||||||
textDescr.setTranslateX(25);
|
textDescr.setTranslateX(25);
|
||||||
}
|
}
|
||||||
textDescr.setTextAlignment(javafx.scene.text.TextAlignment.JUSTIFY);
|
textDescr.setTextAlignment(javafx.scene.text.TextAlignment.JUSTIFY);
|
||||||
textDescr.getStyleClass().add("description-text");
|
textDescr.getStyleClass().add("description-text");
|
||||||
checkboxlist.add(textDescr);
|
checkboxlist.add(textDescr);
|
||||||
}
|
}
|
||||||
sep = new javafx.scene.control.Separator();
|
sep = new javafx.scene.control.Separator();
|
||||||
sep.getStyleClass().add("separator");
|
sep.getStyleClass().add("separator");
|
||||||
checkboxlist.add(sep);
|
checkboxlist.add(sep);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
if(upd) holder.getChildren().clear();
|
||||||
holder.getChildren().addAll(checkboxlist);
|
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