Integrate CircularBuffer as essential part of loading files from CD and dedicate file processing to the FileProcessor

This commit is contained in:
2023-04-01 11:20:56 +02:00
parent 7550795af4
commit e9cc5f299a
7 changed files with 85 additions and 53 deletions

View File

@@ -25,17 +25,15 @@ namespace JabyEngine {
};
private:
FileProcessor::State file_pro_state;
FileProcessor::State file_state;
CircularBuffer<CD_IO::DataSector> circular_buffer;
LZ4Decompressor lz4_decomp;
JobArray jobs;
const AutoLBAEntry* lba = nullptr;
uint32_t*const tmp_area = nullptr; //< The start of the area to copy data to
uint32_t* dst_area = nullptr; //< Current target for copying the data
uint32_t*const tmp_area = nullptr; //< The start of the area to copy data to for the file processor
void start_cur_job();
void reading_state(const CDFile& file);
void done_state(const CDFile& file);
void start_cur_job();
bool process_data();
public:
CDFileProcessor() = default;