OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Functions / QueryParser.cs
1 using System;\r
2 using System.Collections.Generic;\r
3 using System.Text;\r
4 using System.Text.RegularExpressions;\r
5 using System.Windows.Forms;\r
6 \r
7 namespace Handbrake.Functions\r
8 {\r
9     class QueryParser\r
10     {\r
11 \r
12         // All the Main Window GUI options\r
13         #region Varibles\r
14  \r
15         private string q_source;\r
16         /// <summary>\r
17         /// Returns a String \r
18         /// Full path of the source.\r
19         /// </summary>\r
20         public string Source\r
21         {\r
22             get\r
23             {\r
24                 return this.q_source;\r
25             }\r
26         }\r
27 \r
28         private string q_destination;\r
29         /// <summary>\r
30         /// Returns a String \r
31         /// Full path of the destination.\r
32         /// </summary>\r
33         public string Destination\r
34         {\r
35             get\r
36             {\r
37                 return this.q_destination;\r
38             }\r
39         }\r
40 \r
41         private string q_format;\r
42         /// <summary>\r
43         /// Returns a String \r
44         /// Full path of the destination.\r
45         /// </summary>\r
46         public string Format\r
47         {\r
48             get\r
49             {\r
50                 return this.q_format;\r
51             }\r
52         }\r
53 \r
54         private int q_dvdTitle;\r
55         /// <summary>\r
56         /// Returns an Integer\r
57         /// DVD Title number.\r
58         /// </summary>\r
59         public int DVDTitle\r
60         {\r
61             get\r
62             {\r
63                 return this.q_dvdTitle;\r
64             }\r
65         }\r
66 \r
67         private int q_chaptersStart;\r
68         /// <summary>\r
69         /// Returns an Int\r
70         /// DVD Chapter number or chapter range.\r
71         /// </summary>\r
72         public int DVDChapterStart\r
73         {\r
74             get\r
75             {\r
76                 return this.q_chaptersStart;\r
77             }\r
78         }\r
79 \r
80         private int q_chaptersFinish;\r
81         /// <summary>\r
82         /// Returns an Int\r
83         /// DVD Chapter number or chapter range.\r
84         /// </summary>\r
85         public int DVDChapterFinish\r
86         {\r
87             get\r
88             {\r
89                 return this.q_chaptersFinish;\r
90             }\r
91         }\r
92 \r
93         private string q_videoEncoder;\r
94         /// <summary>\r
95         /// Returns an String\r
96         /// The Video Encoder used.\r
97         /// </summary>\r
98         public string VideoEncoder\r
99         {\r
100             get\r
101             {\r
102                 return this.q_videoEncoder;\r
103             }\r
104         }\r
105 \r
106         private string q_audioEncoder;\r
107         /// <summary>\r
108         /// Returns an String\r
109         /// The Audio Encoder used.\r
110         /// </summary>\r
111         public string AudioEncoder\r
112         {\r
113             get\r
114             {\r
115                 return this.q_audioEncoder;\r
116             }\r
117         }\r
118 \r
119         private int q_videoWidth;\r
120         /// <summary>\r
121         /// Returns an Int\r
122         /// The selected Width for the encoding.\r
123         /// </summary>\r
124         public int Width\r
125         {\r
126             get\r
127             {\r
128                 return this.q_videoWidth;\r
129             }\r
130         }\r
131 \r
132         private int q_videoHeight;\r
133         /// <summary>\r
134         /// Returns an Int\r
135         /// The selected Height for the encoding.\r
136         /// </summary>\r
137         public int Height\r
138         {\r
139             get\r
140             {\r
141                 return this.q_videoHeight;\r
142             }\r
143         }\r
144 \r
145         private string q_cropValues;\r
146         /// <summary>\r
147         /// Returns an String\r
148         /// Cropping values.\r
149         /// </summary>\r
150         public string CropValues\r
151         {\r
152             get\r
153             {\r
154                 return this.q_cropValues;\r
155             }\r
156         }\r
157 \r
158         private string q_croptop;\r
159         /// <summary>\r
160         /// Returns an String\r
161         /// Cropping values.\r
162         /// </summary>\r
163         public string CropTop\r
164         {\r
165             get\r
166             {\r
167                 return this.q_croptop;\r
168             }\r
169         }\r
170 \r
171         private string q_cropbottom;\r
172         /// <summary>\r
173         /// Returns an String\r
174         /// Cropping values.\r
175         /// </summary>\r
176         public string CropBottom\r
177         {\r
178             get\r
179             {\r
180                 return this.q_cropbottom;\r
181             }\r
182         }\r
183 \r
184         private string q_cropLeft;\r
185         /// <summary>\r
186         /// Returns an String\r
187         /// Cropping values.\r
188         /// </summary>\r
189         public string CropLeft\r
190         {\r
191             get\r
192             {\r
193                 return this.q_cropLeft;\r
194             }\r
195         }\r
196 \r
197         private string q_cropRight;\r
198         /// <summary>\r
199         /// Returns an String\r
200         /// Cropping values.\r
201         /// </summary>\r
202         public string CropRight\r
203         {\r
204             get\r
205             {\r
206                 return this.q_cropRight;\r
207             }\r
208         }\r
209 \r
210         private Boolean q_detelecine;\r
211         /// <summary>\r
212         /// Returns a boolean to indicate wither DeTelecine is on or off\r
213         /// </summary>\r
214         public Boolean DeTelecine\r
215         {\r
216             get\r
217             {\r
218                 return this.q_detelecine;\r
219             }\r
220         }\r
221 \r
222         private Boolean q_deBlock;\r
223         /// <summary>\r
224         /// Returns a boolean to indicate wither DeBlock is on or off.\r
225         /// </summary>\r
226         public Boolean DeBlock\r
227         {\r
228             get\r
229             {\r
230                 return this.q_deBlock;\r
231             }\r
232         }\r
233 \r
234         private string q_deinterlace;\r
235         /// <summary>\r
236         /// Returns a string with the De-Interlace option used.\r
237         /// </summary>\r
238         public string DeInterlace\r
239         {\r
240             get\r
241             {\r
242                 return this.q_deinterlace;\r
243             }\r
244         }\r
245 \r
246         private string q_denoise;\r
247         /// <summary>\r
248         /// Returns a string with the DeNoise option used.\r
249         /// </summary>\r
250         public string DeNoise\r
251         {\r
252             get\r
253             {\r
254                 return this.q_denoise;\r
255             }\r
256         }\r
257 \r
258         private Boolean q_anamorphic;\r
259         /// <summary>\r
260         /// Returns a boolean to indicate wither Anamorphic is on or off.\r
261         /// </summary>\r
262         public Boolean Anamorphic\r
263         {\r
264             get\r
265             {\r
266                 return this.q_anamorphic;\r
267             }\r
268         }\r
269 \r
270         private Boolean q_chapterMarkers;\r
271         /// <summary>\r
272         /// Returns a boolean to indicate wither Chapter Markers is on or off.\r
273         /// </summary>\r
274         public Boolean ChapterMarkers\r
275         {\r
276             get\r
277             {\r
278                 return this.q_chapterMarkers;\r
279             }\r
280         }\r
281 \r
282         private Boolean q_grayscale;\r
283         /// <summary>\r
284         /// Returns a boolean to indicate wither Grayscale is on or off.\r
285         /// </summary>\r
286         public Boolean Grayscale\r
287         {\r
288             get\r
289             {\r
290                 return this.q_grayscale;\r
291             }\r
292         }\r
293 \r
294         private Boolean q_twoPass;\r
295         /// <summary>\r
296         /// Returns a boolean to indicate wither Two Pass Encoding is on or off.\r
297         /// </summary>\r
298         public Boolean TwoPass\r
299         {\r
300             get\r
301             {\r
302                 return this.q_twoPass;\r
303             }\r
304         }\r
305 \r
306         private Boolean q_turboFirst;\r
307         /// <summary>\r
308         /// Returns a boolean to indicate wither Chapter Markers is on or off.\r
309         /// </summary>\r
310         public Boolean TurboFirstPass\r
311         {\r
312             get\r
313             {\r
314                 return this.q_turboFirst;\r
315             }\r
316         }\r
317 \r
318         private Boolean q_largeMp4;\r
319         /// <summary>\r
320         /// Returns a boolean to indicate wither Larger MP4 files is on or off.\r
321         /// </summary>\r
322         public Boolean LargeMP4\r
323         {\r
324             get\r
325             {\r
326                 return this.q_largeMp4;\r
327             }\r
328         }\r
329 \r
330         private string q_videoFramerate;\r
331         /// <summary>\r
332         /// Returns a string with the video Framerate\r
333         /// </summary>\r
334         public string VideoFramerate\r
335         {\r
336             get\r
337             {\r
338                 return this.q_videoFramerate;\r
339             }\r
340         }\r
341 \r
342         private string q_avgBitrate;\r
343         /// <summary>\r
344         /// Returns a string with the average video bitrate\r
345         /// </summary>\r
346         public string AverageVideoBitrate\r
347         {\r
348             get\r
349             {\r
350                 return this.q_avgBitrate;\r
351             }\r
352         }\r
353 \r
354         private string  q_videoTargetSize;\r
355         /// <summary>\r
356         /// Returns a string with the video target size\r
357         /// </summary>\r
358         public string VideoTargetSize\r
359         {\r
360             get\r
361             {\r
362                 return this.q_videoTargetSize;\r
363             }\r
364         }\r
365 \r
366         private int q_videoQuality;\r
367         /// <summary>\r
368         /// Returns a int with the video quality value\r
369         /// </summary>\r
370         public int VideoQuality\r
371         {\r
372             get\r
373             {\r
374                 return this.q_videoQuality;\r
375             }\r
376         }\r
377 \r
378         private Boolean q_crf;\r
379         /// <summary>\r
380         /// Returns a boolean to indicate if CRF is on or off.\r
381         /// </summary>\r
382         public Boolean CRF\r
383         {\r
384             get\r
385             {\r
386                 return this.q_crf;\r
387             }\r
388         }\r
389 \r
390         private string q_audioBitrate;\r
391         /// <summary>\r
392         /// Returns a string with the audio bitrate\r
393         /// </summary>\r
394         public string AudioBitrate\r
395         {\r
396             get\r
397             {\r
398                 return this.q_audioBitrate;\r
399             }\r
400         }\r
401 \r
402         private string q_audioSamplerate;\r
403         /// <summary>\r
404         /// Returns a string with the audio sample rate\r
405         /// </summary>\r
406         public string AudioSampleBitrate\r
407         {\r
408             get\r
409             {\r
410                 return this.q_audioSamplerate;\r
411             }\r
412         }\r
413 \r
414         private string q_audioTrack1;\r
415         /// <summary>\r
416         /// Returns a string with the First selected Audio track\r
417         /// </summary>\r
418         public string AudioTrack1\r
419         {\r
420             get\r
421             {\r
422                 return this.q_audioTrack1;\r
423             }\r
424         }\r
425 \r
426         private string q_audioTrackMix;\r
427         /// <summary>\r
428         /// Returns a string with the First selected Audio track Mix\r
429         /// </summary>\r
430         public string AudioTrackMix\r
431         {\r
432             get\r
433             {\r
434                 return this.q_audioTrackMix;\r
435             }\r
436         }\r
437 \r
438         private string q_subtitles;\r
439         /// <summary>\r
440         /// Returns a string with the selected subtitle track\r
441         /// </summary>\r
442         public string Subtitles\r
443         {\r
444             get\r
445             {\r
446                 return this.q_subtitles;\r
447             }\r
448         }\r
449 \r
450         private string q_h264;\r
451         /// <summary>\r
452         /// Returns a string with the Advanced H264 query string\r
453         /// </summary>\r
454         public string H264Query\r
455         {\r
456             get\r
457             {\r
458                 return this.q_h264;\r
459             }\r
460         }\r
461         private Boolean q_verbose;\r
462         /// <summary>\r
463         /// Returns a string with the Advanced H264 query string\r
464         /// </summary>\r
465         public Boolean Verbose\r
466         {\r
467             get\r
468             {\r
469                 return this.q_verbose;\r
470             }\r
471         }\r
472         #endregion\r
473 \r
474         // Takes in a query which can be in any order and parses it. All varibles are then set so they can be used elsewhere.\r
475         public static QueryParser Parse(String input)\r
476         {\r
477             QueryParser thisQuery = new QueryParser();\r
478 \r
479             #region reg exp \r
480             //Source\r
481             Regex r1 = new Regex(@"(-i)(?:\s\"")([a-zA-Z0-9:\\\s\.]+)(?:\"")");\r
482             Match source = r1.Match(input.Replace('"', '\"'));\r
483             Match title = Regex.Match(input, @"-t ([0-9]*)");\r
484             Match chapters = Regex.Match(input, @"-c ([0-9-]*)");\r
485             Match format = Regex.Match(input, @"-f ([a-z0-9a-z0-9a-z0-9]*)");\r
486   \r
487             //Destination\r
488             Regex r2 = new Regex(@"(-o)(?:\s\"")([a-zA-Z0-9:\\\s\.]+)(?:\"")");\r
489             Match destination = r2.Match(input.Replace('"', '\"'));\r
490             Match width = Regex.Match(input, @"-w ([0-9]*)");\r
491             Match height = Regex.Match(input, @"-l ([0-9]*)");\r
492             Match videoEncoder = Regex.Match(input, @"-e ([a-zA-Z0-9]*)");\r
493             Match audioEncoder = Regex.Match(input, @"-E ([a-zA-Z0-9]*)");\r
494 \r
495             //Picture Settings Tab\r
496             Match deinterlace = Regex.Match(input, @"--deinterlace=([a-z]*)");\r
497             Match denoise = Regex.Match(input, @"--denoise=([a-z]*)");\r
498             Match deblock = Regex.Match(input, @"--deblock");\r
499             Match detelecine = Regex.Match(input, @"--detelecine");\r
500             Match anamorphic = Regex.Match(input, @"-p ");\r
501             Match chapterMarkers = Regex.Match(input, @"-m");\r
502             Match crop = Regex.Match(input, @"--crop ([0-9]):([0-9]):([0-9]):([0-9])");\r
503 \r
504             //Video Settings Tab\r
505             Match videoFramerate = Regex.Match(input, @"-r ([0-9]*)");\r
506             Match videoBitrate = Regex.Match(input, @"-b ([0-9]*)");\r
507             Match videoQuality = Regex.Match(input, @"-q ([0-9.]*)");\r
508             Match videoFilesize = Regex.Match(input, @"-S ([0-9.]*)");\r
509             Match CRF = Regex.Match(input, @"-Q");\r
510             Match twoPass = Regex.Match(input, @"-2");\r
511             Match turboFirstPass = Regex.Match(input, @"-T");\r
512             Match grayscale = Regex.Match(input, @"-g");\r
513             Match largerMp4 = Regex.Match(input, @"-4");\r
514 \r
515             //Audio Settings Tab\r
516             Match subtitles = Regex.Match(input, @"-s ([0-9]*)");\r
517             Match audioBitrate = Regex.Match(input, @"-B ([0-9]*)");\r
518             Match audioSampleRate = Regex.Match(input, @"-R ([0-9.]*)");\r
519             Match audioChannelsMix = Regex.Match(input, @"-6 ([0-9a-z0-9]*)");  // 1 -6 dpl2 // Broken\r
520             Match audioChannel = Regex.Match(input, @"-a ([0-9]*)");\r
521 \r
522             //H264 Tab\r
523             Match x264 = Regex.Match(input, @"-x ([,a-zA-Z0-9=:-]*)");\r
524             \r
525             //Program Options\r
526             Match verbose = Regex.Match(input, @"-v");\r
527             #endregion\r
528 \r
529             try\r
530             {\r
531                 //\r
532                 // Source\r
533                 //\r
534                 #region Source Tab\r
535    \r
536                 thisQuery.q_source = source.ToString().Replace("-i ", "").Replace("\"", "");\r
537                 if (title.Success != false)\r
538                 {\r
539                     thisQuery.q_dvdTitle = int.Parse(title.ToString().Replace("-t ", ""));\r
540                 }\r
541 \r
542                 if (chapters.Success != false)\r
543                 {\r
544                      string[] actTitles = new string[2];\r
545                      actTitles = chapters.ToString().Replace("-c ", "").Split('-');\r
546                      thisQuery.q_chaptersStart = int.Parse(actTitles[0]);\r
547                      thisQuery.q_chaptersFinish = int.Parse(actTitles[1]);\r
548                  }\r
549 \r
550                  if (format.Success != false)\r
551                  {\r
552                      \r
553                      thisQuery.q_format = format.ToString().Replace("-f ", "");\r
554                  }\r
555                 #endregion\r
556 \r
557                 //\r
558                 // Destination\r
559                 //\r
560                 #region Destination\r
561                  thisQuery.q_destination = destination.ToString().Replace("-o ","").Replace("\"", "");\r
562 \r
563                  string videoEncoderConvertion;\r
564                  string audioEncoderConvertion;\r
565 \r
566                  videoEncoderConvertion = videoEncoder.ToString().Replace("-e ", "");\r
567                  switch (videoEncoderConvertion)\r
568                  {\r
569                     case "ffmpeg":\r
570                         videoEncoderConvertion = "Mpeg 4";\r
571                         break;\r
572                     case "xvid":\r
573                         videoEncoderConvertion = "Xvid";\r
574                         break;\r
575                     case "x264":\r
576                         videoEncoderConvertion = "H.264";\r
577                         break;\r
578                     case "x264b13":\r
579                         videoEncoderConvertion = "H.264 Baseline 1.3";\r
580                         break;\r
581                     case "x264b30":\r
582                         videoEncoderConvertion = "H.264 (iPod)";\r
583                         break;\r
584                     default:\r
585                         videoEncoderConvertion = "Mpeg 4";\r
586                         break;\r
587                  }\r
588                  thisQuery.q_videoEncoder = videoEncoderConvertion;\r
589 \r
590                  audioEncoderConvertion = audioEncoder.ToString().Replace("-E ", "");\r
591                  switch (audioEncoderConvertion)\r
592                  {\r
593                     case "faac":\r
594                         audioEncoderConvertion = "AAC";\r
595                         break;\r
596                     case "lame":\r
597                         audioEncoderConvertion = "MP3";\r
598                         break;\r
599                     case "vorbis":\r
600                         audioEncoderConvertion = "Vorbis";\r
601                         break;\r
602                     case "ac3":\r
603                         audioEncoderConvertion = "AC3";\r
604                         break;\r
605                     default:\r
606                         audioEncoderConvertion = "AAC";\r
607                         break;\r
608                  }\r
609                  thisQuery.q_audioEncoder =audioEncoderConvertion;\r
610 \r
611 \r
612                  if (width.Success != false)\r
613                  {\r
614                     thisQuery.q_videoWidth = int.Parse(width.ToString().Replace("-w ", ""));\r
615                  }\r
616                  if (height.Success != false)\r
617                  {\r
618                     thisQuery.q_videoHeight = int.Parse(height.ToString().Replace("-l ", ""));\r
619                  }\r
620                  #endregion\r
621 \r
622                 //\r
623                 //Picture Settings Tab\r
624                 //\r
625                 #region Picture Tab\r
626                  if (crop.Success != false)\r
627                  {\r
628                     thisQuery.q_cropValues = crop.ToString().Replace("--crop ", "");\r
629                     string[] actCropValues = new string[3];\r
630                     actCropValues = thisQuery.q_cropValues.Split(':');\r
631                     thisQuery.q_croptop = actCropValues[0];\r
632                     thisQuery.q_cropbottom = actCropValues[1];\r
633                     thisQuery.q_cropLeft = actCropValues[2];\r
634                     thisQuery.q_cropRight = actCropValues[3];\r
635                  }\r
636 \r
637                  thisQuery.q_detelecine = detelecine.Success;\r
638                  thisQuery.q_deBlock = deblock.Success;\r
639 \r
640                  thisQuery.q_deinterlace = "None";\r
641                  if (deinterlace.Success != false)\r
642                  {\r
643                      switch (deinterlace.ToString().Replace("--deinterlace=", ""))\r
644                      {\r
645                          case "fast":\r
646                              thisQuery.q_deinterlace = "Original (Fast)";\r
647                              break;\r
648                          case "slow":\r
649                              thisQuery.q_deinterlace = "yadif (Slow)";\r
650                              break;\r
651                          case "slower":\r
652                              thisQuery.q_deinterlace = "yadif + mcdeint (Slower)";\r
653                              break;\r
654                          case "slowest":\r
655                              thisQuery.q_deinterlace = "yadif + mcdeint (Slowest)";\r
656                              break;\r
657                          default:\r
658                              thisQuery.q_deinterlace = "None";\r
659                              break;\r
660                      }\r
661                  }\r
662 \r
663                  thisQuery.q_denoise = "None";\r
664                  if (denoise.Success != false)\r
665                  {\r
666                      switch (denoise.ToString().Replace("--denoise=", ""))\r
667                      {\r
668                          case "weak":\r
669                              thisQuery.q_denoise = "Weak";\r
670                              break;\r
671                          case "medium":\r
672                              thisQuery.q_denoise = "Medium";\r
673                              break;\r
674                          case "strong":\r
675                              thisQuery.q_denoise = "Strong";\r
676                              break;\r
677                          default:\r
678                              thisQuery.q_denoise = "None";\r
679                              break;\r
680                      }\r
681                     \r
682                  }\r
683                  thisQuery.q_anamorphic = anamorphic.Success;\r
684                  thisQuery.q_chapterMarkers = chapterMarkers.Success;\r
685                  #endregion\r
686 \r
687                 //\r
688                 //Video Settings Tab\r
689                 //\r
690                 #region Video\r
691                 thisQuery.q_grayscale = grayscale.Success;\r
692                 thisQuery.q_twoPass = twoPass.Success;\r
693                 thisQuery.q_turboFirst = turboFirstPass.Success;\r
694                 thisQuery.q_largeMp4 = largerMp4.Success;\r
695                 if (videoFramerate.Success != false)\r
696                 {\r
697                     thisQuery.q_videoFramerate = videoFramerate.ToString().Replace("-r ", "");\r
698                 }\r
699                 else\r
700                 {\r
701                     thisQuery.q_videoFramerate = "Automatic";\r
702                 }\r
703                 if (videoBitrate.Success != false)\r
704                 {\r
705                     thisQuery.q_avgBitrate = videoBitrate.ToString().Replace("-b ", "");\r
706                 }\r
707                 if (videoFilesize.Success != false)\r
708                 {\r
709                     thisQuery.q_videoTargetSize = videoFilesize.ToString().Replace("-S ", "");\r
710                 }\r
711 \r
712                 double qConvert = 0;\r
713                 if (videoQuality.Success != false)\r
714                 {\r
715                     qConvert = double.Parse(videoQuality.ToString().Replace("-q ", "")) * 100;\r
716                     qConvert = System.Math.Ceiling(qConvert);\r
717                     thisQuery.q_videoQuality = int.Parse(qConvert.ToString());\r
718                 }\r
719                 thisQuery.q_crf = CRF.Success;\r
720                 #endregion\r
721 \r
722                 //\r
723                 //Audio Settings Tab\r
724                 //\r
725                 #region Audio\r
726                 if (audioBitrate.Success != false)\r
727                 {\r
728                     thisQuery.q_audioBitrate = audioBitrate.ToString().Replace("-B ", "");\r
729                 }\r
730                 if (audioSampleRate.Success != false)\r
731                 {\r
732                     thisQuery.q_audioSamplerate = audioSampleRate.ToString().Replace("-R ", "");\r
733                 }\r
734                 if (audioChannel.Success != false)\r
735                 {\r
736                     thisQuery.q_audioTrack1 = audioChannel.ToString().Replace("-a ", "");\r
737                 }\r
738                 else\r
739                 {\r
740                     thisQuery.q_audioTrack1 = "Automatic";\r
741                 }\r
742 \r
743                 thisQuery.q_audioTrackMix = "Automatic";\r
744                 if (audioChannelsMix.Success != false)\r
745                 {\r
746                     switch (audioChannelsMix.ToString().Replace("-6 ", "").Replace(" ",""))\r
747                     {\r
748                         case "mono":\r
749                             thisQuery.q_audioTrackMix = "Mono";\r
750                             break;\r
751                         case "stereo":\r
752                             thisQuery.q_audioTrackMix = "Stereo";\r
753                             break;\r
754                         case "dpl1":\r
755                             thisQuery.q_audioTrackMix = "Dolby Surround";\r
756                             break;\r
757                         case "dpl2":\r
758                             thisQuery.q_audioTrackMix = "Dolby Pro Logic II";\r
759                             break;\r
760                         case "6ch":\r
761                             thisQuery.q_audioTrackMix = "6 Channel Discrete";\r
762                             break;\r
763                         default:\r
764                             thisQuery.q_audioTrackMix = "Automatic";\r
765                             break;\r
766                     }\r
767                    \r
768                 }\r
769                 if (subtitles.Success != false)\r
770                 {\r
771                     thisQuery.q_subtitles = subtitles.ToString().Replace("-s ", "");\r
772                 }\r
773                 else\r
774                 {\r
775                     thisQuery.q_subtitles = "None";\r
776                 }\r
777                 #endregion\r
778 \r
779                 //\r
780                 //H264 tab and other \r
781                 //\r
782                 #region h264 and other\r
783                 //\r
784                 //H264 Tab\r
785                 //\r
786                 if (x264.Success != false)\r
787                 {\r
788                     thisQuery.q_h264 = x264.ToString().Replace("-x ", "");\r
789                 }\r
790 \r
791                 //\r
792                 //Progam Options\r
793                 //\r
794                 thisQuery.q_verbose = verbose.Success;\r
795                 #endregion\r
796             }\r
797             catch (Exception exc)\r
798             {\r
799                 MessageBox.Show("An error has occured in the Query Parser. Please report this error on the forum in the 'Windows' support section. \n\n" + exc.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
800             }\r
801 \r
802             return thisQuery;\r
803         }\r
804     }\r
805 }