Fix finder / other converted song names.

master
sigonasr2 4 years ago
parent 4a64196d70
commit 3c10a63ac9
  1. BIN
      image.png
  2. 14
      src/main/java/com/example/demo/DemoApplication.java
  3. 1
      src/main/java/com/example/demo/SongData.java
  4. BIN
      test.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.0 MiB

@ -147,22 +147,30 @@ public class DemoApplication {
public static String getCorrectSongName(String song) {
switch (song.toLowerCase()) {
/***************
*
*
* THIS IS USING TO LOWER CASE!
* USE LOWERCASE!!!
*
*
*****************/
case "pianogirl":{
return "PIANO*GIRL";
}
case "16 -out of the gravity-":{
return "1/6 -out of the gravity-";
}
case "ファインダー (DSLR remix - reedit)":{
case "ファインダー (dslr remix - reedit)":{
return "ファインダー (DSLR remix - re:edit)";
}
case "恋ノート":{
return "恋ノート////";
}
case "Equation+":{
case "equation+":{
return "Equation+**";
}
case "雨のちSweetDrops":{
case "雨のちsweetdrops":{
return "雨のちSweet*Drops";
}

@ -10,6 +10,7 @@ public class SongData {
String[] split = parseStr.split(":");
song = split[0];
song = DemoApplication.getCorrectSongName(song);
System.out.println(song);
String[] colors = split[1].split(",");
data = new Color[colors.length];
for (int i=0;i<colors.length;i++) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Loading…
Cancel
Save