mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
41bdcd4aed
* Update logging * Remove duplicate code * Update unit tests * Clean up includes * Merge ProtobufSerializer into protobuf_util namespace * Precompile regex * Add const * Add Split() convenience method, update log level/ID parsing * Move log.h to legacy folder * Elimininate gotos * Fixes for gcc 13 * Update compiler flags * Update default folder handling * Use references instead of pointers * Move code for better encapsulation * Move code * Remove unused method argument * Move device logger * Remove redundant to_string * Rename for consistency * Update handling of protobuf pointers * Simplify protobuf usage * Memory handling update * Add hasher
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
||
//
|
||
// SCSI Target Emulator PiSCSI
|
||
// for Raspberry Pi
|
||
//
|
||
// Copyright (C) 2001-2006 PI.(ytanaka@ipc-tokai.or.jp)
|
||
// Copyright (C) 2014-2020 GIMONS
|
||
// Copyright (C) akuker
|
||
//
|
||
// Licensed under the BSD 3-Clause License.
|
||
// See LICENSE file in the project root folder.
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include <cstdint>
|
||
#include <string>
|
||
|
||
using namespace std;
|
||
|
||
class CDTrack final
|
||
{
|
||
public:
|
||
|
||
CDTrack() = default;
|
||
~CDTrack() = default;
|
||
|
||
void Init(int track, uint32_t first, uint32_t last);
|
||
|
||
// Properties
|
||
void SetPath(bool, string_view); // Set the path
|
||
string GetPath() const; // Get the path
|
||
uint32_t GetFirst() const; // Get the start LBA
|
||
uint32_t GetLast() const; // Get the last LBA
|
||
uint32_t GetBlocks() const; // Get the number of blocks
|
||
int GetTrackNo() const; // Get the track number
|
||
bool IsValid(uint32_t lba) const; // Is this a valid LBA?
|
||
bool IsAudio() const; // Is this an audio track?
|
||
|
||
private:
|
||
bool valid = false; // Valid track
|
||
int track_no = -1; // Track number
|
||
uint32_t first_lba = 0; // First LBA
|
||
uint32_t last_lba = 0; // Last LBA
|
||
bool audio = false; // Audio track flag
|
||
|
||
string imgpath; // Image file path
|
||
};
|