2020-04-21 02:05:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows;
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
using System.Windows.Data;
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
using System.Windows.Input;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
using System.Windows.Media.Imaging;
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
using UWUVCI_AIO_WPF.UI.Frames.InjectFrames.Configurations;
|
|
|
|
|
|
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Windows
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaktionslogik für IMG_Message.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class ICOSHOW : Window, IDisposable
|
|
|
|
|
{
|
|
|
|
|
private static readonly string tempPath = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "temp");
|
|
|
|
|
private static readonly string toolsPath = System.IO.Path.Combine(Directory.GetCurrentDirectory(), "bin", "Tools");
|
|
|
|
|
string copy = "";
|
|
|
|
|
string pat = "";
|
|
|
|
|
BitmapImage bitmap = new BitmapImage();
|
|
|
|
|
public ICOSHOW(string path)
|
|
|
|
|
{
|
2020-04-30 15:01:41 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (this.Owner.GetType() != typeof(MainWindow))
|
|
|
|
|
{
|
|
|
|
|
this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
|
|
|
|
|
}
|
2020-04-28 23:40:54 +00:00
|
|
|
|
pat = String.Copy(path);
|
|
|
|
|
|
2020-04-21 02:05:19 +00:00
|
|
|
|
InitializeComponent();
|
|
|
|
|
if (Directory.Exists(System.IO.Path.Combine(tempPath, "image"))) Directory.Delete(System.IO.Path.Combine(tempPath, "image"), true);
|
|
|
|
|
Directory.CreateDirectory(System.IO.Path.Combine(tempPath, "image"));
|
2020-04-28 23:40:54 +00:00
|
|
|
|
if(path == "Added via Config")
|
|
|
|
|
{
|
|
|
|
|
File.WriteAllBytes(System.IO.Path.Combine(tempPath, "image", "ico." + (FindResource("mvm") as MainViewModel).GameConfiguration.TGAIco.extension), (FindResource("mvm") as MainViewModel).GameConfiguration.TGAIco.ImgBin);
|
|
|
|
|
pat = System.IO.Path.Combine(tempPath, "image", "ico." + (FindResource("mvm") as MainViewModel).GameConfiguration.TGAIco.extension);
|
|
|
|
|
}
|
|
|
|
|
if (new FileInfo(pat).Extension.Contains("tga"))
|
2020-04-21 02:05:19 +00:00
|
|
|
|
{
|
|
|
|
|
using (Process conv = new Process())
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
conv.StartInfo.UseShellExecute = false;
|
|
|
|
|
conv.StartInfo.CreateNoWindow = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
conv.StartInfo.FileName = System.IO.Path.Combine(toolsPath, "tga2png.exe");
|
2020-04-28 23:40:54 +00:00
|
|
|
|
conv.StartInfo.Arguments = $"-i \"{pat}\" -o \"{System.IO.Path.Combine(tempPath, "image")}\"";
|
2020-04-21 02:05:19 +00:00
|
|
|
|
|
|
|
|
|
conv.Start();
|
|
|
|
|
conv.WaitForExit();
|
|
|
|
|
|
|
|
|
|
foreach (string sFile in Directory.GetFiles(System.IO.Path.Combine(tempPath, "image"), "*.png"))
|
|
|
|
|
{
|
|
|
|
|
copy = sFile;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2020-04-28 23:40:54 +00:00
|
|
|
|
copy = pat;
|
2020-04-21 02:05:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BitmapImage image = new BitmapImage();
|
|
|
|
|
image.BeginInit();
|
|
|
|
|
image.CacheOption = BitmapCacheOption.OnLoad;
|
2020-04-28 23:40:54 +00:00
|
|
|
|
image.UriSource = new Uri(copy, UriKind.Absolute);
|
2020-04-21 02:05:19 +00:00
|
|
|
|
image.EndInit();
|
2020-04-28 23:40:54 +00:00
|
|
|
|
|
2020-04-21 02:05:19 +00:00
|
|
|
|
img.Source = image;
|
2020-04-28 23:40:54 +00:00
|
|
|
|
if (path == "Added via Config")
|
|
|
|
|
{
|
|
|
|
|
File.Delete(pat);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-21 02:05:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Canc_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
bitmap.UriSource = null;
|
|
|
|
|
this.Close();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 21:53:52 +00:00
|
|
|
|
private void wind_Closing(object sender, System.ComponentModel.CancelEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
(FindResource("mvm") as MainViewModel).mw.Topmost = true;
|
|
|
|
|
}
|
2020-04-21 02:05:19 +00:00
|
|
|
|
|
2020-05-06 21:53:52 +00:00
|
|
|
|
private void wind_Closed(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
(FindResource("mvm") as MainViewModel).mw.Topmost = false;
|
|
|
|
|
}
|
2020-04-21 02:05:19 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|