using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Toolbox.Library.Forms; namespace Toolbox.Library { public partial class BatchFormatExport : Form { public int Index = 0; public Settings BatchSettings = new Settings(); public class Settings { public bool SeperateTextureContainers; public bool SeperateArchiveFiles; public bool UseTextureChannelComponents; } public BatchFormatExport(List Formats) { InitializeComponent(); foreach (string format in Formats) comboBox1.Items.Add(format); comboBox1.SelectedIndex = 0; BackColor = FormThemes.BaseTheme.FormBackColor; ForeColor = FormThemes.BaseTheme.FormForeColor; Index = 0; } public string GetSelectedExtension() { string SelectedExt = comboBox1.GetSelectedText(); string output = GetSubstringByString("(",")", SelectedExt); output = output.Remove(0, 1); output.Replace(" ", string.Empty); if (output == ".") output = ".raw"; return output; } public string GetSubstringByString(string a, string b, string c) { return c.Substring((c.IndexOf(a) + a.Length), (c.IndexOf(b) - c.IndexOf(a) - a.Length)); } private void OkButton_Click(object sender, EventArgs e) { BatchSettings.SeperateTextureContainers = chkSeperateTextureContainers.Checked; BatchSettings.SeperateArchiveFiles = chkSeperateArchives.Checked; BatchSettings.UseTextureChannelComponents = chkChannelComponents.Checked; this.Close(); } private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { Index = comboBox1.SelectedIndex; } } }