mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
68 lines
3.8 KiB
C#
68 lines
3.8 KiB
C#
|
|
// /***************************************************************************
|
|||
|
|
// The Disc Image Chef
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Filename : Constants.cs
|
|||
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|||
|
|
//
|
|||
|
|
// Component : Disk image plugins.
|
|||
|
|
//
|
|||
|
|
// --[ Description ] ----------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// Contains constants for CloneCD disc images.
|
|||
|
|
//
|
|||
|
|
// --[ License ] --------------------------------------------------------------
|
|||
|
|
//
|
|||
|
|
// This library is free software; you can redistribute it and/or modify
|
|||
|
|
// it under the terms of the GNU Lesser General Public License as
|
|||
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|||
|
|
// License, or (at your option) any later version.
|
|||
|
|
//
|
|||
|
|
// This library is distributed in the hope that it will be useful, but
|
|||
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|||
|
|
// Lesser General Public License for more details.
|
|||
|
|
//
|
|||
|
|
// You should have received a copy of the GNU Lesser General Public
|
|||
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|||
|
|
//
|
|||
|
|
// ----------------------------------------------------------------------------
|
|||
|
|
// Copyright © 2011-2018 Natalia Portillo
|
|||
|
|
// ****************************************************************************/
|
|||
|
|
|
|||
|
|
namespace DiscImageChef.DiscImages
|
|||
|
|
{
|
|||
|
|
public partial class CloneCd
|
|||
|
|
{
|
|||
|
|
const string CCD_IDENTIFIER = @"^\s*\[CloneCD\]";
|
|||
|
|
const string DISC_IDENTIFIER = @"^\s*\[Disc\]";
|
|||
|
|
const string SESSION_IDENTIFIER = @"^\s*\[Session\s*(?<number>\d+)\]";
|
|||
|
|
const string ENTRY_IDENTIFIER = @"^\s*\[Entry\s*(?<number>\d+)\]";
|
|||
|
|
const string TRACK_IDENTIFIER = @"^\s*\[TRACK\s*(?<number>\d+)\]";
|
|||
|
|
const string CDTEXT_IDENTIFIER = @"^\s*\[CDText\]";
|
|||
|
|
const string CCD_VERSION = @"^\s*Version\s*=\s*(?<value>\d+)";
|
|||
|
|
const string DISC_ENTRIES = @"^\s*TocEntries\s*=\s*(?<value>\d+)";
|
|||
|
|
const string DISC_SESSIONS = @"^\s*Sessions\s*=\s*(?<value>\d+)";
|
|||
|
|
const string DISC_SCRAMBLED = @"^\s*DataTracksScrambled\s*=\s*(?<value>\d+)";
|
|||
|
|
const string CDTEXT_LENGTH = @"^\s*CDTextLength\s*=\s*(?<value>\d+)";
|
|||
|
|
const string DISC_CATALOG = @"^\s*CATALOG\s*=\s*(?<value>[\x21-\x7F]{13})";
|
|||
|
|
const string SESSION_PREGAP = @"^\s*PreGapMode\s*=\s*(?<value>\d+)";
|
|||
|
|
const string SESSION_SUBCHANNEL = @"^\s*PreGapSubC\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_SESSION = @"^\s*Session\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_POINT = @"^\s*Point\s*=\s*(?<value>[\w+]+)";
|
|||
|
|
const string ENTRY_ADR = @"^\s*ADR\s*=\s*(?<value>\w+)";
|
|||
|
|
const string ENTRY_CONTROL = @"^\s*Control\s*=\s*(?<value>\w+)";
|
|||
|
|
const string ENTRY_TRACKNO = @"^\s*TrackNo\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_AMIN = @"^\s*AMin\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_ASEC = @"^\s*ASec\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_AFRAME = @"^\s*AFrame\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_ALBA = @"^\s*ALBA\s*=\s*(?<value>-?\d+)";
|
|||
|
|
const string ENTRY_ZERO = @"^\s*Zero\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_PMIN = @"^\s*PMin\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_PSEC = @"^\s*PSec\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_PFRAME = @"^\s*PFrame\s*=\s*(?<value>\d+)";
|
|||
|
|
const string ENTRY_PLBA = @"^\s*PLBA\s*=\s*(?<value>\d+)";
|
|||
|
|
const string CDTEXT_ENTRIES = @"^\s*Entries\s*=\s*(?<value>\d+)";
|
|||
|
|
const string CDTEXT_ENTRY = @"^\s*Entry\s*(?<number>\d+)\s*=\s*(?<value>([0-9a-fA-F]+\s*)+)";
|
|||
|
|
}
|
|||
|
|
}
|