├── gradle.properties ├── src └── main │ ├── resources │ ├── META-INF │ │ └── fluidlogged_at.cfg │ ├── mixins.fluidlogged.json │ ├── mcmod.info │ └── LICENSE │ └── java │ └── mega │ └── fluidlogged │ ├── api │ ├── package-info.java │ ├── world │ │ ├── package-info.java │ │ └── WorldDriver.java │ ├── bucket │ │ ├── BucketState.java │ │ ├── package-info.java │ │ ├── BucketEmptyResults.java │ │ └── BucketDriver.java │ ├── FLChunk.java │ └── FLBlockAccess.java │ └── internal │ ├── package-info.java │ ├── core │ ├── package-info.java │ ├── FluidLogTransformer.java │ ├── ASMHooks.java │ ├── CoreLoadingPlugin.java │ └── FluidLogRendererInjector.java │ ├── mixin │ ├── hook │ │ ├── package-info.java │ │ ├── FLPacket.java │ │ ├── FLSubChunk.java │ │ ├── FLBlockRoot.java │ │ └── FLWorld.java │ ├── plugin │ │ ├── package-info.java │ │ ├── TargetedMod.java │ │ ├── MixinPlugin.java │ │ └── Mixin.java │ └── mixins │ │ ├── common │ │ ├── S23PacketBlockChangeMixin.java │ │ ├── BlockDynamicLiquidMixin.java │ │ ├── ExtendedBlockStorageMixin.java │ │ ├── BlockMixin.java │ │ ├── compat │ │ │ └── cofh │ │ │ │ └── ItemBucketMixin.java │ │ ├── ChunkCacheMixin.java │ │ ├── EntityMixin.java │ │ ├── BlockLiquidMixin.java │ │ ├── BlockFluidClassicMixin.java │ │ ├── ChunkMixin.java │ │ ├── WorldMixin.java │ │ └── WorldServerMixin.java │ │ └── client │ │ ├── BlockLiquidMixin.java │ │ ├── BlockFluidBaseMixin.java │ │ ├── RenderBlocksMixin.java │ │ ├── ActiveRenderInfoMixin.java │ │ └── RenderBlockFluidMixin.java │ ├── world │ ├── FLWorldDriver.java │ └── drivers │ │ └── MinecraftWorldDriver.java │ ├── FluidLogged.java │ ├── bucket │ ├── drivers │ │ └── ForgeBucketDriver.java │ └── FLBucketDriver.java │ ├── FLUtil.java │ └── FLManager.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle.kts ├── readme.md ├── .github ├── workflows │ ├── build-and-test.yml │ └── release-tags.yml └── ISSUE_TEMPLATE │ ├── bug.yml │ └── compat-request.yml ├── LICENSE ├── .gitattributes ├── gradlew.bat ├── .gitignore ├── COPYING.LESSER ├── gradlew └── COPYING /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.configuration-cache=true 2 | org.gradle.caching=true 3 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/fluidlogged_at.cfg: -------------------------------------------------------------------------------- 1 | public net.minecraft.item.ItemBucket field_77876_a # isFull 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GTMEGA/FluidLogged/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("org.gradle.toolchains.foojay-resolver-convention") version("1.0.0") 3 | } 4 | 5 | rootProject.name = "FluidLogged" 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # FluidLogged 2 | 3 | Waterlogging backport for 1.7.10, but with all forge fluids too (well, the ones that have block versions that is). 4 | 5 | ## TODO 6 | - Correct light propagation 7 | - Blast resistance 8 | - FalseTweaks threaded rendering 9 | - Validate compatibility with OptiFine shaders 10 | 11 | ## Dependencies 12 | [ChunkAPI](https://github.com/FalsePattern/ChunkAPI) -------------------------------------------------------------------------------- /src/main/resources/mixins.fluidlogged.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "minVersion": "0.8.5", 4 | "package": "mega.fluidlogged.internal.mixin.mixins", 5 | "plugin": "mega.fluidlogged.internal.mixin.plugin.MixinPlugin", 6 | "refmap": "mixins.fluidlogged.refmap.json", 7 | "target": "@env(DEFAULT)", 8 | "compatibilityLevel": "JAVA_8", 9 | "mixins": [], 10 | "client": [], 11 | "server": [] 12 | } -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- 1 | name: Build and test 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - master 7 | push: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | build-and-test: 13 | uses: FalsePattern/fpgradle-workflows/.github/workflows/build-and-test.yml@master 14 | with: 15 | timeout: 90 16 | workspace: setupCIWorkspace 17 | client-only: false 18 | -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "modid": "${modId}", 4 | "name": "${modName}", 5 | "description": "Waterlogging with any fluid.", 6 | "version": "${modVersion}", 7 | "mcversion": "${minecraftVersion}", 8 | "url": "https://github.com/GTMEGA/FluidLogged", 9 | "updateUrl": "", 10 | "authorList": [ 11 | "FalsePattern" 12 | ], 13 | "credits": "MEGA Team", 14 | "logoFile": "", 15 | "screenshots": [], 16 | "dependencies": [] 17 | } 18 | ] 19 | -------------------------------------------------------------------------------- /.github/workflows/release-tags.yml: -------------------------------------------------------------------------------- 1 | name: Release Tags 2 | 3 | on: 4 | push: 5 | tags: 6 | - '*' 7 | 8 | permissions: 9 | contents: write 10 | 11 | jobs: 12 | release-tags: 13 | uses: FalsePattern/fpgradle-workflows/.github/workflows/release-tags.yml@master 14 | with: 15 | workspace: "setupCIWorkspace" 16 | secrets: 17 | MAVEN_DEPLOY_USER: ${{ secrets.MAVEN_DEPLOY_USER }} 18 | MAVEN_DEPLOY_PASSWORD: ${{ secrets.MAVEN_DEPLOY_PASSWORD }} 19 | MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} 20 | CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }} 21 | 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | FluidLogged 2 | 3 | Copyright (C) 2025 The MEGA Team, FalsePattern 4 | All Rights Reserved 5 | 6 | The above copyright notice, this permission notice and the word "MEGA" 7 | shall be included in all copies or substantial portions of the Software. 8 | 9 | This program is free software: you can redistribute it and/or modify 10 | it under the terms of the GNU Lesser General Public License as published by 11 | the Free Software Foundation, only version 3 of the License. 12 | 13 | This program is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | GNU General Public License for more details. 17 | 18 | You should have received a copy of the GNU Lesser General Public License 19 | along with this program. If not, see . -------------------------------------------------------------------------------- /src/main/resources/LICENSE: -------------------------------------------------------------------------------- 1 | FluidLogged 2 | 3 | Copyright (C) 2025 The MEGA Team, FalsePattern 4 | All Rights Reserved 5 | 6 | The above copyright notice, this permission notice and the word "MEGA" 7 | shall be included in all copies or substantial portions of the Software. 8 | 9 | This program is free software: you can redistribute it and/or modify 10 | it under the terms of the GNU Lesser General Public License as published by 11 | the Free Software Foundation, only version 3 of the License. 12 | 13 | This program is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | GNU General Public License for more details. 17 | 18 | You should have received a copy of the GNU Lesser General Public License 19 | along with this program. If not, see . -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | @ApiStatus.Experimental 23 | package mega.fluidlogged.api; 24 | 25 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/world/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | @ApiStatus.Experimental 23 | package mega.fluidlogged.api.world; 24 | 25 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | @ApiStatus.Internal 24 | package mega.fluidlogged.internal; 25 | 26 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/bucket/BucketState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.api.bucket; 24 | 25 | public enum BucketState { 26 | Empty, 27 | Filled 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/bucket/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | @ApiStatus.Experimental 23 | package mega.fluidlogged.api.bucket; 24 | 25 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/core/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | @ApiStatus.Internal 24 | package mega.fluidlogged.internal.core; 25 | 26 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/hook/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | @ApiStatus.Internal 24 | package mega.fluidlogged.internal.mixin.hook; 25 | 26 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/plugin/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | @ApiStatus.Internal 24 | package mega.fluidlogged.internal.mixin.plugin; 25 | 26 | import org.jetbrains.annotations.ApiStatus; -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: Crash 2 | description: The game crashes when FluidLogged is present 3 | title: "[Crash]: " 4 | labels: ["bug"] 5 | assignees: 6 | - falsepattern 7 | body: 8 | - type: input 9 | id: modpack 10 | attributes: 11 | label: Modpack (Optional) 12 | description: If you used the mod in a modpack, you should include the pack's exact name and version here to make debugging easier. 13 | validations: 14 | required: false 15 | - type: textarea 16 | id: logs 17 | attributes: 18 | label: Game log 19 | description: Attach the fml-client-latest.log file here. 20 | validations: 21 | required: true 22 | - type: textarea 23 | id: description 24 | attributes: 25 | label: Description 26 | description: Describe how and when you experience this bug. 27 | validations: 28 | required: true 29 | - type: textarea 30 | id: mods 31 | attributes: 32 | label: Minimal reproducible example modlist (recommended) 33 | description: Try to get a minimal reproducible example of the crash with the fewest mods you can. You can skip this, but then your issue will be low priority. 34 | validations: 35 | required: false -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/hook/FLPacket.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.hook; 24 | 25 | import org.jetbrains.annotations.Nullable; 26 | 27 | import net.minecraftforge.fluids.Fluid; 28 | 29 | public interface FLPacket { 30 | @Nullable Fluid fl$getFluidLog(); 31 | void fl$setFluidLog(@Nullable Fluid fluid); 32 | } 33 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | 3 | *.[jJ][aA][rR] binary 4 | 5 | *.[pP][nN][gG] binary 6 | *.[jJ][pP][gG] binary 7 | *.[jJ][pP][eE][gG] binary 8 | *.[gG][iI][fF] binary 9 | *.[tT][iI][fF] binary 10 | *.[tT][iI][fF][fF] binary 11 | *.[iI][cC][oO] binary 12 | *.[sS][vV][gG] text 13 | *.[eE][pP][sS] binary 14 | *.[xX][cC][fF] binary 15 | 16 | *.[kK][aA][rR] binary 17 | *.[mM]4[aA] binary 18 | *.[mM][iI][dD] binary 19 | *.[mM][iI][dD][iI] binary 20 | *.[mM][pP]3 binary 21 | *.[oO][gG][gG] binary 22 | *.[rR][aA] binary 23 | 24 | *.7[zZ] binary 25 | *.[gG][zZ] binary 26 | *.[tT][aA][rR] binary 27 | *.[tT][gG][zZ] binary 28 | *.[zZ][iI][pP] binary 29 | 30 | *.[tT][cC][nN] binary 31 | *.[sS][oO] binary 32 | *.[dD][lL][lL] binary 33 | *.[dD][yY][lL][iI][bB] binary 34 | *.[pP][sS][dD] binary 35 | *.[tT][tT][fF] binary 36 | *.[oO][tT][fF] binary 37 | 38 | *.[pP][aA][tT][cC][hH] -text 39 | 40 | *.[bB][aA][tT] text eol=crlf 41 | *.[cC][mM][dD] text eol=crlf 42 | *.[pP][sS]1 text eol=crlf 43 | 44 | *[aA][uU][tT][oO][gG][eE][nN][eE][rR][aA][tT][eE][dD]* binary 45 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/bucket/BucketEmptyResults.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.api.bucket; 24 | 25 | import lombok.Data; 26 | import org.jetbrains.annotations.NotNull; 27 | 28 | import net.minecraft.item.ItemStack; 29 | import net.minecraftforge.fluids.Fluid; 30 | 31 | @Data 32 | public final class BucketEmptyResults { 33 | private final @NotNull ItemStack item; 34 | private final @NotNull Fluid fluid; 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/hook/FLSubChunk.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.hook; 24 | 25 | import org.jetbrains.annotations.Nullable; 26 | 27 | import net.minecraftforge.fluids.Fluid; 28 | 29 | public interface FLSubChunk { 30 | Fluid @Nullable [] fl$getFluidLog(); 31 | void fl$setFluidLog(Fluid @Nullable [] fluidLog); 32 | @Nullable Fluid fl$getFluid(int x, int y, int z); 33 | void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid); 34 | } 35 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/hook/FLBlockRoot.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.hook; 24 | 25 | import org.jetbrains.annotations.NotNull; 26 | 27 | import net.minecraft.block.Block; 28 | import net.minecraft.world.World; 29 | 30 | import java.util.Random; 31 | 32 | public interface FLBlockRoot { 33 | void fl$updateTick(@NotNull World world, int x, int y, int z, @NotNull Random random); 34 | void fl$onNeighborChange(@NotNull World world, int x, int y, int z, @NotNull Block neighbor); 35 | } 36 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/core/FluidLogTransformer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.core; 24 | 25 | import com.falsepattern.lib.turboasm.MergeableTurboTransformer; 26 | import com.falsepattern.lib.turboasm.TurboClassTransformer; 27 | 28 | import java.util.Collections; 29 | import java.util.List; 30 | 31 | public class FluidLogTransformer extends MergeableTurboTransformer { 32 | private static List transformers() { 33 | return Collections.singletonList(new FluidLogRendererInjector()); 34 | } 35 | public FluidLogTransformer() { 36 | super(transformers()); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/plugin/TargetedMod.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.plugin; 24 | 25 | import com.falsepattern.lib.mixin.ITargetedMod; 26 | import lombok.Getter; 27 | import lombok.RequiredArgsConstructor; 28 | 29 | import java.util.function.Predicate; 30 | 31 | import static com.falsepattern.lib.mixin.ITargetedMod.PredicateHelpers.contains; 32 | 33 | @RequiredArgsConstructor 34 | public enum TargetedMod implements ITargetedMod { 35 | COFHCORE("CoFH Core", false, contains("cofhcore")), 36 | ; 37 | 38 | @Getter 39 | private final String modName; 40 | @Getter 41 | private final boolean loadInDevelopment; 42 | @Getter 43 | private final Predicate condition; 44 | } 45 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/hook/FLWorld.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.hook; 24 | 25 | import org.jetbrains.annotations.NotNull; 26 | import org.jetbrains.annotations.Nullable; 27 | 28 | import net.minecraft.block.Block; 29 | import net.minecraft.world.NextTickListEntry; 30 | import net.minecraft.world.chunk.Chunk; 31 | 32 | import java.util.List; 33 | 34 | public interface FLWorld { 35 | void fl$scheduleFluidUpdate(int x, int y, int z, @NotNull Block block, int delay); 36 | void fl$scheduleFluidUpdateWithPriority(int x, int y, int z, @NotNull Block block, int delay, int priority); 37 | void fl$insertUpdate(int x, int y, int z, @NotNull Block block, int delay, int priority); 38 | @Nullable List<@NotNull NextTickListEntry> fl$getPendingFluidUpdates(@NotNull Chunk chunk, boolean remove); 39 | } 40 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/S23PacketBlockChangeMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import mega.fluidlogged.internal.mixin.hook.FLPacket; 26 | import org.jetbrains.annotations.Nullable; 27 | import org.spongepowered.asm.mixin.Mixin; 28 | import org.spongepowered.asm.mixin.Unique; 29 | 30 | import net.minecraft.network.play.server.S23PacketBlockChange; 31 | import net.minecraftforge.fluids.Fluid; 32 | 33 | @Mixin(S23PacketBlockChange.class) 34 | public abstract class S23PacketBlockChangeMixin implements FLPacket { 35 | @Unique 36 | private Fluid fl$fluidLog; 37 | 38 | @Override 39 | public @Nullable Fluid fl$getFluidLog() { 40 | return fl$fluidLog; 41 | } 42 | 43 | @Override 44 | public void fl$setFluidLog(@Nullable Fluid fluid) { 45 | this.fl$fluidLog = fluid; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/plugin/MixinPlugin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.plugin; 24 | 25 | import com.falsepattern.lib.mixin.IMixin; 26 | import com.falsepattern.lib.mixin.IMixinPlugin; 27 | import com.falsepattern.lib.mixin.ITargetedMod; 28 | import lombok.Getter; 29 | import mega.fluidlogged.Tags; 30 | import org.apache.logging.log4j.Logger; 31 | 32 | public class MixinPlugin implements IMixinPlugin { 33 | @Getter 34 | private final Logger logger = IMixinPlugin.createLogger(Tags.MOD_NAME); 35 | 36 | @Override 37 | public ITargetedMod[] getTargetedModEnumValues() { 38 | return TargetedMod.values(); 39 | } 40 | 41 | @Override 42 | public IMixin[] getMixinEnumValues() { 43 | return Mixin.values(); 44 | } 45 | 46 | @Override 47 | public boolean useNewFindJar() { 48 | return true; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compat-request.yml: -------------------------------------------------------------------------------- 1 | name: Compatibility Request 2 | description: If you tested FluidLogged with another mod and it has blocks that can't be fluidlogged even though they should be, you can ask for compatibility here 3 | title: "[Compatibility Request]: " 4 | labels: ["compat request"] 5 | assignees: 6 | - falsepattern 7 | body: 8 | - type: input 9 | id: modname 10 | attributes: 11 | label: Other mod's name 12 | description: The name of the other mod 13 | validations: 14 | required: true 15 | - type: input 16 | id: modurl 17 | attributes: 18 | label: Other mod's homepage 19 | description: A link to the main site where the other mod is hosted. Preferrably the original website of a mod, but a modrinth/curseforge/whatever page is also acceptable. Do not post a raw download link, those requests will be ignored. 20 | validations: 21 | required: true 22 | - type: dropdown 23 | id: license 24 | attributes: 25 | label: Other mod's license 26 | description: What license does the other mod have? (Open source mods are easier to write compatibility patches for) 27 | options: 28 | - All Rights Reserved 29 | - AGPLv3 30 | - AGPLv2 31 | - GPLv3 32 | - GPLv2 33 | - LGPLv3 34 | - LGPLv2 35 | - Apache 2.0 36 | - Beerware 37 | - BSD 3-Clause 38 | - BSD 2-Clause 39 | - EPL 2.0 40 | - MIT 41 | - MPL 2.0 42 | - Unlicense 43 | - WTFPL 44 | - Other open source license (please specify in the description) 45 | validations: 46 | required: true 47 | - type: textarea 48 | id: description 49 | attributes: 50 | label: Description 51 | description: You can attach screenshots here. Please also mention which blocks they are specifically. 52 | validations: 53 | required: false -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/client/BlockLiquidMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.client; 24 | 25 | import mega.fluidlogged.internal.FLUtil; 26 | import org.spongepowered.asm.mixin.Mixin; 27 | import org.spongepowered.asm.mixin.injection.At; 28 | import org.spongepowered.asm.mixin.injection.Redirect; 29 | 30 | import net.minecraft.block.Block; 31 | import net.minecraft.block.BlockLiquid; 32 | import net.minecraft.world.IBlockAccess; 33 | 34 | @Mixin(BlockLiquid.class) 35 | public abstract class BlockLiquidMixin { 36 | @Redirect(method = "shouldSideBeRendered", 37 | at = @At(value = "INVOKE", 38 | target = "Lnet/minecraft/world/IBlockAccess;getBlock(III)Lnet/minecraft/block/Block;"), 39 | require = 1) 40 | private Block getFluidLogged(IBlockAccess instance, int x, int y, int z) { 41 | return FLUtil.getFluidOrBlock(instance, x, y, z); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/client/BlockFluidBaseMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.client; 24 | 25 | import mega.fluidlogged.internal.FLUtil; 26 | import org.spongepowered.asm.mixin.Mixin; 27 | import org.spongepowered.asm.mixin.injection.At; 28 | import org.spongepowered.asm.mixin.injection.Redirect; 29 | 30 | import net.minecraft.block.Block; 31 | import net.minecraft.world.IBlockAccess; 32 | import net.minecraftforge.fluids.BlockFluidBase; 33 | 34 | @Mixin(BlockFluidBase.class) 35 | public abstract class BlockFluidBaseMixin { 36 | @Redirect(method = "shouldSideBeRendered", 37 | at = @At(value = "INVOKE", 38 | target = "Lnet/minecraft/world/IBlockAccess;getBlock(III)Lnet/minecraft/block/Block;"), 39 | require = 1) 40 | private Block getFluidLogged(IBlockAccess instance, int x, int y, int z) { 41 | return FLUtil.getFluidOrBlock(instance, x, y, z); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/world/FLWorldDriver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.world; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.world.WorldDriver; 27 | import org.jetbrains.annotations.NotNull; 28 | 29 | import net.minecraft.block.Block; 30 | import net.minecraftforge.fluids.Fluid; 31 | 32 | import java.util.ArrayList; 33 | import java.util.List; 34 | 35 | public class FLWorldDriver { 36 | public static final FLWorldDriver INSTANCE = new FLWorldDriver(); 37 | private final List drivers = new ArrayList<>(); 38 | 39 | public void registerDriver(WorldDriver driver) { 40 | drivers.add(driver); 41 | } 42 | 43 | public boolean canBeFluidLogged(@NotNull Block block, int meta, @NotNull Fluid fluid) { 44 | for (val driver: drivers) { 45 | if (driver.canBeFluidLogged(block, meta, fluid)) { 46 | return true; 47 | } 48 | } 49 | return false; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/FLChunk.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.api; 24 | 25 | import org.jetbrains.annotations.ApiStatus; 26 | import org.jetbrains.annotations.Nullable; 27 | 28 | import net.minecraft.world.chunk.Chunk; 29 | import net.minecraftforge.fluids.Fluid; 30 | 31 | /** 32 | * Implemented on {@link net.minecraft.world.chunk.Chunk} via a mixin. 33 | */ 34 | @ApiStatus.NonExtendable 35 | public interface FLChunk { 36 | /** 37 | * Retrieves the fluid from a fluidlogged block. Null if not fluidlogged. Note that this returns null if the block itself is a fluid block! 38 | */ 39 | @Nullable Fluid fl$getFluid(int x, int y, int z); 40 | 41 | /** 42 | * Makes a block fluidlogged with the given fluid. Does NOT verify whether the block can be fluidlogged! 43 | * Pass in null to clear. 44 | */ 45 | void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid); 46 | 47 | static FLChunk of(Chunk chunk) { 48 | return (FLChunk) chunk; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/core/ASMHooks.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.core; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.FLBlockAccess; 27 | 28 | import net.minecraft.client.renderer.RenderBlocks; 29 | 30 | @SuppressWarnings("unused") // Called by ASM 31 | public class ASMHooks { 32 | public static final int BIT_NEXT_PASS = 0b1; 33 | public static final int BIT_RENDERED_ANYTHING = 0b10; 34 | public static int drawFluidLogged(RenderBlocks renderBlocks, int x, int y, int z, int pass) { 35 | 36 | val fluid = ((FLBlockAccess)renderBlocks.blockAccess).fl$getFluid(x, y, z); 37 | val fluidBlock = fluid == null ? null : fluid.getBlock(); 38 | 39 | int result = 0; 40 | 41 | if (pass < 1 && fluidBlock != null && fluidBlock.getRenderBlockPass() > 0) { 42 | result |= 0b1; 43 | } 44 | if (fluidBlock != null && fluidBlock.canRenderInPass(pass) && renderBlocks.renderBlockByRenderType(fluidBlock, x, y, z)) { 45 | result |= 0b10; 46 | } 47 | 48 | return result; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/world/WorldDriver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.api.world; 24 | 25 | import mega.fluidlogged.internal.world.FLWorldDriver; 26 | import org.jetbrains.annotations.ApiStatus; 27 | import org.jetbrains.annotations.NotNull; 28 | 29 | import net.minecraft.block.Block; 30 | import net.minecraftforge.fluids.Fluid; 31 | 32 | public interface WorldDriver { 33 | @ApiStatus.OverrideOnly 34 | boolean canBeFluidLogged(@NotNull Block block, int meta, @NotNull Fluid fluid); 35 | 36 | static void register(@NotNull WorldDriver driver) { 37 | FLWorldDriver.INSTANCE.registerDriver(driver); 38 | } 39 | 40 | /** 41 | * Check whether a given block can be fluidlogged by a fluid. 42 | * @param block The block to check 43 | * @param meta The checked block's metadata 44 | * @param fluid The fluid that is trying to fluidlog the block 45 | * @return true to allow fluidlogging 46 | */ 47 | static boolean getCanBeFluidLogged(@NotNull Block block, int meta, @NotNull Fluid fluid) { 48 | return FLWorldDriver.INSTANCE.canBeFluidLogged(block, meta, fluid); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/BlockDynamicLiquidMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import org.spongepowered.asm.mixin.Mixin; 26 | import org.spongepowered.asm.mixin.Shadow; 27 | import org.spongepowered.asm.mixin.injection.At; 28 | import org.spongepowered.asm.mixin.injection.Redirect; 29 | 30 | import net.minecraft.block.BlockDynamicLiquid; 31 | import net.minecraft.world.World; 32 | 33 | @Mixin(BlockDynamicLiquid.class) 34 | public abstract class BlockDynamicLiquidMixin { 35 | @Shadow protected abstract void func_149811_n(World p_149811_1_, int p_149811_2_, int p_149811_3_, int p_149811_4_); 36 | 37 | @Redirect(method = "updateTick", 38 | at = @At(value = "INVOKE", 39 | target = "Lnet/minecraft/block/BlockDynamicLiquid;func_149811_n(Lnet/minecraft/world/World;III)V"), 40 | require = 2) 41 | private void safeMakeStatic(BlockDynamicLiquid instance, World world, int x, int y, int z) { 42 | if (world.getBlock(x, y, z) != instance) { 43 | return; 44 | } 45 | ((BlockDynamicLiquidMixin)(Object)instance).func_149811_n(world, x, y, z); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/core/CoreLoadingPlugin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.core; 24 | 25 | import mega.fluidlogged.Tags; 26 | 27 | import cpw.mods.fml.relauncher.FMLLaunchHandler; 28 | import cpw.mods.fml.relauncher.IFMLLoadingPlugin; 29 | 30 | import java.util.Map; 31 | 32 | @IFMLLoadingPlugin.MCVersion("1.7.10") 33 | @IFMLLoadingPlugin.Name(Tags.MOD_ID) 34 | @IFMLLoadingPlugin.TransformerExclusions(Tags.ROOT_PKG + ".internal.core") 35 | public class CoreLoadingPlugin implements IFMLLoadingPlugin { 36 | @Override 37 | public String[] getASMTransformerClass() { 38 | if (FMLLaunchHandler.side().isClient()) { 39 | return new String[]{Tags.ROOT_PKG + ".internal.core.FluidLogTransformer"}; 40 | } else { 41 | return new String[0]; 42 | } 43 | } 44 | 45 | @Override 46 | public String getModContainerClass() { 47 | return null; 48 | } 49 | 50 | @Override 51 | public String getSetupClass() { 52 | return null; 53 | } 54 | 55 | @Override 56 | public void injectData(Map data) { 57 | 58 | } 59 | 60 | @Override 61 | public String getAccessTransformerClass() { 62 | return null; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/FluidLogged.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal; 24 | 25 | import com.falsepattern.chunk.api.DataRegistry; 26 | import mega.fluidlogged.Tags; 27 | import mega.fluidlogged.api.bucket.BucketDriver; 28 | import mega.fluidlogged.api.world.WorldDriver; 29 | import mega.fluidlogged.internal.bucket.FLBucketDriver; 30 | import mega.fluidlogged.internal.bucket.drivers.ForgeBucketDriver; 31 | import mega.fluidlogged.internal.world.drivers.MinecraftWorldDriver; 32 | 33 | import net.minecraftforge.common.MinecraftForge; 34 | import cpw.mods.fml.common.Mod; 35 | import cpw.mods.fml.common.event.FMLInitializationEvent; 36 | 37 | @Mod(modid = Tags.MOD_ID, 38 | version = Tags.MOD_VERSION, 39 | name = Tags.MOD_NAME, 40 | acceptedMinecraftVersions = "[1.7.10]", 41 | dependencies = "required-after:chunkapi@[0.6.4,);" + 42 | "required-after:falsepatternlib@[1.7.0,);") 43 | public class FluidLogged { 44 | 45 | @Mod.EventHandler 46 | public void init(FMLInitializationEvent event) { 47 | DataRegistry.registerDataManager(new FLManager()); 48 | MinecraftForge.EVENT_BUS.register(FLBucketDriver.INSTANCE); 49 | BucketDriver.register(new ForgeBucketDriver()); 50 | WorldDriver.register(new MinecraftWorldDriver()); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/client/RenderBlocksMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.client; 24 | 25 | import mega.fluidlogged.internal.FLUtil; 26 | import org.spongepowered.asm.mixin.Mixin; 27 | import org.spongepowered.asm.mixin.injection.At; 28 | import org.spongepowered.asm.mixin.injection.Redirect; 29 | 30 | import net.minecraft.block.Block; 31 | import net.minecraft.client.renderer.RenderBlocks; 32 | import net.minecraft.world.IBlockAccess; 33 | 34 | @Mixin(RenderBlocks.class) 35 | public abstract class RenderBlocksMixin { 36 | 37 | @Redirect(method = "getLiquidHeight", 38 | at = @At(value = "INVOKE", 39 | target = "Lnet/minecraft/world/IBlockAccess;getBlock(III)Lnet/minecraft/block/Block;"), 40 | require = 1) 41 | private Block hijackGetBlock(IBlockAccess instance, int x, int y, int z) { 42 | return FLUtil.getFluidOrBlock(instance, x, y, z); 43 | } 44 | 45 | @Redirect(method = "getLiquidHeight", 46 | at = @At(value = "INVOKE", 47 | target = "Lnet/minecraft/world/IBlockAccess;getBlockMetadata(III)I"), 48 | require = 1) 49 | private int hijackMeta(IBlockAccess instance, int x, int y, int z) { 50 | return FLUtil.getFluidMeta(instance, x, y, z, 0); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/ExtendedBlockStorageMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import mega.fluidlogged.internal.mixin.hook.FLSubChunk; 26 | import org.jetbrains.annotations.Nullable; 27 | import org.spongepowered.asm.mixin.Mixin; 28 | import org.spongepowered.asm.mixin.Unique; 29 | 30 | import net.minecraft.world.chunk.storage.ExtendedBlockStorage; 31 | import net.minecraftforge.fluids.Fluid; 32 | 33 | @Mixin(ExtendedBlockStorage.class) 34 | public abstract class ExtendedBlockStorageMixin implements FLSubChunk { 35 | @Unique 36 | private Fluid[] fl$fluidLog; 37 | 38 | @Override 39 | public Fluid @Nullable [] fl$getFluidLog() { 40 | return fl$fluidLog; 41 | } 42 | 43 | @Override 44 | public void fl$setFluidLog(Fluid @Nullable [] fluidLog) { 45 | this.fl$fluidLog = fluidLog; 46 | } 47 | 48 | @Override 49 | public @Nullable Fluid fl$getFluid(int x, int y, int z) { 50 | if (fl$fluidLog == null) 51 | return null; 52 | return fl$fluidLog[y << 8 | z << 4 | x]; 53 | } 54 | 55 | @Override 56 | public void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid) { 57 | if (fl$fluidLog == null) { 58 | if (fluid == null) { 59 | return; 60 | } 61 | fl$fluidLog = new Fluid[16 * 16 * 16]; 62 | } 63 | fl$fluidLog[y << 8 | z << 4 | x] = fluid; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/BlockMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.internal.FLUtil; 27 | import mega.fluidlogged.api.FLBlockAccess; 28 | import mega.fluidlogged.internal.mixin.hook.FLBlockRoot; 29 | import mega.fluidlogged.internal.mixin.hook.FLWorld; 30 | import org.jetbrains.annotations.NotNull; 31 | import org.spongepowered.asm.mixin.Mixin; 32 | 33 | import net.minecraft.block.Block; 34 | import net.minecraft.world.World; 35 | 36 | import java.util.Random; 37 | 38 | @Mixin(Block.class) 39 | public abstract class BlockMixin implements FLBlockRoot { 40 | @Override 41 | public void fl$updateTick(@NotNull World world, int x, int y, int z, @NotNull Random random) { 42 | val fluid = ((FLBlockAccess) world).fl$getFluid(x, y, z); 43 | if (fluid == null) { 44 | return; 45 | } 46 | FLUtil.simulate(world, x, y, z, random, fluid); 47 | } 48 | 49 | @Override 50 | public void fl$onNeighborChange(@NotNull World world, int x, int y, int z, @NotNull Block neighbor) { 51 | val fluid = ((FLBlockAccess) world).fl$getFluid(x, y, z); 52 | if (fluid == null) { 53 | return; 54 | } 55 | val block = fluid.getBlock(); 56 | if (block == null) { 57 | return; 58 | } 59 | ((FLWorld) world).fl$scheduleFluidUpdate(x, y, z, (Block) (Object) this, block.tickRate(world)); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/compat/cofh/ItemBucketMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common.compat.cofh; 24 | 25 | import cofh.core.item.ItemBucket; 26 | import com.llamalad7.mixinextras.sugar.Local; 27 | import mega.fluidlogged.internal.FLUtil; 28 | import org.spongepowered.asm.mixin.Mixin; 29 | import org.spongepowered.asm.mixin.injection.At; 30 | import org.spongepowered.asm.mixin.injection.Inject; 31 | import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; 32 | 33 | import net.minecraft.entity.player.EntityPlayer; 34 | import net.minecraft.item.ItemStack; 35 | import net.minecraft.util.MovingObjectPosition; 36 | import net.minecraft.world.World; 37 | 38 | @Mixin(ItemBucket.class) 39 | public abstract class ItemBucketMixin { 40 | @SuppressWarnings("DiscouragedShift") 41 | @Inject(method = "onItemRightClick", 42 | at = @At(value = "INVOKE_ASSIGN", 43 | target = "Lcofh/core/item/ItemBucket;getMovingObjectPositionFromPlayer(Lnet/minecraft/world/World;Lnet/minecraft/entity/player/EntityPlayer;Z)Lnet/minecraft/util/MovingObjectPosition;", 44 | shift = At.Shift.AFTER), 45 | cancellable = true, 46 | require = 1) 47 | private void fireBucketEvent(ItemStack item, World world, EntityPlayer player, CallbackInfoReturnable cir, @Local MovingObjectPosition pos) { 48 | FLUtil.fireBucketEvent(item, world, player, cir::setReturnValue, pos); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/FLBlockAccess.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.api; 24 | 25 | import lombok.val; 26 | import org.jetbrains.annotations.ApiStatus; 27 | import org.jetbrains.annotations.Nullable; 28 | 29 | import net.minecraft.world.ChunkCache; 30 | import net.minecraft.world.World; 31 | import net.minecraftforge.fluids.Fluid; 32 | 33 | /** 34 | * Implemented on {@link net.minecraft.world.World} and {@link net.minecraft.world.ChunkCache} via mixins. 35 | */ 36 | @ApiStatus.NonExtendable 37 | public interface FLBlockAccess { 38 | /** 39 | * Retrieves the fluid from a fluidlogged block. Null if not fluidlogged. Note that this returns null if the block itself is a fluid block! 40 | */ 41 | @Nullable Fluid fl$getFluid(int x, int y, int z); 42 | 43 | /** 44 | * Makes a block fluidlogged with the given fluid. Does NOT verify whether the block can be fluidlogged! 45 | * Pass in null to clear. 46 | */ 47 | void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid); 48 | default boolean fl$isFluidLogged(int x, int y, int z, @Nullable Fluid fluid) { 49 | val fluidInChunk = fl$getFluid(x, y, z); 50 | if (fluidInChunk == null) 51 | return false; 52 | if (fluid == null) 53 | return true; 54 | return fluid.equals(fluidInChunk); 55 | } 56 | 57 | static FLBlockAccess of(World world) { 58 | return (FLBlockAccess) world; 59 | } 60 | 61 | static FLBlockAccess of(ChunkCache cache) { 62 | return (FLBlockAccess) cache; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/ChunkCacheMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.FLBlockAccess; 27 | import mega.fluidlogged.api.FLChunk; 28 | import org.jetbrains.annotations.Nullable; 29 | import org.spongepowered.asm.mixin.Mixin; 30 | import org.spongepowered.asm.mixin.Shadow; 31 | 32 | import net.minecraft.world.ChunkCache; 33 | import net.minecraft.world.chunk.Chunk; 34 | import net.minecraft.world.chunk.EmptyChunk; 35 | import net.minecraftforge.fluids.Fluid; 36 | 37 | @Mixin(ChunkCache.class) 38 | public abstract class ChunkCacheMixin implements FLBlockAccess { 39 | @Shadow private int chunkX; 40 | 41 | @Shadow private Chunk[][] chunkArray; 42 | 43 | @Shadow private int chunkZ; 44 | 45 | @Override 46 | public void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid) { 47 | int cX = (x >> 4) - this.chunkX; 48 | int cZ = (z >> 4) - this.chunkZ; 49 | if (cX < 0 || cZ < 0 || cX >= chunkArray.length) { 50 | return; 51 | } 52 | val slice = chunkArray[cX]; 53 | if (cZ >= slice.length) { 54 | return; 55 | } 56 | val chunk = slice[cZ]; 57 | if (chunk == null || chunk instanceof EmptyChunk) 58 | return; 59 | ((FLChunk)chunk).fl$setFluid(x & 0xF, y, z & 0xF, fluid); 60 | } 61 | 62 | @Override 63 | public @Nullable Fluid fl$getFluid(int x, int y, int z) { 64 | int cX = (x >> 4) - this.chunkX; 65 | int cZ = (z >> 4) - this.chunkZ; 66 | if (cX < 0 || cZ < 0 || cX >= chunkArray.length) { 67 | return null; 68 | } 69 | val slice = chunkArray[cX]; 70 | if (cZ >= slice.length) { 71 | return null; 72 | } 73 | val chunk = slice[cZ]; 74 | if (chunk == null || chunk instanceof EmptyChunk) 75 | return null; 76 | return ((FLChunk)chunk).fl$getFluid(x & 0xF, y, z & 0xF); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/bucket/drivers/ForgeBucketDriver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.bucket.drivers; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.bucket.BucketDriver; 27 | import mega.fluidlogged.api.bucket.BucketEmptyResults; 28 | import mega.fluidlogged.api.bucket.BucketState; 29 | import org.jetbrains.annotations.NotNull; 30 | import org.jetbrains.annotations.Nullable; 31 | 32 | import net.minecraft.item.ItemStack; 33 | import net.minecraftforge.fluids.Fluid; 34 | import net.minecraftforge.fluids.FluidContainerRegistry; 35 | import net.minecraftforge.fluids.FluidStack; 36 | 37 | public class ForgeBucketDriver implements BucketDriver.Fill, BucketDriver.Empty, BucketDriver.Query { 38 | @Override 39 | public @Nullable BucketEmptyResults emptyBucket(@NotNull ItemStack bucket) { 40 | if (!FluidContainerRegistry.isBucket(bucket)) { 41 | return null; 42 | } 43 | val fluidStack = FluidContainerRegistry.getFluidForFilledItem(bucket); 44 | if (fluidStack.amount != FluidContainerRegistry.BUCKET_VOLUME) { 45 | return null; 46 | } 47 | val fluid = fluidStack.getFluid(); 48 | val fluidBlock = fluid.getBlock(); 49 | if (fluidBlock == null) { 50 | return null; 51 | } 52 | val drained = FluidContainerRegistry.drainFluidContainer(bucket); 53 | return new BucketEmptyResults(drained, fluid); 54 | } 55 | 56 | @Override 57 | public @Nullable ItemStack fillBucket(@NotNull Fluid fluid, @NotNull ItemStack bucket) { 58 | return FluidContainerRegistry.fillFluidContainer(new FluidStack(fluid, 1000), bucket); 59 | } 60 | 61 | @Override 62 | public @Nullable BucketState queryState(@NotNull ItemStack bucket) { 63 | if (!FluidContainerRegistry.isBucket(bucket)) { 64 | return null; 65 | } 66 | if (FluidContainerRegistry.isEmptyContainer(bucket)) { 67 | return BucketState.Empty; 68 | } else { 69 | return BucketState.Filled; 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/client/ActiveRenderInfoMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.client; 24 | 25 | import com.llamalad7.mixinextras.injector.wrapoperation.Operation; 26 | import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation; 27 | import com.llamalad7.mixinextras.sugar.Share; 28 | import com.llamalad7.mixinextras.sugar.ref.LocalBooleanRef; 29 | import lombok.val; 30 | import mega.fluidlogged.api.FLBlockAccess; 31 | import org.spongepowered.asm.mixin.Mixin; 32 | import org.spongepowered.asm.mixin.injection.At; 33 | 34 | import net.minecraft.block.Block; 35 | import net.minecraft.client.renderer.ActiveRenderInfo; 36 | import net.minecraft.world.World; 37 | 38 | @Mixin(ActiveRenderInfo.class) 39 | public abstract class ActiveRenderInfoMixin { 40 | @WrapOperation(method = "getBlockAtEntityViewpoint", 41 | at = @At(value = "INVOKE", 42 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 43 | require = 2) 44 | private static Block getBlockHijack(World world, int x, int y, int z, Operation original, @Share("logged") LocalBooleanRef logged) { 45 | logged.set(false); 46 | val fluid = ((FLBlockAccess)world).fl$getFluid(x, y, z); 47 | if (fluid == null) { 48 | return original.call(world, x, y, z); 49 | } 50 | val fluidBlock = fluid.getBlock(); 51 | if (fluidBlock == null) { 52 | return original.call(world, x, y, z); 53 | } 54 | logged.set(true); 55 | return fluidBlock; 56 | } 57 | 58 | @WrapOperation(method = "getBlockAtEntityViewpoint", 59 | at = @At(value = "INVOKE", 60 | target = "Lnet/minecraft/world/World;getBlockMetadata(III)I"), 61 | require = 1) 62 | private static int getMetaHijack(World world, int x, int y, int z, Operation original, @Share("logged") LocalBooleanRef logged) { 63 | if (logged.get()) { 64 | return 0; 65 | } 66 | return original.call(world, x, y, z); 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/plugin/Mixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.plugin; 24 | 25 | import com.falsepattern.lib.mixin.IMixin; 26 | import com.falsepattern.lib.mixin.ITargetedMod; 27 | import lombok.Getter; 28 | import lombok.RequiredArgsConstructor; 29 | 30 | import java.util.List; 31 | import java.util.function.Predicate; 32 | 33 | import static com.falsepattern.lib.mixin.IMixin.PredicateHelpers.always; 34 | import static com.falsepattern.lib.mixin.IMixin.PredicateHelpers.require; 35 | 36 | @RequiredArgsConstructor 37 | public enum Mixin implements IMixin { 38 | // @formatter:off 39 | 40 | common_BlockLiquidMixin(Side.COMMON, always(), "BlockLiquidMixin"), 41 | common_BlockDynamicLiquidMixin(Side.COMMON, always(), "BlockDynamicLiquidMixin"), 42 | common_BlockFluidClassicMixin(Side.COMMON, always(), "BlockFluidClassicMixin"), 43 | common_BlockMixin(Side.COMMON, always(), "BlockMixin"), 44 | common_ChunkCacheMixin(Side.COMMON, always(), "ChunkCacheMixin"), 45 | common_ChunkMixin(Side.COMMON, always(), "ChunkMixin"), 46 | common_EntityMixin(Side.COMMON, always(), "EntityMixin"), 47 | common_ExtendedBlockStorageMixin(Side.COMMON, always(), "ExtendedBlockStorageMixin"), 48 | common_S23PacketBlockChangeMixin(Side.COMMON, always(), "S23PacketBlockChangeMixin"), 49 | common_WorldMixin(Side.COMMON, always(), "WorldMixin"), 50 | common_WorldServerMixin(Side.COMMON, always(), "WorldServerMixin"), 51 | 52 | client_ActiveRenderInfoMixin(Side.CLIENT, always(), "ActiveRenderInfoMixin"), 53 | client_BlockFluidBaseMixin(Side.CLIENT, always(), "BlockFluidBaseMixin"), 54 | client_BlockLiquidMixin(Side.CLIENT, always(), "BlockLiquidMixin"), 55 | client_RenderBlockFluidMixin(Side.CLIENT, always(), "RenderBlockFluidMixin"), 56 | client_RenderBlocksMixin(Side.CLIENT, always(), "RenderBlocksMixin"), 57 | 58 | //region compat 59 | common_compat_cofh_ItemBucketMixin(Side.COMMON, require(TargetedMod.COFHCORE), "compat.cofh.ItemBucketMixin") 60 | //endregion 61 | ; 62 | // @formatter:on 63 | 64 | @Getter 65 | private final Side side; 66 | @Getter 67 | private final Predicate> filter; 68 | @Getter 69 | private final String mixin; 70 | } 71 | 72 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | @rem SPDX-License-Identifier: Apache-2.0 17 | @rem 18 | 19 | @if "%DEBUG%"=="" @echo off 20 | @rem ########################################################################## 21 | @rem 22 | @rem Gradle startup script for Windows 23 | @rem 24 | @rem ########################################################################## 25 | 26 | @rem Set local scope for the variables with windows NT shell 27 | if "%OS%"=="Windows_NT" setlocal 28 | 29 | set DIRNAME=%~dp0 30 | if "%DIRNAME%"=="" set DIRNAME=. 31 | @rem This is normally unused 32 | set APP_BASE_NAME=%~n0 33 | set APP_HOME=%DIRNAME% 34 | 35 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 36 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 37 | 38 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 39 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 40 | 41 | @rem Find java.exe 42 | if defined JAVA_HOME goto findJavaFromJavaHome 43 | 44 | set JAVA_EXE=java.exe 45 | %JAVA_EXE% -version >NUL 2>&1 46 | if %ERRORLEVEL% equ 0 goto execute 47 | 48 | echo. 1>&2 49 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 50 | echo. 1>&2 51 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2 52 | echo location of your Java installation. 1>&2 53 | 54 | goto fail 55 | 56 | :findJavaFromJavaHome 57 | set JAVA_HOME=%JAVA_HOME:"=% 58 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 59 | 60 | if exist "%JAVA_EXE%" goto execute 61 | 62 | echo. 1>&2 63 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 64 | echo. 1>&2 65 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2 66 | echo location of your Java installation. 1>&2 67 | 68 | goto fail 69 | 70 | :execute 71 | @rem Setup the command line 72 | 73 | set CLASSPATH= 74 | 75 | 76 | @rem Execute Gradle 77 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* 78 | 79 | :end 80 | @rem End local scope for the variables with windows NT shell 81 | if %ERRORLEVEL% equ 0 goto mainEnd 82 | 83 | :fail 84 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 85 | rem the _cmd.exe /c_ return code! 86 | set EXIT_CODE=%ERRORLEVEL% 87 | if %EXIT_CODE% equ 0 set EXIT_CODE=1 88 | if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% 89 | exit /b %EXIT_CODE% 90 | 91 | :mainEnd 92 | if "%OS%"=="Windows_NT" endlocal 93 | 94 | :omega 95 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/EntityMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import com.llamalad7.mixinextras.injector.wrapoperation.Operation; 26 | import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation; 27 | import com.llamalad7.mixinextras.sugar.Local; 28 | import com.llamalad7.mixinextras.sugar.Share; 29 | import com.llamalad7.mixinextras.sugar.ref.LocalRef; 30 | import lombok.val; 31 | import mega.fluidlogged.api.FLBlockAccess; 32 | import org.spongepowered.asm.mixin.Mixin; 33 | import org.spongepowered.asm.mixin.injection.At; 34 | import org.spongepowered.asm.mixin.injection.Redirect; 35 | 36 | import net.minecraft.block.Block; 37 | import net.minecraft.block.material.Material; 38 | import net.minecraft.entity.Entity; 39 | import net.minecraft.world.World; 40 | import net.minecraftforge.fluids.Fluid; 41 | import net.minecraftforge.fluids.IFluidBlock; 42 | 43 | @Mixin(Entity.class) 44 | public abstract class EntityMixin { 45 | @WrapOperation(method = "isInsideOfMaterial", 46 | at = @At(value = "INVOKE", 47 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 48 | require = 1) 49 | private Block checkFluidMaterial(World world, int x, int y, int z, Operation original, @Local(argsOnly = true) Material material, @Share("logged")LocalRef logged) { 50 | logged.set(null); 51 | val theBlock = original.call(world, x, y, z); 52 | if (theBlock.getMaterial() == material) { 53 | return theBlock; 54 | } 55 | val fluid = ((FLBlockAccess)world).fl$getFluid(x, y, z); 56 | if (fluid == null) { 57 | return theBlock; 58 | } 59 | val fluidBlock = fluid.getBlock(); 60 | if (fluidBlock == null) { 61 | return theBlock; 62 | } 63 | logged.set(fluid); 64 | return fluidBlock; 65 | } 66 | 67 | @Redirect(method = "isInsideOfMaterial", 68 | at = @At(value = "INVOKE", 69 | target = "Lnet/minecraftforge/fluids/IFluidBlock;getFilledPercentage(Lnet/minecraft/world/World;III)F"), 70 | remap = false, 71 | require = 1) 72 | private float hackFilledPercentage(IFluidBlock instance, World world, int x, int y, int z) { 73 | return instance.getFilledPercentage(world, x, y, z); 74 | } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/BlockLiquidMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import mega.fluidlogged.internal.FLUtil; 26 | import org.spongepowered.asm.mixin.Mixin; 27 | import org.spongepowered.asm.mixin.injection.At; 28 | import org.spongepowered.asm.mixin.injection.Redirect; 29 | 30 | import net.minecraft.block.Block; 31 | import net.minecraft.block.BlockLiquid; 32 | import net.minecraft.world.IBlockAccess; 33 | import net.minecraft.world.World; 34 | 35 | @Mixin(BlockLiquid.class) 36 | public abstract class BlockLiquidMixin { 37 | @Redirect(method = "func_149804_e", 38 | at = @At(value = "INVOKE", 39 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 40 | require = 1) 41 | private Block hijackGetBlock(World world, int x, int y, int z) { 42 | return FLUtil.getFluidOrBlock(world, x, y, z); 43 | } 44 | 45 | @Redirect(method = "func_149804_e", 46 | at = @At(value = "INVOKE", 47 | target = "Lnet/minecraft/world/World;getBlockMetadata(III)I"), 48 | require = 1) 49 | private int hijackGetMeta(World world, int x, int y, int z) { 50 | return FLUtil.getFluidMeta(world, x, y, z, 0); 51 | } 52 | 53 | @Redirect(method = "getEffectiveFlowDecay", 54 | at = @At(value = "INVOKE", 55 | target = "Lnet/minecraft/world/IBlockAccess;getBlock(III)Lnet/minecraft/block/Block;"), 56 | require = 1) 57 | private Block hijackGetBlockDecay(IBlockAccess instance, int x, int y, int z) { 58 | return FLUtil.getFluidOrBlock(instance, x, y, z); 59 | } 60 | 61 | @Redirect(method = "getEffectiveFlowDecay", 62 | at = @At(value = "INVOKE", 63 | target = "Lnet/minecraft/world/IBlockAccess;getBlockMetadata(III)I"), 64 | require = 1) 65 | private int hijackMetaDecay(IBlockAccess instance, int x, int y, int z) { 66 | return FLUtil.getFluidMeta(instance, x, y, z, 0); 67 | } 68 | 69 | @Redirect(method = "func_149805_n", 70 | at = @At(value = "INVOKE", 71 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 72 | require = 6) 73 | private Block hijackGetBlockLavaSolidify(World world, int x, int y, int z) { 74 | return FLUtil.getFluidOrBlock(world, x, y, z); 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/client/RenderBlockFluidMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.client; 24 | 25 | import com.llamalad7.mixinextras.sugar.Local; 26 | import mega.fluidlogged.internal.FLUtil; 27 | import mega.fluidlogged.api.FLBlockAccess; 28 | import org.spongepowered.asm.mixin.Mixin; 29 | import org.spongepowered.asm.mixin.injection.At; 30 | import org.spongepowered.asm.mixin.injection.Redirect; 31 | 32 | import net.minecraft.block.Block; 33 | import net.minecraft.world.IBlockAccess; 34 | import net.minecraftforge.fluids.BlockFluidBase; 35 | import net.minecraftforge.fluids.RenderBlockFluid; 36 | 37 | @Mixin(value = RenderBlockFluid.class) 38 | public abstract class RenderBlockFluidMixin { 39 | @Redirect(method = "getFluidHeightForRender", 40 | at = @At(value = "INVOKE", 41 | target = "Lnet/minecraft/world/IBlockAccess;getBlock(III)Lnet/minecraft/block/Block;"), 42 | require = 4) 43 | private Block fluidHeightGetBlock(IBlockAccess world, int x, int y, int z) { 44 | return FLUtil.getFluidOrBlock(world, x, y, z); 45 | } 46 | 47 | @Redirect(method = "getFluidHeightForRender", 48 | at = @At(value = "INVOKE", 49 | target = "Lnet/minecraft/world/IBlockAccess;getBlockMetadata(III)I"), 50 | require = 1) 51 | private int fluidHeightGetBlockMeta(IBlockAccess world, int x, int y, int z, @Local(argsOnly = true) BlockFluidBase inputBlock) { 52 | return FLUtil.getFluidMeta(world, x, y, z, inputBlock.getMaxRenderHeightMeta()); 53 | } 54 | 55 | @Redirect(method = "getFluidHeightForRender", 56 | at = @At(value = "INVOKE", 57 | target = "Lnet/minecraftforge/fluids/BlockFluidBase;getQuantaPercentage(Lnet/minecraft/world/IBlockAccess;III)F"), 58 | remap = false, 59 | require = 1) 60 | private float fluidHeightQuanta(BlockFluidBase instance, IBlockAccess world, int x, int y, int z) { 61 | if (((FLBlockAccess)world).fl$isFluidLogged(x, y, z, null)) { 62 | return 1; 63 | } 64 | return instance.getQuantaPercentage(world, x, y, z); 65 | } 66 | 67 | @Redirect(method = "renderWorldBlock", 68 | at = @At(value = "INVOKE", 69 | target = "Lnet/minecraft/world/IBlockAccess;getBlock(III)Lnet/minecraft/block/Block;"), 70 | require = 1) 71 | private Block renderWorldBlockGetBlock(IBlockAccess instance, int x, int y, int z) { 72 | return FLUtil.getFluidOrBlock(instance, x, y, z); 73 | } 74 | 75 | @Redirect(method = "renderWorldBlock", 76 | at = @At(value = "INVOKE", 77 | target = "Lnet/minecraft/world/IBlockAccess;getBlockMetadata(III)I"), 78 | require = 1) 79 | private int renderWorldBlockGetMetadata(IBlockAccess instance, int x, int y, int z) { 80 | return FLUtil.getFluidMeta(instance, x, y, z, 0); 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/api/bucket/BucketDriver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.api.bucket; 24 | 25 | import mega.fluidlogged.internal.bucket.FLBucketDriver; 26 | import mega.fluidlogged.internal.mixin.hook.FLWorld; 27 | import mega.fluidlogged.internal.world.FLWorldDriver; 28 | import org.jetbrains.annotations.ApiStatus; 29 | import org.jetbrains.annotations.NotNull; 30 | import org.jetbrains.annotations.Nullable; 31 | 32 | import net.minecraft.block.Block; 33 | import net.minecraft.item.ItemStack; 34 | import net.minecraftforge.fluids.Fluid; 35 | 36 | /** 37 | * This is used for implementing custom buckets. 38 | *

