aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/boilers
AgeCommit message (Collapse)Author
2022-08-27Update buildscript & apply spotless (#1306)Raven Szewczyk
* Update dependencies * Update buildscript, apply spotless
2022-08-24Disable calcification when using distilled water (#1290)Stēlla Caerulea
Disable calcification when using distilled water.
2022-07-23add(api/enums): particle and sound effect enumerations (#1154)Léa Gris
* add(api/enums): particle and sound effect enumerations - Adds new GregTech API enumerations: - `ParticleFX`: Enumerates known EntityFX particles. - `SoundResource`: Enumerates known sounds with, id and ResourceLocation. - Refactors code to use the new enumerations instead of string literals. - Uses `ParticleFX` and `onRandomDisplayTick` to improve or implement new particle effects for these machines: - BBF: Adds random flames in front of the firebox. - Steam machines: Changes pressure-exhaust particles to white vapour, rather than dark smoke. - Magic Energy Absorber: Adds random effect, of absorbed magical purple particles, by the EnderDragon Egg siphon. - Forge Hammer: Adds sparse random sparks, ejected from the main face.
2022-07-18feat(tile): onRandomDisplayTick (#1138)Léa Gris
Adds onRandomDisplayTick method to the IGregTechTileEntity interface that can proxy randomDisplayTick from block. This allows to delegate block particles to the tile, with a client-side-only processing. Includes reference implementation for the Bronze Boiler
2022-01-30Waila handling was all in one place, distribute it now that it's in GT5u ↵Jason Mitchell
proper. (#907)
2021-11-25changed single block boilers to use per second for more precisionboubou_19
2021-11-24centralized pollution for GT boilersboubou_19
2021-11-17convert cover data storage to a full nbt tagGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-08-01Merge remote-tracking branch 'origin/experimental' into boilerTimeConqueror
2021-08-01Boiler: when filled with bucket being in creative mode, it doesn't transform ↵TimeConqueror
water bucket back to empty bucket.
2021-08-01Visibility changes & new methods in GT_MetaTileEntity_Boiler for using them ↵TimeConqueror
in GTPP
2021-08-01Merge branch 'experimental' into code-improvementsAndrey
2021-08-01GT_MetaTileEntity_Boiler: Forgot to replace sendSoundTimeConqueror
2021-08-01Improved readability of GT_MetaTileEntity_Boiler#doSoundTimeConqueror
2021-07-29Add clay bucket ore prefix; fix oredictingD-Cysteine
2021-07-24Fix method formattingD-Cysteine
2021-07-24Update single-block boiler GUI to use getCapacity()D-Cysteine
Update single-block boiler GUI to use GT_MetaTileEntity_Boiler.getCapacity() for computing water and steam fill percentages. Also change lava boiler to have 32000 capacity (from 16000).
2021-07-01Improve lava boiler tooltipGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-06-04move the comment to where it belongsGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-06-04Fix ancient copy paste problemGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-06-03Prevent integer overflow in solar boilerGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-05-24feat(glow): iconset machines glow supportLéa Gris
- Add glow support for all sides and states of iconset machines (same as with basicmachines). Automated code cleanup with IDEA of: - Optiimise all imports (remove unused, sort) - Reorder all modifiers to the canonical preferred order (as stated in the Java Language Specification) - Add all missing @Override annotations
2021-05-21feat(render): implementation-free api texture factoryLéa Gris
Provides an implementation-free API Texture factory an builder. Deprecates gregtech.api.objects.GT_*Texture.java classes Once all GregTech add-on will be migrated to the new implemnetation-free API, changes to the implementation will not affect the add-on. For now, this API allow rendering of in-world glow textures. In-inventory/hand rendering of glow texture require implementation changes that are postponed until no add-on uses the deprecated embedded implementation API.
2021-05-21fix(render): move new textures rendering to new packageLéa Gris
Old textures rendering are kept in api/objects for backward compatibility. The old textures rendering does not handle glow textures or independant inventory tessellation. The old textures will only work with the old GT_Renderer_Block class New textures rendering with own tessellation in inventory and handling of glow emisssive textures are moved to the api/render package. These must not be used with the Old GT_Renderer_Block class or it will crash with: Already Tessellating Exception from the Tessellator class
2021-05-21feat(render): active high pressure lava boiler glowLéa Gris
2021-05-21feat(render): active boiler glowLéa Gris
2021-04-24cleanup(todo): remove done todo tasks mentionsLéa Gris
WAILAPlugins has been updated to the new solar boiler interface. Deprecated methods are left behind for backward compat with older plugins. Rebase from experimental
2021-04-24Optimize config codeGlease
1. Reuse same config across all solar boilers of the same class 2. Remove shading of config field in subclass Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-24fixes(solarboiler): integer math, waila plugin interface, configLéa Gris
- Fix integer math of getProductionPerSecond by moving the multiplier ahead. - Fix and deprecate WAILAPlugins interface by returning ratio adjusted values. - Simplify the inner Config class.
2021-04-24impr(solarboilers): abstracted the configLéa Gris
2021-04-24fix(solarboilers): fixes and QOL improvementsLéa Gris
- Change run-time counter from seconds to ticks since solar boilers are ticking every 10 ticks, or 0.5 second. - Prevent run-time counter from overflowing Integer.MAX_VALUE ticks. - Fix missing check of available steam before pushing to output. - Fix the cool-down rate that broke in GTNH 2.1.0.6. - Make the solar boilers entirely configurable.
2021-04-24impr(solarboilers): configurable solar boilersLéa Gris
2021-04-24refactor(solarboilers): reorganise cleanup factorise codeLéa Gris
2021-04-24Fix solar boiler heat up speedGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-14Fix waila display for solar boilersGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-13Fix solar boiler outputting to wrong directionGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-03Polished GT_MetaTileEntity_Boiler (#492)bartimaeusnek
2021-04-03Ensure conservation of masses in boilersGlease
Unified single block boiler logic Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-03-20Expose all fluid tanks properly when there are more than one internal tankGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-03-11Minor improvementsbartimaeusnek
2021-03-11Implemented Builder Patternbartimaeusnek
2021-03-10Implemented Requestsbartimaeusnek
2021-03-10Refactor World Eventsbartimaeusnek
World events have way to many parameters, so the code gets unreadable, this commit fixes that behavior.
2021-01-17More removal of commented out code, small formatting adjustmentsJason Mitchell
2020-07-25feat(Gregtech)New Boiler FuelsDreamMasterXXL
Add Cactus and Sugar Fuesl from gt++ to the single Block Boiler burn list Allow for Cactus/sugar coke/coal to be used as fuel in coal boilers. #6438 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6438
2020-04-10Void miner adjustments (#262)bartimaeusnek
* Added all Ores to Voidminer in DeepDark + removed Infinity Ore Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> * renormalize line endings Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2019-12-22Make stuff visible for WAILAJason Mitchell
2019-12-174412/4883 Solar Boiler rebalance and bugfixRichard Hendricks
2019-06-15+adjusted HP solar boiler to match the tooltipbartimaeusnek
+re-added solar GUI
2019-05-24Added HP Solar Steam Boilerbartimaeusnek
+added recipe +removed unnessecary ", new Object[0]" for vargars methodes Signed-off-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>