Refactoring some code

This commit is contained in:
Franco Colmenarez 2021-05-18 21:41:44 -05:00
parent ad7e960f72
commit e26eac1fad

View File

@ -16,6 +16,13 @@ struct BitStream {
last_two_bits: u8, last_two_bits: u8,
} }
const BUFFER_A_START: usize = 0;
const BUFFER_A_END: usize = 391;
const BUFFER_B_START: usize = 392;
const BUFFER_B_END: usize = 783;
const BUFFER_C_START: usize = 784;
const BUFFER_C_END: usize = 1175;
impl BitStream { impl BitStream {
fn load_bytes_from_file(&mut self, filename: &str) { fn load_bytes_from_file(&mut self, filename: &str) {
let mut file = match File::open(&filename) { let mut file = match File::open(&filename) {
@ -103,6 +110,17 @@ struct Buffer {
} }
impl Buffer { impl Buffer {
// Buffer A => 0
// Buffer B => 1
// Buffer C => 2
fn get_buffer_address(buffer_number: u8) -> usize {
match buffer_number{
0 => BUFFER_A_START, // Address at 0
1 => BUFFER_B_START, // Address at 392
_ => BUFFER_C_START, // Address at 784
}
}
fn allocate_space(&mut self, width: u8, height: u8) { fn allocate_space(&mut self, width: u8, height: u8) {
const MAX_SPRITE_SIZE: u8 = 7; // 7 tiles const MAX_SPRITE_SIZE: u8 = 7; // 7 tiles
self.width = width; self.width = width;
@ -128,7 +146,6 @@ impl Buffer {
let column_height = self.height * 8; let column_height = self.height * 8;
self.bytes[self.byte_index] = self.bytes[self.byte_index] | (data << 8 - (self.bit_index + 2)); self.bytes[self.byte_index] = self.bytes[self.byte_index] | (data << 8 - (self.bit_index + 2));
// println!("Byte {:08b}", self.bytes[self.byte_index]);
self.byte_index += 1; self.byte_index += 1;
self.row_index += 1; self.row_index += 1;
@ -154,22 +171,22 @@ impl Buffer {
} }
} }
fn decompress_to_bitplane(&mut self, bytes: &mut BitStream, initial_packet: u8, primary_buffer: bool, first_bitplane: bool) { fn decompress_to_bitplane(&mut self, bytes: &mut BitStream, initial_packet: u8, primary_buffer: bool) {
let mut rle_length: u8 = 0; let mut rle_length: u8 = 0;
let mut reading_first_rle = initial_packet == 0; // 1 for data packet and 0 for RLE packet let mut reading_first_rle = initial_packet == 0; // 1 for data packet and 0 for RLE packet
let mut reading_second_rle = false; let mut reading_second_rle = false;
let mut first_rle_bits_read: u16 = 0; let mut first_rle_bits_read: u16 = 0;
let mut bits_written: usize = 0; let mut bits_written: usize = 0;
let bytes_to_write: usize = self.width as usize * self.height as usize * 8; let bits_to_write: usize = self.width as usize * self.height as usize * 8 * 8;
// If the primary buffer is true, start decoding into buffer B at location 392, // If the primary buffer is true, start decoding into buffer B at location 392,
// else, decode into buffer C at location 784 // else, decode into buffer C at location 784
// Glitched pokemons overflow from Buffer B to C // Glitched pokemons overflow from Buffer B to C
self.byte_index = if primary_buffer {7 * 7 * 8} else {7 * 7 * 8 * 2}; self.byte_index = if primary_buffer {BUFFER_B_START} else {BUFFER_C_START};
self.bit_index = 0; self.bit_index = 0;
self.row_index = 0; self.row_index = 0;
println!("Bytes to write: {}", bytes_to_write); println!("Bits to write: {}", bits_to_write);
while (first_bitplane && bits_written < bytes_to_write * 8) || (!first_bitplane && bytes.bits_left() > 0) { while bits_written < bits_to_write {
if reading_first_rle { if reading_first_rle {
let current_bit = bytes.current_bit(); let current_bit = bytes.current_bit();
@ -229,12 +246,8 @@ impl Buffer {
println!("Bytes written: {}", bits_written / 8); println!("Bytes written: {}", bits_written / 8);
} }
fn delta_decode(&mut self, buffer: u8) { fn delta_decode(&mut self, buffer_number: u8) {
let index_offset = match buffer{ let index_offset = Buffer::get_buffer_address(buffer_number);
0 => 0, // Address at 0
1 => 7 * 7 * 8, // Address at 392
_ => 7 * 7 * 8 * 2, // Address at 784
};
let mut row_index: usize = 0; let mut row_index: usize = 0;
let row_height = self.height as usize * 8; // Height in bits let row_height = self.height as usize * 8; // Height in bits
let col_width = self.width as usize; // Width in bytes let col_width = self.width as usize; // Width in bytes
@ -275,16 +288,8 @@ impl Buffer {
} }
fn xor_buffers(&mut self, buffer_index: u8, replace_buffer: u8) { fn xor_buffers(&mut self, buffer_index: u8, replace_buffer: u8) {
let buffer_index_offset: usize = match buffer_index { let buffer_index_offset = Buffer::get_buffer_address(buffer_index);
0 => 0, // Address at 0 let replace_index_offset = Buffer::get_buffer_address(replace_buffer);
1 => 7 * 7 * 8, // Address at 392
_ => 7 * 7 * 8 * 2, // Address at 784
};
let replace_index_offset: usize = match replace_buffer {
0 => 0, // Address at 0
1 => 7 * 7 * 8, // Address at 392
_ => 7 * 7 * 8 * 2, // Address at 784
};
let end_index = 8 * 7 * 7; let end_index = 8 * 7 * 7;
let mut index = 0; let mut index = 0;
while index < end_index { while index < end_index {
@ -297,12 +302,8 @@ impl Buffer {
} }
} }
fn wipe_bitplane(&mut self, bitplane: u8) { fn wipe_bitplane(&mut self, buffer_number: u8) {
let offset: usize = match bitplane { let offset = Buffer::get_buffer_address(buffer_number);
0 => 0, // Address at 0
1 => 7 * 7 * 8, // Address at 392
_ => 7 * 7 * 8 * 2, // Address at 784
};
// Wipe the "to" bitplane first // Wipe the "to" bitplane first
let mut index = offset; let mut index = offset;
@ -317,16 +318,8 @@ impl Buffer {
self.wipe_bitplane(to); self.wipe_bitplane(to);
let to_bitplane_start: usize = match to { let to_bitplane_start = Buffer::get_buffer_address(to);
0 => 0, // Address at 0 let from_bitplane_start = Buffer::get_buffer_address(from);
1 => 7 * 7 * 8, // Address at 392
_ => 7 * 7 * 8 * 2, // Address at 784
};
let from_bitplane_start: usize = match from {
0 => 0, // Address at 0
1 => 7 * 7 * 8, // Address at 392
_ => 7 * 7 * 8 * 2, // Address at 784
};
let mut from_bitplane_index = from_bitplane_start; let mut from_bitplane_index = from_bitplane_start;
// Step 1: calculate the offset of the top-left corner // Step 1: calculate the offset of the top-left corner
@ -354,9 +347,9 @@ impl Buffer {
} }
fn zip_buffers(&mut self) { fn zip_buffers(&mut self) {
let mut last_index_buffer_a: usize = (7 * 7 * 8) - 1; let mut last_index_buffer_a: usize = BUFFER_A_END;
let mut last_index_buffer_b: usize = (7 * 7 * 8 * 2) - 1; let mut last_index_buffer_b: usize = BUFFER_B_END;
let mut last_index_buffer_c: usize = (7 * 7 * 8 * 3) - 1; let mut last_index_buffer_c: usize = BUFFER_C_END;
println!("last index A: {}", last_index_buffer_a); println!("last index A: {}", last_index_buffer_a);
println!("last index B: {}", last_index_buffer_b); println!("last index B: {}", last_index_buffer_b);
@ -375,17 +368,13 @@ impl Buffer {
last_index_buffer_b -= 1; last_index_buffer_b -= 1;
last_index_buffer_c -= 1; last_index_buffer_c -= 1;
} }
println!("Buffer C result: {:02X?}", &self.bytes[last_index_buffer_c..]);
} }
fn render(&self) { fn render(&self) {
let mut pixels = Vec::<u8>::new(); // a "vram" to store each pixel let mut pixels = Vec::<u8>::new(); // a "vram" to store each pixel
let buffer_b_start = 7 * 7 * 8; // 392 let mut index = BUFFER_B_START;
let mut index = buffer_b_start;
let buffer_c_end = (7 * 7 * 8 * 3) - 1; // 1175
while index <= buffer_c_end { while index <= BUFFER_C_END {
let mut bit_index = 0; let mut bit_index = 0;
while bit_index <= 7 { while bit_index <= 7 {
@ -443,11 +432,10 @@ impl Buffer {
println!("{}", termion::clear::All); println!("{}", termion::clear::All);
let pixel_height = 7 * 8; let pixel_height = 7 * 8;
let buffer_c_end = (7 * 7 * 8 * 3) - 1;
let mut pixel_row = 0; let mut pixel_row = 0;
let mut pixel_col = 0; let mut pixel_col = 0;
for byte in &self.bytes[..buffer_c_end] { for byte in &self.bytes[..BUFFER_C_END] {
let coords = termion::cursor::Goto(pixel_col + 1, pixel_row + 1); let coords = termion::cursor::Goto(pixel_col + 1, pixel_row + 1);
let byte_string = format!("{:08b}", byte); let byte_string = format!("{:08b}", byte);
let new_string: String = byte_string.chars().map(|x| match x { let new_string: String = byte_string.chars().map(|x| match x {
@ -523,7 +511,7 @@ fn main() {
println!("Total bitplane length: {}", buffer.bitplane_length * 8); println!("Total bitplane length: {}", buffer.bitplane_length * 8);
println!("Starting to decompress the first buffer!"); println!("Starting to decompress the first buffer!");
buffer.decompress_to_bitplane(&mut sprite_bytes, initial_packet, primary_buffer == 0, true); buffer.decompress_to_bitplane(&mut sprite_bytes, initial_packet, primary_buffer == 0);
println!("First decompress result: "); println!("First decompress result: ");
buffer.render_bitplanes(); buffer.render_bitplanes();
@ -552,10 +540,9 @@ fn main() {
println!("Starting to decompress the second buffer!"); println!("Starting to decompress the second buffer!");
let initial_packet: u8 = sprite_bytes.read_bits(1, false); // Read next 1 bit let initial_packet: u8 = sprite_bytes.read_bits(1, false); // Read next 1 bit
println!("Initial packet: {}", initial_packet); println!("Initial packet: {}", initial_packet);
buffer.decompress_to_bitplane(&mut sprite_bytes, initial_packet, primary_buffer == 1, false); buffer.decompress_to_bitplane(&mut sprite_bytes, initial_packet, primary_buffer == 1);
println!("Second decompress result: "); println!("Second decompress result: ");
buffer.render_bitplanes(); buffer.render_bitplanes();
// println!("{:02X?}", buffer.bytes);
// In mode 1 and 3, we have to delta-decode the buffer C // In mode 1 and 3, we have to delta-decode the buffer C
// In any mode, we have to delta-decode the buffer B // In any mode, we have to delta-decode the buffer B
@ -578,24 +565,18 @@ fn main() {
} }
println!("Encoding result:"); println!("Encoding result:");
buffer.render_bitplanes(); buffer.render_bitplanes();
// println!("{:02X?}", buffer.bytes);
// Now we need to copy the content from buffer B to A and from C to B, // Now we need to copy the content from buffer B to A and from C to B,
// but in the right order for the Gameboy to draw // but in the right order for the Gameboy to draw
buffer.copy_bitplane(1, 0); buffer.copy_bitplane(1, 0);
buffer.copy_bitplane(2, 1); buffer.copy_bitplane(2, 1);
println!("Bitplane copy result:");
// println!("{:02X?}", buffer.bytes);
// Almost there! // Almost there!
// Now we need to zipper the buffer A and B into buffer C and B going backwards // Now we need to zipper the buffer A and B into buffer C and B going backwards
buffer.zip_buffers(); buffer.zip_buffers();
println!("Resulting zip:"); println!("Resulting zip:");
// println!("{:02X?}", buffer.bytes);
// And we can finally start rendering our sprite!!! // And we can finally start rendering our sprite!!!
// buffer.render_bitplanes();
buffer.render(); buffer.render();
} }