GARbro-mirror/GUI/GarExtract.cs

448 lines
18 KiB
C#
Raw Normal View History

2014-07-25 11:06:10 +08:00
//! \file GarExtract.cs
//! \date Fri Jul 25 05:52:27 2014
//! \brief Extract archive frontend.
//
2017-02-03 12:53:34 +08:00
// Copyright (C) 2014-2017 by morkt
2014-07-25 11:06:10 +08:00
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
//
using System;
using System.IO;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.InteropServices;
2014-07-25 11:06:10 +08:00
using System.Windows;
using System.Windows.Input;
using System.Windows.Interop;
using System.Windows.Media.Imaging;
2014-07-25 11:06:10 +08:00
using GameRes;
using GARbro.GUI.Strings;
using GARbro.GUI.Properties;
2014-07-25 11:06:10 +08:00
namespace GARbro.GUI
{
public partial class MainWindow : Window
{
/// <summary>
/// Handle "Extract item" command.
/// </summary>
private void ExtractItemExec (object sender, ExecutedRoutedEventArgs e)
{
var entry = CurrentDirectory.SelectedItem as EntryViewModel;
if (null == entry && !ViewModel.IsArchive)
{
SetStatusText (guiStrings.MsgChooseFiles);
2014-07-25 11:06:10 +08:00
return;
}
2015-05-16 04:33:31 +08:00
GarExtract extractor = null;
2014-07-25 11:06:10 +08:00
try
{
string destination = Settings.Default.appLastDestination;
if (!Directory.Exists (destination))
destination = "";
var vm = ViewModel;
2015-09-17 08:25:36 +08:00
if (vm.IsArchive)
2014-07-25 11:06:10 +08:00
{
if (string.IsNullOrEmpty (destination))
destination = Path.GetDirectoryName (vm.Path.First());
2015-09-01 12:52:47 +08:00
var archive_name = vm.Path[vm.Path.Count-2];
2015-09-06 09:33:56 +08:00
extractor = new GarExtract (this, archive_name, VFS.Top as ArchiveFileSystem);
if (null == entry || (entry.Name == ".." && string.IsNullOrEmpty (vm.Path.Last()))) // root entry
2015-05-16 04:33:31 +08:00
extractor.ExtractAll (destination);
else
extractor.Extract (entry, destination);
2014-07-25 11:06:10 +08:00
}
2015-09-17 08:25:36 +08:00
else if (!entry.IsDirectory)
{
var source = entry.Source.Name;
SetBusyState();
if (string.IsNullOrEmpty (destination))
{
// extract into directory named after archive
if (!string.IsNullOrEmpty (Path.GetExtension (entry.Name)))
destination = Path.GetFileNameWithoutExtension (source);
else
destination = vm.Path.First();
}
extractor = new GarExtract (this, source);
extractor.ExtractAll (destination);
}
2014-07-25 11:06:10 +08:00
}
catch (OperationCanceledException X)
{
SetStatusText (X.Message);
}
2014-07-25 11:06:10 +08:00
catch (Exception X)
{
PopupError (X.Message, guiStrings.MsgErrorExtracting);
}
2015-09-06 09:33:56 +08:00
finally
{
if (null != extractor && !extractor.IsActive)
extractor.Dispose();
}
2014-07-25 11:06:10 +08:00
}
}
2014-07-25 11:06:10 +08:00
sealed internal class GarExtract : GarOperation, IDisposable
{
private string m_arc_name;
2015-09-06 09:33:56 +08:00
private ArchiveFileSystem m_fs;
private readonly bool m_should_ascend;
private bool m_skip_images = false;
private bool m_skip_script = false;
private bool m_skip_audio = false;
private bool m_adjust_image_offset = false;
private bool m_convert_audio;
private ImageFormat m_image_format;
private int m_extract_count;
private int m_skip_count;
private bool m_extract_in_progress = false;
2015-05-16 04:33:31 +08:00
public bool IsActive { get { return m_extract_in_progress; } }
public GarExtract (MainWindow parent, string source) : base (parent, guiStrings.TextExtractionError)
{
m_arc_name = Path.GetFileName (source);
try
2015-09-06 09:33:56 +08:00
{
VFS.ChDir (source);
m_should_ascend = true;
2015-09-06 09:33:56 +08:00
}
catch (Exception X)
{
throw new OperationCanceledException (string.Format ("{1}: {0}", X.Message, m_arc_name));
}
m_fs = VFS.Top as ArchiveFileSystem;
2015-09-06 09:33:56 +08:00
}
public GarExtract (MainWindow parent, string source, ArchiveFileSystem fs) : base (parent, guiStrings.TextExtractionError)
2015-09-06 09:33:56 +08:00
{
if (null == fs)
throw new UnknownFormatException();
m_fs = fs;
m_arc_name = Path.GetFileName (source);
m_should_ascend = false;
}
private void PrepareDestination (string destination)
{
bool stop_watch = !m_main.ViewModel.IsArchive;
if (stop_watch)
m_main.StopWatchDirectoryChanges();
try
{
Directory.CreateDirectory (destination);
Directory.SetCurrentDirectory (destination);
Settings.Default.appLastDestination = destination;
}
finally
{
if (stop_watch)
m_main.ResumeWatchDirectoryChanges();
2014-07-25 11:06:10 +08:00
}
}
public void ExtractAll (string destination)
2014-07-25 11:06:10 +08:00
{
2015-09-06 09:33:56 +08:00
var file_list = m_fs.GetFilesRecursive();
if (!file_list.Any())
2014-07-25 11:06:10 +08:00
{
m_main.SetStatusText (string.Format ("{1}: {0}", guiStrings.MsgEmptyArchive, m_arc_name));
2014-07-25 11:06:10 +08:00
return;
}
var extractDialog = new ExtractArchiveDialog (m_arc_name, destination);
extractDialog.Owner = m_main;
2014-07-25 11:06:10 +08:00
var result = extractDialog.ShowDialog();
if (!result.Value)
return;
destination = extractDialog.Destination;
2014-07-25 11:06:10 +08:00
if (!string.IsNullOrEmpty (destination))
{
destination = Path.GetFullPath (destination);
PrepareDestination (destination);
2014-07-25 11:06:10 +08:00
}
else
destination = ".";
m_skip_images = !extractDialog.ExtractImages.IsChecked.Value;
m_skip_script = !extractDialog.ExtractText.IsChecked.Value;
m_skip_audio = !extractDialog.ExtractAudio.IsChecked.Value;
if (!m_skip_images)
m_image_format = extractDialog.GetImageFormat (extractDialog.ImageConversionFormat);
2014-07-25 11:06:10 +08:00
m_main.SetStatusText (string.Format(guiStrings.MsgExtractingTo, m_arc_name, destination));
2015-09-06 09:33:56 +08:00
ExtractFilesFromArchive (string.Format (guiStrings.MsgExtractingArchive, m_arc_name), file_list);
2014-07-25 11:06:10 +08:00
}
public void Extract (EntryViewModel entry, string destination)
2014-07-25 11:06:10 +08:00
{
var view_model = m_main.ViewModel;
var selected = m_main.CurrentDirectory.SelectedItems.Cast<EntryViewModel>();
2015-09-05 14:06:12 +08:00
if (!selected.Any() && entry.Name == "..")
selected = view_model;
IEnumerable<Entry> file_list = selected.Select (e => e.Source);
2015-09-06 09:33:56 +08:00
if (m_fs is TreeArchiveFileSystem)
file_list = (m_fs as TreeArchiveFileSystem).GetFilesRecursive (file_list);
2015-09-05 14:06:12 +08:00
if (!file_list.Any())
{
m_main.SetStatusText (guiStrings.MsgChooseFiles);
return;
}
ExtractDialog extractDialog;
bool multiple_files = file_list.Skip (1).Any();
if (multiple_files)
extractDialog = new ExtractArchiveDialog (m_arc_name, destination);
else
extractDialog = new ExtractFile (entry, destination);
extractDialog.Owner = m_main;
2014-07-25 11:06:10 +08:00
var result = extractDialog.ShowDialog();
if (!result.Value)
return;
if (multiple_files)
{
m_skip_images = !Settings.Default.appExtractImages;
m_skip_script = !Settings.Default.appExtractText;
m_skip_audio = !Settings.Default.appExtractAudio;
}
destination = extractDialog.Destination;
2014-07-25 11:06:10 +08:00
if (!string.IsNullOrEmpty (destination))
{
destination = Path.GetFullPath (destination);
PrepareDestination (destination);
2014-07-25 11:06:10 +08:00
}
if (!m_skip_images)
m_image_format = FormatCatalog.Instance.ImageFormats.FirstOrDefault (f => f.Tag.Equals (Settings.Default.appImageFormat));
2014-07-25 11:06:10 +08:00
ExtractFilesFromArchive (string.Format (guiStrings.MsgExtractingFile, m_arc_name), file_list);
2014-07-25 11:06:10 +08:00
}
private void ExtractFilesFromArchive (string text, IEnumerable<Entry> file_list)
2014-07-25 11:06:10 +08:00
{
2017-02-04 17:26:51 +08:00
file_list = file_list.Where (e => e.Offset >= 0);
if (file_list.Skip (1).Any() // file_list.Count() > 1
&& (m_skip_images || m_skip_script || m_skip_audio))
file_list = file_list.Where (f => !(m_skip_images && f.Type == "image") &&
!(m_skip_script && f.Type == "script") &&
!(m_skip_audio && f.Type == "audio"));
if (!file_list.Any())
{
m_main.SetStatusText (string.Format ("{1}: {0}", guiStrings.MsgNoFiles, m_arc_name));
return;
}
file_list = file_list.OrderBy (e => e.Offset);
m_progress_dialog = new ProgressDialog ()
2014-07-25 11:06:10 +08:00
{
WindowTitle = guiStrings.TextTitle,
Text = text,
Description = "",
MinimizeBox = true,
};
if (!file_list.Skip (1).Any()) // 1 == file_list.Count()
{
m_progress_dialog.Description = file_list.First().Name;
m_progress_dialog.ProgressBarStyle = ProgressBarStyle.MarqueeProgressBar;
}
m_convert_audio = !m_skip_audio && Settings.Default.appConvertAudio;
m_progress_dialog.DoWork += (s, e) => ExtractWorker (file_list);
m_progress_dialog.RunWorkerCompleted += OnExtractComplete;
m_main.IsEnabled = false;
m_progress_dialog.ShowDialog (m_main);
m_extract_in_progress = true;
}
void ExtractWorker (IEnumerable<Entry> file_list)
{
m_extract_count = 0;
m_skip_count = 0;
var arc = m_fs.Source;
int total = file_list.Count();
int progress_count = 0;
bool ignore_errors = false;
foreach (var entry in file_list)
2014-07-25 11:06:10 +08:00
{
if (m_progress_dialog.CancellationPending)
break;
if (total > 1)
m_progress_dialog.ReportProgress (progress_count++*100/total, null, entry.Name);
try
{
if (null != m_image_format && entry.Type == "image")
2015-09-06 09:33:56 +08:00
ExtractImage (arc, entry, m_image_format);
else if (m_convert_audio && entry.Type == "audio")
2015-09-06 09:33:56 +08:00
ExtractAudio (arc, entry);
else
ExtractEntryAsIs (arc, entry);
++m_extract_count;
}
catch (SkipExistingFileException)
{
++m_skip_count;
continue;
}
catch (OperationCanceledException)
{
break;
}
catch (Exception X)
{
if (!ignore_errors)
{
2017-02-03 12:53:34 +08:00
var error_text = string.Format (guiStrings.TextErrorExtracting, entry.Name, X.Message);
var result = ShowErrorDialog (error_text);
if (!result.Continue)
break;
ignore_errors = result.IgnoreErrors;
}
++m_skip_count;
}
2014-07-25 11:06:10 +08:00
}
}
void ExtractEntryAsIs (ArcFile arc, Entry entry)
{
using (var input = arc.OpenEntry (entry))
2017-02-05 05:38:54 +08:00
using (var output = CreateNewFile (entry.Name, true))
input.CopyTo (output);
}
void ExtractImage (ArcFile arc, Entry entry, ImageFormat target_format)
{
using (var decoder = arc.OpenImage (entry))
{
var src_format = decoder.SourceFormat; // could be null
string target_ext = target_format.Extensions.FirstOrDefault() ?? "";
string outname = Path.ChangeExtension (entry.Name, target_ext);
if (src_format == target_format)
{
// source format is the same as a target, copy file as is
2017-02-05 05:38:54 +08:00
using (var output = CreateNewFile (outname, true))
decoder.Source.CopyTo (output);
return;
}
ImageData image = decoder.Image;
if (m_adjust_image_offset)
{
image = AdjustImageOffset (image);
}
2017-02-05 05:38:54 +08:00
using (var outfile = CreateNewFile (outname, true))
{
target_format.Write (outfile, image);
2014-07-25 11:06:10 +08:00
}
2016-10-25 22:18:51 +08:00
}
}
static ImageData AdjustImageOffset (ImageData image)
{
if (0 == image.OffsetX && 0 == image.OffsetY)
return image;
int width = (int)image.Width + image.OffsetX;
int height = (int)image.Height + image.OffsetY;
if (width <= 0 || height <= 0)
return image;
int x = Math.Max (image.OffsetX, 0);
int y = Math.Max (image.OffsetY, 0);
int src_x = image.OffsetX < 0 ? Math.Abs (image.OffsetX) : 0;
int src_y = image.OffsetY < 0 ? Math.Abs (image.OffsetY) : 0;
int src_stride = (int)image.Width * (image.BPP+7) / 8;
int dst_stride = width * (image.BPP+7) / 8;
var pixels = new byte[height*dst_stride];
int offset = y * dst_stride + x * image.BPP / 8;
Int32Rect rect = new Int32Rect (src_x, src_y, (int)image.Width - src_x, 1);
for (int row = src_y; row < image.Height; ++row)
{
rect.Y = row;
image.Bitmap.CopyPixels (rect, pixels, src_stride, offset);
offset += dst_stride;
}
var bitmap = BitmapSource.Create (width, height, image.Bitmap.DpiX, image.Bitmap.DpiY,
image.Bitmap.Format, image.Bitmap.Palette, pixels, dst_stride);
return new ImageData (bitmap);
}
void ExtractAudio (ArcFile arc, Entry entry)
{
2016-10-15 13:34:46 +08:00
using (var file = arc.OpenBinaryEntry (entry))
using (var sound = AudioFormat.Read (file))
{
if (null == sound)
throw new InvalidFormatException (guiStrings.MsgUnableInterpretAudio);
ConvertAudio (entry.Name, sound);
}
}
public void ConvertAudio (string filename, SoundInput input)
{
string source_format = input.SourceFormat;
if (GarConvertMedia.CommonAudioFormats.Contains (source_format))
{
var output_name = Path.ChangeExtension (filename, source_format);
2017-02-05 05:38:54 +08:00
using (var output = CreateNewFile (output_name, true))
2014-07-25 11:06:10 +08:00
{
input.Source.Position = 0;
input.Source.CopyTo (output);
2014-07-25 11:06:10 +08:00
}
}
else
{
var output_name = Path.ChangeExtension (filename, "wav");
2017-02-05 05:38:54 +08:00
using (var output = CreateNewFile (output_name, true))
2015-08-14 10:05:50 +08:00
AudioFormat.Wav.Write (input, output);
}
}
void OnExtractComplete (object sender, RunWorkerCompletedEventArgs e)
{
m_main.IsEnabled = true;
m_extract_in_progress = false;
m_progress_dialog.Dispose();
m_main.Activate();
if (!m_main.ViewModel.IsArchive)
{
m_main.Dispatcher.Invoke (m_main.RefreshView);
}
m_main.SetStatusText (Localization.Format ("MsgExtractedFiles", m_extract_count));
2015-09-06 09:33:56 +08:00
this.Dispose();
}
#region IDisposable Members
bool disposed = false;
public void Dispose ()
{
if (!disposed)
{
if (m_should_ascend)
{
VFS.ChDir ("..");
}
2015-09-06 09:33:56 +08:00
disposed = true;
}
GC.SuppressFinalize (this);
2014-07-25 11:06:10 +08:00
}
2015-09-06 09:33:56 +08:00
#endregion
2014-07-25 11:06:10 +08:00
}
}