/* Title.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ using System; using System.Collections.Generic; using System.Drawing; using System.IO; using System.Windows.Forms; using System.Text.RegularExpressions; namespace Handbrake.Parsing { /// /// An object that represents a single Title of a DVD /// public class Title { private List m_chapters; /// /// Collection of chapters in this Title /// public List Chapters { get { return this.m_chapters; } } private List m_audioTracks; /// /// Collection of audio tracks associated with this Title /// public List AudioTracks { get { return this.m_audioTracks; } } private List m_subtitles; /// /// Collection of subtitles associated with this Title /// public List Subtitles { get { return this.m_subtitles; } } private int m_titleNumber; /// /// The track number of this Title /// public int TitleNumber { get { return this.m_titleNumber; } } private TimeSpan m_duration; /// /// The length in time of this Title /// public TimeSpan Duration { get { return this.m_duration; } } private Size m_resolution; /// /// The resolution (width/height) of this Title /// public Size Resolution { get { return this.m_resolution; } } private float m_aspectRatio; /// /// The aspect ratio of this Title /// public float AspectRatio { get { return this.m_aspectRatio; } } private int[] m_autoCrop; /// /// The automatically detected crop region for this Title. /// This is an int array with 4 items in it as so: /// 0: /// 1: /// 2: /// 3: /// public int[] AutoCropDimensions { get { return this.m_autoCrop; } } /// /// The constructor for this object /// public Title() { this.m_audioTracks = new List(); this.m_chapters = new List(); this.m_subtitles = new List(); } /// /// Override of the ToString method to provide an easy way to use this object in the UI /// /// A string representing this track in the format: {title #} (00:00:00) public override string ToString() { return string.Format("{0} ({1:00}:{2:00}:{3:00})", this.m_titleNumber, this.m_duration.Hours, this.m_duration.Minutes, this.m_duration.Seconds); } public static Title Parse(StringReader output) { Title thisTitle = new Title(); try { Match m = Regex.Match(output.ReadLine(), @"^\+ title ([0-9]*):"); // Match track number for this title if (m.Success) thisTitle.m_titleNumber = int.Parse(m.Groups[1].Value.Trim().ToString()); output.ReadLine(); // Get duration for this title m = Regex.Match(output.ReadLine(), @"^ \+ duration: ([0-9]{2}:[0-9]{2}:[0-9]{2})"); if (m.Success) thisTitle.m_duration = TimeSpan.Parse(m.Groups[1].Value); // Get resolution, aspect ratio and FPS for this title m = Regex.Match(output.ReadLine(), @"^ \+ size: ([0-9]*)x([0-9]*), aspect: ([0-9]*\.[0-9]*), ([0-9]*\.[0-9]*) fps"); if (m.Success) { thisTitle.m_resolution = new Size(int.Parse(m.Groups[1].Value), int.Parse(m.Groups[2].Value)); thisTitle.m_aspectRatio = float.Parse(m.Groups[3].Value, Functions.CLI.Culture); } // Get autocrop region for this title m = Regex.Match(output.ReadLine(), @"^ \+ autocrop: ([0-9]*)/([0-9]*)/([0-9]*)/([0-9]*)"); if (m.Success) thisTitle.m_autoCrop = new int[4] { int.Parse(m.Groups[1].Value), int.Parse(m.Groups[2].Value), int.Parse(m.Groups[3].Value), int.Parse(m.Groups[4].Value) }; thisTitle.m_chapters.AddRange(Chapter.ParseList(output)); thisTitle.m_audioTracks.AddRange(AudioTrack.ParseList(output)); thisTitle.m_subtitles.AddRange(Subtitle.ParseList(output)); } catch (Exception exc) { MessageBox.Show("Title.cs - Parse " + exc.ToString()); } return thisTitle; } public static Title[] ParseList(string output) { List titles = new List<Title>(); try { StringReader sr = new StringReader(output); while ((char)sr.Peek() == '+') { titles.Add(Title.Parse(sr)); } } catch (Exception exc) { MessageBox.Show("Title.cs - ParseList " + exc.ToString()); } return titles.ToArray(); } } }