mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
Fixed that wind speed did not updated frequently and UI polishing.
- added shadow for raceview boxes - split up message history and input text block - changed timer font #story[1245]
This commit is contained in:
@@ -196,21 +196,21 @@ public class MainServerThread implements Runnable, ClientConnectionDelegate {
|
|||||||
|
|
||||||
if (Math.floorMod(random.nextInt(), 2) == 0){
|
if (Math.floorMod(random.nextInt(), 2) == 0){
|
||||||
direction += random.nextInt(4);
|
direction += random.nextInt(4);
|
||||||
windSpeed += random.nextInt(20) + 50;
|
windSpeed += random.nextInt(20) + 459;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
direction -= random.nextInt(4);
|
direction -= random.nextInt(4);
|
||||||
windSpeed -= random.nextInt(20) + 50;
|
windSpeed -= random.nextInt(20) + 459;
|
||||||
}
|
}
|
||||||
|
|
||||||
direction = Math.floorMod(direction, 360);
|
direction = Math.floorMod(direction, 360);
|
||||||
|
|
||||||
if (windSpeed > MAX_WIND_SPEED){
|
if (windSpeed > MAX_WIND_SPEED){
|
||||||
windSpeed -= random.nextInt(1000);
|
windSpeed -= random.nextInt(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (windSpeed <= MIN_WIND_SPEED){
|
if (windSpeed <= MIN_WIND_SPEED){
|
||||||
windSpeed += random.nextInt(1000);
|
windSpeed += random.nextInt(500);
|
||||||
}
|
}
|
||||||
|
|
||||||
GameState.setWindSpeed(Double.valueOf(windSpeed));
|
GameState.setWindSpeed(Double.valueOf(windSpeed));
|
||||||
|
|||||||
Binary file not shown.
@@ -1,13 +1,15 @@
|
|||||||
@font-face {
|
@font-face {
|
||||||
src: url("DJB-Get-Digital.ttf");
|
src: url("digital-7-mono.ttf");
|
||||||
}
|
}
|
||||||
|
|
||||||
#timerGrid{
|
#timerGrid{
|
||||||
-fx-background-color: rgba(255, 255, 255, 0.6);
|
-fx-background-color: rgba(255, 255, 255, 0.6);
|
||||||
|
-fx-effect: -fx-pp-dropshadow-light;
|
||||||
}
|
}
|
||||||
|
|
||||||
.timer Label {
|
GridPane .timer * {
|
||||||
-fx-font-family: "DJB Get Digital" !important;
|
-fx-font-family: "Digital-7 Mono" !important;
|
||||||
|
-fx-font-size: 30;
|
||||||
}
|
}
|
||||||
|
|
||||||
#timerLabel{
|
#timerLabel{
|
||||||
@@ -19,19 +21,26 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#chatGridPane {
|
#chatGridPane {
|
||||||
-fx-background-color: rgba(255, 255, 255, 0.6);
|
-fx-background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatHistoryHolder {
|
#chatHistoryHolder {
|
||||||
|
-fx-background-color: rgba(255, 255, 255, 0.6);
|
||||||
|
-fx-effect: -fx-pp-dropshadow-light;
|
||||||
|
}
|
||||||
|
|
||||||
|
#chatInputHolder {
|
||||||
|
-fx-background-color: rgba(255, 255, 255, 0.6);
|
||||||
|
-fx-effect: -fx-pp-dropshadow-light;
|
||||||
}
|
}
|
||||||
|
|
||||||
#windGridPane {
|
#windGridPane {
|
||||||
-fx-background-color: rgba(255, 255, 255, 0.6);
|
-fx-background-color: rgba(255, 255, 255, 0.6);
|
||||||
|
-fx-effect: -fx-pp-dropshadow-light;
|
||||||
}
|
}
|
||||||
|
|
||||||
#windHolder {
|
#windHolder {
|
||||||
-fx-background-color: -fx-pp-front-color;
|
-fx-background-color: rgba(255, 255, 255, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatSend {
|
#chatSend {
|
||||||
@@ -52,5 +61,5 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#windImageView {
|
#windImageView {
|
||||||
-fx-image: url("/images/wind.png");
|
-fx-image: url("/images/wind-180.png");
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 49 KiB |
@@ -14,8 +14,11 @@
|
|||||||
<?import javafx.scene.layout.RowConstraints?>
|
<?import javafx.scene.layout.RowConstraints?>
|
||||||
<?import javafx.scene.layout.StackPane?>
|
<?import javafx.scene.layout.StackPane?>
|
||||||
<?import javafx.scene.text.Font?>
|
<?import javafx.scene.text.Font?>
|
||||||
|
<AnchorPane fx:id="rvAnchorPane" maxHeight="1.7976931348623157E308"
|
||||||
<AnchorPane fx:id="rvAnchorPane" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="1200.0" style="-fx-background-color: skyblue;" xmlns="http://javafx.com/javafx/8.0.112" xmlns:fx="http://javafx.com/fxml/1" fx:controller="seng302.visualiser.controllers.RaceViewController">
|
maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0"
|
||||||
|
prefWidth="1200.0" style="-fx-background-color: skyblue;" xmlns="http://javafx.com/javafx/8"
|
||||||
|
xmlns:fx="http://javafx.com/fxml/1"
|
||||||
|
fx:controller="seng302.visualiser.controllers.RaceViewController">
|
||||||
<children>
|
<children>
|
||||||
<StackPane fx:id="contentAnchorPane" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="800.0" prefWidth="1200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
<StackPane fx:id="contentAnchorPane" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="800.0" prefWidth="1200.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
||||||
|
|
||||||
@@ -29,13 +32,15 @@
|
|||||||
<rowConstraints>
|
<rowConstraints>
|
||||||
<RowConstraints maxHeight="70.0" minHeight="70.0" prefHeight="70.0" vgrow="SOMETIMES" />
|
<RowConstraints maxHeight="70.0" minHeight="70.0" prefHeight="70.0" vgrow="SOMETIMES" />
|
||||||
<RowConstraints maxHeight="1.7976931348623157E308" vgrow="SOMETIMES" />
|
<RowConstraints maxHeight="1.7976931348623157E308" vgrow="SOMETIMES" />
|
||||||
<RowConstraints maxHeight="200.0" minHeight="200.0" prefHeight="200.0" vgrow="SOMETIMES" />
|
<RowConstraints maxHeight="250.0" minHeight="250.0" prefHeight="250.0"
|
||||||
|
valignment="BOTTOM" vgrow="SOMETIMES"/>
|
||||||
</rowConstraints>
|
</rowConstraints>
|
||||||
<children>
|
<children>
|
||||||
<GridPane id="timerGrid" fx:id="timerGrid" prefWidth="192.0" styleClass=".timer">
|
<GridPane id="timerGrid" fx:id="timerGrid" prefWidth="192.0" styleClass="timer">
|
||||||
<columnConstraints>
|
<columnConstraints>
|
||||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="50.0" minWidth="50.0" prefWidth="50.0" />
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="50.0" minWidth="50.0" prefWidth="50.0" />
|
||||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="130.0" minWidth="130.0" prefWidth="130.0" />
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="135.0" minWidth="135.0"
|
||||||
|
prefWidth="135.0"/>
|
||||||
</columnConstraints>
|
</columnConstraints>
|
||||||
<rowConstraints>
|
<rowConstraints>
|
||||||
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
|
||||||
@@ -76,15 +81,17 @@
|
|||||||
</GridPane>
|
</GridPane>
|
||||||
<GridPane fx:id="chatGridPane" GridPane.columnIndex="2" GridPane.rowIndex="2">
|
<GridPane fx:id="chatGridPane" GridPane.columnIndex="2" GridPane.rowIndex="2">
|
||||||
<columnConstraints>
|
<columnConstraints>
|
||||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="300.0" prefWidth="300.0" />
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="390.0" minWidth="390.0"
|
||||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="-Infinity" minWidth="100.0" prefWidth="100.0" />
|
prefWidth="390.0"/>
|
||||||
</columnConstraints>
|
</columnConstraints>
|
||||||
<rowConstraints>
|
<rowConstraints>
|
||||||
<RowConstraints maxHeight="1.7976931348623157E308" vgrow="SOMETIMES" />
|
<RowConstraints maxHeight="1.7976931348623157E308" vgrow="SOMETIMES" />
|
||||||
<RowConstraints maxHeight="50.0" minHeight="50.0" prefHeight="50.0" vgrow="SOMETIMES" />
|
<RowConstraints maxHeight="60.0" minHeight="60.0" prefHeight="60.0"
|
||||||
|
vgrow="SOMETIMES"/>
|
||||||
</rowConstraints>
|
</rowConstraints>
|
||||||
<children>
|
<children>
|
||||||
<Pane fx:id="chatHistoryHolder" prefHeight="200.0" prefWidth="200.0" GridPane.columnSpan="2" GridPane.hgrow="ALWAYS" GridPane.vgrow="ALWAYS">
|
<Pane fx:id="chatHistoryHolder" prefHeight="200.0" prefWidth="200.0"
|
||||||
|
GridPane.hgrow="ALWAYS" GridPane.valignment="BOTTOM" GridPane.vgrow="ALWAYS">
|
||||||
<GridPane.margin>
|
<GridPane.margin>
|
||||||
<Insets />
|
<Insets />
|
||||||
</GridPane.margin>
|
</GridPane.margin>
|
||||||
@@ -92,19 +99,47 @@
|
|||||||
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
||||||
</padding>
|
</padding>
|
||||||
</Pane>
|
</Pane>
|
||||||
<JFXButton fx:id="chatSend" alignment="CENTER" buttonType="RAISED" maxHeight="-Infinity" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" prefHeight="40.0" text="SEND" GridPane.columnIndex="1" GridPane.halignment="CENTER" GridPane.rowIndex="1" GridPane.valignment="CENTER">
|
<GridPane fx:id="chatInputHolder" GridPane.rowIndex="1">
|
||||||
|
<columnConstraints>
|
||||||
|
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
|
||||||
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="-Infinity" minWidth="90.0"
|
||||||
|
prefWidth="90.0"/>
|
||||||
|
</columnConstraints>
|
||||||
|
<rowConstraints>
|
||||||
|
<RowConstraints maxHeight="50.0" minHeight="50.0" prefHeight="50.0"
|
||||||
|
valignment="CENTER" vgrow="SOMETIMES"/>
|
||||||
|
</rowConstraints>
|
||||||
|
<children>
|
||||||
|
<JFXButton fx:id="chatSend" alignment="CENTER" buttonType="RAISED"
|
||||||
|
maxHeight="-Infinity" maxWidth="1.7976931348623157E308"
|
||||||
|
minHeight="-Infinity" minWidth="-Infinity" prefHeight="35.0"
|
||||||
|
text="SEND" GridPane.columnIndex="1">
|
||||||
<GridPane.margin>
|
<GridPane.margin>
|
||||||
<Insets left="10.0" right="10.0" />
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0"/>
|
||||||
</GridPane.margin>
|
</GridPane.margin>
|
||||||
</JFXButton>
|
</JFXButton>
|
||||||
<JFXTextField fx:id="chatInput" maxHeight="35.0" minHeight="-Infinity" prefHeight="35.0" GridPane.rowIndex="1">
|
<JFXTextField fx:id="chatInput" maxHeight="35.0" minHeight="-Infinity"
|
||||||
|
prefHeight="35.0">
|
||||||
<GridPane.margin>
|
<GridPane.margin>
|
||||||
<Insets left="10.0" />
|
<Insets bottom="10.0" left="20.0" right="10.0"/>
|
||||||
</GridPane.margin>
|
</GridPane.margin>
|
||||||
|
<padding>
|
||||||
|
<Insets right="15.0"/>
|
||||||
|
</padding>
|
||||||
</JFXTextField>
|
</JFXTextField>
|
||||||
</children>
|
</children>
|
||||||
|
<GridPane.margin>
|
||||||
|
<Insets top="10.0"/>
|
||||||
|
</GridPane.margin>
|
||||||
</GridPane>
|
</GridPane>
|
||||||
<GridPane fx:id="windGridPane" prefHeight="161.0" prefWidth="240.0" GridPane.halignment="CENTER" GridPane.rowIndex="2" GridPane.valignment="BOTTOM">
|
</children>
|
||||||
|
<GridPane.margin>
|
||||||
|
<Insets bottom="10.0" right="10.0"/>
|
||||||
|
</GridPane.margin>
|
||||||
|
</GridPane>
|
||||||
|
<GridPane fx:id="windGridPane" maxHeight="-Infinity" maxWidth="-Infinity"
|
||||||
|
prefHeight="150.0" prefWidth="240.0" GridPane.halignment="CENTER"
|
||||||
|
GridPane.rowIndex="2" GridPane.valignment="BOTTOM">
|
||||||
<columnConstraints>
|
<columnConstraints>
|
||||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="110.0" minWidth="110.0" prefWidth="110.0" />
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="110.0" minWidth="110.0" prefWidth="110.0" />
|
||||||
<ColumnConstraints hgrow="SOMETIMES" maxWidth="132.0" minWidth="10.0" prefWidth="132.0" />
|
<ColumnConstraints hgrow="SOMETIMES" maxWidth="132.0" minWidth="10.0" prefWidth="132.0" />
|
||||||
|
|||||||
Reference in New Issue
Block a user