You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
473 lines
30 KiB
C#
473 lines
30 KiB
C#
namespace DotNetCTFDumper.GUI
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.treeView1 = new System.Windows.Forms.TreeView();
|
|
this.listBox1 = new System.Windows.Forms.ListBox();
|
|
this.GameInfo = new System.Windows.Forms.Label();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.imageBar = new System.Windows.Forms.ProgressBar();
|
|
this.imageLabel = new System.Windows.Forms.Label();
|
|
this.soundLabel = new System.Windows.Forms.Label();
|
|
this.soundBar = new System.Windows.Forms.ProgressBar();
|
|
this.FolderBTN = new System.Windows.Forms.Button();
|
|
this.MFABtn = new System.Windows.Forms.Button();
|
|
this.soundsButton = new System.Windows.Forms.Button();
|
|
this.imagesButton = new System.Windows.Forms.Button();
|
|
this.loadingLabel = new System.Windows.Forms.Label();
|
|
this.cryptKeyBtn = new System.Windows.Forms.Button();
|
|
this.showHexBtn = new System.Windows.Forms.Button();
|
|
this.dumpSortedBtn = new System.Windows.Forms.Button();
|
|
this.ChunkCombo = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.saveChunkBtn = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.viewHexBtn = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.previewFrameBtn = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.packDataBtn = new System.Windows.Forms.Button();
|
|
this.musicsButton = new System.Windows.Forms.Button();
|
|
this.musicBar = new System.Windows.Forms.ProgressBar();
|
|
this.musicLabel = new System.Windows.Forms.Label();
|
|
this.ChunkCombo.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.button1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.button1.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.button1.Location = new System.Drawing.Point(12, 12);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(101, 23);
|
|
this.button1.TabIndex = 0;
|
|
this.button1.Text = "Select File";
|
|
this.button1.UseVisualStyleBackColor = false;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.FileName = "fnaf3.exe";
|
|
this.openFileDialog1.Filter = "CTF Executable|*.exe";
|
|
this.openFileDialog1.InitialDirectory = "E:\\";
|
|
this.openFileDialog1.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog1_FileOk);
|
|
//
|
|
// treeView1
|
|
//
|
|
this.treeView1.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.treeView1.BackColor = System.Drawing.Color.Black;
|
|
this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.treeView1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.treeView1.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.treeView1.Location = new System.Drawing.Point(642, 9);
|
|
this.treeView1.Margin = new System.Windows.Forms.Padding(0);
|
|
this.treeView1.MaximumSize = new System.Drawing.Size(286, 900);
|
|
this.treeView1.MinimumSize = new System.Drawing.Size(286, 489);
|
|
this.treeView1.Name = "treeView1";
|
|
this.treeView1.Size = new System.Drawing.Size(286, 489);
|
|
this.treeView1.TabIndex = 1;
|
|
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
|
|
this.treeView1.DoubleClick += new System.EventHandler(this.treeView1_AfterDblClick);
|
|
this.treeView1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.treeView1_RightClick);
|
|
//
|
|
// listBox1
|
|
//
|
|
this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.listBox1.BackColor = System.Drawing.Color.Black;
|
|
this.listBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.listBox1.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.listBox1.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.listBox1.FormattingEnabled = true;
|
|
this.listBox1.IntegralHeight = false;
|
|
this.listBox1.ItemHeight = 14;
|
|
this.listBox1.Location = new System.Drawing.Point(342, 9);
|
|
this.listBox1.Margin = new System.Windows.Forms.Padding(0);
|
|
this.listBox1.MaximumSize = new System.Drawing.Size(300, 50000);
|
|
this.listBox1.MinimumSize = new System.Drawing.Size(180, 234);
|
|
this.listBox1.Name = "listBox1";
|
|
this.listBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
|
this.listBox1.Size = new System.Drawing.Size(300, 277);
|
|
this.listBox1.TabIndex = 5;
|
|
//
|
|
// GameInfo
|
|
//
|
|
this.GameInfo.AutoSize = true;
|
|
this.GameInfo.BackColor = System.Drawing.Color.Transparent;
|
|
this.GameInfo.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.GameInfo.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.GameInfo.Location = new System.Drawing.Point(9, 55);
|
|
this.GameInfo.Margin = new System.Windows.Forms.Padding(5, 0, 3, 0);
|
|
this.GameInfo.Name = "GameInfo";
|
|
this.GameInfo.Size = new System.Drawing.Size(182, 45);
|
|
this.GameInfo.TabIndex = 3;
|
|
this.GameInfo.Text = "GameInfo will appear here\r\nSemenLine\r\nLine3\r\n";
|
|
this.GameInfo.Visible = false;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Font = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.label1.Location = new System.Drawing.Point(119, 15);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(176, 17);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "CTFDumper 0.1.1 Debug";
|
|
//
|
|
// imageBar
|
|
//
|
|
this.imageBar.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.imageBar.BackColor = System.Drawing.Color.Black;
|
|
this.imageBar.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.imageBar.Location = new System.Drawing.Point(190, 367);
|
|
this.imageBar.Name = "imageBar";
|
|
this.imageBar.Size = new System.Drawing.Size(126, 23);
|
|
this.imageBar.Step = 2;
|
|
this.imageBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
|
this.imageBar.TabIndex = 8;
|
|
this.imageBar.Visible = false;
|
|
//
|
|
// imageLabel
|
|
//
|
|
this.imageLabel.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.imageLabel.BackColor = System.Drawing.Color.Transparent;
|
|
this.imageLabel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.imageLabel.Font = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.imageLabel.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.imageLabel.Location = new System.Drawing.Point(322, 367);
|
|
this.imageLabel.Name = "imageLabel";
|
|
this.imageLabel.Size = new System.Drawing.Size(126, 24);
|
|
this.imageLabel.TabIndex = 9;
|
|
this.imageLabel.Text = "0/0";
|
|
this.imageLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.imageLabel.Visible = false;
|
|
//
|
|
// soundLabel
|
|
//
|
|
this.soundLabel.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.soundLabel.BackColor = System.Drawing.Color.Black;
|
|
this.soundLabel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.soundLabel.Font = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.soundLabel.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.soundLabel.Location = new System.Drawing.Point(322, 415);
|
|
this.soundLabel.Name = "soundLabel";
|
|
this.soundLabel.Size = new System.Drawing.Size(126, 24);
|
|
this.soundLabel.TabIndex = 11;
|
|
this.soundLabel.Text = "0/0";
|
|
this.soundLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.soundLabel.Visible = false;
|
|
//
|
|
// soundBar
|
|
//
|
|
this.soundBar.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.soundBar.BackColor = System.Drawing.Color.Black;
|
|
this.soundBar.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.soundBar.Location = new System.Drawing.Point(190, 415);
|
|
this.soundBar.Name = "soundBar";
|
|
this.soundBar.Size = new System.Drawing.Size(126, 23);
|
|
this.soundBar.Step = 2;
|
|
this.soundBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
|
this.soundBar.TabIndex = 10;
|
|
this.soundBar.Visible = false;
|
|
//
|
|
// FolderBTN
|
|
//
|
|
this.FolderBTN.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.FolderBTN.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.FolderBTN.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.FolderBTN.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.FolderBTN.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.FolderBTN.Location = new System.Drawing.Point(101, 309);
|
|
this.FolderBTN.Name = "FolderBTN";
|
|
this.FolderBTN.Size = new System.Drawing.Size(83, 42);
|
|
this.FolderBTN.TabIndex = 12;
|
|
this.FolderBTN.Text = "Open Dump Folder";
|
|
this.FolderBTN.UseVisualStyleBackColor = false;
|
|
this.FolderBTN.Visible = false;
|
|
this.FolderBTN.Click += new System.EventHandler(this.FolderBTN_Click);
|
|
//
|
|
// MFABtn
|
|
//
|
|
this.MFABtn.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.MFABtn.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.MFABtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.MFABtn.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.MFABtn.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.MFABtn.Location = new System.Drawing.Point(12, 453);
|
|
this.MFABtn.Name = "MFABtn";
|
|
this.MFABtn.Size = new System.Drawing.Size(83, 42);
|
|
this.MFABtn.TabIndex = 13;
|
|
this.MFABtn.Text = "Generate MFA";
|
|
this.MFABtn.UseVisualStyleBackColor = false;
|
|
this.MFABtn.Visible = false;
|
|
this.MFABtn.Click += new System.EventHandler(this.MFABtn_Click);
|
|
//
|
|
// soundsButton
|
|
//
|
|
this.soundsButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.soundsButton.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.soundsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.soundsButton.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.soundsButton.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.soundsButton.Location = new System.Drawing.Point(101, 405);
|
|
this.soundsButton.Name = "soundsButton";
|
|
this.soundsButton.Size = new System.Drawing.Size(83, 42);
|
|
this.soundsButton.TabIndex = 14;
|
|
this.soundsButton.Text = "Dump Sounds";
|
|
this.soundsButton.UseVisualStyleBackColor = false;
|
|
this.soundsButton.Visible = false;
|
|
this.soundsButton.Click += new System.EventHandler(this.soundsButton_Click);
|
|
//
|
|
// imagesButton
|
|
//
|
|
this.imagesButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.imagesButton.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.imagesButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.imagesButton.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.imagesButton.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.imagesButton.Location = new System.Drawing.Point(101, 357);
|
|
this.imagesButton.Name = "imagesButton";
|
|
this.imagesButton.Size = new System.Drawing.Size(83, 42);
|
|
this.imagesButton.TabIndex = 15;
|
|
this.imagesButton.Text = "Dump\r\nImages";
|
|
this.imagesButton.UseVisualStyleBackColor = false;
|
|
this.imagesButton.Visible = false;
|
|
this.imagesButton.Click += new System.EventHandler(this.imagesButton_Click);
|
|
//
|
|
// loadingLabel
|
|
//
|
|
this.loadingLabel.BackColor = System.Drawing.Color.Transparent;
|
|
this.loadingLabel.Font = new System.Drawing.Font("Courier New", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.loadingLabel.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.loadingLabel.Location = new System.Drawing.Point(119, 12);
|
|
this.loadingLabel.Name = "loadingLabel";
|
|
this.loadingLabel.Size = new System.Drawing.Size(197, 91);
|
|
this.loadingLabel.TabIndex = 16;
|
|
this.loadingLabel.Text = "Loading...";
|
|
//
|
|
// cryptKeyBtn
|
|
//
|
|
this.cryptKeyBtn.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.cryptKeyBtn.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.cryptKeyBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.cryptKeyBtn.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.cryptKeyBtn.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.cryptKeyBtn.Location = new System.Drawing.Point(12, 357);
|
|
this.cryptKeyBtn.Name = "cryptKeyBtn";
|
|
this.cryptKeyBtn.Size = new System.Drawing.Size(83, 42);
|
|
this.cryptKeyBtn.TabIndex = 17;
|
|
this.cryptKeyBtn.Text = "Crypto Key";
|
|
this.cryptKeyBtn.UseVisualStyleBackColor = false;
|
|
this.cryptKeyBtn.Visible = false;
|
|
this.cryptKeyBtn.Click += new System.EventHandler(this.cryptKeyBtn_Click);
|
|
//
|
|
// showHexBtn
|
|
//
|
|
this.showHexBtn.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.showHexBtn.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.showHexBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.showHexBtn.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.showHexBtn.Location = new System.Drawing.Point(-171, 191);
|
|
this.showHexBtn.Name = "showHexBtn";
|
|
this.showHexBtn.Size = new System.Drawing.Size(180, 29);
|
|
this.showHexBtn.TabIndex = 18;
|
|
this.showHexBtn.Text = "Show hex";
|
|
this.showHexBtn.UseVisualStyleBackColor = false;
|
|
this.showHexBtn.Visible = false;
|
|
//
|
|
// dumpSortedBtn
|
|
//
|
|
this.dumpSortedBtn.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.dumpSortedBtn.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.dumpSortedBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.dumpSortedBtn.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.dumpSortedBtn.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.dumpSortedBtn.Location = new System.Drawing.Point(12, 405);
|
|
this.dumpSortedBtn.Name = "dumpSortedBtn";
|
|
this.dumpSortedBtn.Size = new System.Drawing.Size(83, 42);
|
|
this.dumpSortedBtn.TabIndex = 19;
|
|
this.dumpSortedBtn.Text = "Dump Sorted";
|
|
this.dumpSortedBtn.UseVisualStyleBackColor = false;
|
|
this.dumpSortedBtn.Visible = false;
|
|
this.dumpSortedBtn.Click += new System.EventHandler(this.dumpSortedBtn_Click);
|
|
//
|
|
// ChunkCombo
|
|
//
|
|
this.ChunkCombo.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {this.saveChunkBtn, this.viewHexBtn, this.previewFrameBtn});
|
|
this.ChunkCombo.Name = "Save";
|
|
this.ChunkCombo.Size = new System.Drawing.Size(152, 70);
|
|
this.ChunkCombo.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.ChunkCombo_ItemSelected);
|
|
//
|
|
// saveChunkBtn
|
|
//
|
|
this.saveChunkBtn.Name = "saveChunkBtn";
|
|
this.saveChunkBtn.Size = new System.Drawing.Size(151, 22);
|
|
this.saveChunkBtn.Text = "Save";
|
|
//
|
|
// viewHexBtn
|
|
//
|
|
this.viewHexBtn.Name = "viewHexBtn";
|
|
this.viewHexBtn.Size = new System.Drawing.Size(151, 22);
|
|
this.viewHexBtn.Text = "View Hex";
|
|
//
|
|
// previewFrameBtn
|
|
//
|
|
this.previewFrameBtn.Name = "previewFrameBtn";
|
|
this.previewFrameBtn.Size = new System.Drawing.Size(151, 22);
|
|
this.previewFrameBtn.Text = "Preview Frame";
|
|
//
|
|
// packDataBtn
|
|
//
|
|
this.packDataBtn.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.packDataBtn.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.packDataBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.packDataBtn.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.packDataBtn.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.packDataBtn.Location = new System.Drawing.Point(12, 309);
|
|
this.packDataBtn.Name = "packDataBtn";
|
|
this.packDataBtn.Size = new System.Drawing.Size(83, 42);
|
|
this.packDataBtn.TabIndex = 20;
|
|
this.packDataBtn.Text = "Pack Data";
|
|
this.packDataBtn.UseVisualStyleBackColor = false;
|
|
this.packDataBtn.Visible = false;
|
|
this.packDataBtn.Click += new System.EventHandler(this.packDataBtn_Click);
|
|
//
|
|
// musicsButton
|
|
//
|
|
this.musicsButton.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.musicsButton.BackColor = System.Drawing.Color.FromArgb(((int) (((byte) (64)))), ((int) (((byte) (64)))), ((int) (((byte) (64)))));
|
|
this.musicsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.musicsButton.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.musicsButton.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.musicsButton.Location = new System.Drawing.Point(101, 453);
|
|
this.musicsButton.Name = "musicsButton";
|
|
this.musicsButton.Size = new System.Drawing.Size(83, 42);
|
|
this.musicsButton.TabIndex = 21;
|
|
this.musicsButton.Text = "Dump Musics";
|
|
this.musicsButton.UseVisualStyleBackColor = false;
|
|
this.musicsButton.Visible = false;
|
|
this.musicsButton.Click += new System.EventHandler(this.musicsButton_Click);
|
|
//
|
|
// musicBar
|
|
//
|
|
this.musicBar.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.musicBar.BackColor = System.Drawing.Color.Black;
|
|
this.musicBar.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.musicBar.Location = new System.Drawing.Point(190, 463);
|
|
this.musicBar.Name = "musicBar";
|
|
this.musicBar.Size = new System.Drawing.Size(126, 23);
|
|
this.musicBar.Step = 2;
|
|
this.musicBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
|
this.musicBar.TabIndex = 22;
|
|
this.musicBar.Visible = false;
|
|
//
|
|
// musicLabel
|
|
//
|
|
this.musicLabel.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.musicLabel.BackColor = System.Drawing.Color.Black;
|
|
this.musicLabel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.musicLabel.Font = new System.Drawing.Font("Courier New", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte) (204)));
|
|
this.musicLabel.ForeColor = System.Drawing.Color.FromArgb(((int) (((byte) (255)))), ((int) (((byte) (128)))), ((int) (((byte) (0)))));
|
|
this.musicLabel.Location = new System.Drawing.Point(322, 463);
|
|
this.musicLabel.Name = "musicLabel";
|
|
this.musicLabel.Size = new System.Drawing.Size(126, 24);
|
|
this.musicLabel.TabIndex = 23;
|
|
this.musicLabel.Text = "0/0";
|
|
this.musicLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
this.musicLabel.Visible = false;
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.Black;
|
|
this.ClientSize = new System.Drawing.Size(943, 507);
|
|
this.Controls.Add(this.musicLabel);
|
|
this.Controls.Add(this.musicBar);
|
|
this.Controls.Add(this.musicsButton);
|
|
this.Controls.Add(this.packDataBtn);
|
|
this.Controls.Add(this.dumpSortedBtn);
|
|
this.Controls.Add(this.showHexBtn);
|
|
this.Controls.Add(this.cryptKeyBtn);
|
|
this.Controls.Add(this.loadingLabel);
|
|
this.Controls.Add(this.imagesButton);
|
|
this.Controls.Add(this.soundsButton);
|
|
this.Controls.Add(this.MFABtn);
|
|
this.Controls.Add(this.FolderBTN);
|
|
this.Controls.Add(this.soundLabel);
|
|
this.Controls.Add(this.soundBar);
|
|
this.Controls.Add(this.imageLabel);
|
|
this.Controls.Add(this.imageBar);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.GameInfo);
|
|
this.Controls.Add(this.listBox1);
|
|
this.Controls.Add(this.treeView1);
|
|
this.Controls.Add(this.button1);
|
|
this.Icon = ((System.Drawing.Icon) (resources.GetObject("$this.Icon")));
|
|
this.Location = new System.Drawing.Point(15, 15);
|
|
this.Name = "MainForm";
|
|
this.Text = "DotNetCTFDumper";
|
|
this.Load += new System.EventHandler(this.MainForm_Load);
|
|
this.ChunkCombo.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
}
|
|
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.ContextMenuStrip ChunkCombo;
|
|
private System.Windows.Forms.Button cryptKeyBtn;
|
|
private System.Windows.Forms.Button dumpSortedBtn;
|
|
private System.Windows.Forms.Button FolderBTN;
|
|
private System.Windows.Forms.Label GameInfo;
|
|
private System.Windows.Forms.ProgressBar imageBar;
|
|
private System.Windows.Forms.Label imageLabel;
|
|
private System.Windows.Forms.Button imagesButton;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.ListBox listBox1;
|
|
private System.Windows.Forms.Label loadingLabel;
|
|
private System.Windows.Forms.Button MFABtn;
|
|
private System.Windows.Forms.ProgressBar musicBar;
|
|
private System.Windows.Forms.Label musicLabel;
|
|
private System.Windows.Forms.Button musicsButton;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
|
private System.Windows.Forms.Button packDataBtn;
|
|
private System.Windows.Forms.ToolStripMenuItem previewFrameBtn;
|
|
private System.Windows.Forms.ToolStripMenuItem saveChunkBtn;
|
|
private System.Windows.Forms.Button showHexBtn;
|
|
private System.Windows.Forms.ProgressBar soundBar;
|
|
private System.Windows.Forms.Label soundLabel;
|
|
private System.Windows.Forms.Button soundsButton;
|
|
private System.Windows.Forms.TreeView treeView1;
|
|
private System.Windows.Forms.ToolStripMenuItem viewHexBtn;
|
|
|
|
#endregion
|
|
}
|
|
} |