39 | * If a mod's buckets don't work, make sure it fires a FillBucketEvent in its {@link net.minecraft.item.Item#onItemRightClick}. If it uses some sort of custom "bucket" item not 40 | * registered in the forge registry, then implement the respective subclasses of this class. 41 | *

42 | * See {@link mega.fluidlogged.internal.mixin.mixins.common.compat.cofh.ItemBucketMixin} for how to implement an event hook like that. 43 | */ 44 | public interface BucketDriver { 45 | /** 46 | * Used to check the "fullness" of a bucket item 47 | */ 48 | @ApiStatus.OverrideOnly 49 | interface Query extends BucketDriver { 50 | /** 51 | * 52 | * @param bucket A possible bucket item 53 | * @return Whether the bucket is filled or empty. 54 | * @implSpec Return null if this driver cannot handle the given item. 55 | */ 56 | @Nullable BucketState queryState(@NotNull ItemStack bucket); 57 | } 58 | 59 | /** 60 | * Used to fill empty buckets with fluids 61 | */ 62 | @ApiStatus.OverrideOnly 63 | interface Fill extends BucketDriver { 64 | /** 65 | * Fills the given empty bucket with a fluid 66 | * @param fluid The fluid to fill the bucket with 67 | * @param bucket The bucket to fill 68 | * @return The filled bucket 69 | * @implSpec Return null if this driver cannot fill the given bucket. 70 | */ 71 | @Nullable ItemStack fillBucket(@NotNull Fluid fluid, @NotNull ItemStack bucket); 72 | } 73 | 74 | /** 75 | * Used to empty out buckets into a fluid + empty bucket pair 76 | */ 77 | @ApiStatus.OverrideOnly 78 | interface Empty extends BucketDriver { 79 | /** 80 | * Empties a fluid out of the given bucket 81 | * @param bucket The bucket to empty out 82 | * @return The empty bucket and its fluid 83 | * @implSpec Return null if this driver cannot empty the given bucket. 84 | */ 85 | @Nullable BucketEmptyResults emptyBucket(@NotNull ItemStack bucket); 86 | } 87 | 88 | /** 89 | * Register the provided driver. 90 | * @implSpec The driver must implement at least one of {@link Query}, {@link Fill}, or {@link Empty}, or this method throws an exception. 91 | */ 92 | static void register(@NotNull BucketDriver driver) { 93 | FLBucketDriver.INSTANCE.registerDriver(driver); 94 | } 95 | } 96 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/BlockFluidClassicMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import com.llamalad7.mixinextras.sugar.Local; 26 | import lombok.val; 27 | import mega.fluidlogged.api.FLBlockAccess; 28 | import org.spongepowered.asm.mixin.Mixin; 29 | import org.spongepowered.asm.mixin.injection.At; 30 | import org.spongepowered.asm.mixin.injection.Constant; 31 | import org.spongepowered.asm.mixin.injection.ModifyConstant; 32 | import org.spongepowered.asm.mixin.injection.Redirect; 33 | 34 | import net.minecraft.block.material.Material; 35 | import net.minecraft.world.IBlockAccess; 36 | import net.minecraft.world.World; 37 | import net.minecraftforge.fluids.BlockFluidBase; 38 | import net.minecraftforge.fluids.BlockFluidClassic; 39 | import net.minecraftforge.fluids.Fluid; 40 | 41 | @Mixin(BlockFluidClassic.class) 42 | public abstract class BlockFluidClassicMixin extends BlockFluidBase { 43 | public BlockFluidClassicMixin(Fluid fluid, Material material) { 44 | super(fluid, material); 45 | } 46 | 47 | @Redirect(method = "updateTick", 48 | at = @At(value = "INVOKE", 49 | target = "Lnet/minecraft/world/World;getBlockMetadata(III)I"), 50 | require = 1) 51 | private int metaOnlyIfNotLogged(World instance, int x, int y, int z) { 52 | if (instance.getBlock(x, y, z) != this) { 53 | return 0; 54 | } 55 | return instance.getBlockMetadata(x, y, z); 56 | } 57 | 58 | @Redirect(method = "updateTick", 59 | at = @At(value = "INVOKE", 60 | target = "Lnet/minecraft/world/World;setBlockMetadataWithNotify(IIIII)Z", 61 | ordinal = 1), 62 | require = 1) 63 | private boolean setBlockOnlyIfNotLogged(World instance, int x, int y, int z, int meta, int flag) { 64 | if (instance.getBlock(x, y, z) != this) { 65 | return false; 66 | } 67 | return instance.setBlockMetadataWithNotify(x, y, z, meta, flag); 68 | } 69 | 70 | @ModifyConstant(method = "getQuantaValue", 71 | constant = @Constant(intValue = -1), 72 | remap = false, 73 | require = 1) 74 | private int hackGetBlock(int constant, 75 | @Local(argsOnly = true) IBlockAccess world, 76 | @Local(ordinal = 0, 77 | argsOnly = true) int x, 78 | @Local(ordinal = 1, 79 | argsOnly = true) int y, 80 | @Local(ordinal = 2, 81 | argsOnly = true) int z) { 82 | if (!(world instanceof FLBlockAccess)) { 83 | return constant; 84 | } 85 | val fluid = ((FLBlockAccess)world).fl$getFluid(x, y, z); 86 | if (fluid == null) { 87 | return constant; 88 | } 89 | 90 | val fluidBlock = fluid.getBlock(); 91 | if (fluidBlock != this) { 92 | return constant; 93 | } 94 | 95 | return quantaPerBlock; 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/ChunkMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import lombok.val; 26 | import lombok.var; 27 | import mega.fluidlogged.internal.FLUtil; 28 | import mega.fluidlogged.api.FLChunk; 29 | import mega.fluidlogged.internal.mixin.hook.FLSubChunk; 30 | import mega.fluidlogged.internal.world.FLWorldDriver; 31 | import org.jetbrains.annotations.Nullable; 32 | import org.spongepowered.asm.mixin.Mixin; 33 | import org.spongepowered.asm.mixin.Shadow; 34 | import org.spongepowered.asm.mixin.Unique; 35 | import org.spongepowered.asm.mixin.injection.At; 36 | import org.spongepowered.asm.mixin.injection.Inject; 37 | import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; 38 | 39 | import net.minecraft.block.Block; 40 | import net.minecraft.world.chunk.Chunk; 41 | import net.minecraft.world.chunk.storage.ExtendedBlockStorage; 42 | import net.minecraftforge.fluids.Fluid; 43 | 44 | @Mixin(Chunk.class) 45 | public abstract class ChunkMixin implements FLChunk { 46 | @Shadow public abstract ExtendedBlockStorage[] getBlockStorageArray(); 47 | 48 | @Shadow public boolean isModified; 49 | 50 | @Shadow public abstract Block getBlock(int posX, int posY, int posZ); 51 | 52 | @Override 53 | public @Nullable Fluid fl$getFluid(int x, int y, int z) { 54 | val Y = y >> 4; 55 | if (Y < 0) 56 | return null; 57 | val subChunks = getBlockStorageArray(); 58 | if (subChunks == null || Y >= subChunks.length) { 59 | return null; 60 | } 61 | val subChunk = subChunks[Y]; 62 | if (subChunk == null) 63 | return null; 64 | return ((FLSubChunk)subChunk).fl$getFluid(x, y & 0xf, z); 65 | } 66 | 67 | @Override 68 | public void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid) { 69 | val Y = y >> 4; 70 | if (Y < 0) 71 | return; 72 | val subChunks = getBlockStorageArray(); 73 | if (subChunks == null || Y >= subChunks.length) { 74 | return; 75 | } 76 | val subChunk = subChunks[Y]; 77 | if (subChunk == null) 78 | return; 79 | ((FLSubChunk)subChunk).fl$setFluid(x, y & 0xf, z, fluid); 80 | isModified = true; 81 | } 82 | 83 | @Inject(method = "func_150807_a", 84 | at = @At("HEAD"), 85 | require = 1) 86 | private void setBlock(int x, int y, int z, Block block, int meta, CallbackInfoReturnable cir) { 87 | val originalBlock = getBlock(x, y, z); 88 | var currentFluid = fl$getFluid(x, y, z); 89 | if (currentFluid == null) { 90 | currentFluid = FLUtil.fromChunkBlock(fl$this(), x, y, z, originalBlock); 91 | } 92 | if (currentFluid == null || !FLWorldDriver.INSTANCE.canBeFluidLogged(block, meta, currentFluid)) { 93 | fl$setFluid(x, y, z, null); 94 | } else { 95 | fl$setFluid(x, y, z, currentFluid); 96 | } 97 | } 98 | 99 | @Unique 100 | private Chunk fl$this() { 101 | return (Chunk)(Object)this; 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/world/drivers/MinecraftWorldDriver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.world.drivers; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.world.WorldDriver; 27 | import org.jetbrains.annotations.NotNull; 28 | 29 | import net.minecraft.block.Block; 30 | import net.minecraft.block.BlockChest; 31 | import net.minecraft.block.BlockEnderChest; 32 | import net.minecraft.block.BlockFence; 33 | import net.minecraft.block.BlockLadder; 34 | import net.minecraft.block.BlockPane; 35 | import net.minecraft.block.BlockRailBase; 36 | import net.minecraft.block.BlockSign; 37 | import net.minecraft.block.BlockSlab; 38 | import net.minecraft.block.BlockStairs; 39 | import net.minecraft.block.BlockTrapDoor; 40 | import net.minecraft.init.Blocks; 41 | import net.minecraftforge.fluids.Fluid; 42 | 43 | import java.util.ArrayList; 44 | import java.util.HashSet; 45 | import java.util.List; 46 | import java.util.Set; 47 | 48 | public class MinecraftWorldDriver implements WorldDriver { 49 | private final List> waterLoggableClasses = new ArrayList<>(); 50 | private final Set nonWaterLoggable = new HashSet<>(); 51 | private final Set waterLoggable = new HashSet<>(); 52 | private final Set lavaLoggable = new HashSet<>(); 53 | 54 | { 55 | waterLoggableClasses.add(BlockChest.class); 56 | waterLoggableClasses.add(BlockEnderChest.class); 57 | waterLoggableClasses.add(BlockFence.class); 58 | waterLoggableClasses.add(BlockPane.class); 59 | waterLoggableClasses.add(BlockLadder.class); 60 | waterLoggableClasses.add(BlockRailBase.class); 61 | waterLoggableClasses.add(BlockSign.class); 62 | waterLoggableClasses.add(BlockSlab.class); 63 | waterLoggableClasses.add(BlockStairs.class); 64 | waterLoggableClasses.add(BlockTrapDoor.class); 65 | lavaLoggable.add(Blocks.nether_brick_fence); 66 | lavaLoggable.add(Blocks.iron_bars); 67 | lavaLoggable.add(Blocks.stone_slab); 68 | lavaLoggable.add(Blocks.stone_stairs); 69 | lavaLoggable.add(Blocks.brick_stairs); 70 | lavaLoggable.add(Blocks.stone_brick_stairs); 71 | lavaLoggable.add(Blocks.nether_brick_stairs); 72 | lavaLoggable.add(Blocks.sandstone_stairs); 73 | lavaLoggable.add(Blocks.quartz_stairs); 74 | } 75 | 76 | @Override 77 | public boolean canBeFluidLogged(@NotNull Block block, int meta, @NotNull Fluid fluid) { 78 | if (block.isOpaqueCube()) 79 | return false; 80 | 81 | val temp = fluid.getTemperature(); 82 | if (temp >= 373) { 83 | return lavaLoggable.contains(block); 84 | } else if (temp >= 273) { 85 | if (nonWaterLoggable.contains(block)) { 86 | return false; 87 | } 88 | if (waterLoggable.contains(block)) { 89 | return true; 90 | } 91 | for (val klass: waterLoggableClasses) { 92 | if (klass.isInstance(block)) { 93 | waterLoggable.add(block); 94 | return true; 95 | } 96 | } 97 | nonWaterLoggable.add(block); 98 | return false; 99 | } else { 100 | return lavaLoggable.contains(block); 101 | } 102 | } 103 | 104 | private enum Type { 105 | Wood, 106 | Rock, 107 | Biological 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,forgegradle,java,eclipse,netbeans 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=intellij+all,gradle,forgegradle,java,eclipse,netbeans 3 | 4 | ### Eclipse ### 5 | .metadata 6 | bin/ 7 | tmp/ 8 | *.tmp 9 | *.bak 10 | *.swp 11 | *~.nib 12 | local.properties 13 | .settings/ 14 | .loadpath 15 | .recommenders 16 | 17 | # External tool builders 18 | .externalToolBuilders/ 19 | 20 | # Locally stored "Eclipse launch configurations" 21 | *.launch 22 | 23 | # PyDev specific (Python IDE for Eclipse) 24 | *.pydevproject 25 | 26 | # CDT-specific (C/C++ Development Tooling) 27 | .cproject 28 | 29 | # CDT- autotools 30 | .autotools 31 | 32 | # Java annotation processor (APT) 33 | .factorypath 34 | 35 | # PDT-specific (PHP Development Tools) 36 | .buildpath 37 | 38 | # sbteclipse plugin 39 | .target 40 | 41 | # Tern plugin 42 | .tern-project 43 | 44 | # TeXlipse plugin 45 | .texlipse 46 | 47 | # STS (Spring Tool Suite) 48 | .springBeans 49 | 50 | # Code Recommenders 51 | .recommenders/ 52 | 53 | # Annotation Processing 54 | .apt_generated/ 55 | .apt_generated_test/ 56 | 57 | # Scala IDE specific (Scala & Java development for Eclipse) 58 | .cache-main 59 | .scala_dependencies 60 | .worksheet 61 | 62 | # Uncomment this line if you wish to ignore the project description file. 63 | # Typically, this file would be tracked if it contains build/dependency configurations: 64 | #.project 65 | 66 | ### Eclipse Patch ### 67 | # Spring Boot Tooling 68 | .sts4-cache/ 69 | 70 | ### ForgeGradle ### 71 | # Minecraft client/server files 72 | run/ 73 | 74 | ### Intellij+all ### 75 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 76 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 77 | 78 | # User-specific stuff 79 | .idea/**/workspace.xml 80 | .idea/**/tasks.xml 81 | .idea/**/usage.statistics.xml 82 | .idea/**/dictionaries 83 | .idea/**/shelf 84 | 85 | # AWS User-specific 86 | .idea/**/aws.xml 87 | 88 | # Generated files 89 | .idea/**/contentModel.xml 90 | 91 | # Sensitive or high-churn files 92 | .idea/**/dataSources/ 93 | .idea/**/dataSources.ids 94 | .idea/**/dataSources.local.xml 95 | .idea/**/sqlDataSources.xml 96 | .idea/**/dynamic.xml 97 | .idea/**/uiDesigner.xml 98 | .idea/**/dbnavigator.xml 99 | 100 | # Gradle 101 | .idea/**/gradle.xml 102 | .idea/**/libraries 103 | 104 | # Gradle and Maven with auto-import 105 | # When using Gradle or Maven with auto-import, you should exclude module files, 106 | # since they will be recreated, and may cause churn. Uncomment if using 107 | # auto-import. 108 | .idea/artifacts 109 | .idea/compiler.xml 110 | .idea/jarRepositories.xml 111 | .idea/modules.xml 112 | .idea/*.iml 113 | .idea/modules 114 | *.iml 115 | *.ipr 116 | 117 | # CMake 118 | cmake-build-*/ 119 | 120 | # Mongo Explorer plugin 121 | .idea/**/mongoSettings.xml 122 | 123 | # File-based project format 124 | *.iws 125 | 126 | # IntelliJ 127 | out/ 128 | 129 | # mpeltonen/sbt-idea plugin 130 | .idea_modules/ 131 | 132 | # JIRA plugin 133 | atlassian-ide-plugin.xml 134 | 135 | # Cursive Clojure plugin 136 | .idea/replstate.xml 137 | 138 | # SonarLint plugin 139 | .idea/sonarlint/ 140 | 141 | # Crashlytics plugin (for Android Studio and IntelliJ) 142 | com_crashlytics_export_strings.xml 143 | crashlytics.properties 144 | crashlytics-build.properties 145 | fabric.properties 146 | 147 | # Editor-based Rest Client 148 | .idea/httpRequests 149 | 150 | # Android studio 3.1+ serialized cache file 151 | .idea/caches/build_file_checksums.ser 152 | 153 | ### Intellij+all Patch ### 154 | # Ignore everything but code style settings and run configurations 155 | # that are supposed to be shared within teams. 156 | 157 | .idea/* 158 | 159 | !.idea/codeStyles 160 | !.idea/runConfigurations 161 | 162 | ### Java ### 163 | # Compiled class file 164 | *.class 165 | 166 | # Log file 167 | *.log 168 | 169 | # BlueJ files 170 | *.ctxt 171 | 172 | # Mobile Tools for Java (J2ME) 173 | .mtj.tmp/ 174 | 175 | # Package Files # 176 | *.jar 177 | *.war 178 | *.nar 179 | *.ear 180 | *.zip 181 | *.tar.gz 182 | *.rar 183 | 184 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 185 | hs_err_pid* 186 | replay_pid* 187 | 188 | ### NetBeans ### 189 | **/nbproject/private/ 190 | **/nbproject/Makefile-*.mk 191 | **/nbproject/Package-*.bash 192 | build/ 193 | nbbuild/ 194 | dist/ 195 | nbdist/ 196 | .nb-gradle/ 197 | 198 | ### Gradle ### 199 | .gradle 200 | **/build/ 201 | !src/**/build/ 202 | 203 | # Ignore Gradle GUI config 204 | gradle-app.setting 205 | 206 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 207 | !gradle-wrapper.jar 208 | 209 | # Avoid ignore Gradle wrappper properties 210 | !gradle-wrapper.properties 211 | 212 | # Cache of project 213 | .gradletasknamecache 214 | 215 | # Eclipse Gradle plugin generated files 216 | # Eclipse Core 217 | .project 218 | # JDT-specific (Eclipse Java Development Tools) 219 | .classpath 220 | 221 | ### Gradle Patch ### 222 | # Java heap dump 223 | *.hprof 224 | 225 | # End of https://www.toptal.com/developers/gitignore/api/intellij+all,gradle,forgegradle,java,eclipse,netbeans 226 | srgmap.cfg -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/core/FluidLogRendererInjector.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.core; 24 | 25 | import com.falsepattern.lib.asm.ASMUtil; 26 | import com.falsepattern.lib.mapping.MappingManager; 27 | import com.falsepattern.lib.mapping.types.MappingType; 28 | import com.falsepattern.lib.mapping.types.NameType; 29 | import com.falsepattern.lib.turboasm.ClassNodeHandle; 30 | import com.falsepattern.lib.turboasm.TurboClassTransformer; 31 | import lombok.SneakyThrows; 32 | import lombok.val; 33 | import mega.fluidlogged.Tags; 34 | import org.jetbrains.annotations.NotNull; 35 | import org.objectweb.asm.Opcodes; 36 | import org.objectweb.asm.tree.InsnNode; 37 | import org.objectweb.asm.tree.MethodInsnNode; 38 | import org.objectweb.asm.tree.VarInsnNode; 39 | 40 | 41 | /** 42 | * Waterlogging renderer hook 43 | * 44 | * Injection point: 45 | *

{@code
 46 |  *    <------------ here
 47 |  *  int k3 = block.getRenderBlockPass();
 48 |  *
 49 |  *  if (k3 > k2)
 50 |  *  {
 51 |  *      flag = true;
 52 |  *  }
 53 |  *
 54 |  *  if (!block.canRenderInPass(k2)) continue;
 55 |  * }
56 | * 57 | * Injected code snippet: 58 | *
{@code
 59 |  * int tmp = ASMHooks.drawFluidLogged(renderblocks, x, y, z, pass);
 60 |  * nextPass |= tmp & 1;
 61 |  * renderedAnything |= (tmp >>> 1) & 1;
 62 |  * }
63 | */ 64 | public class FluidLogRendererInjector implements TurboClassTransformer { 65 | @Override 66 | public String owner() { 67 | return Tags.MOD_ID; 68 | } 69 | 70 | @Override 71 | public String name() { 72 | return "FluidLogRendererInjector"; 73 | } 74 | 75 | @Override 76 | public boolean shouldTransformClass(@NotNull String className, @NotNull ClassNodeHandle classNode) { 77 | return "net.minecraft.client.renderer.WorldRenderer".equals(className); 78 | } 79 | 80 | @SneakyThrows 81 | @Override 82 | public boolean transformClass(@NotNull String className, @NotNull ClassNodeHandle classNode) { 83 | val cn = classNode.getNode(); 84 | if (cn == null) { 85 | return false; 86 | } 87 | val type = ASMUtil.discoverClassMappingType(cn); 88 | val block = MappingManager.classForName(NameType.Regular, MappingType.MCP, "net.minecraft.block.Block"); 89 | val blockMethod = block.getMethod(MappingType.MCP, "getRenderBlockPass", "()I"); 90 | val blockClassNameInternal = block.internalName().get(type); 91 | val blockMethodName = blockMethod.name().get(type); 92 | val blockMethodDesc = blockMethod.descriptor().get(type); 93 | val method = ASMUtil.findMethodFromMCP(cn, "updateRenderer", "(Lnet/minecraft/entity/EntityLivingBase;)V", false); 94 | val iter = method.instructions.iterator(); 95 | while (iter.hasNext()) { 96 | val insn = iter.next(); 97 | if (!(insn instanceof MethodInsnNode)) 98 | continue; 99 | val mInsn = (MethodInsnNode) insn; 100 | if (!blockClassNameInternal.equals(mInsn.owner) || 101 | !blockMethodName.equals(mInsn.name) || 102 | !blockMethodDesc.equals(mInsn.desc)) { 103 | continue; 104 | } 105 | iter.previous(); 106 | iter.add(new VarInsnNode(Opcodes.ALOAD, 16)); 107 | iter.add(new VarInsnNode(Opcodes.ILOAD, 23)); 108 | iter.add(new VarInsnNode(Opcodes.ILOAD, 21)); 109 | iter.add(new VarInsnNode(Opcodes.ILOAD, 22)); 110 | iter.add(new VarInsnNode(Opcodes.ILOAD, 17)); 111 | iter.add(new MethodInsnNode(Opcodes.INVOKESTATIC, 112 | Tags.ROOT_PKG.replace('.', '/') + "/internal/core/ASMHooks", 113 | "drawFluidLogged", 114 | "(Lnet/minecraft/client/renderer/RenderBlocks;IIII)I", 115 | false)); 116 | iter.add(new InsnNode(Opcodes.DUP)); 117 | iter.add(new InsnNode(Opcodes.ICONST_1)); 118 | iter.add(new InsnNode(Opcodes.IAND)); 119 | iter.add(new VarInsnNode(Opcodes.ILOAD, 18)); 120 | iter.add(new InsnNode(Opcodes.IOR)); 121 | iter.add(new VarInsnNode(Opcodes.ISTORE, 18)); 122 | iter.add(new InsnNode(Opcodes.ICONST_1)); 123 | iter.add(new InsnNode(Opcodes.IUSHR)); 124 | iter.add(new InsnNode(Opcodes.ICONST_1)); 125 | iter.add(new InsnNode(Opcodes.IAND)); 126 | iter.add(new VarInsnNode(Opcodes.ILOAD, 19)); 127 | iter.add(new InsnNode(Opcodes.IOR)); 128 | iter.add(new VarInsnNode(Opcodes.ISTORE, 19)); 129 | return true; 130 | } 131 | return false; 132 | } 133 | } 134 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/FLUtil.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.FLBlockAccess; 27 | import mega.fluidlogged.internal.mixin.hook.FLWorld; 28 | import org.jetbrains.annotations.NotNull; 29 | import org.jetbrains.annotations.Nullable; 30 | 31 | import net.minecraft.block.Block; 32 | import net.minecraft.block.BlockDynamicLiquid; 33 | import net.minecraft.block.BlockLiquid; 34 | import net.minecraft.block.BlockStaticLiquid; 35 | import net.minecraft.entity.player.EntityPlayer; 36 | import net.minecraft.init.Blocks; 37 | import net.minecraft.item.ItemStack; 38 | import net.minecraft.util.MovingObjectPosition; 39 | import net.minecraft.world.IBlockAccess; 40 | import net.minecraft.world.World; 41 | import net.minecraft.world.chunk.Chunk; 42 | import net.minecraftforge.common.MinecraftForge; 43 | import net.minecraftforge.event.entity.player.FillBucketEvent; 44 | import net.minecraftforge.fluids.BlockFluidClassic; 45 | import net.minecraftforge.fluids.Fluid; 46 | import net.minecraftforge.fluids.FluidRegistry; 47 | import net.minecraftforge.fluids.IFluidBlock; 48 | import cpw.mods.fml.common.eventhandler.Event; 49 | 50 | import java.util.Random; 51 | import java.util.function.Consumer; 52 | 53 | public class FLUtil { 54 | public static Block getFluidOrBlock(IBlockAccess access, int x, int y, int z) { 55 | if (!(access instanceof FLBlockAccess)) 56 | return access.getBlock(x, y, z); 57 | val fluid = ((FLBlockAccess)access).fl$getFluid(x, y, z); 58 | if (fluid == null) 59 | return access.getBlock(x, y, z); 60 | val block = fluid.getBlock(); 61 | if (block == null) 62 | return access.getBlock(x, y, z); 63 | return block; 64 | } 65 | 66 | public static int getFluidMeta(IBlockAccess access, int x, int y, int z, int max) { 67 | if (!(access instanceof FLBlockAccess)) 68 | return access.getBlockMetadata(x, y, z); 69 | val fluid = ((FLBlockAccess)access).fl$getFluid(x, y, z); 70 | if (fluid == null) 71 | return access.getBlockMetadata(x, y, z); 72 | val block = fluid.getBlock(); 73 | if (block == null) 74 | return access.getBlockMetadata(x, y, z); 75 | return max; 76 | } 77 | 78 | public static void fireBucketEvent(ItemStack item, World world, EntityPlayer player, Consumer resultCallback, MovingObjectPosition pos) { 79 | val event = new FillBucketEvent(player, item, world, pos); 80 | if (MinecraftForge.EVENT_BUS.post(event)) { 81 | resultCallback.accept(item); 82 | return; 83 | } 84 | 85 | if (event.getResult() != Event.Result.ALLOW) { 86 | return; 87 | } 88 | 89 | if (player.capabilities.isCreativeMode) { 90 | resultCallback.accept(item); 91 | return; 92 | } 93 | 94 | if (--item.stackSize <= 0) { 95 | resultCallback.accept(event.result); 96 | return; 97 | } 98 | 99 | if (!player.inventory.addItemStackToInventory(event.result)) { 100 | player.dropPlayerItemWithRandomChoice(event.result, false); 101 | } 102 | 103 | resultCallback.accept(item); 104 | } 105 | 106 | public static void onFluidPlacedInto(@NotNull World world, int x, int y, int z, @NotNull Block block, @NotNull Block fluidBlock) { 107 | if (fluidBlock instanceof BlockLiquid) { 108 | ((FLWorld)world).fl$scheduleFluidUpdate(x, y, z, block, fluidBlock.tickRate(world)); 109 | } else if (fluidBlock instanceof IFluidBlock) { 110 | ((FLWorld)world).fl$scheduleFluidUpdate(x, y, z, block, fluidBlock.tickRate(world)); 111 | } 112 | } 113 | 114 | public static void simulate(@NotNull World world, int x, int y, int z, @NotNull Random random, Fluid fluid) { 115 | val block = fluid.getBlock(); 116 | if (block == null) 117 | return; 118 | if (block instanceof BlockLiquid) { 119 | val simBlock = resolveVanillaSimulationLiquid(block); 120 | if (simBlock != null) { 121 | simBlock.updateTick(world, x, y, z, random); 122 | } 123 | } else if (block instanceof BlockFluidClassic) { 124 | block.updateTick(world, x, y, z, random); 125 | } 126 | } 127 | 128 | private static @Nullable BlockDynamicLiquid resolveVanillaSimulationLiquid(Block block) { 129 | if (block instanceof BlockDynamicLiquid) { 130 | return (BlockDynamicLiquid) block; 131 | } 132 | if (block instanceof BlockStaticLiquid) { 133 | val dynamic = Block.getBlockById(Block.getIdFromBlock(block) - 1); 134 | if (dynamic instanceof BlockDynamicLiquid && dynamic.getMaterial() == block.getMaterial()) { 135 | return (BlockDynamicLiquid) dynamic; 136 | } 137 | } 138 | return null; 139 | } 140 | 141 | public static @Nullable Fluid fromChunkBlock(@NotNull Chunk chunk, int x, int y, int z, @NotNull Block block) { 142 | val meta = chunk.getBlockMetadata(x, y, z); 143 | if (meta != 0) { 144 | return null; 145 | } 146 | return fromBucketBlock(block); 147 | } 148 | 149 | public static @Nullable Fluid fromBucketBlock(@NotNull Block block) { 150 | if (block == Blocks.flowing_water) { 151 | block = Blocks.water; 152 | } else if (block == Blocks.flowing_lava) { 153 | block = Blocks.lava; 154 | } 155 | return FluidRegistry.lookupFluidForBlock(block); 156 | } 157 | } 158 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/bucket/FLBucketDriver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.bucket; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.api.bucket.BucketDriver; 27 | import mega.fluidlogged.api.bucket.BucketEmptyResults; 28 | import mega.fluidlogged.api.bucket.BucketState; 29 | import mega.fluidlogged.internal.FLUtil; 30 | import mega.fluidlogged.api.FLBlockAccess; 31 | import mega.fluidlogged.internal.world.FLWorldDriver; 32 | 33 | import net.minecraft.block.Block; 34 | import net.minecraft.item.ItemStack; 35 | import net.minecraft.util.MovingObjectPosition; 36 | import net.minecraft.world.World; 37 | import net.minecraftforge.event.entity.player.FillBucketEvent; 38 | import net.minecraftforge.fluids.Fluid; 39 | import cpw.mods.fml.common.eventhandler.Event; 40 | import cpw.mods.fml.common.eventhandler.EventPriority; 41 | import cpw.mods.fml.common.eventhandler.SubscribeEvent; 42 | 43 | import java.util.ArrayList; 44 | import java.util.List; 45 | 46 | public class FLBucketDriver { 47 | public static final FLBucketDriver INSTANCE = new FLBucketDriver(); 48 | private final List queryDrivers = new ArrayList<>(); 49 | private final List fillDrivers = new ArrayList<>(); 50 | private final List emptyDrivers = new ArrayList<>(); 51 | 52 | public void registerDriver(BucketDriver driver) { 53 | boolean valid = false; 54 | if (driver instanceof BucketDriver.Query) { 55 | queryDrivers.add((BucketDriver.Query) driver); 56 | valid = true; 57 | } 58 | if (driver instanceof BucketDriver.Fill) { 59 | fillDrivers.add((BucketDriver.Fill) driver); 60 | valid = true; 61 | } 62 | if (driver instanceof BucketDriver.Empty) { 63 | emptyDrivers.add((BucketDriver.Empty) driver); 64 | valid = true; 65 | } 66 | if (!valid) { 67 | throw new IllegalArgumentException("Subclasses of BucketDriver MUST implement Query/Fill/Empty!"); 68 | } 69 | } 70 | 71 | @SubscribeEvent( 72 | priority = EventPriority.HIGHEST 73 | ) 74 | public void onBucketEvent(FillBucketEvent event) { 75 | val hit = event.target; 76 | if (hit.typeOfHit != MovingObjectPosition.MovingObjectType.BLOCK) { 77 | return; 78 | } 79 | 80 | val bucketState = queryState(event.current); 81 | if (bucketState == null) { 82 | return; 83 | } 84 | 85 | ItemStack newBucket = null; 86 | if (bucketState == BucketState.Empty) { 87 | newBucket = handleBucketFill(event.current, event.world, hit.blockX, hit.blockY, hit.blockZ); 88 | } else if (bucketState == BucketState.Filled) { 89 | newBucket = handleBucketDrain(event.current, event.world, hit.blockX, hit.blockY, hit.blockZ, hit.sideHit); 90 | } else { 91 | return; 92 | } 93 | 94 | if (newBucket != null) { 95 | event.result = newBucket; 96 | event.setResult(Event.Result.ALLOW); 97 | } 98 | } 99 | 100 | private ItemStack fillBucket(Fluid fluid, ItemStack bucket) { 101 | for (val driver: fillDrivers) { 102 | val item = driver.fillBucket(fluid, bucket); 103 | if (item != null) { 104 | return item; 105 | } 106 | } 107 | return null; 108 | } 109 | 110 | private BucketEmptyResults emptyBucket(ItemStack bucket) { 111 | for (val driver: emptyDrivers) { 112 | val pair = driver.emptyBucket(bucket); 113 | if (pair != null) { 114 | return pair; 115 | } 116 | } 117 | return null; 118 | } 119 | 120 | private BucketState queryState(ItemStack bucket) { 121 | for (val driver: queryDrivers) { 122 | val state = driver.queryState(bucket); 123 | if (state != null) { 124 | return state; 125 | } 126 | } 127 | return null; 128 | } 129 | 130 | private ItemStack handleBucketDrain(ItemStack bucket, World world, int x, int y, int z, int sideHit) { 131 | val result = emptyBucket(bucket); 132 | if (result == null) { 133 | return null; 134 | } 135 | val emptyBucket = result.getItem(); 136 | val fluid = result.getFluid(); 137 | val fluidBlock = fluid.getBlock(); 138 | if (fluidBlock == null) { 139 | return null; 140 | } 141 | 142 | Block block = world.getBlock(x, y, z); 143 | int meta = world.getBlockMetadata(x, y, z); 144 | val hitIsFluidLoggable = FLWorldDriver.INSTANCE.canBeFluidLogged(block, meta, fluid); 145 | val wlWorld = (FLBlockAccess) world; 146 | boolean flag = false; 147 | // If the hit block can't be fluidlogged, or if it is already fluid logged, then we want to 148 | // adjust the hit coordinates to place against that block. For example, if we hit a stone block 149 | // underneath a fence, then we want to adjust the Y coordinate up one, and re-try the fill on the fence 150 | // block rather than the block we actually clicked on. 151 | if (!hitIsFluidLoggable || wlWorld.fl$isFluidLogged(x, y, z, null)) { 152 | if (sideHit == 0) { 153 | --y; 154 | } else if (sideHit == 1) { 155 | ++y; 156 | } else if (sideHit == 2) { 157 | --z; 158 | } else if (sideHit == 3) { 159 | ++z; 160 | } else if (sideHit == 4) { 161 | --x; 162 | } else if (sideHit == 5) { 163 | ++x; 164 | } 165 | 166 | block = world.getBlock(x, y, z); 167 | meta = world.getBlockMetadata(x, y, z); 168 | flag = true; 169 | } 170 | 171 | if (flag) { 172 | val adjustedFluidLoggable = FLWorldDriver.INSTANCE.canBeFluidLogged(block, meta, fluid); 173 | if (!adjustedFluidLoggable || wlWorld.fl$isFluidLogged(x, y, z, null)) { 174 | return null; 175 | } 176 | } 177 | 178 | wlWorld.fl$setFluid(x, y, z, fluid); 179 | FLUtil.onFluidPlacedInto(world, x, y, z, block, fluidBlock); 180 | world.notifyBlocksOfNeighborChange(x, y, z, block); 181 | world.markBlockForUpdate(x, y, z); 182 | return emptyBucket; 183 | } 184 | 185 | private ItemStack handleBucketFill(ItemStack bucket, World world, int x, int y, int z) { 186 | val wlWorld = (FLBlockAccess) world; 187 | val fluid = wlWorld.fl$getFluid(x, y, z); 188 | if (fluid != null) { 189 | val newBucket = fillBucket(fluid, bucket); 190 | if (newBucket == null) 191 | return null; 192 | wlWorld.fl$setFluid(x, y, z, null); 193 | val block = world.getBlock(x, y, z); 194 | world.notifyBlocksOfNeighborChange(x, y, z, block); 195 | world.markBlockForUpdate(x, y, z); 196 | return newBucket; 197 | } 198 | return null; 199 | } 200 | 201 | } 202 | -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/WorldMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import com.llamalad7.mixinextras.injector.wrapoperation.Operation; 26 | import com.llamalad7.mixinextras.injector.wrapoperation.WrapOperation; 27 | import com.llamalad7.mixinextras.sugar.Local; 28 | import com.llamalad7.mixinextras.sugar.Share; 29 | import com.llamalad7.mixinextras.sugar.ref.LocalBooleanRef; 30 | import lombok.val; 31 | import mega.fluidlogged.api.FLBlockAccess; 32 | import mega.fluidlogged.internal.mixin.hook.FLBlockRoot; 33 | import mega.fluidlogged.api.FLChunk; 34 | import mega.fluidlogged.internal.mixin.hook.FLWorld; 35 | import org.jetbrains.annotations.NotNull; 36 | import org.jetbrains.annotations.Nullable; 37 | import org.spongepowered.asm.mixin.Mixin; 38 | import org.spongepowered.asm.mixin.Shadow; 39 | import org.spongepowered.asm.mixin.injection.At; 40 | import org.spongepowered.asm.mixin.injection.Inject; 41 | import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; 42 | 43 | import net.minecraft.block.Block; 44 | import net.minecraft.block.material.Material; 45 | import net.minecraft.world.NextTickListEntry; 46 | import net.minecraft.world.World; 47 | import net.minecraft.world.chunk.Chunk; 48 | import net.minecraft.world.chunk.EmptyChunk; 49 | import net.minecraftforge.fluids.Fluid; 50 | 51 | import java.util.List; 52 | 53 | @Mixin(World.class) 54 | public abstract class WorldMixin implements FLBlockAccess, FLWorld { 55 | // region hooks 56 | @Shadow public abstract Chunk getChunkFromBlockCoords(int x, int z); 57 | 58 | @Shadow public abstract void markBlockForUpdate(int p_147471_1_, int p_147471_2_, int p_147471_3_); 59 | 60 | @Shadow public abstract boolean setBlock(int x, int y, int z, Block blockType); 61 | 62 | @Inject(method = "setBlockToAir", 63 | at = @At("HEAD"), 64 | cancellable = true, 65 | require = 1) 66 | private void fluidLoggedSetBlock(int x, int y, int z, CallbackInfoReturnable cir) { 67 | val fluid = fl$getFluid(x, y, z); 68 | if (fluid != null) { 69 | val block = fluid.getBlock(); 70 | if (block != null) { 71 | cir.setReturnValue(setBlock(x, y, z, block)); 72 | } 73 | } 74 | } 75 | 76 | @WrapOperation(method = "setBlock(IIILnet/minecraft/block/Block;II)Z", 77 | at = @At(value = "INVOKE", 78 | target = "Lnet/minecraft/world/chunk/Chunk;func_150807_a(IIILnet/minecraft/block/Block;I)Z"), 79 | require = 1) 80 | private boolean unFluidLog(Chunk chunk, int cX, int y, int cZ, Block block, int meta, Operation original, 81 | @Local(ordinal = 1) Block originalBlock) { 82 | return original.call(chunk, cX, y, cZ, block, meta); 83 | } 84 | 85 | @WrapOperation(method = "notifyBlockOfNeighborChange", 86 | at = @At(value = "INVOKE", 87 | target = "Lnet/minecraft/block/Block;onNeighborBlockChange(Lnet/minecraft/world/World;IIILnet/minecraft/block/Block;)V"), 88 | require = 1) 89 | private void onNeighborFluidChange(Block instance, World worldIn, int x, int y, int z, Block neighbor, Operation original) { 90 | ((FLBlockRoot)instance).fl$onNeighborChange(worldIn, x, y, z, neighbor); 91 | original.call(instance, worldIn, x, y, z, neighbor); 92 | } 93 | 94 | @WrapOperation(method = "handleMaterialAcceleration", 95 | at = @At(value = "INVOKE", 96 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 97 | require = 1) 98 | private Block accelerationGetBlock(World world, int x, int y, int z, Operation original, @Share("logged") LocalBooleanRef logged) { 99 | val fluid = ((FLBlockAccess)world).fl$getFluid(x, y, z); 100 | val fluidBlock = fluid == null ? null : fluid.getBlock(); 101 | if (fluidBlock != null) { 102 | logged.set(true); 103 | return fluidBlock; 104 | } 105 | logged.set(false); 106 | return original.call(world, x, y, z); 107 | } 108 | 109 | @WrapOperation(method = "handleMaterialAcceleration", 110 | at = @At(value = "INVOKE", 111 | target = "Lnet/minecraft/world/World;getBlockMetadata(III)I"), 112 | require = 1) 113 | private int accelerationGetMeta(World world, int x, int y, int z, Operation original, @Share("logged") LocalBooleanRef logged) { 114 | if (logged.get()) { 115 | return 0; 116 | } 117 | return original.call(world, x, y, z); 118 | } 119 | 120 | @WrapOperation(method = "isAnyLiquid", 121 | at = @At(value = "INVOKE", 122 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 123 | require = 1) 124 | private Block isAnyLiquidGetBlock(World world, int x, int y, int z, Operation original) { 125 | val fluid = ((FLBlockAccess)world).fl$getFluid(x, y, z); 126 | val fluidBlock = fluid == null ? null : fluid.getBlock(); 127 | if (fluidBlock != null) { 128 | return fluidBlock; 129 | } 130 | return original.call(world, x, y, z); 131 | } 132 | 133 | @WrapOperation(method = "isMaterialInBB", 134 | at = @At(value = "INVOKE", 135 | target = "Lnet/minecraft/world/World;getBlock(III)Lnet/minecraft/block/Block;"), 136 | require = 1) 137 | private Block isMaterialInBBGetBlock(World world, int x, int y, int z, Operation original, @Local(argsOnly = true) Material material) { 138 | val ogBlock = original.call(world, x, y, z); 139 | if (ogBlock.getMaterial() == material) { 140 | return ogBlock; 141 | } 142 | val fluid = ((FLBlockAccess)world).fl$getFluid(x, y, z); 143 | val fluidBlock = fluid == null ? null : fluid.getBlock(); 144 | if (fluidBlock != null) { 145 | return fluidBlock; 146 | } 147 | return ogBlock; 148 | } 149 | 150 | // endregion 151 | 152 | // region FLBlockAccess 153 | 154 | @Override 155 | public void fl$setFluid(int x, int y, int z, @Nullable Fluid fluid) { 156 | val chunk = getChunkFromBlockCoords(x, z); 157 | if (chunk == null || chunk instanceof EmptyChunk) 158 | return; 159 | ((FLChunk)chunk).fl$setFluid(x & 0xF, y, z & 0xF, fluid); 160 | markBlockForUpdate(x, y, z); 161 | } 162 | 163 | @Override 164 | public @Nullable Fluid fl$getFluid(int x, int y, int z) { 165 | val chunk = getChunkFromBlockCoords(x, z); 166 | if (chunk == null || chunk instanceof EmptyChunk) 167 | return null; 168 | return ((FLChunk)chunk).fl$getFluid(x & 0xf, y, z & 0xf); 169 | } 170 | 171 | // endregion 172 | 173 | // region FLWorld 174 | 175 | 176 | @Override 177 | public void fl$scheduleFluidUpdate(int x, int y, int z, @NotNull Block block, int delay) {} 178 | 179 | @Override 180 | public void fl$insertUpdate(int x, int y, int z, @NotNull Block block, int delay, int priority) {} 181 | 182 | @Override 183 | public @Nullable List fl$getPendingFluidUpdates(@NotNull Chunk chunk, boolean remove) { 184 | return null; 185 | } 186 | 187 | // endregion 188 | } 189 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Copyright © 2015-2021 the original authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | # SPDX-License-Identifier: Apache-2.0 19 | # 20 | 21 | ############################################################################## 22 | # 23 | # Gradle start up script for POSIX generated by Gradle. 24 | # 25 | # Important for running: 26 | # 27 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 28 | # noncompliant, but you have some other compliant shell such as ksh or 29 | # bash, then to run this script, type that shell name before the whole 30 | # command line, like: 31 | # 32 | # ksh Gradle 33 | # 34 | # Busybox and similar reduced shells will NOT work, because this script 35 | # requires all of these POSIX shell features: 36 | # * functions; 37 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», 38 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»; 39 | # * compound commands having a testable exit status, especially «case»; 40 | # * various built-in commands including «command», «set», and «ulimit». 41 | # 42 | # Important for patching: 43 | # 44 | # (2) This script targets any POSIX shell, so it avoids extensions provided 45 | # by Bash, Ksh, etc; in particular arrays are avoided. 46 | # 47 | # The "traditional" practice of packing multiple parameters into a 48 | # space-separated string is a well documented source of bugs and security 49 | # problems, so this is (mostly) avoided, by progressively accumulating 50 | # options in "$@", and eventually passing that to Java. 51 | # 52 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 53 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 54 | # see the in-line comments for details. 55 | # 56 | # There are tweaks for specific operating systems such as AIX, CygWin, 57 | # Darwin, MinGW, and NonStop. 58 | # 59 | # (3) This script is generated from the Groovy template 60 | # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 61 | # within the Gradle project. 62 | # 63 | # You can find Gradle at https://github.com/gradle/gradle/. 64 | # 65 | ############################################################################## 66 | 67 | # Attempt to set APP_HOME 68 | 69 | # Resolve links: $0 may be a link 70 | app_path=$0 71 | 72 | # Need this for daisy-chained symlinks. 73 | while 74 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 75 | [ -h "$app_path" ] 76 | do 77 | ls=$( ls -ld "$app_path" ) 78 | link=${ls#*' -> '} 79 | case $link in #( 80 | /*) app_path=$link ;; #( 81 | *) app_path=$APP_HOME$link ;; 82 | esac 83 | done 84 | 85 | # This is normally unused 86 | # shellcheck disable=SC2034 87 | APP_BASE_NAME=${0##*/} 88 | # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) 89 | APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit 90 | 91 | # Use the maximum available, or set MAX_FD != -1 to use that value. 92 | MAX_FD=maximum 93 | 94 | warn () { 95 | echo "$*" 96 | } >&2 97 | 98 | die () { 99 | echo 100 | echo "$*" 101 | echo 102 | exit 1 103 | } >&2 104 | 105 | # OS specific support (must be 'true' or 'false'). 106 | cygwin=false 107 | msys=false 108 | darwin=false 109 | nonstop=false 110 | case "$( uname )" in #( 111 | CYGWIN* ) cygwin=true ;; #( 112 | Darwin* ) darwin=true ;; #( 113 | MSYS* | MINGW* ) msys=true ;; #( 114 | NONSTOP* ) nonstop=true ;; 115 | esac 116 | 117 | CLASSPATH="\\\"\\\"" 118 | 119 | 120 | # Determine the Java command to use to start the JVM. 121 | if [ -n "$JAVA_HOME" ] ; then 122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 123 | # IBM's JDK on AIX uses strange locations for the executables 124 | JAVACMD=$JAVA_HOME/jre/sh/java 125 | else 126 | JAVACMD=$JAVA_HOME/bin/java 127 | fi 128 | if [ ! -x "$JAVACMD" ] ; then 129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 130 | 131 | Please set the JAVA_HOME variable in your environment to match the 132 | location of your Java installation." 133 | fi 134 | else 135 | JAVACMD=java 136 | if ! command -v java >/dev/null 2>&1 137 | then 138 | die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 139 | 140 | Please set the JAVA_HOME variable in your environment to match the 141 | location of your Java installation." 142 | fi 143 | fi 144 | 145 | # Increase the maximum file descriptors if we can. 146 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 147 | case $MAX_FD in #( 148 | max*) 149 | # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. 150 | # shellcheck disable=SC2039,SC3045 151 | MAX_FD=$( ulimit -H -n ) || 152 | warn "Could not query maximum file descriptor limit" 153 | esac 154 | case $MAX_FD in #( 155 | '' | soft) :;; #( 156 | *) 157 | # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. 158 | # shellcheck disable=SC2039,SC3045 159 | ulimit -n "$MAX_FD" || 160 | warn "Could not set maximum file descriptor limit to $MAX_FD" 161 | esac 162 | fi 163 | 164 | # Collect all arguments for the java command, stacking in reverse order: 165 | # * args from the command line 166 | # * the main class name 167 | # * -classpath 168 | # * -D...appname settings 169 | # * --module-path (only if needed) 170 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 171 | 172 | # For Cygwin or MSYS, switch paths to Windows format before running java 173 | if "$cygwin" || "$msys" ; then 174 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 175 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 176 | 177 | JAVACMD=$( cygpath --unix "$JAVACMD" ) 178 | 179 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 180 | for arg do 181 | if 182 | case $arg in #( 183 | -*) false ;; # don't mess with options #( 184 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 185 | [ -e "$t" ] ;; #( 186 | *) false ;; 187 | esac 188 | then 189 | arg=$( cygpath --path --ignore --mixed "$arg" ) 190 | fi 191 | # Roll the args list around exactly as many times as the number of 192 | # args, so each arg winds up back in the position where it started, but 193 | # possibly modified. 194 | # 195 | # NB: a `for` loop captures its iteration list before it begins, so 196 | # changing the positional parameters here affects neither the number of 197 | # iterations, nor the values presented in `arg`. 198 | shift # remove old arg 199 | set -- "$@" "$arg" # push replacement arg 200 | done 201 | fi 202 | 203 | 204 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 205 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 206 | 207 | # Collect all arguments for the java command: 208 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, 209 | # and any embedded shellness will be escaped. 210 | # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be 211 | # treated as '${Hostname}' itself on the command line. 212 | 213 | set -- \ 214 | "-Dorg.gradle.appname=$APP_BASE_NAME" \ 215 | -classpath "$CLASSPATH" \ 216 | -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ 217 | "$@" 218 | 219 | # Stop when "xargs" is not available. 220 | if ! command -v xargs >/dev/null 2>&1 221 | then 222 | die "xargs is not available" 223 | fi 224 | 225 | # Use "xargs" to parse quoted args. 226 | # 227 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 228 | # 229 | # In Bash we could simply go: 230 | # 231 | # readarray ARGS < <( xargs -n1 <<<"$var" ) && 232 | # set -- "${ARGS[@]}" "$@" 233 | # 234 | # but POSIX shell has neither arrays nor command substitution, so instead we 235 | # post-process each arg (as a line of input to sed) to backslash-escape any 236 | # character that might be a shell metacharacter, then use eval to reverse 237 | # that process (while maintaining the separation between arguments), and wrap 238 | # the whole thing up as a single "set" statement. 239 | # 240 | # This will of course break if any of these variables contains a newline or 241 | # an unmatched quote. 242 | # 243 | 244 | eval "set -- $( 245 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 246 | xargs -n1 | 247 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 248 | tr '\n' ' ' 249 | )" '"$@"' 250 | 251 | exec "$JAVACMD" "$@" 252 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/mixin/mixins/common/WorldServerMixin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal.mixin.mixins.common; 24 | 25 | import lombok.val; 26 | import mega.fluidlogged.internal.mixin.hook.FLBlockRoot; 27 | import mega.fluidlogged.internal.mixin.hook.FLWorld; 28 | import org.apache.logging.log4j.Logger; 29 | import org.jetbrains.annotations.NotNull; 30 | import org.jetbrains.annotations.Nullable; 31 | import org.spongepowered.asm.mixin.Final; 32 | import org.spongepowered.asm.mixin.Mixin; 33 | import org.spongepowered.asm.mixin.Shadow; 34 | import org.spongepowered.asm.mixin.Unique; 35 | import org.spongepowered.asm.mixin.injection.At; 36 | import org.spongepowered.asm.mixin.injection.Inject; 37 | import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; 38 | import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; 39 | 40 | import net.minecraft.block.Block; 41 | import net.minecraft.block.material.Material; 42 | import net.minecraft.crash.CrashReport; 43 | import net.minecraft.crash.CrashReportCategory; 44 | import net.minecraft.profiler.Profiler; 45 | import net.minecraft.server.MinecraftServer; 46 | import net.minecraft.util.ReportedException; 47 | import net.minecraft.world.ChunkCoordIntPair; 48 | import net.minecraft.world.NextTickListEntry; 49 | import net.minecraft.world.World; 50 | import net.minecraft.world.WorldProvider; 51 | import net.minecraft.world.WorldServer; 52 | import net.minecraft.world.WorldSettings; 53 | import net.minecraft.world.chunk.Chunk; 54 | import net.minecraft.world.storage.ISaveHandler; 55 | 56 | import java.util.ArrayList; 57 | import java.util.HashSet; 58 | import java.util.Iterator; 59 | import java.util.List; 60 | import java.util.Set; 61 | import java.util.TreeSet; 62 | 63 | @Mixin(WorldServer.class) 64 | public abstract class WorldServerMixin extends World implements FLWorld { 65 | @Shadow 66 | @Final 67 | private static Logger logger; 68 | @Unique 69 | private Set fl$pendingTicksUnSored; 70 | @Unique 71 | private TreeSet fl$pendingTicksSorted; 72 | @Unique 73 | private List fl$pendingTicksCurrentTick; 74 | 75 | public WorldServerMixin(ISaveHandler p_i45368_1_, String p_i45368_2_, WorldProvider p_i45368_3_, WorldSettings p_i45368_4_, Profiler p_i45368_5_) { 76 | super(p_i45368_1_, p_i45368_2_, p_i45368_3_, p_i45368_4_, p_i45368_5_); 77 | } 78 | 79 | @Inject(method = "", 80 | at = @At("RETURN"), 81 | require = 1) 82 | private void initialize(MinecraftServer p_i45284_1_, ISaveHandler p_i45284_2_, String p_i45284_3_, int p_i45284_4_, WorldSettings p_i45284_5_, Profiler p_i45284_6_, CallbackInfo ci) { 83 | fl$initFields(); 84 | fl$pendingTicksCurrentTick = new ArrayList<>(); 85 | } 86 | 87 | @Inject(method = "initialize", 88 | at = @At("HEAD"), 89 | require = 1) 90 | private void initialize(WorldSettings settings, CallbackInfo ci) { 91 | fl$initFields(); 92 | } 93 | 94 | @Inject(method = "tickUpdates", 95 | at = @At("RETURN"), 96 | cancellable = true, 97 | require = 1) 98 | private void hookTickUpdates(boolean runAllPending, CallbackInfoReturnable cir) { 99 | if (fl$tickFluidUpdates(runAllPending)) { 100 | cir.setReturnValue(true); 101 | } 102 | } 103 | 104 | @Unique 105 | private boolean fl$tickFluidUpdates(boolean runAllPending) { 106 | int i = fl$pendingTicksSorted.size(); 107 | 108 | if (i != fl$pendingTicksUnSored.size()) { 109 | throw new IllegalStateException("TickNextTick list out of synch"); 110 | } else { 111 | if (i > 1000) { 112 | i = 1000; 113 | } 114 | 115 | theProfiler.startSection("cleaning"); 116 | 117 | for (int j = 0; j < i; ++j) { 118 | val entry = fl$pendingTicksSorted.first(); 119 | 120 | if (!runAllPending && entry.scheduledTime > this.worldInfo.getWorldTotalTime()) { 121 | break; 122 | } 123 | 124 | fl$pendingTicksSorted.remove(entry); 125 | fl$pendingTicksUnSored.remove(entry); 126 | fl$pendingTicksCurrentTick.add(entry); 127 | } 128 | 129 | this.theProfiler.endSection(); 130 | this.theProfiler.startSection("ticking"); 131 | Iterator iterator = fl$pendingTicksCurrentTick.iterator(); 132 | 133 | while (iterator.hasNext()) { 134 | val entry = iterator.next(); 135 | iterator.remove(); 136 | //Keeping here as a note for future when it may be restored. 137 | //boolean isForced = getPersistentChunks().containsKey(new ChunkCoordIntPair(nextticklistentry.xCoord >> 4, nextticklistentry.zCoord >> 4)); 138 | //byte b0 = isForced ? 0 : 8; 139 | byte radius = 0; 140 | 141 | if (this.checkChunksExist(entry.xCoord - radius, entry.yCoord - radius, entry.zCoord - radius, entry.xCoord + radius, entry.yCoord + radius, entry.zCoord + radius)) { 142 | Block block = this.getBlock(entry.xCoord, entry.yCoord, entry.zCoord); 143 | 144 | if (block.getMaterial() != Material.air && Block.isEqualTo(block, entry.func_151351_a())) { 145 | try { 146 | ((FLBlockRoot) block).fl$updateTick(this, entry.xCoord, entry.yCoord, entry.zCoord, rand); 147 | } catch (Throwable throwable1) { 148 | CrashReport crashreport = CrashReport.makeCrashReport(throwable1, "Exception while ticking a fluidlogged block"); 149 | CrashReportCategory crashreportcategory = crashreport.makeCategory("FluidLogging being ticked"); 150 | int k; 151 | 152 | try { 153 | k = this.getBlockMetadata(entry.xCoord, entry.yCoord, entry.zCoord); 154 | } catch (Throwable throwable) { 155 | k = -1; 156 | } 157 | 158 | CrashReportCategory.func_147153_a(crashreportcategory, entry.xCoord, entry.yCoord, entry.zCoord, block, k); 159 | throw new ReportedException(crashreport); 160 | } 161 | } 162 | } else { 163 | this.scheduleBlockUpdate(entry.xCoord, entry.yCoord, entry.zCoord, entry.func_151351_a(), 0); 164 | } 165 | } 166 | 167 | this.theProfiler.endSection(); 168 | fl$pendingTicksCurrentTick.clear(); 169 | return !fl$pendingTicksUnSored.isEmpty(); 170 | } 171 | } 172 | 173 | @Unique 174 | private void fl$initFields() { 175 | if (fl$pendingTicksUnSored == null) { 176 | fl$pendingTicksUnSored = new HashSet<>(); 177 | } 178 | 179 | if (fl$pendingTicksSorted == null) { 180 | fl$pendingTicksSorted = new TreeSet<>(); 181 | } 182 | } 183 | 184 | @Override 185 | public void fl$scheduleFluidUpdate(int x, int y, int z, @NotNull Block block, int delay) { 186 | fl$scheduleFluidUpdateWithPriority(x, y, z, block, delay, 0); 187 | } 188 | 189 | @Override 190 | public void fl$scheduleFluidUpdateWithPriority(int x, int y, int z, @NotNull Block block, int delay, int priority) { 191 | val entry = new NextTickListEntry(x, y, z, block); 192 | //Keeping here as a note for future when it may be restored. 193 | //boolean isForced = getPersistentChunks().containsKey(new ChunkCoordIntPair(nextticklistentry.xCoord >> 4, nextticklistentry.zCoord >> 4)); 194 | //byte b0 = isForced ? 0 : 8; 195 | byte radius = 0; 196 | 197 | if (scheduledUpdatesAreImmediate && block.getMaterial() != Material.air) { 198 | if (block.func_149698_L()) { 199 | radius = 8; 200 | 201 | if (checkChunksExist(entry.xCoord - radius, entry.yCoord - radius, entry.zCoord - radius, entry.xCoord + radius, 202 | entry.yCoord + radius, entry.zCoord + radius)) { 203 | Block block1 = getBlock(entry.xCoord, entry.yCoord, entry.zCoord); 204 | 205 | if (block1.getMaterial() != Material.air && block1 == entry.func_151351_a()) { 206 | ((FLBlockRoot)block1).fl$updateTick(this, entry.xCoord, entry.yCoord, entry.zCoord, rand); 207 | } 208 | } 209 | return; 210 | } 211 | 212 | delay = 1; 213 | } 214 | 215 | if (checkChunksExist(x - radius, y - radius, z - radius, x + radius, y + radius, z + radius)) { 216 | if (block.getMaterial() != Material.air) { 217 | entry.setScheduledTime((long) delay + worldInfo.getWorldTotalTime()); 218 | entry.setPriority(priority); 219 | } 220 | 221 | if (!fl$pendingTicksUnSored.contains(entry)) { 222 | fl$pendingTicksUnSored.add(entry); 223 | fl$pendingTicksSorted.add(entry); 224 | } 225 | } 226 | } 227 | 228 | @Override 229 | public void fl$insertUpdate(int x, int y, int z, @NotNull Block block, int delay, int priority) { 230 | val entry = new NextTickListEntry(x, y, z, block); 231 | entry.setPriority(priority); 232 | if (block.getMaterial() != Material.air) { 233 | entry.setScheduledTime((long) priority + worldInfo.getWorldTotalTime()); 234 | } 235 | if (!fl$pendingTicksUnSored.contains(entry)) { 236 | fl$pendingTicksUnSored.add(entry); 237 | fl$pendingTicksSorted.add(entry); 238 | } 239 | } 240 | 241 | @Override 242 | public @Nullable List<@NotNull NextTickListEntry> fl$getPendingFluidUpdates(@NotNull Chunk chunk, boolean remove) { 243 | 244 | ArrayList<@NotNull NextTickListEntry> result = null; 245 | ChunkCoordIntPair chunkcoordintpair = chunk.getChunkCoordIntPair(); 246 | int i = (chunkcoordintpair.chunkXPos << 4) - 2; 247 | int j = i + 16 + 2; 248 | int k = (chunkcoordintpair.chunkZPos << 4) - 2; 249 | int l = k + 16 + 2; 250 | 251 | for (int pass = 0; pass < 2; ++pass) { 252 | Iterator iterator; 253 | 254 | if (pass == 0) { 255 | iterator = fl$pendingTicksSorted.iterator(); 256 | } else { 257 | iterator = fl$pendingTicksCurrentTick.iterator(); 258 | 259 | if (!fl$pendingTicksCurrentTick.isEmpty()) { 260 | logger.debug("toBeFluidTicked = {}", fl$pendingTicksCurrentTick.size()); 261 | } 262 | } 263 | 264 | while (iterator.hasNext()) { 265 | val entry = iterator.next(); 266 | 267 | if (entry.xCoord >= i && entry.xCoord < j && entry.zCoord >= k && entry.zCoord < l) { 268 | if (remove) { 269 | fl$pendingTicksUnSored.remove(entry); 270 | iterator.remove(); 271 | } 272 | 273 | if (result == null) { 274 | result = new ArrayList<>(); 275 | } 276 | 277 | result.add(entry); 278 | } 279 | } 280 | } 281 | 282 | return result; 283 | } 284 | } 285 | -------------------------------------------------------------------------------- /src/main/java/mega/fluidlogged/internal/FLManager.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of FluidLogged. 3 | * 4 | * Copyright (C) 2025 The MEGA Team, FalsePattern 5 | * All Rights Reserved 6 | * 7 | * The above copyright notice, this permission notice and the word "MEGA" 8 | * shall be included in all copies or substantial portions of the Software. 9 | * 10 | * FluidLogged is free software: you can redistribute it and/or modify 11 | * it under the terms of the GNU Lesser General Public License as published by 12 | * the Free Software Foundation, only version 3 of the License. 13 | * 14 | * FluidLogged is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public License 20 | * along with FluidLogged. If not, see . 21 | */ 22 | 23 | package mega.fluidlogged.internal; 24 | 25 | import com.falsepattern.chunk.api.ArrayUtil; 26 | import com.falsepattern.chunk.api.DataManager; 27 | import gnu.trove.list.array.TIntArrayList; 28 | import lombok.RequiredArgsConstructor; 29 | import lombok.val; 30 | import mega.fluidlogged.Tags; 31 | import mega.fluidlogged.api.FLChunk; 32 | import mega.fluidlogged.internal.mixin.hook.FLPacket; 33 | import mega.fluidlogged.internal.mixin.hook.FLSubChunk; 34 | import mega.fluidlogged.internal.mixin.hook.FLWorld; 35 | import org.jetbrains.annotations.NotNull; 36 | import org.jetbrains.annotations.Nullable; 37 | 38 | import net.minecraft.block.Block; 39 | import net.minecraft.nbt.NBTTagCompound; 40 | import net.minecraft.nbt.NBTTagIntArray; 41 | import net.minecraft.nbt.NBTTagList; 42 | import net.minecraft.network.PacketBuffer; 43 | import net.minecraft.network.play.server.S23PacketBlockChange; 44 | import net.minecraft.world.chunk.Chunk; 45 | import net.minecraft.world.chunk.storage.ExtendedBlockStorage; 46 | import net.minecraftforge.common.util.Constants; 47 | import net.minecraftforge.fluids.Fluid; 48 | import net.minecraftforge.fluids.FluidRegistry; 49 | 50 | import java.nio.ByteBuffer; 51 | import java.util.BitSet; 52 | 53 | public class FLManager implements DataManager.PacketDataManager, DataManager.ChunkDataManager, DataManager.SubChunkDataManager, DataManager.BlockPacketDataManager { 54 | private static final int SUB_CHUNK_COUNT = 16; 55 | private static final int BLOCKS_PER_SUB_CHUNK = 16 * 16 * 16; 56 | private static final int BITS_PER_BYTE = 8; 57 | private static final int BITS_PER_INT = BITS_PER_BYTE * 4; 58 | private static final int BITS_PER_BLOCK = BITS_PER_INT + 1; 59 | private static final int EXTRA_BITS_PER_SUB_CHUNK = BITS_PER_INT * 3 + BITS_PER_BYTE; 60 | private static final int BITS_PER_CHUNK = SUB_CHUNK_COUNT * (BLOCKS_PER_SUB_CHUNK * BITS_PER_BLOCK + EXTRA_BITS_PER_SUB_CHUNK); 61 | private static final int BYTES_PER_CHUNK = BITS_PER_CHUNK / BITS_PER_BYTE; 62 | @Override 63 | public int maxPacketSize() { 64 | return BYTES_PER_CHUNK; 65 | } 66 | 67 | @Override 68 | public void writeChunkToNBT(Chunk chunk, NBTTagCompound nbt) { 69 | val world = chunk.worldObj; 70 | val fl$world = (FLWorld)world; 71 | val updates = fl$world.fl$getPendingFluidUpdates(chunk, false); 72 | if (updates == null) { 73 | return; 74 | } 75 | long time = world.getTotalWorldTime(); 76 | val nbtList = new NBTTagList(); 77 | for (val update: updates) { 78 | nbtList.appendTag(new NBTTagIntArray(new int[]{ 79 | update.xCoord, 80 | update.yCoord, 81 | update.zCoord, 82 | Block.getIdFromBlock(update.func_151351_a()), 83 | (int) (update.scheduledTime - time), 84 | update.priority 85 | })); 86 | } 87 | nbt.setByte("v", (byte) 1); 88 | nbt.setTag("FluidTicks", nbtList); 89 | } 90 | 91 | @Override 92 | public void readChunkFromNBT(Chunk chunk, NBTTagCompound nbt) { 93 | if (nbt.getByte("v") != 1) { 94 | return; 95 | } 96 | if (!nbt.hasKey("FluidTicks", Constants.NBT.TAG_LIST)) { 97 | return; 98 | } 99 | val nbtList = nbt.getTagList("FluidTicks", Constants.NBT.TAG_COMPOUND); 100 | if (nbtList == null) { 101 | return; 102 | } 103 | val fl$world = (FLWorld)chunk.worldObj; 104 | val count = nbtList.tagCount(); 105 | for (int i = 0; i < count; i++) { 106 | val entry = nbtList.func_150306_c(i); 107 | fl$world.fl$insertUpdate(entry[0], entry[1], entry[2], Block.getBlockById(entry[3]), entry[4], entry[5]); 108 | } 109 | } 110 | 111 | @Override 112 | public void cloneChunk(Chunk from, Chunk to) { 113 | // Only used for rendering stuff atm, so copying tick info is not necessary 114 | } 115 | 116 | @RequiredArgsConstructor 117 | private static class FluidIDList { 118 | public final @NotNull BitSet presence; 119 | public final int @NotNull [] ids; 120 | } 121 | private static @Nullable FluidIDList serialize(Fluid @NotNull [] fluids) { 122 | BitSet presence = null; 123 | val ids = new TIntArrayList(); 124 | val length = fluids.length; 125 | for (int i = 0; i < length; i++) { 126 | val fluid = fluids[i]; 127 | if (fluid == null) { 128 | continue; 129 | } 130 | val block = fluid.getBlock(); 131 | if (block == null) { 132 | continue; 133 | } 134 | if (presence == null) { 135 | presence = new BitSet(length); 136 | } 137 | 138 | presence.set(i); 139 | ids.add(Block.getIdFromBlock(block)); 140 | } 141 | if (presence == null) 142 | return null; 143 | return new FluidIDList(presence, ids.toArray()); 144 | } 145 | 146 | private static Fluid @Nullable [] deserialize(int length, @NotNull BitSet presence, int @NotNull [] ids) { 147 | int idsI = 0; 148 | Fluid[] fluids = null; 149 | for (int i = 0; i < length; i++) { 150 | if (presence.get(i)) { 151 | val block = Block.getBlockById(ids[idsI]); 152 | idsI++; 153 | if (block == null) { 154 | continue; 155 | } 156 | val fluid = FluidRegistry.lookupFluidForBlock(block); 157 | if (fluid == null) { 158 | continue; 159 | } 160 | if (fluids == null) { 161 | fluids = new Fluid[length]; 162 | } 163 | fluids[i] = fluid; 164 | } 165 | } 166 | return fluids; 167 | } 168 | 169 | @Override 170 | public void writeToBuffer(Chunk chunk, int subChunkMask, boolean forceUpdate, ByteBuffer buffer) { 171 | val subChunks = chunk.getBlockStorageArray(); 172 | for (int i = 0; i < subChunks.length; i++) { 173 | if ((subChunkMask & (1 << i)) != 0) { 174 | val subChunk = subChunks[i]; 175 | if (subChunk != null) { 176 | val wlSubChunk = (FLSubChunk) subChunk; 177 | val fl = wlSubChunk.fl$getFluidLog(); 178 | if (fl == null) { 179 | buffer.put((byte) 0); 180 | continue; 181 | } 182 | val flState = serialize(fl); 183 | if (flState == null) { 184 | buffer.put((byte)0); 185 | continue; 186 | } 187 | buffer.put((byte)1); 188 | buffer.putInt(fl.length); 189 | val presenceBytes = flState.presence.toByteArray(); 190 | buffer.putInt(presenceBytes.length); 191 | buffer.putInt(flState.ids.length); 192 | buffer.put(presenceBytes); 193 | for (val id: flState.ids) { 194 | buffer.putInt(id); 195 | } 196 | } 197 | } 198 | } 199 | } 200 | 201 | @Override 202 | public void readFromBuffer(Chunk chunk, int subChunkMask, boolean forceUpdate, ByteBuffer buffer) { 203 | val subChunks = chunk.getBlockStorageArray(); 204 | for (int i = 0; i < subChunks.length; i++) { 205 | if ((subChunkMask & (1 << i)) != 0) { 206 | val subChunk = subChunks[i]; 207 | if (subChunk != null) { 208 | val wlSubChunk = (FLSubChunk) subChunk; 209 | if (buffer.get() == (byte) 0) { 210 | wlSubChunk.fl$setFluidLog(null); 211 | continue; 212 | } 213 | val length = buffer.getInt(); 214 | val presenceBytesLength = buffer.getInt(); 215 | val idsLength = buffer.getInt(); 216 | val slice = buffer.slice(); 217 | slice.limit(presenceBytesLength); 218 | buffer.position(buffer.position() + presenceBytesLength); 219 | val presence = BitSet.valueOf(slice); 220 | val ids = new int[idsLength]; 221 | for (int j = 0; j < idsLength; j++) { 222 | ids[j] = buffer.getInt(); 223 | } 224 | val arr = deserialize(length, presence, ids); 225 | wlSubChunk.fl$setFluidLog(arr); 226 | } 227 | } 228 | } 229 | } 230 | 231 | @Override 232 | public void writeSubChunkToNBT(Chunk chunk, ExtendedBlockStorage subChunk, NBTTagCompound nbt) { 233 | val flSubChunk = (FLSubChunk) subChunk; 234 | val fluidLog = flSubChunk.fl$getFluidLog(); 235 | if (fluidLog == null) { 236 | return; 237 | } 238 | val serialized = serialize(fluidLog); 239 | if (serialized == null) { 240 | return; 241 | } 242 | nbt.setInteger("fl$len", fluidLog.length); 243 | nbt.setByteArray("fl$pres", serialized.presence.toByteArray()); 244 | nbt.setIntArray("fl$ids", serialized.ids); 245 | } 246 | 247 | @Override 248 | public void readSubChunkFromNBT(Chunk chunk, ExtendedBlockStorage subChunk, NBTTagCompound nbt) { 249 | val flSubChunk = (FLSubChunk) subChunk; 250 | if (!nbt.hasKey("fl$len", Constants.NBT.TAG_INT) || !nbt.hasKey("fl$pres", Constants.NBT.TAG_BYTE_ARRAY) || !nbt.hasKey("fl$ids", Constants.NBT.TAG_INT_ARRAY)) { 251 | flSubChunk.fl$setFluidLog(null); 252 | return; 253 | } 254 | val len = nbt.getInteger("fl$len"); 255 | val presence = BitSet.valueOf(nbt.getByteArray("fl$pres")); 256 | val ids = nbt.getIntArray("fl$ids"); 257 | val deserialized = deserialize(len, presence, ids); 258 | flSubChunk.fl$setFluidLog(deserialized); 259 | } 260 | 261 | @Override 262 | public void cloneSubChunk(Chunk fromChunk, ExtendedBlockStorage from, ExtendedBlockStorage to) { 263 | val wlFrom = (FLSubChunk) from; 264 | val wlTo = (FLSubChunk) to; 265 | wlTo.fl$setFluidLog(ArrayUtil.copyArray(wlFrom.fl$getFluidLog(), wlTo.fl$getFluidLog())); 266 | } 267 | 268 | @Override 269 | public @NotNull String version() { 270 | return Tags.MOD_VERSION; 271 | } 272 | 273 | @Override 274 | public @Nullable String newInstallDescription() { 275 | return null; 276 | } 277 | 278 | @Override 279 | public @NotNull String uninstallMessage() { 280 | return "Fluidlogged blocks will lose their fluidlogged-ness!"; 281 | } 282 | 283 | @Override 284 | public @Nullable String versionChangeMessage(String priorVersion) { 285 | return null; 286 | } 287 | 288 | @Override 289 | public String domain() { 290 | return Tags.MOD_ID; 291 | } 292 | 293 | @Override 294 | public String id() { 295 | return "fluidLog"; 296 | } 297 | 298 | @Override 299 | public void writeBlockToPacket(Chunk chunk, int x, int y, int z, S23PacketBlockChange packet) { 300 | ((FLPacket)packet).fl$setFluidLog(((FLChunk)chunk).fl$getFluid(x, y, z)); 301 | } 302 | 303 | @Override 304 | public void readBlockFromPacket(Chunk chunk, int x, int y, int z, S23PacketBlockChange packet) { 305 | ((FLChunk)chunk).fl$setFluid(x, y, z, ((FLPacket)packet).fl$getFluidLog()); 306 | } 307 | 308 | @Override 309 | public void writeBlockPacketToBuffer(S23PacketBlockChange packet, PacketBuffer buffer) { 310 | val fluid = ((FLPacket)packet).fl$getFluidLog(); 311 | if (fluid == null) { 312 | buffer.writeBoolean(false); 313 | return; 314 | } 315 | val block = fluid.getBlock(); 316 | if (block == null) { 317 | buffer.writeBoolean(false); 318 | return; 319 | } 320 | val id = Block.getIdFromBlock(block); 321 | buffer.writeBoolean(true); 322 | buffer.writeInt(id); 323 | } 324 | 325 | @Override 326 | public void readBlockPacketFromBuffer(S23PacketBlockChange packet, PacketBuffer buffer) { 327 | val fl$packet = (FLPacket) packet; 328 | if (!buffer.readBoolean()) { 329 | fl$packet.fl$setFluidLog(null); 330 | return; 331 | } 332 | val id = buffer.readInt(); 333 | val block = Block.getBlockById(id); 334 | if (block == null) { 335 | fl$packet.fl$setFluidLog(null); 336 | return; 337 | } 338 | val fluid = FluidRegistry.lookupFluidForBlock(block); 339 | fl$packet.fl$setFluidLog(fluid); 340 | } 341 | } 342 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------