Adv seismic prospector reworked (#1419)

* Adv Seismic Prospector reworked

Prospects from NW to SE 9 of oilfields (6x6 chunks each) and output min-max oil amount

* deleted formatting codes

* Cleanup

* Added description

* Added description

* Cleanup imports

* Adv Seismic Prospector
This commit is contained in:
Wo0kiee 2018-04-12 03:31:01 +06:00 committed by Blood-Asp
parent 860cc0daf0
commit fcdb80b886
2 changed files with 80 additions and 47 deletions

View file

@ -1973,8 +1973,7 @@ public class GT_Utility {
return false; return false;
} }
public static ArrayList<String> sortByValueToList( Map<String, Integer> map ) public static ArrayList<String> sortByValueToList( Map<String, Integer> map ) {
{
List<Map.Entry<String, Integer>> list = List<Map.Entry<String, Integer>> list =
new LinkedList<Map.Entry<String, Integer>>( map.entrySet() ); new LinkedList<Map.Entry<String, Integer>>( map.entrySet() );
Collections.sort( list, new Comparator<Map.Entry<String, Integer>>() Collections.sort( list, new Comparator<Map.Entry<String, Integer>>()
@ -2151,8 +2150,9 @@ public class GT_Utility {
ArrayList<String> tOilsTransformed = new ArrayList<String>(aOils.size()); ArrayList<String> tOilsTransformed = new ArrayList<String>(aOils.size());
for (String aStr : aOils) { for (String aStr : aOils) {
String[] aStats = aStr.split(","); String[] aStats = aStr.split(",");
tOilsTransformed.add(aStats[3] + " " + aStats[2] + "L"); tOilsTransformed.add(aStats[0] + ": " + aStats[1] + "L " + aStats[2]);
} }
tNBT.setString("prospection_oils", joinListToString(tOilsTransformed)); tNBT.setString("prospection_oils", joinListToString(tOilsTransformed));
tNBT.setString("prospection_bounds", aNear + "|" + aMiddle + "|" + aRadius); tNBT.setString("prospection_bounds", aNear + "|" + aMiddle + "|" + aRadius);
@ -2194,7 +2194,7 @@ public class GT_Utility {
NBTTagList tNBTList = new NBTTagList(); NBTTagList tNBTList = new NBTTagList();
String tPageText = "Advanced prospection\n" String tPageText = "Advanced prospection\n\n"
+ tPos + "\n" + tPos + "\n"
+ "Results:\n" + "Results:\n"
+ "- Close Range Ores: " + (tNearOres != null ? tNearOres.length : 0) + "\n" + "- Close Range Ores: " + (tNearOres != null ? tNearOres.length : 0) + "\n"
@ -2203,20 +2203,36 @@ public class GT_Utility {
+ "- Oils: " + (tOils != null ? tOils.length : 0) + "\n\n" + "- Oils: " + (tOils != null ? tOils.length : 0) + "\n\n"
+ "Lists was sorted by volume"; + "Lists was sorted by volume";
tNBTList.appendTag(new NBTTagString(tPageText)); tNBTList.appendTag(new NBTTagString(tPageText));
if (tNearOres != null) if (tNearOres != null)
fillBookWithList(tNBTList, "Close Range Ores%s\n\n", ", ", 20, tNearOres); fillBookWithList(tNBTList, "Close Range Ores%s\n\n", ", ", 20, tNearOres);
if (tMiddleOres != null) if (tMiddleOres != null)
fillBookWithList(tNBTList, "Mid Range Ores%s\n\n", ", ", 20, tMiddleOres); fillBookWithList(tNBTList, "Mid Range Ores%s\n\n", ", ", 20, tMiddleOres);
if (tFarOres != null) if (tFarOres != null)
fillBookWithList(tNBTList, "Far Range Ores%s\n\n", ", ", 20, tFarOres); fillBookWithList(tNBTList, "Far Range Ores%s\n\n", ", ", 20, tFarOres);
tPageText = "Ore notes\n\n"
+ "Close range:\nR <= " + tBounds[0] + "\n"
+ "Mid range:\n" + tBounds[0] + " < R <= " + tBounds[1] + "\n"
+ "Far range:\n" + tBounds[1] + " < R <= " + tBounds[2] + "\n"
+ "\n"
+ "[F][F][F][F][F]" + "\n"
+ "[F][M][M][M][F]" + "\n"
+ "[F][M][C][M][F]" + "\n"
+ "[F][M][M][M][F]" + "\n"
+ "[F][F][F][F][F]";
tNBTList.appendTag(new NBTTagString(tPageText));
if (tOils != null) if (tOils != null)
fillBookWithList(tNBTList, "Oils%s\n\n", "\n", 9, tOils); fillBookWithList(tNBTList, "Oils%s\n\n", "\n", 9, tOils);
tPageText = "Notes\n\n" tPageText = "Oil notes\n\n"
+ "Close range:\nR <= " + tBounds[0] + "\n" + "Prospects from NW to SE 324 chunks (9 oilfields) around and gives min-max amount" + "\n\n"
+ "Mid range:\n" + tBounds[0] + " < R <= " + tBounds[1] + "\n" + "[1][2][3]" + "\n"
+ "Far range:\n" + tBounds[1] + " < R <= " + tBounds[2]; + "[4][5][6]" + "\n"
+ "[7][8][9]" + "\n"
+ "\n"
+ "[5] - Prospector";
tNBTList.appendTag(new NBTTagString(tPageText)); tNBTList.appendTag(new NBTTagString(tPageText));
tNBT.setString("author", tPos); tNBT.setString("author", tPos);

View file

@ -12,7 +12,6 @@ import gregtech.api.objects.GT_RenderedTexture;
import gregtech.api.objects.ItemData; import gregtech.api.objects.ItemData;
import gregtech.api.util.GT_OreDictUnificator; import gregtech.api.util.GT_OreDictUnificator;
import gregtech.api.util.GT_Utility; import gregtech.api.util.GT_Utility;
import gregtech.common.GT_UndergroundOil;
import gregtech.common.blocks.GT_Block_Ores_Abstract; import gregtech.common.blocks.GT_Block_Ores_Abstract;
import gregtech.common.blocks.GT_TileEntity_Ores; import gregtech.common.blocks.GT_TileEntity_Ores;
import ic2.core.Ic2Items; import ic2.core.Ic2Items;
@ -23,25 +22,26 @@ import net.minecraft.item.Item;
import net.minecraft.item.ItemStack; import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity; import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.ChunkCoordIntPair; import net.minecraft.world.ChunkCoordIntPair;
import net.minecraft.world.ChunkPosition; import net.minecraft.world.chunk.Chunk;
import net.minecraftforge.fluids.FluidStack; import net.minecraftforge.fluids.FluidStack;
import java.util.HashMap; import java.util.*;
import java.util.Map;
public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_BasicMachine { import static gregtech.common.GT_UndergroundOil.undergroundOilReadInformation;
public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_BasicMachine {
boolean ready = false; boolean ready = false;
int radius; int radius;
int near; int near;
int middle; int middle;
int step; int step;
private int mOilId = 0;
private ArrayList<Chunk> mOilFieldChunks = new ArrayList<Chunk>();
public GT_MetaTileEntity_AdvSeismicProspector(int aID, String aName, String aNameRegional, int aTier, int aRadius, int aStep) { public GT_MetaTileEntity_AdvSeismicProspector(int aID, String aName, String aNameRegional, int aTier, int aRadius, int aStep) {
super(aID, aName, aNameRegional, aTier, 1, // amperage super(aID, aName, aNameRegional, aTier, 1, // amperage
"Place, activate with explosives (" "",
+ "8 Glyceryl, "
+ "32 TNT or "
+ "16 ITNT), use Data Stick",
1, // input slot count 1, // input slot count
1, // output slot count 1, // output slot count
"Default.png", // GUI name "Default.png", // GUI name
@ -61,6 +61,16 @@ public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_Ba
step = aStep; step = aStep;
} }
public String[] getDescription() {
return new String[]{
"Place, activate with explosives ("
+ "8 Glyceryl, "
+ "32 TNT or "
+ "16 ITNT), use Data Stick",
"Ore prospection area 191x191 blocks",
"Oil prospection area 3x3 oilfields"};
}
protected GT_MetaTileEntity_AdvSeismicProspector(String aName, int aTier, String aDescription, ITexture[][][] aTextures, protected GT_MetaTileEntity_AdvSeismicProspector(String aName, int aTier, String aDescription, ITexture[][][] aTextures,
String aGUIName, String aNEIName, int aNear, int aMiddle, int aRadius, int aStep) { String aGUIName, String aNEIName, int aNear, int aMiddle, int aRadius, int aStep) {
super(aName, aTier, 1, aDescription, aTextures, 1, 1, aGUIName, aNEIName); super(aName, aTier, 1, aDescription, aTextures, 1, 1, aGUIName, aNEIName);
@ -108,7 +118,7 @@ public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_Ba
prospectOres(tNearOres, tMiddleOres, tFarOres); prospectOres(tNearOres, tMiddleOres, tFarOres);
// prospecting oils // prospecting oils
HashMap<String, Integer> tOils = new HashMap<String, Integer>(); ArrayList<String> tOils = new ArrayList<String>();
prospectOils(tOils); prospectOils(tOils);
GT_Utility.ItemNBT.setAdvancedProspectionData(mTier, GT_Utility.ItemNBT.setAdvancedProspectionData(mTier,
@ -117,7 +127,7 @@ public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_Ba
this.getBaseMetaTileEntity().getYCoord(), this.getBaseMetaTileEntity().getYCoord(),
this.getBaseMetaTileEntity().getZCoord(), this.getBaseMetaTileEntity().getZCoord(),
this.getBaseMetaTileEntity().getWorld().provider.dimensionId, this.getBaseMetaTileEntity().getWorld().provider.dimensionId,
GT_Utility.sortByValueToList(tOils), tOils,
GT_Utility.sortByValueToList(tNearOres), GT_Utility.sortByValueToList(tNearOres),
GT_Utility.sortByValueToList(tMiddleOres), GT_Utility.sortByValueToList(tMiddleOres),
GT_Utility.sortByValueToList(tFarOres), GT_Utility.sortByValueToList(tFarOres),
@ -128,39 +138,46 @@ public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_Ba
return true; return true;
} }
private void prospectOils(HashMap<String, Integer> aOils) { private void prospectOils(ArrayList<String> aOils) {
int tLeftXBound = GT_Utility.getScaleCoordinates(this.getBaseMetaTileEntity().getXCoord() - radius, 16); FluidStack tFluid;
int tRightXBound = GT_Utility.getScaleCoordinates(this.getBaseMetaTileEntity().getXCoord() + radius, 16);
int tLeftZBound = GT_Utility.getScaleCoordinates(this.getBaseMetaTileEntity().getZCoord() - radius, 16); Chunk tChunk = getBaseMetaTileEntity().getWorld().getChunkFromBlockCoords(getBaseMetaTileEntity().getXCoord(), getBaseMetaTileEntity().getZCoord());
int tRightZBound = GT_Utility.getScaleCoordinates(this.getBaseMetaTileEntity().getZCoord() + radius, 16); int range = 6; //(int)Math.ceil((double)radius / 16);
int xChunk = (tChunk.xPosition / range) * range - ((tChunk.xPosition < 0 && tChunk.xPosition % range != 0) ? range : 0);
int zChunk = (tChunk.zPosition / range) * range - ((tChunk.zPosition < 0 && tChunk.zPosition % range != 0) ? range : 0);
HashMap<ChunkCoordIntPair, FluidStack> tFluids = new HashMap<>(); LinkedHashMap<ChunkCoordIntPair, FluidStack> tFluids = new LinkedHashMap<>();
int oilFieldCount = 0;
try { try {
for (int x = tLeftXBound; x <= tRightXBound; ++x) for (int z = -1; z <= 1; ++z) {
for (int z = tLeftZBound; z <= tRightZBound; ++z) for (int x = -1; x <= 1; ++x) {
{ ChunkCoordIntPair cInts = getBaseMetaTileEntity().getWorld().getChunkFromChunkCoords(x, z).getChunkCoordIntPair();
ChunkPosition tPos = new ChunkPosition(GT_Utility.getScaleCoordinates(x*16,96), 0, GT_Utility.getScaleCoordinates(z*16,96)); ArrayList<Integer> minMaxValue = new ArrayList<>();
ChunkCoordIntPair cInts = getBaseMetaTileEntity().getWorld().getChunkFromChunkCoords(tPos.chunkPosX,tPos.chunkPosZ).getChunkCoordIntPair();
FluidStack tFluid = GT_UndergroundOil.undergroundOilReadInformation(getBaseMetaTileEntity().getWorld().getChunkFromChunkCoords(tPos.chunkPosX,tPos.chunkPosZ)); for (int i = 0; i < range; i++) {
if (tFluid != null) for (int j = 0; j < range; j++) {
if (tFluids.containsKey(cInts)) { tChunk = getBaseMetaTileEntity().getWorld().getChunkFromChunkCoords(xChunk + i + x * 6, zChunk + j + z * 6);
if (tFluids.get(cInts).amount<tFluid.amount) tFluid = undergroundOilReadInformation(tChunk);
tFluids.get(cInts).amount = tFluid.amount; if (tFluid != null) {
} else tFluids.put(cInts, tFluid); minMaxValue.add(tFluid.amount);
if (!tFluids.containsKey(cInts)) {
tFluids.put(cInts, tFluid);
}
}
}
}
int min = Collections.min(minMaxValue);
int max = Collections.max(minMaxValue);
aOils.add(++oilFieldCount + "," + min + "-" + max + "," + tFluids.get(cInts).getLocalizedName());
} }
}
for (Map.Entry<ChunkCoordIntPair, FluidStack> fl : tFluids.entrySet()) { } catch (Exception e) {/*Do nothing*/}
aOils.put(fl.getKey().chunkXPos + "," + fl.getKey().chunkZPos + "," + fl.getValue().amount + "," + fl.getValue().getLocalizedName(), fl.getValue().amount);
}
} catch (Exception e) {
// TODO: handle exception
}
} }
private void prospectOres(Map<String, Integer> aNearOres, Map<String, Integer> aMiddleOres, Map<String, Integer> aFarOres) { private void prospectOres(Map<String, Integer> aNearOres, Map<String, Integer> aMiddleOres, Map<String, Integer> aFarOres) {
int tLeftXBound = this.getBaseMetaTileEntity().getXCoord() - radius; int tLeftXBound = this.getBaseMetaTileEntity().getXCoord() - radius;
int tRightXBound = tLeftXBound + 2*radius; int tRightXBound = tLeftXBound + 2*radius;
@ -178,7 +195,7 @@ public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_Ba
prospectHole(i, k, aMiddleOres); prospectHole(i, k, aMiddleOres);
else else
prospectHole(i, k, aFarOres); prospectHole(i, k, aFarOres);
} }
} }
private void prospectHole( private void prospectHole(
@ -186,7 +203,7 @@ public class GT_MetaTileEntity_AdvSeismicProspector extends GT_MetaTileEntity_Ba
String tFoundOre = null; String tFoundOre = null;
for (int j = this.getBaseMetaTileEntity().getYCoord(); j > 0; j--) { for (int j = this.getBaseMetaTileEntity().getYCoord(); j > 0; j--) {
tFoundOre = checkForOre(i, j, k); tFoundOre = checkForOre(i, j, k);
if (tFoundOre == null) if (tFoundOre == null)
continue; continue;