#include "t64.h" #include "endianness.h" /******************************************************** * Streams ********************************************************/ bool T64IStream::seekEntry( std::string filename ) { size_t index = 1; mstr::replaceAll(filename, "\\", "/"); bool wildcard = ( mstr::contains(filename, "*") || mstr::contains(filename, "?") ); // Read Directory Entries if ( filename.size() ) { while ( seekEntry( index ) ) { std::string entryFilename = entry.filename; mstr::rtrimA0(entryFilename); entryFilename = mstr::toUTF8(entryFilename); Debug_printv("filename[%s] entry.filename[%.16s]", filename.c_str(), entryFilename.c_str()); // Read Entry From Stream if (filename == "*") // Match first PRG { filename = entryFilename; return true; } else if ( filename == entryFilename ) // Match exact { return true; } else if ( wildcard ) { if ( mstr::compare(filename, entryFilename) ) // X?XX?X* Wildcard match { // Move stream pointer to start track/sector return true; } } index++; } } entry.filename[0] = '\0'; return false; } bool T64IStream::seekEntry( uint16_t index ) { // Calculate Sector offset & Entry offset index--; uint16_t entryOffset = 0x40 + (index * sizeof(entry)); //Debug_printv("----------"); //Debug_printv("index[%d] sectorOffset[%d] entryOffset[%d] entry_index[%d]", index, sectorOffset, entryOffset, entry_index); containerStream->seek(entryOffset); containerStream->read((uint8_t *)&entry, sizeof(entry)); //Debug_printv("r[%d] file_type[%02X] file_name[%.16s]", r, entry.file_type, entry.filename); //if ( next_track == 0 && next_sector == 0xFF ) entry_index = index + 1; if ( entry.file_type == 0x00 ) return false; else return true; } uint16_t T64IStream::readFile(uint8_t* buf, uint16_t size) { uint16_t bytesRead = 0; if (_position < 2) { //Debug_printv("position[%d]", _position); // Send Starting Address buf[0] = entry.start_address[_position]; bytesRead++; } else { bytesRead += containerStream->read(buf, size); } _position += bytesRead; return bytesRead; } bool T64IStream::seekPath(std::string path) { // Implement this to skip a queue of file streams to start of file by name // this will cause the next read to return bytes of 'path' seekCalled = true; entry_index = 0; // call image method to obtain file bytes here, return true on success: if ( seekEntry(path) ) { //auto entry = containerImage->entry; auto type = decodeType(entry.file_type).c_str(); size_t start_address = UINT16_FROM_HILOBYTES(entry.start_address[1], entry.start_address[0]); size_t end_address = UINT16_FROM_HILOBYTES(entry.end_address[1], entry.end_address[0]); size_t data_offset = UINT32_FROM_LE_UINT32(entry.data_offset); Debug_printv("filename [%.16s] type[%s] start_address[%zu] end_address[%zu] data_offset[%zu]", entry.filename, type, start_address, end_address, data_offset); // Calculate file size _size = ( end_address - start_address ) + 2; _position = 0; // Set position to beginning of file containerStream->seek(entry.data_offset); Debug_printv("File Size: size[%d] available[%d] position[%d]", _size, available(), _position); return true; } else { Debug_printv( "Not found! [%s]", path.c_str()); } return false; }; /******************************************************** * File implementations ********************************************************/ MStream* T64File::getDecodedStream(std::shared_ptr containerIstream) { Debug_printv("[%s]", url.c_str()); return new T64IStream(containerIstream); } bool T64File::isDirectory() { //Debug_printv("pathInStream[%s]", pathInStream.c_str()); if ( pathInStream == "" ) return true; else return false; }; bool T64File::rewindDirectory() { dirIsOpen = true; Debug_printv("streamFile->url[%s]", streamFile->url.c_str()); auto image = ImageBroker::obtain(streamFile->url); if ( image == nullptr ) Debug_printv("image pointer is null"); image->resetEntryCounter(); // Read Header image->seekHeader(); // Set Media Info Fields media_header = mstr::format("%.16s", image->header.disk_name); media_id = " T64 "; media_blocks_free = 0; media_block_size = image->block_size; media_image = name; //mstr::toUTF8(media_image); Debug_printv("media_header[%s] media_id[%s] media_blocks_free[%d] media_block_size[%d] media_image[%s]", media_header.c_str(), media_id.c_str(), media_blocks_free, media_block_size, media_image.c_str()); return true; } MFile* T64File::getNextFileInDir() { if(!dirIsOpen) rewindDirectory(); // Get entry pointed to by containerStream auto image = ImageBroker::obtain(streamFile->url); if ( image->seekNextImageEntry() ) { std::string fileName = mstr::format("%.16s", image->entry.filename); mstr::replaceAll(fileName, "/", "\\"); mstr::rtrimA0(fileName); //Debug_printv( "entry[%s]", (streamFile->url + "/" + fileName).c_str() ); auto file = MFSOwner::File(streamFile->url + "/" + fileName); file->extension = image->decodeType(image->entry.file_type); return file; } else { //Debug_printv( "END OF DIRECTORY"); dirIsOpen = false; return nullptr; } } uint32_t T64File::size() { // Debug_printv("[%s]", streamFile->url.c_str()); // use T64 to get size of the file in image auto entry = ImageBroker::obtain(streamFile->url)->entry; //Debug_printv("end0[%d] end1[%d] start0[%d] start1[%d]", entry.end_address[0], entry.end_address[1], entry.start_address[0], entry.start_address[1]); size_t end_address = UINT16_FROM_HILOBYTES(entry.end_address[1], entry.end_address[0]); size_t start_address = UINT16_FROM_HILOBYTES(entry.start_address[1], entry.start_address[0]); size_t bytes = ( end_address - start_address ); //Debug_printv("start_address[%d] end_address[%d] bytes[%d]", start_address, end_address, bytes); return bytes; }