aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-08-28 19:04:24 +0200
committerLinnea Gräf <nea@nea.moe>2024-08-28 19:04:24 +0200
commitd2f240ff0ca0d27f417f837e706c781a98c31311 (patch)
tree0db7aff6cc14deaf36eed83889d59fd6b3a6f599 /src/main/kotlin/moe/nea/firmament
parenta6906308163aa3b2d18fa1dc1aa71ac9bbcc83ab (diff)
downloadFirmament-d2f240ff0ca0d27f417f837e706c781a98c31311.tar.gz
Firmament-d2f240ff0ca0d27f417f837e706c781a98c31311.tar.bz2
Firmament-d2f240ff0ca0d27f417f837e706c781a98c31311.zip
Refactor source layout
Introduce compat source sets and move all kotlin sources to the main directory [no changelog]
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament')
-rw-r--r--src/main/kotlin/moe/nea/firmament/Firmament.kt148
-rw-r--r--src/main/kotlin/moe/nea/firmament/apis/Profiles.kt194
-rw-r--r--src/main/kotlin/moe/nea/firmament/apis/Routes.kt95
-rw-r--r--src/main/kotlin/moe/nea/firmament/apis/UrsaManager.kt72
-rw-r--r--src/main/kotlin/moe/nea/firmament/commands/CaseInsensitiveLiteralCommandNode.kt75
-rw-r--r--src/main/kotlin/moe/nea/firmament/commands/RestArgumentType.kt15
-rw-r--r--src/main/kotlin/moe/nea/firmament/commands/dsl.kt118
-rw-r--r--src/main/kotlin/moe/nea/firmament/commands/rome.kt230
-rw-r--r--src/main/kotlin/moe/nea/firmament/compat/SodiumChunkReloader.kt12
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/AllowChatEvent.kt16
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/AttackBlockEvent.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/BakeExtraModelsEvent.kt21
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ClientStartedEvent.kt6
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/CommandEvent.kt45
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/CustomItemModelEvent.kt43
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/EarlyResourceReloadEvent.kt10
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/EntityDespawnEvent.kt11
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/EntityInteractionEvent.kt29
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/EntityUpdateEvent.kt31
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/FeaturesInitializedEvent.kt8
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/FinalizeResourceManagerEvent.kt10
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/FirmamentEvent.kt38
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/FirmamentEventBus.kt52
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/HandledScreenClickEvent.kt10
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/HandledScreenForegroundEvent.kt16
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/HandledScreenKeyPressedEvent.kt24
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/HandledScreenPushREIEvent.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/HotbarItemRenderEvent.kt17
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/HudRenderEvent.kt13
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/IsSlotProtectedEvent.kt46
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ItemTooltipEvent.kt14
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/MaskCommands.kt13
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ModifyChatEvent.kt21
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/OutgoingPacketEvent.kt9
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ParticleSpawnEvent.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/PlayerInventoryUpdate.kt11
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ProcessChatEvent.kt28
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ReloadRegistrationEvent.kt7
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ScreenChangeEvent.kt10
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ScreenRenderPostEvent.kt16
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/ServerConnectedEvent.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt15
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/SlotClickEvent.kt15
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/SlotRenderEvents.kt34
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/SoundReceiveEvent.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/TickEvent.kt7
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/TooltipEvent.kt17
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/UseBlockEvent.kt11
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/WorldKeyboardEvent.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/WorldReadyEvent.kt7
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/WorldRenderLastEvent.kt27
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/registration/ChatEvents.kt54
-rw-r--r--src/main/kotlin/moe/nea/firmament/events/subscription/Subscription.kt16
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/FeatureManager.kt120
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/FirmamentFeature.kt23
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/chat/AutoCompletions.kt57
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/chat/ChatLinks.kt161
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/chat/QuickCommands.kt100
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/debug/DebugLogger.kt13
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt38
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/debug/DeveloperFeatures.kt55
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/debug/MinorTrolling.kt27
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/debug/PowerUserTools.kt193
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/diana/AncestralSpadeSolver.kt131
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/diana/DianaWaypoints.kt35
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/diana/NearbyBurrowsSolver.kt144
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/events/anniversity/AnniversaryFeatures.kt224
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/events/carnival/CarnivalFeatures.kt17
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/events/carnival/MinesweeperHelper.kt276
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/fixes/CompatibliltyFeatures.kt51
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/fixes/Fixes.kt71
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/CraftingOverlay.kt66
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/ItemRarityCosmetics.kt85
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/PriceData.kt51
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/SaveCursorPosition.kt66
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/SlotLocking.kt203
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/buttons/InventoryButton.kt85
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/buttons/InventoryButtonEditor.kt184
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/buttons/InventoryButtonTemplates.kt35
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/buttons/InventoryButtons.kt88
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StorageBackingHandle.kt53
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StorageData.kt21
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StorageOverlay.kt154
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StorageOverlayCustom.kt98
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StorageOverlayScreen.kt296
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StorageOverviewScreen.kt123
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/StoragePageSlot.kt66
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/storageoverlay/VirtualInventory.kt65
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/mining/Histogram.kt81
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/mining/PickaxeAbility.kt176
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/mining/PristineProfitTracker.kt133
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/notifications/Notifications.kt7
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/AlwaysPredicate.kt17
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/AndPredicate.kt26
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/BakedModelExtra.kt9
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/BakedOverrideData.kt8
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/CustomBlockTextures.kt296
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/CustomGlobalArmorOverrides.kt106
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/CustomGlobalTextures.kt167
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/CustomModelOverrideParser.kt74
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/CustomSkyBlockTextures.kt114
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/DisplayNamePredicate.kt22
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/ExtraAttributesPredicate.kt268
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/FirmamentModelPredicate.kt8
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/FirmamentModelPredicateParser.kt8
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/ItemPredicate.kt32
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/JsonUnbakedModelFirmExtra.kt10
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/LorePredicate.kt19
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/ModelOverrideData.kt7
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/ModelOverrideFilterSet.kt19
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/NotPredicate.kt18
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/NumberMatcher.kt125
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/texturepack/OrPredicate.kt26