aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-31+ Added config to disable tooltips on EIO ingots.Jordan Byrne
$ Fixed worldgen issue in Everglades. $ Fixed Power Sub-station not handling output voltages correctly. $ Fixed Ore vein bias issue for Everglades gen. - https://github.com/GTNewHorizons/GT5-Unofficial/commit/05b361cf7f29f1cd24d69bcea8630f3ae470b182#diff-8accfe00d7b275149176462fbc5fcf59
2018-01-31+ Added tooltips for Everglades blocks.Jordan Byrne
+ Added new textures for future use.
2018-01-30$ Fix Industrial centrifuge not inheriting correct textures for hatches/buses.Jordan Byrne
2018-01-30^ Version bump to 1.7.0pre2Jordan Byrne
% Toned down Staballoy Construct explosion. % Changed ore Density during generation in Toxic Everglades. % Updated en_US.lang.
2018-01-30$ Fixed super laggy worldgen in Toxic Everglades. Cached all sanitized ↵Jordan Byrne
strings in WorldGen_GT_Ore_Layer.java to save on serious cpu usage & Removed all uses of CSPRNG.
2018-01-30+ Added recipes for processing Sludge/Waste water.Jordan Byrne
- Disabled Toxic Everglade Ore generation. % Tweaked Sludge/Waste water textures to be less blurry.
2018-01-30+ Added recipe to craft the Activated Alkalus Disk.Jordan Byrne
+ Added recipe to craft Mystic Frame portal blocks. % Tweaked Toxic Everglades Portal. % Tweaked sludge textures. $ Stopped Mining Explosive using CSPRNG.
2018-01-30+ Added recipes to get Trinium.Jordan Byrne
2018-01-30$ Stopped using CSRPNG's in most cases.Jordan Byrne
2018-01-30Merge pull request #201 from codewarrior0/checkwater-only-fills-basinAlkalus
Change IndustrialWashPlant.checkWater() to only fill the basin
2018-01-30% Updated capes list.Jordan Byrne
2018-01-29Change IndustrialWashPlant.checkWater() to only fill the basinDavid Vierra
No longer tries to do `checkMachine()` things like add buses and hatches
2018-01-30Merge pull request #200 from codewarrior0/no-extra-rngsAlkalus
Don't create a new RNG instance for each call to MathUtils.randInt etc
2018-01-29Don't create a new RNG instance for each call to MathUtils.randInt etcDavid Vierra
Fixes all kinds of performance problems. These RNGs aren't cheap to create.
2018-01-29$ Fixed issue with ID collision when loaded in GTNH.Jordan Byrne
2018-01-29$ Updated build.gradle to compile against Java 8.Jordan Byrne
^ Bumped Recommended version.
2018-01-29^ Version Bump to 1.7.0-prerelease.Jordan Byrne
2018-01-29+ Added Patron Capes.Jordan Byrne
% Changed Power Sub-Station recipe, harder in GTNH. Closes #194. Also closes https://github.com/GTNewHorizons/NewHorizons/issues/2517. % Tweaked Industrial Sifter & Wash Plant items/operation. % Greatly improved the Iron Blast Furnace for GT 5.09. It is now double the speed of a Bronze/Bricked Blast Furnace.
2018-01-29Merge pull request #196 from codewarrior0/refactor-check-recipeAlkalus
$ Rewrite and refactor checkRecipe() for several multiblocks, restore machine sounds $ Fixes #182. $ Fixes #183. $ Fixes #184.
2018-01-29Merge pull request #193 from codewarrior0/build-with-segment-jarAlkalus
Embed Segment.jar into GT-PlusPlus.jar during gradlew build.
2018-01-29Fix broken multiblocks - remove hacky `polluteEnvironment()` (#191)David Vierra
This code path should never have worked. `getDeclaredField()` only searches the given class and not any of its superclasses - because `mPollution` is declared in a superclass, `null` will always be returned.
2018-01-29+ Added Trinium Titanium Cable/wires.Jordan Byrne
+ Redid material components to better use GT texture assets. % Gave all 32 ore types new TextureSets. % Doubled capacity of all fluid pipes. % Moved Item/Block creation from init() to preInit(). $ Fixed Sludge fluid texture. $ Moved Darkworld from being a child mod into it's own mod, Renamed to Toxic Everglades. $ Bundled SegmentHelper.java, for future development ease.
2018-01-29% Improved tooltip for Fluorite Ore.Jordan Byrne
% More ASM work on getDrops fix. $ Made GT++ Materials utilise GT TextureSets. $ Made Ore blocks use the most prominent texture set based on it's component materials. $ Fixed https://github.com/GTNewHorizons/NewHorizons/issues/2522. $ Fixed materials that require a blast furnace being fluid extractable. $ Fixed https://github.com/GTNewHorizons/NewHorizons/issues/2530.
2018-01-28Make sure checkRecipeGeneric() resets the progress time and outputs.David Vierra
Fixes a bug where if an input stack is of the right type but the amount is not enough, proceeds with the last successful recipe.
2018-01-28Rewrite and refactor checkRecipe() for several multiblocks, restore machine ↵David Vierra
sounds `checkRecipeGeneric()` implements parallel processing, EU/t discounts and speed boosts, increased random chances, and can be used to consider each input bus individually (as seen in the Industrial Material Press) to allow each bus to use a different Configuration Circuit. Also considers the voltage input limit of the multiblock when counting recipes to do in parallel - if the energy hatch is too small, it will process fewer recipes at once. Plays the machine's sound, if any, on success. `checkRecipeGeneric()` also checks `canBufferOutput()` and will pause the machine if it has no bus/hatch room for the recipe output. `getValidOutputSlots()` is rewritten as `canBufferOutput()`, which now checks both the item output buses and fluid output hatches to make sure recipe output can be accepted. This is used to pause a machine instead of allowing it to continue working and void outputs, if the outputs can't be stored in a bus and/or hatch. NOTE: `canBufferOutput()` doesn't consider parallel processing, so there are a few recipes where, if done in parallel, it may get a false positive on the buffer check and void some outputs. In practice, this will rarely happen. Removed unused imports, fields, and locals. Industrial Centrifuge now uses `checkRecipeGeneric()` with 4 parallel recipes and a 40% speed boost. Industrial Coke Oven now uses `checkRecipeGeneric()` with 12 parallel recipes if using Heat-Resistant Casings, or 24 if using Heat-Proof Casings. Sound plays while processing. Industrial Cutting Machine now uses `checkRecipeGeneric()` with 2 parallel recipes and a 60% speed boost. Pollution removed since the Machine is built with no Muffler Hatch. Industrial Electrolyzer now uses `checkRecipeGeneric()` with 2 parallel recipes and a 40% speed boost. Maceration Stack now uses `checkRecipeGeneric()` with 8*tTier parallel recipes, a 60% speed boost, and an increased amount (~33%) of random outputs. Sound plays while processing. Material Press now uses `checkRecipeGeneric()` with 2 parallel recipes and a 50% speed boost. Each input bus is considered separately for finding recipes, allowing each bus to hold a different Configuration Circuit. Sound plays while processing. Industrial Sifter now uses `checkRecipeGeneric()` with 2 parallel recipes, a 400% speed boost, and an increased amount (~15%) of random outputs. Changed particles to appear above the sieve grates. Industrial Thermal Centrifuge now uses `checkRecipeGeneric()` with 2 parallel recipes and a 60% speed boost. Industrial Washing Plant now uses `checkRecipeGeneric()` with 2 parallel recipes and an 80% speed boost. Stone Dust outputs are no longer deleted. Wire Factory now uses `checkRecipeGeneric()` with 2 parallel recipes and a 60% speed boost. Sound plays while processing.
2018-01-28Fix #184 - Large Thermal Centrifuge not completing multiblockDavid Vierra
2018-01-25$ Further fixes to Pollution and Multiblocks, revision of ↵Jordan Byrne
7ddb7f5e8ed9fe60b730183c7a04f3bce3b8f815. + Added a handler for class transformers. % Added test case to tiered tanks for NBT storing. - Removed logging from some reflection calls.
2018-01-24Embed Segment.jar into GT-PlusPlus.jarDavid Vierra
2018-01-24Reformat build.gradleDavid Vierra
2018-01-24$ Fixed Interface incompatibility between 5.08 and .09.Jordan Byrne
2018-01-24$ Several 5.08 compat fixes.Jordan Byrne
$ Fixed pollution, which was causing all multiblocks to fail. This was pointed out in #191 by @CodeWarrior0, however I decided to re-do it myself to better handle the .08 compat. $ Fixed all multiblocks being broken as fuck. Fixes #190, fixes #186 and also fixes #176. - Removed some useless logging from the mining explosives.
2018-01-08+ Added an interface to make tooltips on tile entities more flexible.Jordan Byrne
+ Actually added the recipe for the Mining Explosives this time. + Attempted to add a framework for packet handling.
2018-01-08+ Added a recipe to craft Mining Explosives.Jordan Byrne
+ Added missing file. WorldGen_GT.java. % Tweaked Mining Explosive logic. % Tweaked entity fuse variable in primed mining explosive. % Swapped some XSTR's to CSPRNG's. $ Fixed mining explosives renderer. $ Fixed Tesla Tower attacking Items on the ground.
2017-12-29+ Added more new ore veins.Jordan Byrne
% Tweaked some ore veins. % Tweaked size of debug tool's area clear to double. $ Fixed an issue that broke tooltips. $ Quite a lot of back-end work for ore generation in the dark dimension. $ Fixed improper generation of the GT++ WorldGen configuration file. $ Fixed ore vein densities. $ Fixed ore veins not generating as expected.
2017-12-29+ Added the last 15 new ores.Jordan Byrne
+ Gave custom REE materials a chemical tooltip. % Tweaked colours of custom REE dusts. % Tweaked Fish trap recipe to reduce duplicate code.
2017-12-29+ Add Gadolinium, Samarium, Ytterbium & Lanthanum if they do not exist.Jordan Byrne
+ Added new recipe for production of Fluorite. % Some Alloys now use Phosphor instead of Phosphorus. % Changed Ore Block unlocalized name. $ Fixed ore itemblock not showing Chemical Formula. $ Greatly improved radiation handler. $ Fixed old fluorite ore not generating properly.
2017-12-29+ Added dehydrator recipes for denser ore types.Jordan Byrne
$ Fixed Ore Blocks not generating as intended. % Improved Ore Generator.
2017-12-29+ Added several new ore materials.Jordan Byrne
$ Fixed bug where ores generated fluids. $ Fixed issue where old Fluorite ores still exist. $ Fixed issue where ore processing recipes were generated incorrectly. $ Partially implemented smooth lighting on GT++ Ores.
2017-12-29% Localized the Plasma Death Message.Jordan Byrne
$ Fixed electrolyzer recipes for ore dust. $ Fixed bug with material generation system. + Added a custom renderer for the ore blocks. $ Fixed renderer issue where the background texture was incorrect.
2017-12-28+ Added an API method for getting material parts.Jordan Byrne
+ Added helper fluid methods. - Stopped ore materials generating furnace recipes.
2017-12-28+ Added 3 new batteries.Jordan Byrne
$ Fixed Circuits so that each one has a valid replacement type. $ Fixed a bug some materials had invalid radiation levels. $ Fixed crushed ore item type textures. + Added recipes for all crushed ore items. + Added processing recipes for all crushed ore items.
2017-12-24+ More Ore Work.Jordan Byrne
2017-12-24+ Added the Tesla Tower for base defence.Jordan Byrne
2017-12-24> Why does Git make me do these? arghhh...Jordan Byrne
Merge branch 'master' of https://github.com/draknyte1/GTplusplus # Conflicts: # src/Java/gtPlusPlus/core/material/ALLOY.java # src/Java/gtPlusPlus/core/material/ELEMENT.java # src/Java/gtPlusPlus/core/material/Material.java # src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java
2017-12-22+ More additions for new dimension content, mostly ores.Draknyte1
2017-12-21+ Added a better Ai and combat mechanics to the Staballoy Constructs.Draknyte1
+ Tried to implement new World generation for my dimension. % Small tweak to gitignore.
2017-12-21+ Added a dimension ID config option which it now will try use if available.Draknyte1
% More work on the Dimension again. $ Fixed NPE caused by disabled material handler. $ Fixed bad fluid used in world generation. # Fixed spawn rate of mobs in custom dimension.
2017-12-21^ Version Bump.Draknyte1
2017-12-20- Disabled some logging.Draknyte1
% Minor Project Clean-up, added missing Override annotations to 100+ methods & removed pointless casts. % Moved Logging to it's own class. $ Fixed Multi-block handling of Pollution. $ Fixed the GT 5.09 material enabler system. (From My Side, it's still borked on GTs). + Added a Dynamic Proxy invocation for IMaterialHandler. + Added an AutoMap data type, which is a Auto-incremental ID'd Hashmap wrapper.
2017-12-20+ Added support for GTNH Trinium.Draknyte1
$ Fixed excessive fluid cells being generated. $ Further improve material recycling recipes.