Update AudioExtractor.java

main
Nes370 2024-07-20 10:35:58 -07:00
parent fb9b4276a2
commit 08aa16493c
1 changed files with 74 additions and 6 deletions

View File

@ -205,6 +205,12 @@ public class AudioExtractor {
} }
/**
* Helper function to prompt user to select a WAV file.
*
* @param reader
* @return WAV file
*/
private static File retrieveWave(BufferedReader reader) { private static File retrieveWave(BufferedReader reader) {
String prompt = "Please provide a WAV file: " + PALE_YELLOW; String prompt = "Please provide a WAV file: " + PALE_YELLOW;
@ -249,6 +255,12 @@ public class AudioExtractor {
} }
/**
* Helper function to prompt user to select a file.
*
* @param reader
* @return file
*/
private static File retrieveFile(BufferedReader reader, String prompt, String extension) { private static File retrieveFile(BufferedReader reader, String prompt, String extension) {
File file = null; File file = null;
@ -274,6 +286,12 @@ public class AudioExtractor {
} }
/**
* Helper function to prompt user to select a color.
*
* @param reader
* @return color attribute
*/
private static Attribute retrieveColor(BufferedReader reader) { private static Attribute retrieveColor(BufferedReader reader) {
String prompt = "\nCommand parameters: " + Ansi.colorize("Print", Attribute.BRIGHT_BLUE_TEXT()) String prompt = "\nCommand parameters: " + Ansi.colorize("Print", Attribute.BRIGHT_BLUE_TEXT())
@ -337,6 +355,13 @@ public class AudioExtractor {
} }
/**
* Helper function to prompt user to select a program task.
*
* @param reader
* @param input
* @return operation
*/
private static String retrieveOperation(BufferedReader reader, String input) { private static String retrieveOperation(BufferedReader reader, String input) {
String operation = null; String operation = null;
@ -391,6 +416,7 @@ public class AudioExtractor {
/** /**
* Prompts the user for input without strict validation. * Prompts the user for input without strict validation.
*
* @param reader * @param reader
* @param prompt * @param prompt
* @return input * @return input
@ -448,9 +474,10 @@ public class AudioExtractor {
} }
/** /**
* Patches the provided WAV file by seeking out its data and smpl chunks, * Patches a WAV file by seeking out its data and smpl chunks,
* deletes any existing smpl chunk, * replacing any existing smpl chunk with a new smpl chunk,
* then inserts a new smpl chunk with loop points set at the start and end of the data chunk. * setting loop points at the start and end of the data chunk.
*
* @param waveFile * @param waveFile
*/ */
private static void patch(File waveFile) { private static void patch(File waveFile) {
@ -487,7 +514,7 @@ public class AudioExtractor {
+ buffer[1] * (int) Math.pow(16, 4) + buffer[1] * (int) Math.pow(16, 4)
+ buffer[0] * (int) Math.pow(16, 6); + buffer[0] * (int) Math.pow(16, 6);
} } else throw new IOException("Data chunk not in file.");
// Determine size of smpl chunk // Determine size of smpl chunk
if(smplAddress > -1) { if(smplAddress > -1) {
@ -504,11 +531,36 @@ public class AudioExtractor {
} }
// Create new sample chunk // Create new sample chunk
// Insert 68-byte sample chunk with loop before data chunk // Insert 68-byte sample chunk with loop before data chunk
byte[] smpl = new byte[68];
// smpl (0)
smpl[0] = 0x73;
smpl[1] = 0x6D;
smpl[2] = 0x70;
smpl[3] = 0x6C;
// size (4)
smpl[4] = 0x3C;
// manufacturer (8)
// product (12)
// sample period (16)
// MIDI unity note (20)
smpl[20] = 0x3C;
// MIDI pitch fraction (24)
// SMPTE Format (28)
// SMPTE Offset (32)
// Number of Sample Loops (36)
smpl[36] = 0x01;
// Sample Loops size (40)
// loop ID (44)
// loop type (48)
// data start
// loop start (52)
// data end
// loop end (56)
// tuning fraction (60)
// play count (64)
// Set loop points to start and end of data chunk // Set loop points to start and end of data chunk
@ -519,6 +571,12 @@ public class AudioExtractor {
} }
/**
* Packs WAV files located at the extract directory into BIN files at the package directory.
*
* @param packDirectory
* @param extractDirectory
*/
private static void pack(File packDirectory, File extractDirectory) { private static void pack(File packDirectory, File extractDirectory) {
// Identify extracted folders // Identify extracted folders
@ -546,7 +604,9 @@ public class AudioExtractor {
// 3. If pack file already exists, insert WAV files into existing file. // 3. If pack file already exists, insert WAV files into existing file.
// 4. If pack file doesn't exist, create new file then insert WAV files. // 4. If pack file doesn't exist, create new file then insert WAV files.
} }
// Hypothesis 1: Does Ridge Racer 6 use a predetermined address list for reading tracks from package? // Hypothesis 1: Does Ridge Racer 6 use a predetermined address list for reading tracks from package?
// Test 1: Try changing the address of a track and see if the game can handle it successfully. // Test 1: Try changing the address of a track and see if the game can handle it successfully.
@ -556,6 +616,14 @@ public class AudioExtractor {
} }
/**
* Extracts audio files to the extract directory from package files located at the package directory.
* Also supports FLAC conversion for BGM files.
*
* @param packDirectory
* @param extractDirectory
* @param compressBGM
*/
public static void extract(File packDirectory, File extractDirectory, boolean compressBGM) { public static void extract(File packDirectory, File extractDirectory, boolean compressBGM) {
// TODO Delete // TODO Delete