mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
Description and submodifications
This commit is contained in:
parent
18f828e9e8
commit
6db80a4b15
1 changed files with 39 additions and 12 deletions
|
@ -59,18 +59,27 @@ 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;
|
var modName = modfile.string, modDescription = "", subm = false;
|
||||||
if(optModNames.modName[modfile.string] != null){
|
if(optModNames.modInfo[modfile.string] != null){//Есть ли хоть какое ни будь представление описания модификации?
|
||||||
modName = optModNames.modName[modfile.string];
|
var optModN = optModNames.modInfo[modfile.string];
|
||||||
} else if(optModNames.optAutoModName) {
|
if(optModN.name != null)//Есть ли у модификации имя?
|
||||||
//Попытка автоматически создать представляемое имя модификации.
|
modName = optModN.name;
|
||||||
modName = modName.replace(new RegExp("(.*?(\/))",'g'),'');
|
if(optModN.description != null) //Есть ли описание?
|
||||||
modName = modName.replace(new RegExp("(-|_|[\\d]|\\+).*",'g'),'');
|
modDescription = optModN.description;
|
||||||
//Первая буква - заглавная
|
if(optModN.submod != null && optModN.submod == true)//Это суб-модификация?
|
||||||
modName = modName[0].toUpperCase() + modName.slice(1);
|
subm = true;
|
||||||
}
|
} else if(optModNames.optAutoModName) {
|
||||||
|
//Попытка автоматически создать представляемое имя модификации.
|
||||||
|
modName = modName.replace(new RegExp("(.*?(\/))",'g'),'');
|
||||||
|
modName = modName.replace(new RegExp("(-|_|[\\d]|\\+).*",'g'),'');
|
||||||
|
//Первая буква - заглавная
|
||||||
|
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)//Это суб-модификация?
|
||||||
|
testMod.setTranslateX(25);
|
||||||
|
|
||||||
testMod.setSelected(modfile.mark);
|
testMod.setSelected(modfile.mark);
|
||||||
testMod.setOnAction(function(event) {
|
testMod.setOnAction(function(event) {
|
||||||
var isSelected = event.getSource().isSelected();
|
var isSelected = event.getSource().isSelected();
|
||||||
|
@ -85,7 +94,25 @@ function updateOptional()
|
||||||
LogHelper.debug("Unselected mod %s", modfile.string);
|
LogHelper.debug("Unselected mod %s", modfile.string);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
checkboxlist.add(testMod);
|
checkboxlist.add(testMod);
|
||||||
|
|
||||||
|
if(modDescription != "") { //Добавляем оаисание
|
||||||
|
textDescr = new javafx.scene.text.Text(modDescription);
|
||||||
|
if(subm){//Это суб-модификация?
|
||||||
|
textDescr.setWrappingWidth(345);
|
||||||
|
textDescr.setTranslateX(50);
|
||||||
|
} else {
|
||||||
|
textDescr.setWrappingWidth(370);
|
||||||
|
textDescr.setTranslateX(25);
|
||||||
|
}
|
||||||
|
textDescr.setTextAlignment(javafx.scene.text.TextAlignment.JUSTIFY);
|
||||||
|
textDescr.getStyleClass().add("description-text");
|
||||||
|
checkboxlist.add(textDescr);
|
||||||
|
}
|
||||||
|
sep = new javafx.scene.control.Separator();
|
||||||
|
sep.getStyleClass().add("separator");
|
||||||
|
checkboxlist.add(sep);
|
||||||
|
|
||||||
});
|
});
|
||||||
holder.getChildren().addAll(checkboxlist);
|
holder.getChildren().addAll(checkboxlist);
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in a new issue