package readers; import java.awt.Color; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.IOException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.regex.Pattern; import javax.imageio.ImageIO; public class SoundVoltexReader extends Reader{ final static int REGION_PADDING = 32; List extraRegions = new ArrayList<>(); static int lastJump=0; final int TRANSPARENT = new Color(0,0,0,0).getRGB(); public SoundVoltexReader(){ readRegions.add(new Box(434,1006,454,26)); //title[0] readRegions.add(new Box(458,1075,244,57)); //bigscore[1] readRegions.add(new Box(706,1096,137,34)); //score[2] readRegions.add(new Box(630,1142,110,16)); //exscore[3] readRegions.add(new Box(932,1194,55,19)); //health percentage[4] readRegions.add(new Box(617,1237,70,23)); //early error[5] readRegions.add(new Box(617,1268,70,23)); //early near[6] readRegions.add(new Box(617,1300,70,23)); //early critical[7] readRegions.add(new Box(617,1330,70,23)); //s-critical[8] readRegions.add(new Box(617,1362,70,23)); //late critical[9] readRegions.add(new Box(617,1393,70,23)); //late near[10] readRegions.add(new Box(617,1424,70,23)); //late error[11] readRegions.add(new Box(188,1231,70,23)); //chip s-critical[12] readRegions.add(new Box(188,1262,70,23)); //chip critical[13] readRegions.add(new Box(188,1294,70,23)); //chip near[14] readRegions.add(new Box(188,1324,70,23)); //chip error[15] readRegions.add(new Box(266,1231,70,23)); //long s-critical[16] readRegions.add(new Box(266,1324,70,23)); //long error[17] readRegions.add(new Box(345,1231,70,23)); //vol s-critical[18] readRegions.add(new Box(345,1324,70,23)); //vol error[19] readRegions.add(new Box(304,1364,70,23)); //max combo[20] readRegions.add(new Box(233,880,84,20)); //difficulty[21] readRegions.add(new Box(875,1046,125,82)); //rating[22] extraRegions.add(new Box(753,1197,150,16)); //effective rate text[0] extraRegions.add(new Box(499,1238,78,23)); //early error text[1] extraRegions.add(new Box(499,1268,78,23)); //early near text[2] extraRegions.add(new Box(499,1300,93,23)); //early critical text[3] extraRegions.add(new Box(499,1332,108,23)); //s-critical text[4] extraRegions.add(new Box(499,1362,93,23)); //late critical text[5] extraRegions.add(new Box(499,1393,78,23)); //late near text[6] extraRegions.add(new Box(499,1424,78,23)); //late error text[7] extraRegions.add(new Box(62,1230,119,24)); //s-critical extra text[8] extraRegions.add(new Box(62,1262,119,24)); //critical extra text[9] extraRegions.add(new Box(62,1294,119,24)); //near extra text[10] extraRegions.add(new Box(62,1325,119,24)); //error extra text[11] extraRegions.add(new Box(62,1230,119,24)); //s-critical extra text[12] extraRegions.add(new Box(62,1325,119,24)); //error extra text[13] extraRegions.add(new Box(62,1230,119,24)); //s-critical extra text[14] extraRegions.add(new Box(62,1325,119,24)); //error extra text[15] extraRegions.add(new Box(71,1365,171,22)); //maximum chain text[16] } void seek(int[]arr,int i,ColorRange SEEKCOLOR,Color FINALCOLOR,int width) { seek(arr,i,SEEKCOLOR,FINALCOLOR,width,0); } int seek(int[]arr,int i,ColorRange SEEKCOLOR,Color FINALCOLOR,int width,int farthestRight) { arr[i]=FINALCOLOR.getRGB(); int X = i%width; for (int x=-1;x<=1;x++) { for (int y=-1;y<=1;y++) { if (SEEKCOLOR.colorInRange(new Color(arr[i+x+y*width]))) { farthestRight=seek(arr,i+x+y*width,SEEKCOLOR,FINALCOLOR,width,farthestRight); } } } return X>farthestRight?X:farthestRight; } void ColorFilter(int[] arr,int region,int width) { switch (region) { case 0:{ final ColorRange TARGETCOLOR = new ColorRange(240,255,240,255,240,255); final ColorRange SEEKINGCOLOR = new ColorRange(100,255,100,255,100,255); final Color FINALCOLOR = Color.MAGENTA; for (int i=0;imaxWidth) { maxWidth=readRegions.get(i).w; } } try { BufferedImage originalImg = ImageIO.read(img.toFile()); BufferedImage cutImg = new BufferedImage(maxWidth,regionHeights,BufferedImage.TYPE_INT_ARGB); Graphics2D g = cutImg.createGraphics(); int currentHeight=0; for (int i=0;i10) { found=true; reachedPoint=x; System.out.println(reachedPoint+"-"+pixelGapStart); break; } pixelGap=0; pixelGapStart=x; break; } } if (found) { break; } pixelGap++; } final int PADDING = 14; //From the pixelGapStart X, cut down the pixels to reach the point next to the previous pixels. for (int x=reachedPoint;x=4&&i<=20) { int[] arr2 = originalImg.getRGB(extraRegions.get(i-4).x, extraRegions.get(i-4).y, extraRegions.get(i-4).w, extraRegions.get(i-4).h, null, 0, extraRegions.get(i-4).w); int rightMost=0; ColorFilter(arr2,400+i-4,extraRegions.get(i-4).w); for (int j=0;jrightMost) { rightMost=j%extraRegions.get(i-4).w; } } //cutImg.setRGB(rightMost-leftMost,currentHeight,readRegions.get(i).w,readRegions.get(i).h,arr,0,readRegions.get(i).w); cutImg.setRGB(0,currentHeight,extraRegions.get(i-4).w,extraRegions.get(i-4).h,arr2,0,extraRegions.get(i-4).w); final int PADDING = 4; for (int x=leftMost;x