// /*************************************************************************** // The Disc Image Chef // ---------------------------------------------------------------------------- // // Filename : Constants.cs // Author(s) : Natalia Portillo // // 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 . // // ---------------------------------------------------------------------------- // 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*(?\d+)\]"; const string ENTRY_IDENTIFIER = @"^\s*\[Entry\s*(?\d+)\]"; const string TRACK_IDENTIFIER = @"^\s*\[TRACK\s*(?\d+)\]"; const string CDTEXT_IDENTIFIER = @"^\s*\[CDText\]"; const string CCD_VERSION = @"^\s*Version\s*=\s*(?\d+)"; const string DISC_ENTRIES = @"^\s*TocEntries\s*=\s*(?\d+)"; const string DISC_SESSIONS = @"^\s*Sessions\s*=\s*(?\d+)"; const string DISC_SCRAMBLED = @"^\s*DataTracksScrambled\s*=\s*(?\d+)"; const string CDTEXT_LENGTH = @"^\s*CDTextLength\s*=\s*(?\d+)"; const string DISC_CATALOG = @"^\s*CATALOG\s*=\s*(?[\x21-\x7F]{13})"; const string SESSION_PREGAP = @"^\s*PreGapMode\s*=\s*(?\d+)"; const string SESSION_SUBCHANNEL = @"^\s*PreGapSubC\s*=\s*(?\d+)"; const string ENTRY_SESSION = @"^\s*Session\s*=\s*(?\d+)"; const string ENTRY_POINT = @"^\s*Point\s*=\s*(?[\w+]+)"; const string ENTRY_ADR = @"^\s*ADR\s*=\s*(?\w+)"; const string ENTRY_CONTROL = @"^\s*Control\s*=\s*(?\w+)"; const string ENTRY_TRACKNO = @"^\s*TrackNo\s*=\s*(?\d+)"; const string ENTRY_AMIN = @"^\s*AMin\s*=\s*(?\d+)"; const string ENTRY_ASEC = @"^\s*ASec\s*=\s*(?\d+)"; const string ENTRY_AFRAME = @"^\s*AFrame\s*=\s*(?\d+)"; const string ENTRY_ALBA = @"^\s*ALBA\s*=\s*(?-?\d+)"; const string ENTRY_ZERO = @"^\s*Zero\s*=\s*(?\d+)"; const string ENTRY_PMIN = @"^\s*PMin\s*=\s*(?\d+)"; const string ENTRY_PSEC = @"^\s*PSec\s*=\s*(?\d+)"; const string ENTRY_PFRAME = @"^\s*PFrame\s*=\s*(?\d+)"; const string ENTRY_PLBA = @"^\s*PLBA\s*=\s*(?\d+)"; const string CDTEXT_ENTRIES = @"^\s*Entries\s*=\s*(?\d+)"; const string CDTEXT_ENTRY = @"^\s*Entry\s*(?\d+)\s*=\s*(?([0-9a-fA-F]+\s*)+)"; } }