aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/covers
AgeCommit message (Collapse)Author
2021-11-17Revert unintended changes in GT_Cover_ItemMeterGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-11-17Rename GT_CoverBehavior_New to GT_CoverBehaviorBaseGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-11-17convert ItemFilter to use NBTTagCompound storageGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-11-17convert cover data storage to a full nbt tagGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-09-22better spread of channel values when using items of the same itemIDMatt
2021-09-22sendChatToPlayer now sends only the public portionMatt
2021-07-22Added caching to the ME output bus, to reduce stress on ME system in high ↵repo_alt
output rate cases Also, added item detector cover support to the bus, so that the item detector will signal "full" in case of ME failure https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/8231
2021-07-03Remove unnecessary redstone state query for coversGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-06-26remove debug message and fix the tooltipGlodBlock
2021-06-26fix the typoGlodBlock
2021-06-25add item filter coverGlodBlock
This stuff will be rewritten when cover supports NBT.
2021-06-25Fix redstone cover UX being weirdGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-06-07removed covervariable as a parameter and applied proper maskingMatt
2021-06-06Uses GT_WirelessRedstoneCover packets nowMatt
2021-06-05Made fixes based on Glease's suggestionsMatt
2021-06-05fixed some bit masking logicMatt
2021-06-04replaced another magic bitmaskMatt
2021-06-04Clean ups and fixesMatt
2021-06-04Private channel is now implementedMatt
2021-06-04User can only manually change the lower 16 bits of the coverVariableMatt
2021-06-01Merge remote-tracking branch 'origin/experimental' into experimentalMatt
2021-06-01Made the redstone reciever safer to use on public serversMatt
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-15Fix machine controller gui not being properly initializedGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-27fix(textfiles): add missing neline at end of filesLéa Gris
git and diff tools will complain if text file does not end with a newline. Fixed all text files in the repository with Linux bash shell: ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${mime##text/*}" ]; then tail -c1 "$f" | read -r _ || printf '\n' >>"$f"; fi; done ```
2021-04-02Added scanning data reflecting if device shut down.charles
Added notification to player that device shut down. Added scanning data reflecting if the device was disabled by soft mallet, cover, etc.
2021-03-30Added GUI interface for cover "Safe Mode"charles
Added tracking of last player to access a cover for future notification purposes.
2021-03-30Made it so that machine control covers disable themselves when thecharles
machine runs out of energy
2021-03-04Allow adjusting tick rate of fluid regulatorGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-02-26fix regulators not workingkorneel vandamme
2021-02-26fix regulator ignoring pipeconectionsbotn365
fix that regulators would draw /fill fluids from a pipe even if it wasent conected to that side #7523
2021-01-24Fixed item meter cover for non-quantum chests. Didn't notice that _all_ GT ↵repo_alt
tiles are marked as "digital chest"
2021-01-17More removal of commented out code, small formatting adjustmentsJason Mitchell
2021-01-07fixed item detector cover on quantum chests (#398)repo-alt
Co-authored-by: bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>
2020-12-29Remove leftover code of logistics energy costGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2020-12-29Remove all energy cost of moving fluid and itemsGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2020-12-19Remove EU costs from coversDavid Lindström
2020-12-13Cache steam fluid IDs on startup and use those instead of string ↵Jason Mitchell
comparisions everywhere. NOTE: Also drops MFR steam compat
2020-12-13removed redundant variableKiloJoel
2020-12-13removed redundant methodKiloJoel
2020-12-13added steam valve coverKiloJoel
2020-11-16use moveMultipleItemStacks to variuos functionskorneel vandamme
2020-06-20Item detector cover GUI fix. How'd i miss that.moller21
2020-06-03coverguis: Cleaned up text.moller21
2020-06-02Not for the arm either ...moller21
2020-06-02Should not break existing covers now.moller21
2020-06-01Check first, then commit next timemoller21
2020-06-01Added gui's for the rest of em covers.moller21
2020-05-10Cover GUI: added fluid regulator, finished open on shiftrightclick.moller21
2020-05-06Cover gui: Right click to open instead take.2moller21