GUI Rewrite #715
No reviewers
Labels
No labels
Area-Assets
Area-Backend
Area-Conduits
Area-Datapacks
Area-Lang
Area-Mod Compat
Area-Parity
Area-Rendering
Good first issue
MC-1.19.2
MC-1.20.1
MC-1.20.4
MC-1.20.6
MC-1.21
MC-1.21.1
Modtoberfest
P-0-High
P-1-Medium
P-2-Low
Status-Awaiting Response
Status-Behind-Flag
Status-Blocked
Status-Cannot Reproduce
Status-Duplicate
Status-Help Wanted
Status-Incomplete Report
Status-Invalid
Status-Needs LTS Backport
Status-Needs Updating
Status-Stale
Status-To Implement
Status-Triage
Status-Wontfix
Status-Wontmerge
Type-Backport
Type-Bug
Type-Documentation
Type-Enhancement
Type-Question
Type-RFC
Type-Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Team-EnderIO/EnderIO#715
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "chore/gui-rewrite"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
This PR rewrites the code menu and screen logic across the entire mod. Tidying up legacy code, breaking all of our texture atlases up into sprites and starting down the path of our GUI redesign (starting with the Alloy Smelter).
I am creating this draft PR so that I can keep my TODO list handy.
TODO
Breaking Changes
All menus and screens have been affected API wise, however no machine implementations have been changed, nor public APIs.
Checklist
@ -0,0 +1,40 @@package com.enderio.core.common.menu;🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.imports.AvoidStarImportCheck> reported by reviewdog 🐶
Using the '.' form of import should be avoided - net.minecraft.world.inventory.InventoryMenu..
🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.coding.MissingSwitchDefaultCheck> reported by reviewdog 🐶
switch without "default" clause.
@ -0,0 +1,54 @@package com.enderio.machines.client.gui.screen.base;🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocPackageCheck> reported by reviewdog 🐶
Missing package-info.java file.
@ -0,0 +1,103 @@package com.enderio.machines.client.gui.widget;🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.coding.MultipleVariableDeclarationsCheck> reported by reviewdog 🐶
Each variable declaration must be in its own statement.
@ -0,0 +1,41 @@package com.enderio.machines.common.menu.base;🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocPackageCheck> reported by reviewdog 🐶
Missing package-info.java file.
@ -0,0 +1,33 @@package com.enderio.base.client.gui.icon;🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.modifier.ModifierOrderCheck> reported by reviewdog 🐶
'static' modifier out of order with the JLS suggestions.
🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.modifier.ModifierOrderCheck> reported by reviewdog 🐶
'static' modifier out of order with the JLS suggestions.
🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.modifier.ModifierOrderCheck> reported by reviewdog 🐶
'static' modifier out of order with the JLS suggestions.
🚫 [checkstyle] <com.puppycrawl.tools.checkstyle.checks.modifier.ModifierOrderCheck> reported by reviewdog 🐶
'static' modifier out of order with the JLS suggestions.
In the interest of getting the project restructuring done - I am going to re-enable IO Config on all screens and then merge this in. All other outstanding work will be done afterwards :)