implemented '*_scr.med' archives decryption.

This commit is contained in:
morkt
2016-05-31 02:41:33 +04:00
parent acb32ac1fe
commit b18ede8684
7 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System.Windows.Controls;
using System.Linq;
using GameRes.Formats.DxLib;
using GameRes.Formats.Strings;
namespace GameRes.Formats.GUI
{
/// <summary>
/// Interaction logic for WidgetSCR.xaml
/// </summary>
public partial class WidgetSCR : StackPanel
{
public WidgetSCR()
{
InitializeComponent();
var keys = new string[] { arcStrings.ArcIgnoreEncryption };
ScriptScheme.ItemsSource = keys.Concat (MedOpener.KnownSchemes.Keys.OrderBy (x => x));
if (-1 == ScriptScheme.SelectedIndex)
ScriptScheme.SelectedIndex = 0;
}
}
}