[ANY] Js/css pretty print

This commit is contained in:
LoomeL 2019-08-14 14:44:35 +06:00
parent b9f76bdf16
commit 635be61bd9
14 changed files with 383 additions and 318 deletions

View file

@ -2,7 +2,7 @@
var config = { var config = {
dir: "GravitLauncher", // Launcher directory dir: "GravitLauncher", // Launcher directory
title: "GravitLauncher", // Window title title: "GravitLauncher", // Window title
icons: [ "favicon.png" ], // Window icon paths icons: ["favicon.png"], // Window icon paths
// Auth config // Auth config
linkText: "GravitLauncher", // Text for link under "Auth" button linkText: "GravitLauncher", // Text for link under "Auth" button

View file

@ -24,9 +24,9 @@ function initLauncher() {
/* ======== init Login window======== */ /* ======== init Login window======== */
function initLoginScene() { function initLoginScene() {
loginPane.setOnMousePressed(function(event){ movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY())}); loginPane.setOnMousePressed(function(event) { movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY()) });
loginPane.setOnMouseDragged(function(event) { loginPane.setOnMouseDragged(function(event) {
if(movePoint === null) { if (movePoint === null) {
return; return;
} }
stage.setX(event.getScreenX() - movePoint.getX()); stage.setX(event.getScreenX() - movePoint.getX());
@ -35,9 +35,9 @@ function initLoginScene() {
var pane = loginPane.lookup("#bar"); var pane = loginPane.lookup("#bar");
bar = pane; bar = pane;
loginPane.lookup("#close").setOnAction(function(event){ javafx.application.Platform.exit()}); loginPane.lookup("#close").setOnAction(function(event) { javafx.application.Platform.exit() });
loginPane.lookup("#hide").setOnAction(function(event){ stage.setIconified(true)}); loginPane.lookup("#hide").setOnAction(function(event) { stage.setIconified(true) });
loginPane.lookup("#discord").setOnAction(function(){ openURL(config.discord); }); loginPane.lookup("#discord").setOnAction(function() { openURL(config.discord); });
var pane = loginPane.lookup("#authPane"); var pane = loginPane.lookup("#authPane");
authPane = pane; authPane = pane;
@ -46,14 +46,14 @@ function initLoginScene() {
loginPaneLayout = loginLayout; loginPaneLayout = loginLayout;
loginField = pane.lookup("#login"); loginField = pane.lookup("#login");
loginField.setOnMouseMoved(function(event){rootPane.fireEvent(event)}); loginField.setOnMouseMoved(function(event) { rootPane.fireEvent(event) });
loginField.setOnAction(goAuth); loginField.setOnAction(goAuth);
if (settings.login !== null) { if (settings.login !== null) {
loginField.setText(settings.login); loginField.setText(settings.login);
} }
passwordField = pane.lookup("#password"); passwordField = pane.lookup("#password");
passwordField.setOnMouseMoved(function(event){rootPane.fireEvent(event)}); passwordField.setOnMouseMoved(function(event) { rootPane.fireEvent(event) });
passwordField.setOnAction(goAuth); passwordField.setOnAction(goAuth);
if (settings.rsaPassword !== null) { if (settings.rsaPassword !== null) {
passwordField.getStyleClass().add("hasSaved"); passwordField.getStyleClass().add("hasSaved");
@ -74,9 +74,9 @@ function initLoginScene() {
/* ======== init Menu window======== */ /* ======== init Menu window======== */
function initMenuScene() { function initMenuScene() {
menuPane.setOnMousePressed(function(event){ movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY())}); menuPane.setOnMousePressed(function(event) { movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY()) });
menuPane.setOnMouseDragged(function(event) { menuPane.setOnMouseDragged(function(event) {
if(movePoint === null) { if (movePoint === null) {
return; return;
} }
@ -86,9 +86,9 @@ function initMenuScene() {
var pane = menuPane.lookup("#bar"); var pane = menuPane.lookup("#bar");
bar = pane; bar = pane;
pane.lookup("#close").setOnAction(function(event){ javafx.application.Platform.exit()}); pane.lookup("#close").setOnAction(function(event) { javafx.application.Platform.exit() });
pane.lookup("#hide").setOnAction(function(event){ stage.setIconified(true)}); pane.lookup("#hide").setOnAction(function(event) { stage.setIconified(true) });
pane.lookup("#discord").setOnAction(function(){ openURL(config.discord); }); pane.lookup("#discord").setOnAction(function() { openURL(config.discord); });
pane.lookup("#settings").setOnAction(goSettings); pane.lookup("#settings").setOnAction(goSettings);
pane.lookup("#goConsole").setOnAction(goConsole); pane.lookup("#goConsole").setOnAction(goConsole);
@ -105,10 +105,10 @@ function initMenuScene() {
serverEntrance = pane.lookup("#serverentrance"); serverEntrance = pane.lookup("#serverentrance");
serverStatus = serverEntrance.lookup("#serverStatus"); serverStatus = serverEntrance.lookup("#serverStatus");
serverLabel = serverEntrance.lookup("#serverLabel"); serverLabel = serverEntrance.lookup("#serverLabel");
serverEntrance.lookup("#clientLaunch").setOnAction(function(){ serverEntrance.lookup("#clientLaunch").setOnAction(function() {
doUpdate(profilesList[serverHolder.old], loginData.pp, loginData.accessToken); doUpdate(profilesList[serverHolder.old], loginData.pp, loginData.accessToken);
}); });
pane.lookup("#logout").setOnAction(function(){ pane.lookup("#logout").setOnAction(function() {
setCurrentScene(loginScene); setCurrentScene(loginScene);
}); });
@ -116,9 +116,9 @@ function initMenuScene() {
/* ======== init Console window======== */ /* ======== init Console window======== */
function initConsoleScene() { function initConsoleScene() {
consoleMenu.setOnMousePressed(function(event){ movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY())}); consoleMenu.setOnMousePressed(function(event) { movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY()) });
consoleMenu.setOnMouseDragged(function(event) { consoleMenu.setOnMouseDragged(function(event) {
if(movePoint === null) { if (movePoint === null) {
return; return;
} }
@ -128,21 +128,21 @@ function initConsoleScene() {
var pane = consoleMenu.lookup("#bar"); var pane = consoleMenu.lookup("#bar");
consoleBar = pane; consoleBar = pane;
pane.lookup("#close").setOnAction(function(){ pane.lookup("#close").setOnAction(function() {
consoleStage.hide(); consoleStage.hide();
}); });
var text = consoleMenu.lookup("#textField"); var text = consoleMenu.lookup("#textField");
var output = consoleMenu.lookup("#output"); var output = consoleMenu.lookup("#output");
var appendFunction = function(line) javafx.application.Platform.runLater(function() output.appendText(line)); var appendFunction = function(line) javafx.application.Platform.runLater(function() output.appendText(line));
consoleMenu.lookup("#send").setOnAction(function(){ consoleMenu.lookup("#send").setOnAction(function() {
execCommand(text.getText()); execCommand(text.getText());
if (text.getText() == "clear") { if (text.getText() == "clear") {
output.setText(""); output.setText("");
} }
text.setText(""); text.setText("");
}); });
FunctionalBridge.addPlainOutput(function(string) { FunctionalBridge.addPlainOutput(function(string) {
appendFunction(string+"\n"); appendFunction(string + "\n");
}) })
pane.lookup("#hide").setOnAction(function(event) { consoleStage.setIconified(true) }); pane.lookup("#hide").setOnAction(function(event) { consoleStage.setIconified(true) });
@ -153,9 +153,9 @@ function initConsoleScene() {
/* ======== init Options window======== */ /* ======== init Options window======== */
function initOptionsScene() { function initOptionsScene() {
optionsMenu.setOnMousePressed(function(event){ movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY())}); optionsMenu.setOnMousePressed(function(event) { movePoint = new javafx.geometry.Point2D(event.getSceneX(), event.getSceneY()) });
optionsMenu.setOnMouseDragged(function(event) { optionsMenu.setOnMouseDragged(function(event) {
if(movePoint === null) { if (movePoint === null) {
return; return;
} }
@ -165,9 +165,9 @@ function initOptionsScene() {
var pane = optionsMenu.lookup("#bar"); var pane = optionsMenu.lookup("#bar");
bar = pane; bar = pane;
pane.lookup("#close").setOnAction(function(event){ javafx.application.Platform.exit()}); pane.lookup("#close").setOnAction(function(event) { javafx.application.Platform.exit() });
pane.lookup("#hide").setOnAction(function(event){ stage.setIconified(true)}); pane.lookup("#hide").setOnAction(function(event) { stage.setIconified(true) });
pane.lookup("#back").setOnAction(function(){ pane.lookup("#back").setOnAction(function() {
setCurrentScene(menuScene); setCurrentScene(menuScene);
}); });
} }
@ -202,29 +202,29 @@ function goAuth(event) {
return; // No auth selected return; // No auth selected
} }
var rsaPassword = null; var rsaPassword = null;
var auth = authOptions.getSelectionModel().getSelectedItem(); var auth = authOptions.getSelectionModel().getSelectedItem();
if (auth === null) { if (auth === null) {
return; return;
} }
if (!passwordField.isDisable()) { if (!passwordField.isDisable()) {
var password = passwordField.getText(); var password = passwordField.getText();
if (password !== null && !password.isEmpty()) { if (password !== null && !password.isEmpty()) {
rsaPassword = settingsOverlay.setPassword(password); rsaPassword = settingsOverlay.setPassword(password);
} else if (settings.rsaPassword !== null) { } else if (settings.rsaPassword !== null) {
rsaPassword = settings.rsaPassword; rsaPassword = settings.rsaPassword;
} else { } else {
return; return;
} }
settings.rsaPassword = savePasswordBox.isSelected() ? rsaPassword : null; settings.rsaPassword = savePasswordBox.isSelected() ? rsaPassword : null;
} }
settings.login = login; settings.login = login;
doAuth(login, rsaPassword, authTypes[auth]); doAuth(login, rsaPassword, authTypes[auth]);
} }
/* ======== Console ======== */ /* ======== Console ======== */
function goConsole(event) { function goConsole(event) {
setConsoleCurrentScene(consoleScene); setConsoleCurrentScene(consoleScene);
} }
@ -267,7 +267,7 @@ function verifyLauncher(e) {
authOptions.getSelectionModel().select(0); authOptions.getSelectionModel().select(0);
var sm = authOptions.getSelectionModel().selectedIndexProperty(); var sm = authOptions.getSelectionModel().selectedIndexProperty();
sm.addListener(new javafx.beans.value.ChangeListener({ sm.addListener(new javafx.beans.value.ChangeListener({
changed: function (observableValue, oldSelection, newSelection) { changed: function(observableValue, oldSelection, newSelection) {
settings.auth = authTypes[authOptions.getSelectionModel().getSelectedItem()]; settings.auth = authTypes[authOptions.getSelectionModel().getSelectedItem()];
} }
})); }));
@ -287,14 +287,18 @@ function verifyLauncher(e) {
function doAuth(login, rsaPassword, auth_type) { function doAuth(login, rsaPassword, auth_type) {
processing.resetOverlay(); processing.resetOverlay();
overlay.show(processing.overlay, function (event) { overlay.show(processing.overlay, function(event) {
FunctionalBridge.getHWID.join(); FunctionalBridge.getHWID.join();
makeAuthRequest(login, rsaPassword, auth_type, function (result) { makeAuthRequest(login, rsaPassword, auth_type, function(result) {
FunctionalBridge.setAuthParams(result); FunctionalBridge.setAuthParams(result);
loginData = { pp: result.playerProfile , accessToken: result.accessToken, permissions: result.permissions, loginData = {
auth_type: settings.auth}; pp: result.playerProfile,
accessToken: result.accessToken,
permissions: result.permissions,
auth_type: settings.auth
};
overlay.hide(0, function () { overlay.hide(0, function() {
setCurrentScene(menuScene); setCurrentScene(menuScene);
}); });
return result; return result;
@ -355,10 +359,8 @@ function doUpdate(profile, pp, accessToken) {
function doLaunchClient(assetDir, assetHDir, clientDir, clientHDir, profile, pp, accessToken) { function doLaunchClient(assetDir, assetHDir, clientDir, clientHDir, profile, pp, accessToken) {
processing.resetOverlay(); processing.resetOverlay();
overlay.swap(0, processing.overlay, function(event) overlay.swap(0, processing.overlay, function(event) launchClient(assetHDir, clientHDir, profile, new ClientLauncherParams(settings.lastDigest,
launchClient(assetHDir, clientHDir, profile, new ClientLauncherParams(settings.lastDigest, assetDir, clientDir, pp, accessToken, settings.autoEnter, settings.fullScreen, settings.ram, 0, 0), doDebugClient));
assetDir, clientDir, pp, accessToken, settings.autoEnter, settings.fullScreen, settings.ram, 0, 0), doDebugClient)
);
} }
function doDebugClient(process) { function doDebugClient(process) {
@ -398,10 +400,10 @@ function updateProfilesList(profiles) {
if (profile.getOptional() != null) profile.updateOptionalGraph(); if (profile.getOptional() != null) profile.updateOptionalGraph();
index++; index++;
}); });
LogHelper.debug("Load selected %d profile",settings.profile); LogHelper.debug("Load selected %d profile", settings.profile);
if(profiles.length > 0) { if (profiles.length > 0) {
if(settings.profile >= profiles.length) if (settings.profile >= profiles.length)
settings.profile = profiles.length-1; settings.profile = profiles.length - 1;
serverHolder.set(serverList.getChildren().get(settings.profile)); serverHolder.set(serverList.getChildren().get(settings.profile));
} }
} }
@ -412,11 +414,11 @@ function pingServer(btn) {
var task = newTask(function() pingers[profile].ping()); var task = newTask(function() pingers[profile].ping());
task.setOnSucceeded(function(event) { task.setOnSucceeded(function(event) {
var result = task.getValue(); var result = task.getValue();
if(btn==serverHolder.old){ if (btn == serverHolder.old) {
setServerStatus(java.lang.String.format("%d из %d", result.onlinePlayers, result.maxPlayers)); setServerStatus(java.lang.String.format("%d из %d", result.onlinePlayers, result.maxPlayers));
} }
}); });
task.setOnFailed(function(event){ if(btn==serverHolder.old){setServerStatus("Недоступен")}}); task.setOnFailed(function(event) { if (btn == serverHolder.old) { setServerStatus("Недоступен") } });
startTask(task); startTask(task);
} }
@ -482,7 +484,7 @@ var overlay = {
fade(overlay.current, delay, 1.0, 0.0, function(event) { fade(overlay.current, delay, 1.0, 0.0, function(event) {
dimPane.requestFocus(); dimPane.requestFocus();
if(overlay.current==null){ if (overlay.current == null) {
overlay.show(newOverlay, onFinished); overlay.show(newOverlay, onFinished);
return; return;
} }
@ -504,13 +506,13 @@ var overlay = {
var serverHolder = { var serverHolder = {
old: null, old: null,
set: function(btn){ set: function(btn) {
pingServer(btn); pingServer(btn);
serverLabel.setText(profilesList[btn]); serverLabel.setText(profilesList[btn]);
serverDescription.setText(profilesList[btn].info); serverDescription.setText(profilesList[btn].info);
btn.setSelected(true); btn.setSelected(true);
btn.setDisable(true); btn.setDisable(true);
if(serverHolder.old!=null){ if (serverHolder.old != null) {
serverHolder.old.setSelected(false); serverHolder.old.setSelected(false);
serverHolder.old.setDisable(false); serverHolder.old.setDisable(false);
} }

View file

@ -4,23 +4,23 @@ Button {
} }
/* Outputs */ /* Outputs */
#overlay > #output, #overlay>#output,
#background > #output { #background>#output {
-fx-background-color: white; -fx-background-color: white;
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-font-family: monospace; -fx-font-family: monospace;
-fx-font-size: 8pt; -fx-font-size: 8pt;
} }
#overlay > #output .content, #overlay>#output .content,
#background > #output .content { #background>#output .content {
-fx-background-color: white; -fx-background-color: white;
-fx-background-radius: 0; -fx-background-radius: 0;
} }
/* Close button */ /* Close button */
#overlay > #copy, #overlay>#copy,
#overlay > #action.close { #overlay>#action.close {
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-text-fill: white; -fx-text-fill: white;
-fx-background-position: center; -fx-background-position: center;
@ -29,17 +29,17 @@ #overlay > #action.close {
-fx-pref-height: 25px; -fx-pref-height: 25px;
} }
#overlay > #copy:hover, #overlay>#copy:hover,
#overlay > #copy:focused, #overlay>#copy:focused,
#overlay > #action.close:hover, #overlay>#action.close:hover,
#overlay > #action.close:focused, #overlay>#action.close:focused,
#overlay > #copy:pressed, #overlay>#copy:pressed,
#overlay > #action.close:pressed { #overlay>#action.close:pressed {
-fx-background-color: #1568ce; -fx-background-color: #1568ce;
} }
/* Kill button */ /* Kill button */
#overlay > #action.kill { #overlay>#action.kill {
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-text-fill: white; -fx-text-fill: white;
-fx-background-position: center; -fx-background-position: center;
@ -48,9 +48,10 @@ #overlay > #action.kill {
-fx-pref-height: 25px; -fx-pref-height: 25px;
} }
#overlay > #action.kill:hover, #overlay>#action.kill:hover,
#overlay > #action.kill:focused, #overlay>#action.kill:focused,
#overlay > #action.kill:pressed { #overlay>#action.kill:pressed {
-fx-background-color: #DB5252; -fx-background-color: #DB5252;
} }
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/

View file

@ -1,10 +1,13 @@
var debug = { var debug = {
overlay: null, output: null, action: null, process: null, overlay: null,
output: null,
action: null,
process: null,
initOverlay: function() { initOverlay: function() {
debug.overlay = loadFXML("dialog/overlay/debug/debug.fxml"); debug.overlay = loadFXML("dialog/overlay/debug/debug.fxml");
debug.overlay.lookup("#version").setText( debug.overlay.lookup("#version").setText(
java.lang.String.format( java.lang.String.format(
"%s | Java %s x%s", "%s | Java %s x%s",
FunctionalBridge.getLauncherVersion(), FunctionalBridge.getLauncherVersion(),
@ -22,7 +25,7 @@ var debug = {
content.putString(debug.output.getText()); content.putString(debug.output.getText());
javafx.scene.input.Clipboard.getSystemClipboard(). javafx.scene.input.Clipboard.getSystemClipboard().
setContent(content); setContent(content);
}); });
debug.action = debug.overlay.lookup("#action"); debug.action = debug.overlay.lookup("#action");
@ -47,8 +50,7 @@ var debug = {
append: function(text) { append: function(text) {
//Experimental Feature //Experimental Feature
if(debug.output.getText().length() > 32000 /* Max length */) if (debug.output.getText().length() > 32000 /* Max length */ ) {
{
debug.output.deleteText(0, text.length()); debug.output.deleteText(0, text.length());
} }
debug.output.appendText(text); debug.output.appendText(text);
@ -79,7 +81,7 @@ function debugProcess(process) {
var reader = IOHelper.newReader(process.getInputStream(), var reader = IOHelper.newReader(process.getInputStream(),
java.nio.charset.Charset.defaultCharset()); java.nio.charset.Charset.defaultCharset());
var appendFunction = function(line) var appendFunction = function(line)
javafx.application.Platform.runLater(function() debug.append(line)); javafx.application.Platform.runLater(function() debug.append(line));
for (var length = reader.read(buffer); length >= 0; length = reader.read(buffer)) { for (var length = reader.read(buffer); length >= 0; length = reader.read(buffer)) {
appendFunction(new java.lang.String(buffer, 0, length)); appendFunction(new java.lang.String(buffer, 0, length));
} }

View file

@ -1,11 +1,12 @@
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/
#overlay > #description { #overlay>#description {
-fx-font-size: 12pt; -fx-font-size: 12pt;
-fx-text-fill: #fff; -fx-text-fill: #fff;
-fx-wrap-text: true; -fx-wrap-text: true;
} }
#overlay > #description.error { #overlay>#description.error {
-fx-text-fill: red; -fx-text-fill: red;
} }
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/

View file

@ -1,6 +1,9 @@
var processing = { var processing = {
overlay: null, spinner: null, description: null, overlay: null,
processingImage: null, errorImage: null, spinner: null,
description: null,
processingImage: null,
errorImage: null,
initOverlay: function() { initOverlay: function() {
processing.overlay = loadFXML("dialog/overlay/processing/processing.fxml"); processing.overlay = loadFXML("dialog/overlay/processing/processing.fxml");
@ -69,6 +72,7 @@ function makeLauncherRequest(callback) {
task.updateMessage("Обновление лаунчера"); task.updateMessage("Обновление лаунчера");
startTask(task); startTask(task);
} }
function makeProfilesRequest(callback) { function makeProfilesRequest(callback) {
var task = newRequestTask(new ProfilesRequest()); var task = newRequestTask(new ProfilesRequest());
@ -83,6 +87,7 @@ function makeProfilesRequest(callback) {
task.updateMessage("Обновление профилей"); task.updateMessage("Обновление профилей");
startTask(task); startTask(task);
} }
function makeAuthAvailabilityRequest(callback) { function makeAuthAvailabilityRequest(callback) {
var task = newRequestTask(new GetAvailabilityAuthRequest()); var task = newRequestTask(new GetAvailabilityAuthRequest());
@ -98,6 +103,7 @@ function makeAuthAvailabilityRequest(callback) {
task.updateMessage("Обновление способов авторизации"); task.updateMessage("Обновление способов авторизации");
startTask(task); startTask(task);
} }
function makeSetProfileRequest(profile, callback) { function makeSetProfileRequest(profile, callback) {
var task = newRequestTask(new SetProfileRequest(profile)); var task = newRequestTask(new SetProfileRequest(profile));

View file

@ -1,14 +1,19 @@
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/
#holder { #holder {
-fx-background-color: #fff; -fx-background-color: #fff;
} }
#holder > #transferDialog {
#holder>#transferDialog {
-fx-background-color: rgba(0, 0, 0, 0.5); -fx-background-color: rgba(0, 0, 0, 0.5);
-fx-pref-width: 694px; -fx-pref-width: 694px;
-fx-pref-height: 425px; -fx-pref-height: 425px;
} }
/* Labels */ /* Labels */
#holder > #settingsTitle {
#holder>#settingsTitle {
-fx-font-size: 14pt; -fx-font-size: 14pt;
-fx-alignment: baseline-center; -fx-alignment: baseline-center;
} }
@ -19,30 +24,35 @@ #holder #dirChange {
-fx-font-weight: bold; -fx-font-weight: bold;
} }
/* RAM slider */ /* RAM slider */
#holder > #ramSlider > .track {
#holder>#ramSlider>.track {
-fx-background-color: #909090; -fx-background-color: #909090;
} }
#holder > #ramSlider > .thumb { #holder>#ramSlider>.thumb {
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
} }
#holder > #ramSlider > .colored-track { #holder>#ramSlider>.colored-track {
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
} }
#holder > #ramSlider > .animated-thumb { #holder>#ramSlider>.animated-thumb {
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
} }
#holder > #ramSlider > .slider-value { #holder>#ramSlider>.slider-value {
-fx-fill: white; -fx-fill: white;
-fx-stroke: white; -fx-stroke: white;
} }
/* Dir options */ /* Dir options */
#holder > #deleteDir, #cancelTransfer {
#holder>#deleteDir,
#cancelTransfer {
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-text-fill: white; -fx-text-fill: white;
-fx-background-position: center; -fx-background-position: center;
@ -51,23 +61,26 @@ #holder > #deleteDir, #cancelTransfer {
-fx-pref-height: 25px; -fx-pref-height: 25px;
} }
#holder > #deleteDir:hover,#cancelTransfer:hover, #holder>#deleteDir:hover,
#holder > #deleteDir:focused,#cancelTransfer:focused { #cancelTransfer:hover,
#holder>#deleteDir:focused,
#cancelTransfer:focused {
-fx-background-color: #DB5252; -fx-background-color: #DB5252;
} }
#holder > #changeDir { #holder>#changeDir {
-fx-background-color: transparent; -fx-background-color: transparent;
-fx-text-fill: #909090; -fx-text-fill: #909090;
-fx-background-radius: 0; -fx-background-radius: 0;
} }
#holder > #changeDir:focused, #holder>#changeDir:focused,
#holder > #changeDir:pressed { #holder>#changeDir:pressed {
-fx-font-weight: bold; -fx-font-weight: bold;
} }
#holder > #apply,#applyTransfer{ #holder>#apply,
#applyTransfer {
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-text-fill: white; -fx-text-fill: white;
@ -75,8 +88,13 @@ #holder > #apply,#applyTransfer{
-fx-pref-width: 150px; -fx-pref-width: 150px;
-fx-pref-height: 25px; -fx-pref-height: 25px;
} }
#holder > #apply:hover,#applyTransfer:hover,
#holder > #apply:focused,#applyTransfer:focused{ #holder>#apply:hover,
#applyTransfer:hover,
#holder>#apply:focused,
#applyTransfer:focused {
-fx-background-color: #75e18c; -fx-background-color: #75e18c;
} }
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/

View file

@ -1,7 +1,11 @@
var settingsOverlay = { var settingsOverlay = {
/* ===================== OVERLAY ===================== */ /* ===================== OVERLAY ===================== */
overlay: null, ramLabel: null, dirLabel: null, transferDialog: null, overlay: null,
deleteDirPressedAgain: false, count: 0, ramLabel: null,
dirLabel: null,
transferDialog: null,
deleteDirPressedAgain: false,
count: 0,
initOverlay: function() { initOverlay: function() {
settingsOverlay.overlay = loadFXML("dialog/overlay/settings/settings.fxml"); settingsOverlay.overlay = loadFXML("dialog/overlay/settings/settings.fxml");
@ -14,8 +18,7 @@ var settingsOverlay = {
function(o, ov, nv) settings.autoEnter = nv); function(o, ov, nv) settings.autoEnter = nv);
settingsOverlay.dirLabel = holder.lookup("#dirLabel"); settingsOverlay.dirLabel = holder.lookup("#dirLabel");
settingsOverlay.dirLabel.setOnAction(function(event) settingsOverlay.dirLabel.setOnAction(function(event) app.getHostServices().showDocument(settings.updatesDir.toUri()));
app.getHostServices().showDocument(settings.updatesDir.toUri()));
settingsOverlay.updateDirLabel(); settingsOverlay.updateDirLabel();
settingsOverlay.transferDialog = holder.lookup("#transferDialog"); settingsOverlay.transferDialog = holder.lookup("#transferDialog");
@ -70,17 +73,17 @@ var settingsOverlay = {
settingsOverlay.deleteUpdatesDir(); settingsOverlay.deleteUpdatesDir();
settingsOverlay.deleteDirPressedAgain = false; settingsOverlay.deleteDirPressedAgain = false;
settingsOverlay.count = settingsOverlay.count+1; settingsOverlay.count = settingsOverlay.count + 1;
if(settingsOverlay.count>9){ if (settingsOverlay.count > 9) {
javafx.application.Platform.exit(); javafx.application.Platform.exit();
} }
deleteDirButton.setText( deleteDirButton.setText(
settingsOverlay.count>8?"Прощай :(": settingsOverlay.count > 8 ? "Прощай :(" :
(settingsOverlay.count>7?"Я умираю!": (settingsOverlay.count > 7 ? "Я умираю!" :
(settingsOverlay.count>5?"DeathCry, спаси!": (settingsOverlay.count > 5 ? "DeathCry, спаси!" :
(settingsOverlay.count>4?"Умоляю, перестань!": (settingsOverlay.count > 4 ? "Умоляю, перестань!" :
(settingsOverlay.count>3?"Да хорош уже!":"Ещё раз") (settingsOverlay.count > 3 ? "Да хорош уже!" : "Ещё раз")
)))); ))));
}); });
var debugBox = settingsOverlay.overlay.lookup("#debug"); var debugBox = settingsOverlay.overlay.lookup("#debug");
@ -93,8 +96,7 @@ var settingsOverlay = {
transferCatalogDialog: function(newDir) { transferCatalogDialog: function(newDir) {
settingsOverlay.transferDialog.setVisible(true); settingsOverlay.transferDialog.setVisible(true);
settingsOverlay.transferDialog.lookup("#cancelTransfer").setOnAction(function(event) settingsOverlay.transferDialog.lookup("#cancelTransfer").setOnAction(function(event) {
{
settings.updatesDir = newDir; settings.updatesDir = newDir;
DirBridge.dirUpdates = settings.updatesDir; DirBridge.dirUpdates = settings.updatesDir;
settingsOverlay.updateDirLabel(); settingsOverlay.updateDirLabel();
@ -133,11 +135,11 @@ var settingsOverlay = {
setRAM: function(ram) { setRAM: function(ram) {
if (ram>762&&ram<1024){ if (ram > 762 && ram < 1024) {
settings.ram = java.lang.Math["min(int,int)"](ram, FunctionalBridge.getJVMTotalMemory()); settings.ram = java.lang.Math["min(int,int)"](ram, FunctionalBridge.getJVMTotalMemory());
}else{ } else {
settings.ram = java.lang.Math["min(int,int)"](((ram / 256) | 0) * 256, FunctionalBridge.getJVMTotalMemory()); settings.ram = java.lang.Math["min(int,int)"](((ram / 256) | 0) * 256, FunctionalBridge.getJVMTotalMemory());
} }
}, },
updateDirLabel: function() { updateDirLabel: function() {
@ -148,9 +150,16 @@ LogHelper.debug("Dir: %s", DirBridge.dir);
/* ====================== CLI PARAMS ===================== */ /* ====================== CLI PARAMS ===================== */
var cliParams = { var cliParams = {
login: null, password: null, profile: -1, autoLogin: false, login: null,
updatesDir: null, autoEnter: null, fullScreen: null, ram: -1, password: null,
offline: false, featureStore: null, profile: -1,
autoLogin: false,
updatesDir: null,
autoEnter: null,
fullScreen: null,
ram: -1,
offline: false,
featureStore: null,
init: function(params) { init: function(params) {
var named = params.getNamed(); var named = params.getNamed();
@ -200,8 +209,7 @@ var cliParams = {
if (cliParams.profile >= 0) { if (cliParams.profile >= 0) {
settings.profile = cliParams.profile; settings.profile = cliParams.profile;
} }
if (cliParams.updatesDir !== null) { if (cliParams.updatesDir !== null) {}
}
if (cliParams.autoEnter !== null) { if (cliParams.autoEnter !== null) {
settings.autoLogin = cliParams.autoEnter; settings.autoLogin = cliParams.autoEnter;
} }

View file

@ -6,16 +6,16 @@ #overlay {
-fx-background-image: url('../../images/downloader/blured.jpg'); -fx-background-image: url('../../images/downloader/blured.jpg');
} }
#overlay > #utitle { #overlay>#utitle {
-fx-alignment: top-left; -fx-alignment: top-left;
} }
#overlay > #description { #overlay>#description {
-fx-alignment: top-left; -fx-alignment: top-left;
-fx-wrap-text: true; -fx-wrap-text: true;
} }
#overlay > #description.error { #overlay>#description.error {
-fx-text-fill: #CE5757; -fx-text-fill: #CE5757;
} }
@ -29,15 +29,15 @@ .progress-bar {
-fx-background-color: transparent; -fx-background-color: transparent;
} }
.progress-indicator{ .progress-indicator {
-fx-background-color: transparent ; -fx-background-color: transparent;
} }
.progress-indicator .indicator { .progress-indicator .indicator {
-fx-background-color: transparent ; -fx-background-color: transparent;
} }
.progress-bar > .bar { .progress-bar>.bar {
-fx-background-image: url("../../images/downloader/line.png"); -fx-background-image: url("../../images/downloader/line.png");
-fx-background-color: transparent; -fx-background-color: transparent;
-fx-background-insets: 0; -fx-background-insets: 0;
@ -45,9 +45,10 @@ .progress-bar > .bar {
-fx-padding: 0; -fx-padding: 0;
} }
.progress-bar > .track { .progress-bar>.track {
-fx-background-color: transparent; -fx-background-color: transparent;
-fx-background-insets: 0; -fx-background-insets: 0;
-fx-background-radius: 3px; -fx-background-radius: 3px;
} }
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/

View file

@ -1,5 +1,8 @@
var update = { var update = {
overlay: null, title: null, description: null, progress: null, overlay: null,
title: null,
description: null,
progress: null,
initOverlay: function() { initOverlay: function() {
update.overlay = loadFXML("dialog/overlay/update/update.fxml"); update.overlay = loadFXML("dialog/overlay/update/update.fxml");
@ -41,7 +44,7 @@ var update = {
"Примерно осталось: %d:%02d:%02d%n", "Примерно осталось: %d:%02d:%02d%n",
state.filePath, state.filePath,
state.getTotalDownloadedMiB() + 0.0, state.getTotalSizeMiB() + 0.0, state.getTotalDownloadedMiB() + 0.0, state.getTotalSizeMiB() + 0.0,
bps <= 0.0 ? 0.0 : bps / 1024.0, bps <= 0.0 ? 0.0 : bps / 1024.0,
estimatedHH, estimatedMM, estimatedSS estimatedHH, estimatedMM, estimatedSS
)); ));
@ -83,10 +86,10 @@ function offlineUpdateRequest(dirName, dir, matcher, digest) {
/* Export functions */ /* Export functions */
function makeUpdateRequest(dirName, dir, matcher, digest, callback) { function makeUpdateRequest(dirName, dir, matcher, digest, callback) {
var request = settings.offline ? { setStateCallback: function(stateCallback) { } } : var request = settings.offline ? { setStateCallback: function(stateCallback) {} } :
new UpdateRequest(dirName, dir, matcher, digest); new UpdateRequest(dirName, dir, matcher, digest);
var task = settings.offline ? newTask(offlineUpdateRequest(dirName, dir, matcher, digest)) : var task = settings.offline ? newTask(offlineUpdateRequest(dirName, dir, matcher, digest)) :
newRequestTask(request); newRequestTask(request);
update.setTaskProperties(task, request, callback); update.setTaskProperties(task, request, callback);
task.updateMessage("Состояние: Хеширование"); task.updateMessage("Состояние: Хеширование");

View file

@ -5,7 +5,7 @@ var options = {
LogHelper.debug("Loading options file"); LogHelper.debug("Loading options file");
try { try {
tryWithResources(new HInput(IOHelper.newInput(options.file)), options.read); tryWithResources(new HInput(IOHelper.newInput(options.file)), options.read);
} catch(e) { } catch (e) {
LogHelper.error(e); LogHelper.error(e);
} }
}, },
@ -14,7 +14,7 @@ var options = {
LogHelper.debug("Saving options file"); LogHelper.debug("Saving options file");
try { try {
tryWithResources(new HOutput(IOHelper.newOutput(options.file)), options.write); tryWithResources(new HOutput(IOHelper.newOutput(options.file)), options.write);
} catch(e) { } catch (e) {
LogHelper.error(e); LogHelper.error(e);
} }
}, },
@ -24,33 +24,27 @@ var options = {
if (magic != config.settingsMagic) { if (magic != config.settingsMagic) {
throw new java.io.IOException("options magic mismatch: " + java.lang.Integer.toString(magic, 16)); throw new java.io.IOException("options magic mismatch: " + java.lang.Integer.toString(magic, 16));
} }
var profilesCount = input.readInt(); var profilesCount = input.readInt();
LogHelper.debug("Load options. ProfilesCount %d",profilesCount); LogHelper.debug("Load options. ProfilesCount %d", profilesCount);
for(var i = 0;i<profilesCount;i++) for (var i = 0; i < profilesCount; i++) {
{
var listSize = input.readInt(); var listSize = input.readInt();
var sortIndex = input.readInt(); var sortIndex = input.readInt();
var profile = null; var profile = null;
settings.lastProfiles.forEach(function(hprofile,i,arr) { settings.lastProfiles.forEach(function(hprofile, i, arr) {
if(hprofile.getSortIndex() == sortIndex) if (hprofile.getSortIndex() == sortIndex) {
{
profile = hprofile; profile = hprofile;
} }
}); });
for(var j = 0; j < listSize; j++) for (var j = 0; j < listSize; j++) {
{
var mark = input.readBoolean(); var mark = input.readBoolean();
var modType = OptionalFile.readType(input); var modType = OptionalFile.readType(input);
var modFile = input.readString(0); var modFile = input.readString(0);
if(mark) if (mark) {
{ profile.markOptional(modFile, modType);
profile.markOptional(modFile,modType); LogHelper.debug("Load options %s marked", modFile);
LogHelper.debug("Load options %s marked",modFile); } else {
} profile.unmarkOptional(modFile, modType);
else LogHelper.debug("Load options %s unmarked", modFile);
{
profile.unmarkOptional(modFile,modType);
LogHelper.debug("Load options %s unmarked",modFile);
} }
} }
} }
@ -59,13 +53,13 @@ var options = {
write: function(output) { write: function(output) {
output.writeInt(config.settingsMagic); output.writeInt(config.settingsMagic);
output.writeInt(settings.lastProfiles.length); output.writeInt(settings.lastProfiles.length);
settings.lastProfiles.forEach(function(hprofile,i,arr) { settings.lastProfiles.forEach(function(hprofile, i, arr) {
var profile = hprofile; var profile = hprofile;
LogHelper.debug("Save options %s",profile.getTitle()); LogHelper.debug("Save options %s", profile.getTitle());
var list = profile.getOptional(); var list = profile.getOptional();
output.writeInt(list.size()); output.writeInt(list.size());
output.writeInt(profile.getSortIndex()); output.writeInt(profile.getSortIndex());
list.forEach(function(modFile,j,arr2) { list.forEach(function(modFile, j, arr2) {
output.writeBoolean(modFile.mark); output.writeBoolean(modFile.mark);
modFile.writeType(output); modFile.writeType(output);
output.writeString(modFile.name, 0); output.writeString(modFile.name, 0);
@ -80,80 +74,77 @@ var options = {
optionsPane = pane; optionsPane = pane;
var modlist = pane.lookup("#modlist").getContent(); var modlist = pane.lookup("#modlist").getContent();
var nodelist = new java.util.ArrayList; var nodelist = new java.util.ArrayList;
modlist.getChildren().forEach(function(node,i,arr) { modlist.getChildren().forEach(function(node, i, arr) {
if(node instanceof javafx.scene.control.CheckBox) if (node instanceof javafx.scene.control.CheckBox)
nodelist.add(node); nodelist.add(node);
});
nodelist.forEach(function(node, i, arr) {
modlist.getChildren().remove(node);
});
var profile = profilesList[serverHolder.old];
var list = profile.getOptional();
var checkBoxList = new java.util.ArrayList;
list.forEach(function(modFile) {
var modName = modFile.name,
modDescription = "",
subLevel = 1;
if (!modFile.visible) {
LogHelper.debug("optionalMod %s hidden", modFile.name);
return;
}
if (modFile.permissions != 0 && ((loginData.permissions.toLong() & modFile.permissions) == 0)) {
LogHelper.debug("optionalMod %s permissions deny", modFile.name);
return;
}
if (modFile.info != null)
modDescription = modFile.info;
if (modFile.subTreeLevel != null && modFile.subTreeLevel > 1)
subLevel = modFile.subTreeLevel;
var testMod = new javafx.scene.control.CheckBox(modName);
testMod.getStyleClass().add("checkboxOpt");
if (subLevel > 1)
for (var i = 1; i < subLevel; i++)
testMod.setTranslateX(25 * i);
testMod.setSelected(modFile.mark);
testMod.setOnAction(function(event) {
var isSelected = event.getSource().isSelected();
if (isSelected) {
profile.markOptional(modFile);
LogHelper.debug("Selected mod %s", modFile.name);
} else {
profile.unmarkOptional(modFile);
LogHelper.debug("Unselected mod %s", modFile.name);
}
options.update();
}); });
nodelist.forEach(function(node,i,arr) { testMod.setFocusTraversable(false);
modlist.getChildren().remove(node); checkBoxList.add(testMod);
}); testMod.getStyleClass().add("modname");
var profile = profilesList[serverHolder.old]; if (modDescription != "") {
var list = profile.getOptional(); textDescr = new javafx.scene.text.Text(modDescription);
var checkBoxList = new java.util.ArrayList; if (subLevel > 1) {
list.forEach(function(modFile) { for (var i = 1; i < subLevel; i++) {
var modName = modFile.name, modDescription = "", subLevel = 1; textDescr.setWrappingWidth(620 - (25 * i));
if(!modFile.visible) textDescr.setTranslateX(25 + (25 * i));
{ }
LogHelper.debug("optionalMod %s hidden",modFile.name); } else {
return; textDescr.setWrappingWidth(620);
} textDescr.setTranslateX(25);
}
if(modFile.permissions != 0 && ((loginData.permissions.toLong() & modFile.permissions) == 0)) textDescr.setTextAlignment(javafx.scene.text.TextAlignment.JUSTIFY);
{ textDescr.getStyleClass().add("description-text");
LogHelper.debug("optionalMod %s permissions deny",modFile.name); checkBoxList.add(textDescr);
return; }
} sep = new javafx.scene.control.Separator();
if(modFile.info != null) sep.getStyleClass().add("separator");
modDescription = modFile.info; checkBoxList.add(sep);
if(modFile.subTreeLevel != null && modFile.subTreeLevel > 1) });
subLevel = modFile.subTreeLevel; modlist.getChildren().clear();
var testMod = new javafx.scene.control.CheckBox(modName); modlist.getChildren().addAll(checkBoxList);
testMod.getStyleClass().add("checkboxOpt");
if(subLevel > 1)
for(var i = 1; i < subLevel; i++)
testMod.setTranslateX(25*i);
testMod.setSelected(modFile.mark);
testMod.setOnAction(function(event) {
var isSelected = event.getSource().isSelected();
if(isSelected)
{
profile.markOptional(modFile);
LogHelper.debug("Selected mod %s", modFile.name);
}
else
{
profile.unmarkOptional(modFile);
LogHelper.debug("Unselected mod %s", modFile.name);
}
options.update();
});
testMod.setFocusTraversable(false);
checkBoxList.add(testMod);
testMod.getStyleClass().add("modname");
if(modDescription != "") {
textDescr = new javafx.scene.text.Text(modDescription);
if(subLevel > 1) {
for(var i = 1; i < subLevel; i++){
textDescr.setWrappingWidth(620-(25*i));
textDescr.setTranslateX(25+(25*i));
}
} else {
textDescr.setWrappingWidth(620);
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);
});
modlist.getChildren().clear();
modlist.getChildren().addAll(checkBoxList);
} }
}; };

View file

@ -1,6 +1,6 @@
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/
/* Server buttons */ /* Server buttons */
.server-button { .server-button {
-fx-font-weight: bold; -fx-font-weight: bold;
-fx-font-size: 16pt; -fx-font-size: 16pt;
@ -16,14 +16,14 @@ .server-button {
} }
.server-button:selected { .server-button:selected {
-fx-effect: dropshadow(gaussian, rgba(23, 25, 29, 0.3), 15,0,0,3); -fx-effect: dropshadow(gaussian, rgba(23, 25, 29, 0.3), 15, 0, 0, 3);
} }
/** server-button-<your profile name> **/ /** server-button-<your profile name> **/
.server-button-Example { .server-button-Example {
-fx-background-image: url('images/servers/example.png'); -fx-background-image: url('images/servers/example.png');
} }
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/

View file

@ -1,6 +1,6 @@
/*-- Without jfoenix --*/ /*-- Without jfoenix --*/
Button { Button {
-fx-background-color: TRANSPARENT, TRANSPARENT, TRANSPARENT, TRANSPARENT; -fx-background-color: TRANSPARENT, TRANSPARENT, TRANSPARENT, TRANSPARENT;
-fx-background-radius: 3px; -fx-background-radius: 3px;
-fx-background-insets: 0px; -fx-background-insets: 0px;
} }
@ -12,7 +12,7 @@ CheckBox .box-container {
CheckBox .box, CheckBox .box,
CheckBox:indeterminate .box, CheckBox:indeterminate .box,
CheckBox:indeterminate:selected .box{ CheckBox:indeterminate:selected .box {
-fx-pref-width: 18; -fx-pref-width: 18;
-fx-pref-height: 18; -fx-pref-height: 18;
@ -27,11 +27,11 @@ CheckBox:indeterminate:selected .box{
CheckBox:selected .box { CheckBox:selected .box {
-fx-border-color: #5fd97a; -fx-border-color: #5fd97a;
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
} }
CheckBox .mark { CheckBox .mark {
-fx-background-color: TRANSPARENT; -fx-background-color: TRANSPARENT;
} }
CheckBox:selected .mark { CheckBox:selected .mark {
@ -46,7 +46,7 @@ CheckBox:selected .mark {
-fx-border-radius: 2; -fx-border-radius: 2;
} }
CheckBox .indeterminate-mark{ CheckBox .indeterminate-mark {
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
-fx-background-radius: 2; -fx-background-radius: 2;
-fx-border-width: 0; -fx-border-width: 0;
@ -56,8 +56,11 @@ CheckBox .indeterminate-mark{
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/
Button, CheckBox, ComboBox, RadioButton { Button,
-fx-cursor: hand; CheckBox,
ComboBox,
RadioButton {
-fx-cursor: hand;
} }
@ -69,20 +72,22 @@ #layout {
-fx-pref-height: 450px; -fx-pref-height: 450px;
-fx-background-image: url('images/background.jpg'); -fx-background-image: url('images/background.jpg');
} }
#background { #background {
-fx-background-color: #fff; -fx-background-color: #fff;
} }
/** Labels **/ /** Labels **/
#background > #settingsTitle { #background>#settingsTitle {
-fx-font-size: 14pt; -fx-font-size: 14pt;
-fx-alignment: baseline-center; -fx-alignment: baseline-center;
} }
#serverLabel{ #serverLabel {
-fx-text-fill: #323232; -fx-text-fill: #323232;
} }
#serverStatus{ #serverStatus {
-fx-text-fill: #323232; -fx-text-fill: #323232;
-fx-pref-width: 120px; -fx-pref-width: 120px;
-fx-pref-height: 25px; -fx-pref-height: 25px;
@ -90,17 +95,17 @@ #serverStatus{
/* Mask */ /* Mask */
#mask { #mask {
-fx-effect: DropShadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 ); -fx-effect: DropShadow(gaussian, rgba(255, 255, 255, 0.5), 0, 0, 0, 1);
} }
/** Errors **/ /** Errors **/
#errormessage{ #errormessage {
-fx-background-color: transparent; -fx-background-color: transparent;
-fx-text-alignment: center; -fx-text-alignment: center;
-fx-text-fill: #CE5757; -fx-text-fill: #CE5757;
} }
.error{ .error {
-fx-text-fill: #CE5757; -fx-text-fill: #CE5757;
} }
@ -110,6 +115,7 @@ #bar {
-fx-pref-width: 46px; -fx-pref-width: 46px;
-fx-pref-height: 450px; -fx-pref-height: 450px;
} }
/** buttons in bar **/ /** buttons in bar **/
#close { #close {
-fx-background-position: center; -fx-background-position: center;
@ -118,28 +124,35 @@ #close {
-fx-pref-width: 46px; -fx-pref-width: 46px;
-fx-pref-height: 45px; -fx-pref-height: 45px;
} }
#hide, #back, #goConsole, #settings, #discord {
#hide,
#back,
#goConsole,
#settings,
#discord {
-fx-background-position: center; -fx-background-position: center;
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-pref-width: 46px; -fx-pref-width: 46px;
-fx-pref-height: 45px; -fx-pref-height: 45px;
} }
#logout{ #logout {
-fx-text-fill:#323232; -fx-text-fill: #323232;
-fx-font-size:12; -fx-font-size: 12;
-fx-font-weight:normal; -fx-font-weight: normal;
-fx-border-color:#CE5757; -fx-border-color: #CE5757;
-fx-border-width:1; -fx-border-width: 1;
-fx-background-color:transparent; -fx-background-color: transparent;
-fx-padding:0; -fx-padding: 0;
} }
#logout:hover, #logout:hover,
#logout:focus{ #logout:focus {
-fx-text-fill:#ff6a5e; -fx-text-fill: #ff6a5e;
} }
#logout:pressed{
-fx-border-color:#cb4d43; #logout:pressed {
-fx-border-color: #cb4d43;
} }
#send { #send {
@ -151,7 +164,9 @@ #send {
-fx-pref-height: 30px; -fx-pref-height: 30px;
} }
#send:pressed { -fx-background-color: #d8d8d8; } #send:pressed {
-fx-background-color: #d8d8d8;
}
/* LoginMenu */ /* LoginMenu */
#authPane { #authPane {
@ -176,18 +191,22 @@ .auth {
-fx-text-fill: #ffffff; -fx-text-fill: #ffffff;
-fx-pref-width: 200px; -fx-pref-width: 200px;
-fx-pref-height: 45px; -fx-pref-height: 45px;
-fx-effect: dropshadow(gaussian, rgba(23, 25, 29, 0.3), 15,0,0,3); -fx-effect: dropshadow(gaussian, rgba(23, 25, 29, 0.3), 15, 0, 0, 3);
} }
.auth:hover, .auth:pressed { -fx-background-color: #75e18c; } .auth:hover,
.auth:pressed {
-fx-background-color: #75e18c;
}
#password, #login { #password,
#login {
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-pref-width: 200px; -fx-pref-width: 200px;
-fx-pref-height: 30px; -fx-pref-height: 30px;
} }
.text-input{ .text-input {
-fx-focus-color: transparent; -fx-focus-color: transparent;
-fx-background-repeat: no-repeat; -fx-background-repeat: no-repeat;
-fx-text-fill: #909090; -fx-text-fill: #909090;
@ -208,21 +227,26 @@ #link {
-fx-pref-height: 17px; -fx-pref-height: 17px;
} }
#link:hover, #link:pressed { -fx-opacity: 0.8; } #link:hover,
#link:pressed {
-fx-opacity: 0.8;
}
/** CheckBox & ComboBox**/ /** CheckBox & ComboBox**/
#rememberchb{ #rememberchb {
-fx-font-size: 13; -fx-font-size: 13;
-fx-text-fill: #909090; -fx-text-fill: #909090;
-fx-pref-width: 145px; -fx-pref-width: 145px;
-fx-pref-height: 30px; -fx-pref-height: 30px;
} }
#combologin { #combologin {
-fx-text-fill: #909090; -fx-text-fill: #909090;
-fx-prompt-text-fill: #909090; -fx-prompt-text-fill: #909090;
-fx-pref-width: 200px; -fx-pref-width: 200px;
-fx-pref-height: 30px; -fx-pref-height: 30px;
} }
.combologin, .combologin,
.combologin { .combologin {
-fx-font-size: 13px; -fx-font-size: 13px;
@ -240,7 +264,7 @@ .combologin .list-cell {
.combologin-popup .list-view { .combologin-popup .list-view {
-fx-background-color: white, white; -fx-background-color: white, white;
-fx-background-insets: 0, 1; -fx-background-insets: 0, 1;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 8, 0.0 , 0 , 0 ); -fx-effect: dropshadow(three-pass-box, rgba(0, 0, 0, 0.6), 8, 0.0, 0, 0);
} }
.combologin .list-cell:filled:selected .text, .combologin .list-cell:filled:selected .text,
@ -253,20 +277,18 @@ .combologin .arrow {
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
} }
.combologin-popup .list-view .list-cell .combologin-popup .list-view .list-cell {
{
-fx-background-color: white; -fx-background-color: white;
} }
.combologin-popup .list-view .list-cell:filled:selected, .combologin-popup .list-view .list-cell:filled:selected:hover .combologin-popup .list-view .list-cell:filled:selected,
{ .combologin-popup .list-view .list-cell:filled:selected:hover {
-fx-background: -fx-accent; -fx-background: -fx-accent;
-fx-background-color: -fx-selection-bar; -fx-background-color: -fx-selection-bar;
-fx-text-fill: #909090; -fx-text-fill: #909090;
} }
.combologin-popup .list-view .list-cell:filled:hover .combologin-popup .list-view .list-cell:filled:hover {
{
-fx-background-color: white; -fx-background-color: white;
-fx-text-fill: #909090; -fx-text-fill: #909090;
} }
@ -286,20 +308,24 @@ .serverentrance {
} }
/** buttons **/ /** buttons **/
.clientLaunch{ .clientLaunch {
-fx-font-weight: bold; -fx-font-weight: bold;
-fx-font-size: 16pt; -fx-font-size: 16pt;
-fx-background-radius: 0; -fx-background-radius: 0;
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
-fx-text-fill: #ffffff; -fx-text-fill: #ffffff;
} }
.clientSettings{
.clientSettings {
-fx-background-position: center; -fx-background-position: center;
-fx-background-color: #5fd97a; -fx-background-color: #5fd97a;
-fx-background-radius: 0; -fx-background-radius: 0;
} }
.clientLaunch:hover, .clientLaunch:pressed { -fx-background-color: #75e18c; } .clientLaunch:hover,
.clientLaunch:pressed {
-fx-background-color: #75e18c;
}
/* Scrolls */ /* Scrolls */
.scroll-pane { .scroll-pane {
@ -340,11 +366,11 @@ .scroll-pane>.corner {
} }
/* OptionsPane */ /* OptionsPane */
#optionsPane > #modlist { #optionsPane>#modlist {
-fx-background-color: transparent; -fx-background-color: transparent;
} }
#optionsPane > #modlist > .viewport { #optionsPane>#modlist>.viewport {
-fx-background-color: transparent; -fx-background-color: transparent;
} }
@ -368,38 +394,42 @@ .separator *.line {
-fx-border-width: 0 0 10 0; -fx-border-width: 0 0 10 0;
} }
#serverlist{ #serverlist {
-fx-background-color: transparent;
}
#serverlist > .viewport {
-fx-background-color: transparent; -fx-background-color: transparent;
} }
#serverdesc{ #serverlist>.viewport {
-fx-background-color: transparent;
}
#serverdesc > .viewport {
-fx-background-color: transparent; -fx-background-color: transparent;
} }
#serverinfo{ #serverdesc {
-fx-background-color: transparent;
}
#serverinfo > .viewport {
-fx-background-color: transparent; -fx-background-color: transparent;
} }
#servercontainer{ #serverdesc>.viewport {
-fx-background-color: transparent;
}
#serverinfo {
-fx-background-color: transparent;
}
#serverinfo>.viewport {
-fx-background-color: transparent;
}
#servercontainer {
-fx-background-color: transparent; -fx-background-color: transparent;
-fx-pref-width: 282px; -fx-pref-width: 282px;
-fx-pref-height: 75px; -fx-pref-height: 75px;
} }
.toggle-button:disabled{ .toggle-button:disabled {
-fx-opacity: 1.0; -fx-opacity: 1.0;
} }
.heading{ .heading {
-fx-text-fill: #555555; -fx-text-fill: #555555;
} }
/*-- DrLeonardo Design --*/ /*-- DrLeonardo Design --*/

View file

@ -9,7 +9,8 @@ var LauncherApp = Java.extend(JSApplication, {
settings = SettingsManager.settings; settings = SettingsManager.settings;
settingsManager.loadHDirStore(); settingsManager.loadHDirStore();
cliParams.applySettings(); cliParams.applySettings();
}, start: function(primaryStage) { },
start: function(primaryStage) {
stage = primaryStage; stage = primaryStage;
stage.initStyle(javafx.stage.StageStyle.TRANSPARENT); stage.initStyle(javafx.stage.StageStyle.TRANSPARENT);
stage.setResizable(false); stage.setResizable(false);
@ -45,7 +46,8 @@ var LauncherApp = Java.extend(JSApplication, {
setCurrentScene(loginScene); setCurrentScene(loginScene);
initLauncher(); initLauncher();
}, stop: function() { },
stop: function() {
settingsManager.saveConfig(); settingsManager.saveConfig();
settingsManager.saveHDirStore(); settingsManager.saveHDirStore();
options.save(); options.save();