OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / frmPreview.cs
index fbd695f..14080bd 100644 (file)
@@ -1,26 +1,31 @@
-using System;\r
-using System.Windows.Forms;\r
-using System.Threading;\r
-using System.Diagnostics;\r
-using System.Runtime.InteropServices;\r
-using System.IO;\r
-using Handbrake.EncodeQueue;\r
-using Handbrake.Functions;\r
-using QTOControlLib;\r
-using QTOLibrary;\r
+/*  frmPreview.cs $\r
+    This file is part of the HandBrake source code.\r
+    Homepage: <http://handbrake.fr/>.\r
+    It may be used under the terms of the GNU General Public License. */\r
 \r
 namespace Handbrake\r
 {\r
+    using System;\r
+    using System.Diagnostics;\r
+    using System.IO;\r
+    using System.Runtime.InteropServices;\r
+    using System.Threading;\r
+    using System.Windows.Forms;\r
+    using Functions;\r
+    using QTOControlLib;\r
+    using QTOLibrary;\r
+    using Services;\r
+    using Parsing;\r
+\r
     public partial class frmPreview : Form\r
     {\r
-\r
-        QueryGenerator hb_common_func = new QueryGenerator();\r
-        EncodeAndQueueHandler process = new EncodeAndQueueHandler();\r
+        private string CurrentlyPlaying = string.Empty;\r
+        private readonly frmMain MainWindow;\r
+        private Thread Player;\r
+        private readonly bool NoQT;\r
+        private readonly Queue Process = new Queue();\r
         private delegate void UpdateUIHandler();\r
-        String currently_playing = "";\r
-        readonly frmMain mainWindow;\r
-        private Thread player;\r
-        private Boolean noQT;\r
+        private bool playWithVLC;\r
 \r
         public frmPreview(frmMain mw)\r
         {\r
@@ -28,123 +33,189 @@ namespace Handbrake
             {\r
                 InitializeComponent();\r
             }\r
-            catch (Exception exc)\r
+            catch (Exception)\r
             {\r
-                MessageBox.Show(mw, "It would appear QuickTime 7 is not installed or not accessible. QuickTime preview functionality will be disabled! \n\n Debug Info:\n" + exc, "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
-                btn_playQT.Enabled = false;\r
-                noQT = true;\r
+                NoQT = true;\r
             }\r
-            this.mainWindow = mw;\r
+            this.MainWindow = mw;\r
             cb_preview.SelectedIndex = 0;\r
             cb_duration.SelectedIndex = 1;\r
+\r
+            cb_preview.Items.Clear();\r
+            for (int i = 1; i <= Properties.Settings.Default.previewScanCount; i++)\r
+                cb_preview.Items.Add(i.ToString());\r
+            cb_preview.SelectedIndex = 0;\r
+\r
+            Process.EncodeStarted += new EventHandler(Process_EncodeStarted);\r
+        }\r
+        private void Process_EncodeStarted(object sender, EventArgs e)\r
+        {\r
+            Thread encodeMon = new Thread(EncodeMonitorThread);\r
+            encodeMon.Start();\r
         }\r
 \r
         #region Encode Sample\r
+\r
         private void btn_playVLC_Click(object sender, EventArgs e)\r
         {\r
-            lbl_status.Visible = true;\r
+            ProgressBarStatus.Visible = true;\r
+            ProgressBarStatus.Value = 0;\r
+            lbl_encodeStatus.Visible = true;\r
+            playWithVLC = true;\r
+\r
             try\r
             {\r
-                QTControl.URL = "";\r
-                if (File.Exists(currently_playing))\r
-                    File.Delete(currently_playing);\r
+                if (!NoQT)\r
+                    QTControl.URL = string.Empty;\r
+\r
+                if (File.Exists(CurrentlyPlaying))\r
+                    File.Delete(CurrentlyPlaying);\r
             }\r
             catch (Exception)\r
             {\r
-                MessageBox.Show(this, "Unable to delete previous preview file. You may need to restart the application.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
+                MessageBox.Show(this, "Unable to delete previous preview file. You may need to restart the application.", \r
+                                "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
             }\r
 \r
             btn_playQT.Enabled = false;\r
             btn_playVLC.Enabled = false;\r
-            lbl_status.Text = "Encoding Sample for (VLC) ...";\r
+            this.Text += " (Encoding)";\r
             int duration;\r
             int.TryParse(cb_duration.Text, out duration);\r
-            String query = hb_common_func.generateCLIQuery(mainWindow, duration, cb_preview.Text);\r
-            ThreadPool.QueueUserWorkItem(procMonitor, query);\r
+            string query = QueryGenerator.GenerateCliQuery(MainWindow, 3, duration, cb_preview.Text);\r
+            ThreadPool.QueueUserWorkItem(ProcMonitor, query);\r
         }\r
+\r
         private void btn_playQT_Click(object sender, EventArgs e)\r
         {\r
-            if (mainWindow.text_destination.Text.Contains(".mkv"))\r
+            playWithVLC = false;\r
+            if (NoQT)\r
+            {\r
+                MessageBox.Show(this, \r
+                                "It would appear QuickTime 7 is not installed or not accessible. Please (re)install QuickTime.", \r
+                                "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+                return;\r
+            }\r
+            if (MainWindow.text_destination.Text.Contains(".mkv"))\r
             {\r
-                MessageBox.Show(this,\r
-                                "The QuickTime Control does not support MKV files, It is recommended you use VLC option instead.",\r
+                MessageBox.Show(this, \r
+                                "The QuickTime Control does not support MKV files, It is recommended you use VLC option instead.", \r
                                 "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
             }\r
             else\r
             {\r
-                lbl_status.Visible = true;\r
+                ProgressBarStatus.Visible = true;\r
+                ProgressBarStatus.Value = 0;\r
+                lbl_encodeStatus.Visible = true;\r
                 try\r
                 {\r
-                    QTControl.URL = "";\r
-                    if (File.Exists(currently_playing))\r
-                        File.Delete(currently_playing);\r
+                    QTControl.URL = string.Empty;\r
+                    if (File.Exists(CurrentlyPlaying))\r
+                        File.Delete(CurrentlyPlaying);\r
                 }\r
                 catch (Exception)\r
                 {\r
-                    MessageBox.Show(this, "Unable to delete previous preview file. You may need to restart the application.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
+                    MessageBox.Show(this, \r
+                                    "Unable to delete previous preview file. You may need to restart the application.", \r
+                                    "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
                 }\r
 \r
                 btn_playQT.Enabled = false;\r
                 btn_playVLC.Enabled = false;\r
-                lbl_status.Text = "Encoding Sample for (QT) ...";\r
+                this.Text += " (Encoding)";\r
                 int duration;\r
                 int.TryParse(cb_duration.Text, out duration);\r
-                String query = hb_common_func.generateCLIQuery(mainWindow, duration, cb_preview.Text);\r
+                string query = QueryGenerator.GenerateCliQuery(MainWindow, 3, duration, cb_preview.Text);\r
 \r
-                ThreadPool.QueueUserWorkItem(procMonitor, query);\r
+                ThreadPool.QueueUserWorkItem(ProcMonitor, query);\r
             }\r
         }\r
-        private void procMonitor(object state)\r
+\r
+        private void ProcMonitor(object state)\r
         {\r
             // Make sure we are not already encoding and if we are then display an error.\r
-            if (process.hbProcess != null)\r
-                MessageBox.Show(this, "Handbrake is already encoding a video!", "Status", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+            if (Process.HbProcess != null)\r
+                MessageBox.Show(this, "Handbrake is already encoding a video!", "Status", MessageBoxButtons.OK, \r
+                                MessageBoxIcon.Warning);\r
             else\r
             {\r
-                process.RunCli((string)state);\r
-                if (process.hbProcess != null)\r
+                Process.CreatePreviewSample((string) state);\r
+\r
+                if (Process.HbProcess != null)\r
                 {\r
-                    process.hbProcess.WaitForExit();\r
-                    process.hbProcess = null;\r
+                    Process.HbProcess.WaitForExit();\r
+                    Process.HbProcess = null;\r
                 }\r
-                encodeCompleted();\r
+                EncodeCompleted();\r
             }\r
         }\r
-        private void encodeCompleted()\r
+\r
+        private void EncodeMonitorThread()\r
+        {\r
+            try\r
+            {\r
+                Parser encode = new Parser(Process.HbProcess.StandardOutput.BaseStream);\r
+                encode.OnEncodeProgress += EncodeOnEncodeProgress;\r
+                while (!encode.EndOfStream)\r
+                    encode.ReadEncodeStatus();\r
+            }\r
+            catch (Exception exc)\r
+            {\r
+                MessageBox.Show(exc.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
+            }\r
+        }\r
+\r
+        private void EncodeOnEncodeProgress(object Sender, int CurrentTask, int TaskCount, float PercentComplete, float CurrentFps, float AverageFps, TimeSpan TimeRemaining)\r
+        {\r
+            if (this.InvokeRequired)\r
+            {\r
+                this.BeginInvoke(\r
+                    new EncodeProgressEventHandler(EncodeOnEncodeProgress),\r
+                    new[] { Sender, CurrentTask, TaskCount, PercentComplete, CurrentFps, AverageFps, TimeRemaining });\r
+                return;\r
+            }\r
+            lbl_encodeStatus.Text = PercentComplete + "%";\r
+            ProgressBarStatus.Value = (int)Math.Round(PercentComplete);\r
+        }\r
+\r
+        private void EncodeCompleted()\r
         {\r
             try\r
             {\r
                 if (InvokeRequired)\r
                 {\r
-                    BeginInvoke(new UpdateUIHandler(encodeCompleted));\r
+                    BeginInvoke(new UpdateUIHandler(EncodeCompleted));\r
                     return;\r
                 }\r
-                if (!noQT)\r
+\r
+                ProgressBarStatus.Visible = false;\r
+                lbl_encodeStatus.Visible = false;\r
+\r
+                if (!NoQT)\r
                     btn_playQT.Enabled = true;\r
                 btn_playVLC.Enabled = true;\r
 \r
-                // Decide which player to use.\r
-                String playerSelection = lbl_status.Text.Contains("QT") ? "QT" : "VLC";\r
-\r
-                lbl_status.Text = "Loading Clip ...";\r
+                this.Text = this.Text.Replace(" (Encoding)", string.Empty);\r
 \r
                 // Get the sample filename\r
-                if (mainWindow.text_destination.Text != "")\r
-                    currently_playing = mainWindow.text_destination.Text.Replace(".mp4", "_sample.mp4").Replace(".m4v", "_sample.m4v").Replace(".mkv", "_sample.mkv"); ;\r
+                if (MainWindow.text_destination.Text != string.Empty)\r
+                    CurrentlyPlaying =\r
+                        MainWindow.text_destination.Text.Replace(".mp4", "_sample.mp4").Replace(".m4v", "_sample.m4v").\r
+                            Replace(".mkv", "_sample.mkv");\r
 \r
                 // Play back in QT or VLC\r
-                if (playerSelection == "QT")\r
-                    play();\r
+                if (!playWithVLC)\r
+                    Play();\r
                 else\r
-                    playVLC();\r
-\r
-                lbl_status.Text = "";\r
+                    PlayVLC();\r
             }\r
             catch (Exception exc)\r
             {\r
-                MessageBox.Show(this, "frmPreview.cs encodeCompleted " + exc, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
+                MessageBox.Show(this, "frmPreview.cs EncodeCompleted " + exc, "Error", MessageBoxButtons.OK, \r
+                                MessageBoxIcon.Error);\r
             }\r
         }\r
+\r
         #endregion\r
 \r
         #region Playback\r
@@ -152,37 +223,62 @@ namespace Handbrake
         /// <summary>\r
         /// Play the video back in the QuickTime control\r
         /// </summary>\r
-        private void play()\r
+        private void Play()\r
         {\r
-            player = new Thread(OpenMovie) { IsBackground = true };\r
-            player.Start();\r
-            lbl_status.Visible = false;\r
+            Player = new Thread(OpenMovie) {IsBackground = true};\r
+            Player.Start();\r
         }\r
 \r
         /// <summary>\r
-        /// Play the video back in an external VLC player\r
+        /// Play the video back in an external VLC Player\r
         /// </summary>\r
-        private void playVLC()\r
+        private void PlayVLC()\r
         {\r
-            // Launch VLC and play video.\r
-            if (currently_playing != "")\r
+            // Launch VLC and Play video.\r
+            if (CurrentlyPlaying != string.Empty)\r
             {\r
-                if (File.Exists(currently_playing))\r
+                if (File.Exists(CurrentlyPlaying))\r
                 {\r
+                    // Attempt to find VLC if it doesn't exist in the default set location.\r
+                    string vlcPath;\r
+\r
+                    if (8 == IntPtr.Size ||\r
+                        (!String.IsNullOrEmpty(Environment.GetEnvironmentVariable("PROCESSOR_ARCHITEW6432"))))\r
+                        vlcPath = Environment.GetEnvironmentVariable("ProgramFiles(x86)");\r
+                    else\r
+                        vlcPath = Environment.GetEnvironmentVariable("ProgramFiles");\r
+\r
+                    vlcPath = vlcPath != null\r
+                                  ? vlcPath + @"\VideoLAN\VLC\vlc.exe"\r
+                                  : @"C:\Program Files (x86)\VideoLAN\VLC\vlc.exe";\r
+\r
+                    if (!File.Exists(Properties.Settings.Default.VLC_Path))\r
+                    {\r
+                        if (File.Exists(vlcPath))\r
+                        {\r
+                            Properties.Settings.Default.VLC_Path = "C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe";\r
+                            Properties.Settings.Default.Save(); // Save this new path if it does\r
+                        }\r
+                        else\r
+                        {\r
+                            MessageBox.Show(this, \r
+                                            "Unable to detect VLC Player. \nPlease make sure VLC is installed and the directory specified in HandBrake's options is correct. (See: \"Tools Menu > Options > Picture Tab\") ", \r
+                                            "VLC", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+                        }\r
+                    }\r
+\r
                     if (File.Exists(Properties.Settings.Default.VLC_Path))\r
                     {\r
-                        String args = "\"" + currently_playing + "\"";\r
+                        string args = "\"" + CurrentlyPlaying + "\"";\r
                         ProcessStartInfo vlc = new ProcessStartInfo(Properties.Settings.Default.VLC_Path, args);\r
-                        Process.Start(vlc);\r
-                        lbl_status.Text = "VLC will now launch.";\r
+                        System.Diagnostics.Process.Start(vlc);\r
                     }\r
-                    else\r
-                        MessageBox.Show(this, "Unable to detect VLC Player. \nPlease make sure VLC is installed and the directory specified in HandBrake's options is correct. (See: \"Tools Menu > Options > Picture Tab\") ", "VLC", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
                 }\r
                 else\r
-                    MessageBox.Show(this, "Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details.", "VLC", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+                    MessageBox.Show(this, \r
+                                    "Unable to find the preview file. Either the file was deleted or the encode failed. Check the activity log for details.", \r
+                                    "VLC", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
             }\r
-            lbl_status.Visible = false;\r
         }\r
 \r
         /// <summary>\r
@@ -198,9 +294,9 @@ namespace Handbrake
                     BeginInvoke(new UpdateUIHandler(OpenMovie));\r
                     return;\r
                 }\r
-                QTControl.URL = currently_playing;\r
+                QTControl.URL = CurrentlyPlaying;\r
                 QTControl.SetSizing(QTSizingModeEnum.qtControlFitsMovie, true);\r
-                QTControl.URL = currently_playing;\r
+                QTControl.URL = CurrentlyPlaying;\r
                 QTControl.Show();\r
 \r
                 this.ClientSize = QTControl.Size;\r
@@ -209,13 +305,24 @@ namespace Handbrake
             catch (COMException ex)\r
             {\r
                 QTUtils qtu = new QTUtils();\r
-                MessageBox.Show(this, "Unable to open movie:\n\nError Code: " + ex.ErrorCode.ToString("X") + "\nQT Error code : " + qtu.QTErrorFromErrorCode(ex.ErrorCode), "QT", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+                MessageBox.Show(this, \r
+                                "Unable to open movie:\n\nError Code: " + ex.ErrorCode.ToString("X") +\r
+                                "\nQT Error code : " + qtu.QTErrorFromErrorCode(ex.ErrorCode), "QT", \r
+                                MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
             }\r
             catch (Exception ex)\r
             {\r
-                MessageBox.Show(this, "Unable to open movie:\n\n" + ex, "QT", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+                MessageBox.Show(this, "Unable to open movie:\n\n" + ex, "QT", MessageBoxButtons.OK, \r
+                                MessageBoxIcon.Warning);\r
             }\r
         }\r
+\r
         #endregion\r
+\r
+        protected override void OnClosing(System.ComponentModel.CancelEventArgs e)\r
+        {\r
+            Process.EncodeStarted -= Process_EncodeStarted;\r
+            base.OnClosing(e);\r
+        }\r
     }\r
-}\r
+}
\ No newline at end of file