diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-04 02:03:37 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-04 02:03:37 +0900 |
commit | f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84 (patch) | |
tree | 462cc75e8892451570c72a047e7759ab12859f56 /mod/src/main/resources/assets/dungeonsguide/gui/config/parameter | |
parent | 9fdf5d426d2a6267dbd218cec49abdeebd00e153 (diff) | |
download | Skyblock-Dungeons-Guide-f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84.tar.gz Skyblock-Dungeons-Guide-f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84.tar.bz2 Skyblock-Dungeons-Guide-f3410c50bdcc5c5ddbbdfa05ad539d178dfdbf84.zip |
- Configuration Overhaul
- Move to new system
- more shaders!!
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src/main/resources/assets/dungeonsguide/gui/config/parameter')
7 files changed, 273 insertions, 0 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/boolean.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/boolean.gui new file mode 100644 index 00000000..4fc0c1c0 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/boolean.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/>. + --> + +<size width="40" height="14"> + <SimpleToggleButton bind:enabled="enabled"/> +</size>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/color.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/color.gui new file mode 100644 index 00000000..d5db4950 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/color.gui @@ -0,0 +1,25 @@ + +<!-- + ~ 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/>. + --> + +<size width="100" height="25"> + <RoundButton on:click="setColor" hPadding="1" + text="" + bind:backgroundColor="color" bind:hoveredBackgroundColor="hover" bind:pressedBackgroundColor="click" + /> +</size>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/colorSet.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/colorSet.gui new file mode 100644 index 00000000..89129d84 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/colorSet.gui @@ -0,0 +1,85 @@ +<!-- + ~ 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/>. + --> + +<size width="137" height="102"> + <stack> + <padding left="7" top="7" right="7" bottom="7"> + <col> + <flexible> + <row> + <aspectRatio width="1" height="1"> + <slot bind:child="colorWheel"/> + </aspectRatio> + <size width="5"/> + <size width="15"> + <slot bind:child="valueBar"/> + </size> + <size width="5"/> + <size width="15"> + <slot bind:child="alphaBar"/> + </size> + <size width="5"/> + <size width="15"> + <slot bind:child="chromaBar"/> + </size> + </row> + </flexible> + <size height="5"/> + <size height="20"> + <TextField bind:value="color"/> + </size> + </col> + </padding> + <InvertStencil> + <RoundRect radius="10" backgroundColor="#FFFFFFFF"> + <padding left="1" top="1" bottom="1" right="1"> + <RoundRect radius="10" backgroundColor="#FF111111"> + + </RoundRect> + </padding> + </RoundRect> + <padding left="7" top="7" right="7" bottom="7" slot="stencil"> + <col> + <flexible> + <row> + <aspectRatio width="1" height="1"> + <size width="0" height="0"/> + </aspectRatio> + <size width="5"/> + <size width="15"> + <size width="0" height="0"/> + </size> + <size width="5"/> + <size width="15"> + <RoundRect radius="10" backgroundColor="#FFFFFFFF"/> + </size> + <size width="5"/> + <size width="15"> + <size width="0" height="0"/> + </size> + </row> + </flexible> + <size height="5"/> + <size height="20"> + <size width="0" height="0"/> + </size> + </col> + </padding> + </InvertStencil> + </stack> +</size>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/keybind.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/keybind.gui new file mode 100644 index 00000000..134d105e --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/keybind.gui @@ -0,0 +1,23 @@ +<!-- + ~ 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/>. + --> + +<size width="100" height="25"> + <RoundButton on:click="setKey" hPadding="1" + bind:text="key" + /> +</size>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/number.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/number.gui new file mode 100644 index 00000000..57c21e3b --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/number.gui @@ -0,0 +1,46 @@ +<!-- + ~ 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/>. + --> + +<size height="19"> + <Stencil> + <row> + <aspectRatio width="1" height="1"> + <ColorButton on:click="dec" hPadding="1" + backgroundColor="#FF1C376E" textColor="#FFFFFFFF" + hoveredBackgroundColor="#FF1C5692" hoveredTextColor="#FFFFFFFF" + disabledBackgroundColor="0" disabledTextColor="0" + pressedBackgroundColor="#FF1D5F9C" pressedTextColor="#FFFFFFFF" + text="<" + /> + </aspectRatio> + <flexible> + <TextField bind:value="value"/> + </flexible> + <aspectRatio width="1" height="1"> + <ColorButton on:click="inc" hPadding="1" + backgroundColor="#FF1C376E" textColor="#FFFFFFFF" + hoveredBackgroundColor="#FF1C5692" hoveredTextColor="#FFFFFFFF" + disabledBackgroundColor="0" disabledTextColor="0" + pressedBackgroundColor="#FF1D5F9C" pressedTextColor="#FFFFFFFF" + text=">" + /> + </aspectRatio> + </row> + <CircularRect slot="stencil"/> + </Stencil> +</size>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/string.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/string.gui new file mode 100644 index 00000000..fea9fe77 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/string.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/>. + --> + +<size height="19"> + <TextField bind:value="value"/> +</size>
\ No newline at end of file diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/stringChoice.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/stringChoice.gui new file mode 100644 index 00000000..27822ea9 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/parameter/stringChoice.gui @@ -0,0 +1,50 @@ +<!-- + ~ 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/>. + --> + +<size height="19"> + <Stencil> + <row> + <aspectRatio width="1" height="1"> + <ColorButton on:click="dec" hPadding="1" + backgroundColor="#FF1C376E" textColor="#FFFFFFFF" + hoveredBackgroundColor="#FF1C5692" hoveredTextColor="#FFFFFFFF" + disabledBackgroundColor="0" disabledTextColor="0" + pressedBackgroundColor="#FF1D5F9C" pressedTextColor="#FFFFFFFF" + text="<" + /> + </aspectRatio> + <flexible> + <bgcolor backgroundColor="#FF000000"> + <align hAlign="CENTER" vAlign="CENTER"> + <Text bind:text="value" color="#FFFFFFFF"/> + </align> + </bgcolor> + </flexible> + <aspectRatio width="1" height="1"> + <ColorButton on:click="inc" hPadding="1" + backgroundColor="#FF1C376E" textColor="#FFFFFFFF" + hoveredBackgroundColor="#FF1C5692" hoveredTextColor="#FFFFFFFF" + disabledBackgroundColor="0" disabledTextColor="0" + pressedBackgroundColor="#FF1D5F9C" pressedTextColor="#FFFFFFFF" + text=">" + /> + </aspectRatio> + </row> + <CircularRect slot="stencil"/> + </Stencil> +</size>
\ No newline at end of file |