diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-07 14:21:12 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-07 14:21:12 +0900 |
commit | 8e81545ee8bf3d360a4437427e86bab6c3fca0f4 (patch) | |
tree | 1e744c9b7c2554974bdd18c31f22151227cb8ee3 /loader/src/main/resources/assets | |
parent | a22beb3bcd6b262a5c893330006c3fa3286ac785 (diff) | |
download | Skyblock-Dungeons-Guide-8e81545ee8bf3d360a4437427e86bab6c3fca0f4.tar.gz Skyblock-Dungeons-Guide-8e81545ee8bf3d360a4437427e86bab6c3fca0f4.tar.bz2 Skyblock-Dungeons-Guide-8e81545ee8bf3d360a4437427e86bab6c3fca0f4.zip |
- Default Loader now settable!!
- Better Error Messages
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'loader/src/main/resources/assets')
5 files changed, 223 insertions, 0 deletions
diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchButton.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchButton.gui new file mode 100644 index 00000000..5ec1b8e6 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchButton.gui @@ -0,0 +1,22 @@ +<!-- + ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + ~ Copyright (C) 2023 cyoung06 (syeyoung) + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU Affero General Public License as published + ~ by the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU Affero General Public License for more details. + ~ + ~ You should have received a copy of the GNU Affero General Public License + ~ along with this program. If not, see <https://www.gnu.org/licenses/>. + --> +<padding top="5"> + <size height="15"> + <RoundButton bind:text="branch" on:click="click"/> + </size> +</padding>
\ No newline at end of file diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchList.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchList.gui new file mode 100644 index 00000000..86f4c6d0 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchList.gui @@ -0,0 +1,25 @@ + +<col> + <padding top="10" left="10" right="10" bottom="5"> + <Text text="Available Versions" color="#FFFFFFFF"/> + </padding> + <flexible> + <SelectiveContainer bind:visible="versionListVisibility"> + <padding left="10" right="10" slot="loading"> + <align vAlign="CENTER" hAlign="CENTER"> + <Text text="Loading..." color="#FFFFFFFF"/> + </align> + </padding> + <ScrollablePanel direction="VERTICAL" slot="loaded"> + <padding left="10" right="10"> + <col bind:api="versionList" bind:_="widgetList"/> + </padding> + </ScrollablePanel> + </SelectiveContainer> + </flexible> + <padding left="10" right="10" top="5" bottom="10"> + <size height="20"> + <RoundButton text="Reload" on:click="reload"/> + </size> + </padding> +</col>
\ No newline at end of file diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchVersionList.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchVersionList.gui new file mode 100644 index 00000000..f1450087 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/branchVersionList.gui @@ -0,0 +1,52 @@ + +<!-- + ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + ~ Copyright (C) 2023 cyoung06 (syeyoung) + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU Affero General Public License as published + ~ by the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU Affero General Public License for more details. + ~ + ~ You should have received a copy of the GNU Affero General Public License + ~ along with this program. If not, see <https://www.gnu.org/licenses/>. + --> + +<col crossAlign="START"> + <padding left="5" right="10" top="5"> + <size width="50" height="11"> + <RoundButton text="Go Back" bind:click="back"/> + </size> + </padding> + <padding top="5" left="10" right="10" bottom="5"> + <row mainAlign="CENTER"> + <Text text="Versions (" color="#FFFFFFFF"/> + <Text bind:text="branch" color="#FFFFFFFF"/> + <Text text=")" color="#FFFFFFFF"/> + </row> + </padding> + <flexible> + <SelectiveContainer bind:visible="versionListVisibility"> + <padding left="10" right="10" slot="loading"> + <align vAlign="CENTER" hAlign="CENTER"> + <Text text="Loading..." color="#FFFFFFFF"/> + </align> + </padding> + <ScrollablePanel direction="VERTICAL" slot="loaded"> + <padding left="10" right="10"> + <col bind:api="versionList" bind:_="widgetList"/> + </padding> + </ScrollablePanel> + </SelectiveContainer> + </flexible> + <padding left="10" right="10" top="5" bottom="10"> + <size height="20"> + <RoundButton text="Reload" on:click="reload"/> + </size> + </padding> +</col>
\ No newline at end of file diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/versionChooser.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/versionChooser.gui new file mode 100644 index 00000000..fe0e65b3 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/versionChooser.gui @@ -0,0 +1,62 @@ +<!-- + ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + ~ Copyright (C) 2023 cyoung06 (syeyoung) + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU Affero General Public License as published + ~ by the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU Affero General Public License for more details. + ~ + ~ You should have received a copy of the GNU Affero General Public License + ~ along with this program. If not, see <https://www.gnu.org/licenses/>. + --> + +<bgcolor backgroundColor="#FF111111"> + <align vAlign="CENTER"> + <ConstrainedBox maxHeight="450"> + <col crossAlign="CENTER"> + <size width="0" height="10"/> + <Text text="Please choose a version to load" color="#FFFFFFFF"/> + <size width="0" height="10"/> + <flexible> + <align hAlign="CENTER"> + <ConstrainedBox maxWidth="600"> + <padding left="10" right="10"> + <row> + <flexible flex="1"> + <bgcolor backgroundColor="#FF000000"> + <SelectiveContainer bind:visible="listVisibility"> + <slot slot="branch" bind:child="branchWidget"/> + <slot slot="version" bind:child="versionWidget"/> + </SelectiveContainer> + </bgcolor> + </flexible> + <flexible flex="2"> + <bgcolor backgroundColor="#FF222222"> + <SelectiveContainer bind:visible="infoVisibility"> + <slot slot="show" bind:child="infoWidget"/> + <slot slot="hide"/> + </SelectiveContainer> + </bgcolor> + </flexible> + </row> + </padding> + </ConstrainedBox> + </align> + </flexible> + <size width="0" height="15"/> + <row mainAlign="CENTER"> + <size width="200" height="20"> + <RoundButton text="Play without Dungeons Guide" on:click="exit"/> + </size> + </row> + <size width="0" height="10"/> + </col> + </ConstrainedBox> + </align> +</bgcolor>
\ No newline at end of file diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/versionInfo.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/versionInfo.gui new file mode 100644 index 00000000..cccbefde --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/versions/versionInfo.gui @@ -0,0 +1,62 @@ +<!-- + ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + ~ Copyright (C) 2023 cyoung06 (syeyoung) + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU Affero General Public License as published + ~ by the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU Affero General Public License for more details. + ~ + ~ You should have received a copy of the GNU Affero General Public License + ~ along with this program. If not, see <https://www.gnu.org/licenses/>. + --> + +<stack> + <align vAlign="END" hAlign="END"> + <padding right="8" bottom="8"> + <UnconstrainedBox> + <bgcolor backgroundColor="#CC222222"> + <padding right="3" bottom="3" top="3" left="3"> + <row mainAlign="END" crossAlign="CENTER"> + <Text text="Make this version default" color="#FFFFFFFF"/> + <size width="5" height="0"/> + <size width="40" height="15"> + <SimpleToggleButton bind:enabled="default"/> + </size> + <size width="5" height="0"/> + <size width="40" height="15"> + <RoundButton text="Load" on:click="load"/> + </size> + </row> + </padding> + </bgcolor> + </UnconstrainedBox> + </padding> + </align> + <ScrollablePanel direction="VERTICAL"> + <padding left="10" top="10" right="10" bottom="10"> + <col crossAlign="START"> + <Text text="Version Info" size="16" color="#FFFFFFFF"/> + <size width="0" height="5"/> + <line color="#FFFFFFFF"/> + <size width="0" height="5"/> + <row> + <Text text="Version: " color="#FFFFFFFF"/> + <Text bind:text="version" color="#FFFFFFFF"/> + </row> + <size width="0" height="10"/> + <Text text="Update log" size="16" color="#FFFFFFFF"/> + <size width="0" height="5"/> + <line color="#FFFFFFFF"/> + <size width="0" height="5"/> + <Text bind:text="updatelog" color="#FFFFFFFF"/> + <size width="0" height="25"/> + </col> + </padding> + </ScrollablePanel> +</stack>
\ No newline at end of file |