Reg Update (5.2)

This commit is contained in:
PhoenixARC
2021-05-13 19:54:15 -04:00
parent ef52814e4d
commit 85d7dc3d6e
118 changed files with 3391 additions and 4764 deletions

View File

@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30320.27
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MinecraftUSkinEditor", "MinecraftUSkinEditor\MinecraftUSkinEditor.csproj", "{0ACAAEDE-93F5-4B5D-B8D7-A0C43359C0D6}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PckStudio", "MinecraftUSkinEditor\PckStudio.csproj", "{0ACAAEDE-93F5-4B5D-B8D7-A0C43359C0D6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nobleUpdater", "nobleUpdater\nobleUpdater.csproj", "{F77A61F1-0C6F-45DC-A5B5-A7BF38D64322}"
EndProject

View File

@@ -4,7 +4,7 @@ using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
namespace minekampf.Classes
namespace PckStudio.Classes
{
internal class Bink
{
@@ -23,10 +23,10 @@ namespace minekampf.Classes
if (flag)
{
working = Path.GetTempPath() + DateTime.Now.Second.ToString();
text = minekampf.Classes.Bink.ExtractResource("Resources.binka_encode.exe", working, "binka_encode.exe");
text2 = minekampf.Classes.Bink.ExtractResource("Resources.mss32.dll", working, "mss32.dll");
path = minekampf.Classes.Bink.ExtractResource("Resources.binkawin.asi", working, "binkawin.asi");
minekampf.Classes.Bink.library = minekampf.Classes.Bink.LoadLibrary(text2);
text = PckStudio.Classes.Bink.ExtractResource("Resources.binka_encode.exe", working, "binka_encode.exe");
text2 = PckStudio.Classes.Bink.ExtractResource("Resources.mss32.dll", working, "mss32.dll");
path = PckStudio.Classes.Bink.ExtractResource("Resources.binkawin.asi", working, "binkawin.asi");
PckStudio.Classes.Bink.library = PckStudio.Classes.Bink.LoadLibrary(text2);
}
else
{
@@ -34,10 +34,10 @@ namespace minekampf.Classes
text2 = working + "\\mss32.dll";
path = working + "\\binkawin.asi";
}
bool flag2 = minekampf.Classes.Bink.getType(infile) == "WAV";
bool flag2 = PckStudio.Classes.Bink.getType(infile) == "WAV";
if (flag2)
{
string[] array = minekampf.Classes.Bink.createArg(infile, outDir);
string[] array = PckStudio.Classes.Bink.createArg(infile, outDir);
Process process = new Process();
process.StartInfo.FileName = text;
process.StartInfo.Arguments = string.Concat(new string[]
@@ -54,31 +54,31 @@ namespace minekampf.Classes
}
else
{
bool flag3 = minekampf.Classes.Bink.getType(infile) == "BINKA";
bool flag3 = PckStudio.Classes.Bink.getType(infile) == "BINKA";
if (flag3)
{
string[] array2 = minekampf.Classes.Bink.createArg(infile, outDir);
string[] array2 = PckStudio.Classes.Bink.createArg(infile, outDir);
byte[] array3 = File.ReadAllBytes(array2[0]);
uint num = 0U;
minekampf.Classes.Bink.AIL_set_redist_directory(".");
minekampf.Classes.Bink.AIL_startup();
PckStudio.Classes.Bink.AIL_set_redist_directory(".");
PckStudio.Classes.Bink.AIL_startup();
IntPtr intPtr;
bool flag4 = minekampf.Classes.Bink.AIL_decompress_ASI(array3, (uint)array3.Length, ".binka", &intPtr, &num, 0U) == 0;
bool flag4 = PckStudio.Classes.Bink.AIL_decompress_ASI(array3, (uint)array3.Length, ".binka", &intPtr, &num, 0U) == 0;
if (flag4)
{
throw new Exception("AIL ERROR");
}
byte[] array4 = new byte[num];
Marshal.Copy(intPtr, array4, 0, array4.Length);
minekampf.Classes.Bink.AIL_mem_free_lock(intPtr);
minekampf.Classes.Bink.AIL_shutdown();
PckStudio.Classes.Bink.AIL_mem_free_lock(intPtr);
PckStudio.Classes.Bink.AIL_shutdown();
File.WriteAllBytes(array2[1], array4);
}
}
if (last)
{
minekampf.Classes.Bink.FreeLibrary(minekampf.Classes.Bink.library);
minekampf.Classes.Bink.FreeLibrary(minekampf.Classes.Bink.library);
PckStudio.Classes.Bink.FreeLibrary(PckStudio.Classes.Bink.library);
PckStudio.Classes.Bink.FreeLibrary(PckStudio.Classes.Bink.library);
File.Delete(text);
File.Delete(path);
while (File.Exists(text2))
@@ -89,7 +89,7 @@ namespace minekampf.Classes
}
catch
{
minekampf.Classes.Bink.FreeLibrary(minekampf.Classes.Bink.library);
PckStudio.Classes.Bink.FreeLibrary(PckStudio.Classes.Bink.library);
}
}
}
@@ -122,7 +122,7 @@ namespace minekampf.Classes
string[] array = new string[2];
array[0] = inFile;
string[] array2 = array;
string type = minekampf.Classes.Bink.getType(inFile);
string type = PckStudio.Classes.Bink.getType(inFile);
bool flag = type == "BINKA";
if (flag)
{

View File

@@ -1,23 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace minekampf.Classes
{
public class COL
{
public COL(byte[] data)
{
Read(data);
}
public void Read(byte[] data)
{
}
}
}

View File

@@ -1,25 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Net;
using System.Collections.Specialized;
namespace minekampf.Classes
{
class DiscordBot
{
//https://discordapp.com/api/webhooks/797263532139479070/ExbpwHKxP-1_cpxnAVrqFXm9SFKhk2cIUyhEVobT2Ds8PuQKbaFvzl2hjrKsEZXrXHI3
public static void sendDiscordWebhook(string URL, string profilepic, string username, string message)
{
NameValueCollection discordValues = new NameValueCollection();
discordValues.Add("username", username);
discordValues.Add("avatar_url", profilepic);
discordValues.Add("content", message);
new WebClient().UploadValues(URL, discordValues);
}
}
}

View File

@@ -96,6 +96,7 @@ namespace MinecraftUSkinEditor
int itemCount = fileData.readInt();
Console.WriteLine(itemCount);
// no metadata
if (entryTypeCount == 0)
{

View File

@@ -1,9 +1,11 @@
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Threading;
using System.Windows.Forms;
using PckStudio.Classes;
namespace MinecraftUSkinEditor
{
@@ -12,6 +14,7 @@ namespace MinecraftUSkinEditor
static class Program
{
public static string baseurl = "http://www.pckstudio.tk/studio/PCK/api/";
public static string backurl = "https://phoenixarc.github.io/pckstudio.tk/studio/PCK/api/";
public static FormMain formMain;
/// <summary>
@@ -20,13 +23,17 @@ namespace MinecraftUSkinEditor
[STAThread]
static void Main()
{
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("ja");
Thread.CurrentThread.CurrentCulture = ci;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
minekampf.Forms.goodbye gg = new minekampf.Forms.goodbye();
PckStudio.Forms.goodbye gg = new PckStudio.Forms.goodbye();
PckStudio.Forms.Job gj = new PckStudio.Forms.Job();
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\goodbyemark"))
gg.ShowDialog();
if(!System.IO.File.Exists(Environment.CurrentDirectory + "\\discordmark"))
gj.ShowDialog();
Application.Run(new FormMain());
}
}

View File

@@ -0,0 +1,38 @@
using System.Runtime.InteropServices;
using DiscordRPC;
namespace RichPresenceClient
{
public static class RPC
{
public static DiscordRpcClient client;
public static void SetRPC(string ClientID, string details, string state, string imageLarge, string imageLargeText, string imageSmall)
{
client = new DiscordRpcClient(ClientID);
client.Initialize();
client.SetPresence(new RichPresence()
{
Details = details,
State = state,
Assets = new Assets()
{
LargeImageKey = imageLarge,
LargeImageText = imageLargeText,
SmallImageKey = imageSmall
}
});
}
public static void CloseRPC()
{
client.Dispose();
}
}
}

View File

@@ -1,5 +1,5 @@

namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class AddPCKPassword
{

View File

@@ -9,7 +9,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class AddPCKPassword : MetroForm
{

View File

@@ -0,0 +1,103 @@

namespace PckStudio.Forms
{
partial class Job
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Job));
this.buttonClose = new System.Windows.Forms.Button();
this.buttonDonate = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// buttonClose
//
this.buttonClose.BackColor = System.Drawing.Color.Transparent;
this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonClose.Font = new System.Drawing.Font("Segoe UI", 12F);
this.buttonClose.ForeColor = System.Drawing.Color.White;
this.buttonClose.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.buttonClose.Location = new System.Drawing.Point(308, 336);
this.buttonClose.Name = "buttonClose";
this.buttonClose.Size = new System.Drawing.Size(103, 38);
this.buttonClose.TabIndex = 6;
this.buttonClose.Text = "Close";
this.buttonClose.UseVisualStyleBackColor = false;
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
//
// buttonDonate
//
this.buttonDonate.BackColor = System.Drawing.Color.DarkCyan;
this.buttonDonate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.buttonDonate.Font = new System.Drawing.Font("Segoe UI", 12F);
this.buttonDonate.ForeColor = System.Drawing.Color.White;
this.buttonDonate.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.buttonDonate.Location = new System.Drawing.Point(163, 336);
this.buttonDonate.Name = "buttonDonate";
this.buttonDonate.Size = new System.Drawing.Size(134, 38);
this.buttonDonate.TabIndex = 5;
this.buttonDonate.Text = "Join Discord";
this.buttonDonate.UseVisualStyleBackColor = false;
this.buttonDonate.Click += new System.EventHandler(this.buttonDonate_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.label1.Location = new System.Drawing.Point(19, 31);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(428, 260);
this.label1.TabIndex = 4;
this.label1.Text = resources.GetString("label1.Text");
//
// Job
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(453, 400);
this.Controls.Add(this.buttonClose);
this.Controls.Add(this.buttonDonate);
this.Controls.Add(this.label1);
this.Name = "Job";
this.Style = MetroFramework.MetroColorStyle.Silver;
this.Theme = MetroFramework.MetroThemeStyle.Dark;
this.Load += new System.EventHandler(this.Job_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonClose;
private System.Windows.Forms.Button buttonDonate;
private System.Windows.Forms.Label label1;
}
}

View File

@@ -0,0 +1,38 @@
using System;
using System.IO;
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 MetroFramework.Forms;
namespace PckStudio.Forms
{
public partial class Job : MetroForm
{
public Job()
{
InitializeComponent();
}
private void buttonClose_Click(object sender, EventArgs e)
{
this.Close();
}
private void Job_Load(object sender, EventArgs e)
{
File.Create(Environment.CurrentDirectory + "\\discordmark");
}
private void buttonDonate_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://discord.gg/Byh4hcq25w");
this.Close();
}
}
}

View File

@@ -0,0 +1,135 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="label1.Text" xml:space="preserve">
<value>Hello users,
The development of these tools has, and maintains to be,
entertaining and fun, and with the advent of the WiiU
edition growing, I hope to branch out to development for
the WiiU and Xbox360 editions as well, and am currently
researching ways of enabling Developer GUIs in-game.
If you want to help contribute to the development
of these tools, feel free to join the team I'm creating solely
for this reason, simply open the discord server link below!
- Felix (PhoenixARC)</value>
</data>
</root>

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class Promo
{

View File

@@ -9,7 +9,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class Promo : MetroFramework.Forms.MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class creatorSpotlight
{

View File

@@ -9,7 +9,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class creatorSpotlight : MetroFramework.Forms.MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class goodbye
{

View File

@@ -8,7 +8,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class goodbye : MetroFramework.Forms.MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class pckLocked
{

View File

@@ -9,7 +9,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MinecraftUSkinEditor;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class pckLocked : MetroFramework.Forms.MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf
namespace PckStudio
{
partial class programInfo
{
@@ -37,7 +37,7 @@
//
// pictureBox1
//
this.pictureBox1.Image = global::minekampf.Properties.Resources.Splash;
this.pictureBox1.Image = global::PckStudio.Properties.Resources.Splash;
this.pictureBox1.Location = new System.Drawing.Point(4, 33);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(575, 293);

View File

@@ -8,7 +8,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace minekampf
namespace PckStudio
{
public partial class programInfo : MetroFramework.Forms.MetroForm
{

View File

@@ -80,6 +80,7 @@
this.wiiUPCKInstallerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PS3PCKInstallerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.VitaPCKInstallerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.joinDevelopmentDiscordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.uPDATEToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.label1 = new System.Windows.Forms.Label();
this.contextMenuMetaTree = new System.Windows.Forms.ContextMenuStrip(this.components);
@@ -91,33 +92,25 @@
this.directorySearcher1 = new System.DirectoryServices.DirectorySearcher();
this.openedPCKS = new MetroFramework.Controls.MetroTabControl();
this.tabPage1 = new MetroFramework.Controls.MetroTabPage();
this.myTablePanelPckEdit = new minekampf.Forms.MyTablePanel();
this.treeViewMain = new System.Windows.Forms.TreeView();
this.pictureBoxImagePreview = new MinecraftUSkinEditor.PictureBoxWithInterpolationMode();
this.labelAmount = new System.Windows.Forms.Label();
this.tabDataDisplay = new System.Windows.Forms.TabControl();
this.tabMetaDisplay = new System.Windows.Forms.TabPage();
this.myTablePanel1 = new minekampf.Forms.MyTablePanel();
this.treeMeta = new System.Windows.Forms.TreeView();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.labelEntryType = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.labelEntryData = new System.Windows.Forms.Label();
this.buttonEdit = new System.Windows.Forms.Button();
this.labelImageSize = new System.Windows.Forms.Label();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.DBGLabel = new System.Windows.Forms.Label();
this.metroTabControl1 = new MetroFramework.Controls.MetroTabControl();
this.metroTabPage1 = new MetroFramework.Controls.MetroTabPage();
this.myTablePanel2 = new minekampf.Forms.MyTablePanel();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.myTablePanelStartScreen = new PckStudio.Forms.MyTablePanel();
this.richTextBoxChangelog = new System.Windows.Forms.RichTextBox();
this.label5 = new System.Windows.Forms.Label();
this.pckOpen = new System.Windows.Forms.PictureBox();
this.myTablePanel2 = new PckStudio.Forms.MyTablePanel();
this.treeView1 = new System.Windows.Forms.TreeView();
this.pictureBoxWithInterpolationMode1 = new MinecraftUSkinEditor.PictureBoxWithInterpolationMode();
this.label4 = new System.Windows.Forms.Label();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.myTablePanel3 = new minekampf.Forms.MyTablePanel();
this.myTablePanel3 = new PckStudio.Forms.MyTablePanel();
this.treeView2 = new System.Windows.Forms.TreeView();
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.label6 = new System.Windows.Forms.Label();
@@ -126,32 +119,41 @@
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.myTablePanelStartScreen = new minekampf.Forms.MyTablePanel();
this.richTextBoxChangelog = new System.Windows.Forms.RichTextBox();
this.label5 = new System.Windows.Forms.Label();
this.pckOpen = new System.Windows.Forms.PictureBox();
this.myTablePanelPckEdit = new PckStudio.Forms.MyTablePanel();
this.treeViewMain = new System.Windows.Forms.TreeView();
this.pictureBoxImagePreview = new MinecraftUSkinEditor.PictureBoxWithInterpolationMode();
this.labelAmount = new System.Windows.Forms.Label();
this.tabDataDisplay = new System.Windows.Forms.TabControl();
this.tabMetaDisplay = new System.Windows.Forms.TabPage();
this.myTablePanel1 = new PckStudio.Forms.MyTablePanel();
this.treeMeta = new System.Windows.Forms.TreeView();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.labelEntryType = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.labelEntryData = new System.Windows.Forms.Label();
this.buttonEdit = new System.Windows.Forms.Button();
this.contextMenuPCKEntries.SuspendLayout();
this.menuStrip.SuspendLayout();
this.contextMenuMetaTree.SuspendLayout();
this.openedPCKS.SuspendLayout();
this.tabPage1.SuspendLayout();
this.myTablePanelPckEdit.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxImagePreview)).BeginInit();
this.tabDataDisplay.SuspendLayout();
this.tabMetaDisplay.SuspendLayout();
this.myTablePanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
this.metroTabControl1.SuspendLayout();
this.metroTabPage1.SuspendLayout();
this.myTablePanelStartScreen.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pckOpen)).BeginInit();
this.myTablePanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxWithInterpolationMode1)).BeginInit();
this.tabControl1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.myTablePanel3.SuspendLayout();
this.myTablePanelStartScreen.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pckOpen)).BeginInit();
this.myTablePanelPckEdit.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxImagePreview)).BeginInit();
this.tabDataDisplay.SuspendLayout();
this.tabMetaDisplay.SuspendLayout();
this.myTablePanel1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuPCKEntries
@@ -358,49 +360,49 @@
//
// howToMakeABasicSkinPackToolStripMenuItem
//
this.howToMakeABasicSkinPackToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.howToMakeABasicSkinPackToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.howToMakeABasicSkinPackToolStripMenuItem.Name = "howToMakeABasicSkinPackToolStripMenuItem";
resources.ApplyResources(this.howToMakeABasicSkinPackToolStripMenuItem, "howToMakeABasicSkinPackToolStripMenuItem");
this.howToMakeABasicSkinPackToolStripMenuItem.Click += new System.EventHandler(this.howToMakeABasicSkinPackToolStripMenuItem_Click);
//
// howToMakeACustomSkinModelToolStripMenuItem
//
this.howToMakeACustomSkinModelToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.howToMakeACustomSkinModelToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.howToMakeACustomSkinModelToolStripMenuItem.Name = "howToMakeACustomSkinModelToolStripMenuItem";
resources.ApplyResources(this.howToMakeACustomSkinModelToolStripMenuItem, "howToMakeACustomSkinModelToolStripMenuItem");
this.howToMakeACustomSkinModelToolStripMenuItem.Click += new System.EventHandler(this.howToMakeACustomSkinModelToolStripMenuItem_Click);
//
// howToMakeCustomSkinModelsbedrockToolStripMenuItem
//
this.howToMakeCustomSkinModelsbedrockToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.howToMakeCustomSkinModelsbedrockToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.howToMakeCustomSkinModelsbedrockToolStripMenuItem.Name = "howToMakeCustomSkinModelsbedrockToolStripMenuItem";
resources.ApplyResources(this.howToMakeCustomSkinModelsbedrockToolStripMenuItem, "howToMakeCustomSkinModelsbedrockToolStripMenuItem");
this.howToMakeCustomSkinModelsbedrockToolStripMenuItem.Click += new System.EventHandler(this.howToMakeCustomSkinModelsbedrockToolStripMenuItem_Click);
//
// howToMakeCustomMusicToolStripMenuItem
//
this.howToMakeCustomMusicToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.howToMakeCustomMusicToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.howToMakeCustomMusicToolStripMenuItem.Name = "howToMakeCustomMusicToolStripMenuItem";
resources.ApplyResources(this.howToMakeCustomMusicToolStripMenuItem, "howToMakeCustomMusicToolStripMenuItem");
this.howToMakeCustomMusicToolStripMenuItem.Click += new System.EventHandler(this.howToMakeCustomMusicToolStripMenuItem_Click);
//
// howToInstallPcksDirectlyToWiiUToolStripMenuItem
//
this.howToInstallPcksDirectlyToWiiUToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.howToInstallPcksDirectlyToWiiUToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.howToInstallPcksDirectlyToWiiUToolStripMenuItem.Name = "howToInstallPcksDirectlyToWiiUToolStripMenuItem";
resources.ApplyResources(this.howToInstallPcksDirectlyToWiiUToolStripMenuItem, "howToInstallPcksDirectlyToWiiUToolStripMenuItem");
this.howToInstallPcksDirectlyToWiiUToolStripMenuItem.Click += new System.EventHandler(this.howToInstallPcksDirectlyToWiiUToolStripMenuItem_Click);
//
// pCKCenterReleaseToolStripMenuItem
//
this.pCKCenterReleaseToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.pCKCenterReleaseToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.pCKCenterReleaseToolStripMenuItem.Name = "pCKCenterReleaseToolStripMenuItem";
resources.ApplyResources(this.pCKCenterReleaseToolStripMenuItem, "pCKCenterReleaseToolStripMenuItem");
this.pCKCenterReleaseToolStripMenuItem.Click += new System.EventHandler(this.pCKCenterReleaseToolStripMenuItem_Click);
//
// howPCKsWorkToolStripMenuItem
//
this.howPCKsWorkToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.howPCKsWorkToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.howPCKsWorkToolStripMenuItem.Name = "howPCKsWorkToolStripMenuItem";
resources.ApplyResources(this.howPCKsWorkToolStripMenuItem, "howPCKsWorkToolStripMenuItem");
this.howPCKsWorkToolStripMenuItem.Click += new System.EventHandler(this.howPCKsWorkToolStripMenuItem_Click);
@@ -434,7 +436,7 @@
//
// tutorialsToolStripMenuItem
//
this.tutorialsToolStripMenuItem.Image = global::minekampf.Properties.Resources.youtube_PNG152;
this.tutorialsToolStripMenuItem.Image = global::PckStudio.Properties.Resources.youtube_PNG152;
this.tutorialsToolStripMenuItem.Name = "tutorialsToolStripMenuItem";
resources.ApplyResources(this.tutorialsToolStripMenuItem, "tutorialsToolStripMenuItem");
this.tutorialsToolStripMenuItem.Click += new System.EventHandler(this.tutorialsToolStripMenuItem_Click);
@@ -480,7 +482,7 @@
//
// administrativeToolsToolStripMenuItem
//
this.administrativeToolsToolStripMenuItem.Image = global::minekampf.Properties.Resources.pckCenterHeader;
this.administrativeToolsToolStripMenuItem.Image = global::PckStudio.Properties.Resources.pckCenterHeader;
this.administrativeToolsToolStripMenuItem.Name = "administrativeToolsToolStripMenuItem";
resources.ApplyResources(this.administrativeToolsToolStripMenuItem, "administrativeToolsToolStripMenuItem");
this.administrativeToolsToolStripMenuItem.Click += new System.EventHandler(this.administrativeToolsToolStripMenuItem_Click);
@@ -491,22 +493,23 @@
this.openToolStripMenuItem1,
this.wiiUPCKInstallerToolStripMenuItem,
this.PS3PCKInstallerToolStripMenuItem,
this.VitaPCKInstallerToolStripMenuItem});
this.VitaPCKInstallerToolStripMenuItem,
this.joinDevelopmentDiscordToolStripMenuItem});
this.storeToolStripMenuItem.ForeColor = System.Drawing.Color.White;
this.storeToolStripMenuItem.Image = global::minekampf.Properties.Resources.MROE;
this.storeToolStripMenuItem.Image = global::PckStudio.Properties.Resources.MROE;
this.storeToolStripMenuItem.Name = "storeToolStripMenuItem";
resources.ApplyResources(this.storeToolStripMenuItem, "storeToolStripMenuItem");
//
// openToolStripMenuItem1
//
this.openToolStripMenuItem1.Image = global::minekampf.Properties.Resources.pckCenterHeader;
this.openToolStripMenuItem1.Image = global::PckStudio.Properties.Resources.pckCenterHeader;
this.openToolStripMenuItem1.Name = "openToolStripMenuItem1";
resources.ApplyResources(this.openToolStripMenuItem1, "openToolStripMenuItem1");
this.openToolStripMenuItem1.Click += new System.EventHandler(this.openToolStripMenuItem1_Click);
//
// wiiUPCKInstallerToolStripMenuItem
//
this.wiiUPCKInstallerToolStripMenuItem.Image = global::minekampf.Properties.Resources.wii_u_games_tool;
this.wiiUPCKInstallerToolStripMenuItem.Image = global::PckStudio.Properties.Resources.wii_u_games_tool;
this.wiiUPCKInstallerToolStripMenuItem.Name = "wiiUPCKInstallerToolStripMenuItem";
resources.ApplyResources(this.wiiUPCKInstallerToolStripMenuItem, "wiiUPCKInstallerToolStripMenuItem");
this.wiiUPCKInstallerToolStripMenuItem.Click += new System.EventHandler(this.wiiUPCKInstallerToolStripMenuItem_Click);
@@ -514,17 +517,23 @@
// PS3PCKInstallerToolStripMenuItem
//
resources.ApplyResources(this.PS3PCKInstallerToolStripMenuItem, "PS3PCKInstallerToolStripMenuItem");
this.PS3PCKInstallerToolStripMenuItem.Image = global::minekampf.Properties.Resources.wii_u_games_tool;
this.PS3PCKInstallerToolStripMenuItem.Image = global::PckStudio.Properties.Resources.wii_u_games_tool;
this.PS3PCKInstallerToolStripMenuItem.Name = "PS3PCKInstallerToolStripMenuItem";
this.PS3PCKInstallerToolStripMenuItem.Click += new System.EventHandler(this.PS3PCKInstallerToolStripMenuItem_Click);
//
// VitaPCKInstallerToolStripMenuItem
//
this.VitaPCKInstallerToolStripMenuItem.Image = global::minekampf.Properties.Resources.wii_u_games_tool;
this.VitaPCKInstallerToolStripMenuItem.Name = "VitaPCKInstallerToolStripMenuItem";
resources.ApplyResources(this.VitaPCKInstallerToolStripMenuItem, "VitaPCKInstallerToolStripMenuItem");
this.VitaPCKInstallerToolStripMenuItem.Image = global::PckStudio.Properties.Resources.wii_u_games_tool;
this.VitaPCKInstallerToolStripMenuItem.Name = "VitaPCKInstallerToolStripMenuItem";
this.VitaPCKInstallerToolStripMenuItem.Click += new System.EventHandler(this.VitaPCKInstallerToolStripMenuItem_Click);
//
// joinDevelopmentDiscordToolStripMenuItem
//
this.joinDevelopmentDiscordToolStripMenuItem.Name = "joinDevelopmentDiscordToolStripMenuItem";
resources.ApplyResources(this.joinDevelopmentDiscordToolStripMenuItem, "joinDevelopmentDiscordToolStripMenuItem");
this.joinDevelopmentDiscordToolStripMenuItem.Click += new System.EventHandler(this.joinDevelopmentDiscordToolStripMenuItem_Click);
//
// uPDATEToolStripMenuItem1
//
this.uPDATEToolStripMenuItem1.ForeColor = System.Drawing.SystemColors.Control;
@@ -604,6 +613,220 @@
this.tabPage1.VerticalScrollbarHighlightOnWheel = false;
this.tabPage1.VerticalScrollbarSize = 0;
//
// labelImageSize
//
resources.ApplyResources(this.labelImageSize, "labelImageSize");
this.labelImageSize.Name = "labelImageSize";
//
// pictureBox2
//
resources.ApplyResources(this.pictureBox2, "pictureBox2");
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.TabStop = false;
//
// DBGLabel
//
resources.ApplyResources(this.DBGLabel, "DBGLabel");
this.DBGLabel.ForeColor = System.Drawing.Color.Red;
this.DBGLabel.Name = "DBGLabel";
//
// metroTabControl1
//
this.metroTabControl1.Controls.Add(this.metroTabPage1);
resources.ApplyResources(this.metroTabControl1, "metroTabControl1");
this.metroTabControl1.Name = "metroTabControl1";
this.metroTabControl1.SelectedIndex = 0;
this.metroTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
this.metroTabControl1.Style = MetroFramework.MetroColorStyle.White;
this.metroTabControl1.Theme = MetroFramework.MetroThemeStyle.Dark;
this.metroTabControl1.UseSelectable = true;
//
// metroTabPage1
//
this.metroTabPage1.BackColor = System.Drawing.Color.Transparent;
this.metroTabPage1.Controls.Add(this.myTablePanel2);
this.metroTabPage1.Controls.Add(this.label10);
this.metroTabPage1.Controls.Add(this.label11);
this.metroTabPage1.HorizontalScrollbarBarColor = true;
this.metroTabPage1.HorizontalScrollbarHighlightOnWheel = false;
this.metroTabPage1.HorizontalScrollbarSize = 0;
resources.ApplyResources(this.metroTabPage1, "metroTabPage1");
this.metroTabPage1.Name = "metroTabPage1";
this.metroTabPage1.Style = MetroFramework.MetroColorStyle.White;
this.metroTabPage1.Theme = MetroFramework.MetroThemeStyle.Dark;
this.metroTabPage1.VerticalScrollbarBarColor = true;
this.metroTabPage1.VerticalScrollbarHighlightOnWheel = false;
this.metroTabPage1.VerticalScrollbarSize = 0;
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// myTablePanelStartScreen
//
resources.ApplyResources(this.myTablePanelStartScreen, "myTablePanelStartScreen");
this.myTablePanelStartScreen.Controls.Add(this.richTextBoxChangelog, 1, 1);
this.myTablePanelStartScreen.Controls.Add(this.label5, 1, 0);
this.myTablePanelStartScreen.Controls.Add(this.pckOpen, 0, 0);
this.myTablePanelStartScreen.Name = "myTablePanelStartScreen";
//
// richTextBoxChangelog
//
this.richTextBoxChangelog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(28)))), ((int)(((byte)(28)))));
this.richTextBoxChangelog.BorderStyle = System.Windows.Forms.BorderStyle.None;
resources.ApplyResources(this.richTextBoxChangelog, "richTextBoxChangelog");
this.richTextBoxChangelog.ForeColor = System.Drawing.Color.White;
this.richTextBoxChangelog.Name = "richTextBoxChangelog";
this.richTextBoxChangelog.ReadOnly = true;
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.ForeColor = System.Drawing.Color.White;
this.label5.Name = "label5";
//
// pckOpen
//
resources.ApplyResources(this.pckOpen, "pckOpen");
this.pckOpen.Image = global::PckStudio.Properties.Resources.pckClosed;
this.pckOpen.Name = "pckOpen";
this.myTablePanelStartScreen.SetRowSpan(this.pckOpen, 2);
this.pckOpen.TabStop = false;
this.pckOpen.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
this.pckOpen.DragDrop += new System.Windows.Forms.DragEventHandler(this.OpenPck_DragDrop);
this.pckOpen.DragEnter += new System.Windows.Forms.DragEventHandler(this.OpenPck_DragEnter);
this.pckOpen.DragLeave += new System.EventHandler(this.OpenPck_DragLeave);
this.pckOpen.MouseEnter += new System.EventHandler(this.OpenPck_MouseEnter);
this.pckOpen.MouseLeave += new System.EventHandler(this.OpenPck_MouseLeave);
//
// myTablePanel2
//
resources.ApplyResources(this.myTablePanel2, "myTablePanel2");
this.myTablePanel2.Controls.Add(this.treeView1, 0, 0);
this.myTablePanel2.Controls.Add(this.pictureBoxWithInterpolationMode1, 1, 0);
this.myTablePanel2.Controls.Add(this.label4, 2, 0);
this.myTablePanel2.Controls.Add(this.tabControl1, 1, 4);
this.myTablePanel2.Name = "myTablePanel2";
//
// treeView1
//
this.treeView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.treeView1.ContextMenuStrip = this.contextMenuPCKEntries;
resources.ApplyResources(this.treeView1, "treeView1");
this.treeView1.ForeColor = System.Drawing.Color.White;
this.treeView1.LabelEdit = true;
this.treeView1.Name = "treeView1";
this.myTablePanel2.SetRowSpan(this.treeView1, 6);
//
// pictureBoxWithInterpolationMode1
//
resources.ApplyResources(this.pictureBoxWithInterpolationMode1, "pictureBoxWithInterpolationMode1");
this.pictureBoxWithInterpolationMode1.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Default;
this.pictureBoxWithInterpolationMode1.Name = "pictureBoxWithInterpolationMode1";
this.myTablePanel2.SetRowSpan(this.pictureBoxWithInterpolationMode1, 4);
this.pictureBoxWithInterpolationMode1.TabStop = false;
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.ForeColor = System.Drawing.Color.White;
this.label4.Name = "label4";
this.label4.UseCompatibleTextRendering = true;
//
// tabControl1
//
this.myTablePanel2.SetColumnSpan(this.tabControl1, 2);
this.tabControl1.Controls.Add(this.tabPage2);
resources.ApplyResources(this.tabControl1, "tabControl1");
this.tabControl1.Name = "tabControl1";
this.myTablePanel2.SetRowSpan(this.tabControl1, 2);
this.tabControl1.SelectedIndex = 0;
//
// tabPage2
//
this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.tabPage2.Controls.Add(this.myTablePanel3);
resources.ApplyResources(this.tabPage2, "tabPage2");
this.tabPage2.Name = "tabPage2";
//
// myTablePanel3
//
resources.ApplyResources(this.myTablePanel3, "myTablePanel3");
this.myTablePanel3.Controls.Add(this.treeView2, 0, 0);
this.myTablePanel3.Controls.Add(this.comboBox2, 1, 1);
this.myTablePanel3.Controls.Add(this.label6, 1, 4);
this.myTablePanel3.Controls.Add(this.textBox2, 1, 3);
this.myTablePanel3.Controls.Add(this.label7, 1, 0);
this.myTablePanel3.Controls.Add(this.label8, 1, 5);
this.myTablePanel3.Controls.Add(this.label9, 1, 2);
this.myTablePanel3.Controls.Add(this.button1, 0, 6);
this.myTablePanel3.Name = "myTablePanel3";
//
// treeView2
//
this.treeView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.treeView2.ContextMenuStrip = this.contextMenuMetaTree;
resources.ApplyResources(this.treeView2, "treeView2");
this.treeView2.ForeColor = System.Drawing.Color.White;
this.treeView2.Name = "treeView2";
this.myTablePanel3.SetRowSpan(this.treeView2, 6);
//
// comboBox2
//
resources.ApplyResources(this.comboBox2, "comboBox2");
this.comboBox2.BackColor = System.Drawing.Color.White;
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Name = "comboBox2";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.ForeColor = System.Drawing.Color.White;
this.label6.Name = "label6";
//
// textBox2
//
resources.ApplyResources(this.textBox2, "textBox2");
this.textBox2.BackColor = System.Drawing.Color.White;
this.textBox2.Name = "textBox2";
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.ForeColor = System.Drawing.Color.White;
this.label7.Name = "label7";
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.ForeColor = System.Drawing.Color.White;
this.label8.Name = "label8";
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.ForeColor = System.Drawing.Color.White;
this.label9.Name = "label9";
//
// button1
//
this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.myTablePanel3.SetColumnSpan(this.button1, 2);
resources.ApplyResources(this.button1, "button1");
this.button1.ForeColor = System.Drawing.Color.White;
this.button1.Name = "button1";
this.button1.UseVisualStyleBackColor = false;
//
// myTablePanelPckEdit
//
resources.ApplyResources(this.myTablePanelPckEdit, "myTablePanelPckEdit");
@@ -730,216 +953,6 @@
this.buttonEdit.UseVisualStyleBackColor = false;
this.buttonEdit.Click += new System.EventHandler(this.buttonEditModel_Click);
//
// labelImageSize
//
resources.ApplyResources(this.labelImageSize, "labelImageSize");
this.labelImageSize.Name = "labelImageSize";
//
// pictureBox2
//
resources.ApplyResources(this.pictureBox2, "pictureBox2");
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.TabStop = false;
//
// DBGLabel
//
resources.ApplyResources(this.DBGLabel, "DBGLabel");
this.DBGLabel.ForeColor = System.Drawing.Color.Red;
this.DBGLabel.Name = "DBGLabel";
//
// metroTabControl1
//
this.metroTabControl1.Controls.Add(this.metroTabPage1);
resources.ApplyResources(this.metroTabControl1, "metroTabControl1");
this.metroTabControl1.Name = "metroTabControl1";
this.metroTabControl1.SelectedIndex = 0;
this.metroTabControl1.SizeMode = System.Windows.Forms.TabSizeMode.Fixed;
this.metroTabControl1.Style = MetroFramework.MetroColorStyle.White;
this.metroTabControl1.Theme = MetroFramework.MetroThemeStyle.Dark;
this.metroTabControl1.UseSelectable = true;
//
// metroTabPage1
//
this.metroTabPage1.BackColor = System.Drawing.Color.Transparent;
this.metroTabPage1.Controls.Add(this.myTablePanel2);
this.metroTabPage1.Controls.Add(this.label10);
this.metroTabPage1.Controls.Add(this.label11);
this.metroTabPage1.HorizontalScrollbarBarColor = true;
this.metroTabPage1.HorizontalScrollbarHighlightOnWheel = false;
this.metroTabPage1.HorizontalScrollbarSize = 0;
resources.ApplyResources(this.metroTabPage1, "metroTabPage1");
this.metroTabPage1.Name = "metroTabPage1";
this.metroTabPage1.Style = MetroFramework.MetroColorStyle.White;
this.metroTabPage1.Theme = MetroFramework.MetroThemeStyle.Dark;
this.metroTabPage1.VerticalScrollbarBarColor = true;
this.metroTabPage1.VerticalScrollbarHighlightOnWheel = false;
this.metroTabPage1.VerticalScrollbarSize = 0;
//
// myTablePanel2
//
resources.ApplyResources(this.myTablePanel2, "myTablePanel2");
this.myTablePanel2.Controls.Add(this.treeView1, 0, 0);
this.myTablePanel2.Controls.Add(this.pictureBoxWithInterpolationMode1, 1, 0);
this.myTablePanel2.Controls.Add(this.label4, 2, 0);
this.myTablePanel2.Controls.Add(this.tabControl1, 1, 4);
this.myTablePanel2.Name = "myTablePanel2";
//
// treeView1
//
this.treeView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.treeView1.ContextMenuStrip = this.contextMenuPCKEntries;
resources.ApplyResources(this.treeView1, "treeView1");
this.treeView1.ForeColor = System.Drawing.Color.White;
this.treeView1.LabelEdit = true;
this.treeView1.Name = "treeView1";
this.myTablePanel2.SetRowSpan(this.treeView1, 6);
//
// pictureBoxWithInterpolationMode1
//
resources.ApplyResources(this.pictureBoxWithInterpolationMode1, "pictureBoxWithInterpolationMode1");
this.pictureBoxWithInterpolationMode1.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Default;
this.pictureBoxWithInterpolationMode1.Name = "pictureBoxWithInterpolationMode1";
this.myTablePanel2.SetRowSpan(this.pictureBoxWithInterpolationMode1, 4);
this.pictureBoxWithInterpolationMode1.TabStop = false;
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.ForeColor = System.Drawing.Color.White;
this.label4.Name = "label4";
this.label4.UseCompatibleTextRendering = true;
//
// tabControl1
//
this.myTablePanel2.SetColumnSpan(this.tabControl1, 2);
this.tabControl1.Controls.Add(this.tabPage2);
resources.ApplyResources(this.tabControl1, "tabControl1");
this.tabControl1.Name = "tabControl1";
this.myTablePanel2.SetRowSpan(this.tabControl1, 2);
this.tabControl1.SelectedIndex = 0;
//
// tabPage2
//
this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.tabPage2.Controls.Add(this.myTablePanel3);
resources.ApplyResources(this.tabPage2, "tabPage2");
this.tabPage2.Name = "tabPage2";
//
// myTablePanel3
//
resources.ApplyResources(this.myTablePanel3, "myTablePanel3");
this.myTablePanel3.Controls.Add(this.treeView2, 0, 0);
this.myTablePanel3.Controls.Add(this.comboBox2, 1, 1);
this.myTablePanel3.Controls.Add(this.label6, 1, 4);
this.myTablePanel3.Controls.Add(this.textBox2, 1, 3);
this.myTablePanel3.Controls.Add(this.label7, 1, 0);
this.myTablePanel3.Controls.Add(this.label8, 1, 5);
this.myTablePanel3.Controls.Add(this.label9, 1, 2);
this.myTablePanel3.Controls.Add(this.button1, 0, 6);
this.myTablePanel3.Name = "myTablePanel3";
//
// treeView2
//
this.treeView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.treeView2.ContextMenuStrip = this.contextMenuMetaTree;
resources.ApplyResources(this.treeView2, "treeView2");
this.treeView2.ForeColor = System.Drawing.Color.White;
this.treeView2.Name = "treeView2";
this.myTablePanel3.SetRowSpan(this.treeView2, 6);
//
// comboBox2
//
resources.ApplyResources(this.comboBox2, "comboBox2");
this.comboBox2.BackColor = System.Drawing.Color.White;
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Name = "comboBox2";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.ForeColor = System.Drawing.Color.White;
this.label6.Name = "label6";
//
// textBox2
//
resources.ApplyResources(this.textBox2, "textBox2");
this.textBox2.BackColor = System.Drawing.Color.White;
this.textBox2.Name = "textBox2";
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.ForeColor = System.Drawing.Color.White;
this.label7.Name = "label7";
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.ForeColor = System.Drawing.Color.White;
this.label8.Name = "label8";
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.ForeColor = System.Drawing.Color.White;
this.label9.Name = "label9";
//
// button1
//
this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.myTablePanel3.SetColumnSpan(this.button1, 2);
resources.ApplyResources(this.button1, "button1");
this.button1.ForeColor = System.Drawing.Color.White;
this.button1.Name = "button1";
this.button1.UseVisualStyleBackColor = false;
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
//
// myTablePanelStartScreen
//
resources.ApplyResources(this.myTablePanelStartScreen, "myTablePanelStartScreen");
this.myTablePanelStartScreen.Controls.Add(this.richTextBoxChangelog, 1, 1);
this.myTablePanelStartScreen.Controls.Add(this.label5, 1, 0);
this.myTablePanelStartScreen.Controls.Add(this.pckOpen, 0, 0);
this.myTablePanelStartScreen.Name = "myTablePanelStartScreen";
//
// richTextBoxChangelog
//
this.richTextBoxChangelog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(28)))), ((int)(((byte)(28)))));
this.richTextBoxChangelog.BorderStyle = System.Windows.Forms.BorderStyle.None;
resources.ApplyResources(this.richTextBoxChangelog, "richTextBoxChangelog");
this.richTextBoxChangelog.ForeColor = System.Drawing.Color.White;
this.richTextBoxChangelog.Name = "richTextBoxChangelog";
this.richTextBoxChangelog.ReadOnly = true;
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.ForeColor = System.Drawing.Color.White;
this.label5.Name = "label5";
//
// pckOpen
//
resources.ApplyResources(this.pckOpen, "pckOpen");
this.pckOpen.Image = global::minekampf.Properties.Resources.pckClosed;
this.pckOpen.Name = "pckOpen";
this.myTablePanelStartScreen.SetRowSpan(this.pckOpen, 2);
this.pckOpen.TabStop = false;
this.pckOpen.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
this.pckOpen.DragDrop += new System.Windows.Forms.DragEventHandler(this.OpenPck_DragDrop);
this.pckOpen.DragEnter += new System.Windows.Forms.DragEventHandler(this.OpenPck_DragEnter);
this.pckOpen.DragLeave += new System.EventHandler(this.OpenPck_DragLeave);
this.pckOpen.MouseEnter += new System.EventHandler(this.OpenPck_MouseEnter);
this.pckOpen.MouseLeave += new System.EventHandler(this.OpenPck_MouseLeave);
//
// FormMain
//
this.ApplyImageInvert = true;
@@ -966,17 +979,13 @@
this.openedPCKS.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
this.myTablePanelPckEdit.ResumeLayout(false);
this.myTablePanelPckEdit.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxImagePreview)).EndInit();
this.tabDataDisplay.ResumeLayout(false);
this.tabMetaDisplay.ResumeLayout(false);
this.myTablePanel1.ResumeLayout(false);
this.myTablePanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
this.metroTabControl1.ResumeLayout(false);
this.metroTabPage1.ResumeLayout(false);
this.metroTabPage1.PerformLayout();
this.myTablePanelStartScreen.ResumeLayout(false);
this.myTablePanelStartScreen.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pckOpen)).EndInit();
this.myTablePanel2.ResumeLayout(false);
this.myTablePanel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxWithInterpolationMode1)).EndInit();
@@ -984,9 +993,13 @@
this.tabPage2.ResumeLayout(false);
this.myTablePanel3.ResumeLayout(false);
this.myTablePanel3.PerformLayout();
this.myTablePanelStartScreen.ResumeLayout(false);
this.myTablePanelStartScreen.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pckOpen)).EndInit();
this.myTablePanelPckEdit.ResumeLayout(false);
this.myTablePanelPckEdit.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxImagePreview)).EndInit();
this.tabDataDisplay.ResumeLayout(false);
this.tabMetaDisplay.ResumeLayout(false);
this.myTablePanel1.ResumeLayout(false);
this.myTablePanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
@@ -1049,10 +1062,10 @@
private System.Windows.Forms.TreeView treeMeta;
private PictureBoxWithInterpolationMode pictureBoxImagePreview;
private System.Windows.Forms.Label labelImageSize;
private minekampf.Forms.MyTablePanel myTablePanelPckEdit;
private PckStudio.Forms.MyTablePanel myTablePanelPckEdit;
private System.Windows.Forms.Button buttonEdit;
private System.Windows.Forms.Label labelAmount;
private minekampf.Forms.MyTablePanel myTablePanel1;
private PckStudio.Forms.MyTablePanel myTablePanel1;
private System.Windows.Forms.Label labelEntryType;
private System.Windows.Forms.Label labelEntryData;
private System.Windows.Forms.ToolStripMenuItem wiiUPCKInstallerToolStripMenuItem;
@@ -1065,19 +1078,19 @@
private System.Windows.Forms.ToolStripMenuItem pCKCenterReleaseToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem howPCKsWorkToolStripMenuItem;
private System.Windows.Forms.Label DBGLabel;
private minekampf.Forms.MyTablePanel myTablePanelStartScreen;
private PckStudio.Forms.MyTablePanel myTablePanelStartScreen;
private System.Windows.Forms.RichTextBox richTextBoxChangelog;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.PictureBox pckOpen;
private MetroFramework.Controls.MetroTabControl metroTabControl1;
private MetroFramework.Controls.MetroTabPage metroTabPage1;
private minekampf.Forms.MyTablePanel myTablePanel2;
private PckStudio.Forms.MyTablePanel myTablePanel2;
private System.Windows.Forms.TreeView treeView1;
private PictureBoxWithInterpolationMode pictureBoxWithInterpolationMode1;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage2;
private minekampf.Forms.MyTablePanel myTablePanel3;
private PckStudio.Forms.MyTablePanel myTablePanel3;
private System.Windows.Forms.TreeView treeView2;
private System.Windows.Forms.ComboBox comboBox2;
private System.Windows.Forms.Label label6;
@@ -1096,6 +1109,8 @@
private System.Windows.Forms.ToolStripMenuItem toNobledezJackToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toPhoenixARCDeveloperToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem addPasswordToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem joinDevelopmentDiscordToolStripMenuItem;
private System.Windows.Forms.Timer timer1;
}
}

View File

@@ -15,12 +15,13 @@ using System.Net;
using System.Diagnostics;
using System.Linq.Expressions;
using System.Resources;
using minekampf.Properties;
using PckStudio.Properties;
using Ohana3DS_Rebirth.Ohana;
using minekampf;
using minekampf.Forms;
using PckStudio;
using PckStudio.Forms;
using System.IO.Packaging;
using System.Drawing.Imaging;
using RichPresenceClient;
namespace MinecraftUSkinEditor
{
@@ -29,9 +30,11 @@ namespace MinecraftUSkinEditor
#region Variables
string saveLocation;//Save location for pck file
int fileCount = 0;//variable for number of minefiles
string Version = "4.7";//template for program version
string Version = "5.2";//template for program version
string hosturl = File.ReadAllText(Environment.CurrentDirectory + "\\settings.ini").Split(new[] { "\r\n", "\n" }, StringSplitOptions.None)[0];
string basurl = "";
string PCKFile = "";
string PCKFileBCKUP = "x";
PCK.MineFile mf;//Template minefile variable
@@ -84,6 +87,7 @@ namespace MinecraftUSkinEditor
if (ofd.ShowDialog() == DialogResult.OK)
{
PCKFile = Path.GetFileName(ofd.FileName);
openPck(ofd.FileName);
}
}
@@ -621,6 +625,7 @@ namespace MinecraftUSkinEditor
openedPCKS.SelectedTab.Text = Path.GetFileName(ofd.FileName);
saved = true;
MessageBox.Show("PCK Saved!");
PCKFile = Path.GetFileName(ofd.FileName);
}
catch (Exception)
{
@@ -1135,6 +1140,7 @@ namespace MinecraftUSkinEditor
try
{
openPck(Environment.CurrentDirectory + "\\templates\\UntitledSkinPCK.pck");
PCKFile = "UntitledSkinPCK.pck";
}
catch { }
saveLocation = "";
@@ -1171,15 +1177,36 @@ namespace MinecraftUSkinEditor
private void programInfoToolStripMenuItem_Click(object sender, EventArgs e)
{
//open program info dialog
minekampf.programInfo info = new minekampf.programInfo();
PckStudio.programInfo info = new PckStudio.programInfo();
info.ShowDialog();
info.Dispose();
}
#endregion
#region checks for updates
private void Form1_Load(object sender, EventArgs e)
{
try
{
RPC.SetRPC("825875166574673940", "Sitting alone", "Program by PhoenixARC", "pcklgo", "PCK Studio", "pcklgo");
timer1.Start();
timer1.Enabled = true;
}
catch
{
Console.WriteLine("ERROR WITH RPC");
}
try
{
new WebClient().DownloadString(Program.baseurl + "PCKChangeLog.txt");
basurl = Program.baseurl;
}
catch
{
basurl = Program.backurl;
}
if (isdebug == 1)
DBGLabel.Visible = true;
//runs creator spotlight once per day
@@ -1219,8 +1246,8 @@ namespace MinecraftUSkinEditor
{
using (WebClient client = new WebClient())
{
File.WriteAllText(appData + "pckStudioChangelog.txt", client.DownloadString(MinecraftUSkinEditor.Program.baseurl + "PCKChangeLog.txt"));
richTextBoxChangelog.Text = File.ReadAllText(appData + "pckStudioChangelog.txt");
File.WriteAllText(appData + "pckStudioChangelog.txt", client.DownloadString(basurl + "PCKChangeLog.txt"));
richTextBoxChangelog.Text = File.ReadAllText(appData + "pckStudioChangelog.txt");
}
}
catch
@@ -1233,9 +1260,9 @@ namespace MinecraftUSkinEditor
File.WriteAllText(Application.StartupPath + @"\ver.txt", Version);
}
if(new WebClient().DownloadString(MinecraftUSkinEditor.Program.baseurl + "updatePCKStudio.txt").Replace("\n","") != Version)
if(float.Parse(new WebClient().DownloadString(basurl + "updatePCKStudio.txt").Replace("\n","")) > float.Parse(Version))
{
Console.WriteLine(new WebClient().DownloadString(MinecraftUSkinEditor.Program.baseurl + "updatePCKStudio.txt").Replace("\n", "") + " != " + Version);
Console.WriteLine(new WebClient().DownloadString(basurl + "updatePCKStudio.txt").Replace("\n", "") + " != " + Version);
if(MessageBox.Show("Update avaliable!\ndo you want to update?", "UPDATE", MessageBoxButtons.YesNo) == DialogResult.Yes)
Process.Start(Environment.CurrentDirectory + "\\nobleUpdater.exe");
else
@@ -2804,7 +2831,6 @@ namespace MinecraftUSkinEditor
}
#endregion
#region currently scrapped 3ds feature
private void ds(){
/*private struct loadedTexture
@@ -3076,6 +3102,7 @@ namespace MinecraftUSkinEditor
private void FormMain_FormClosed(object sender, FormClosedEventArgs e)
{
RPC.CloseRPC();
if (saved == false)
{
if (MessageBox.Show("Save PCK?", "Unsaved PCK", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
@@ -3210,9 +3237,9 @@ namespace MinecraftUSkinEditor
private void uPDATEToolStripMenuItem1_Click(object sender, EventArgs e)
{
if (new WebClient().DownloadString(MinecraftUSkinEditor.Program.baseurl + "updatePCKStudio.txt").Replace("\n", "") != Version)
if (new WebClient().DownloadString(basurl + "updatePCKStudio.txt").Replace("\n", "") != Version)
{
Console.WriteLine(new WebClient().DownloadString(MinecraftUSkinEditor.Program.baseurl + "updatePCKStudio.txt").Replace("\n", "") + " != " + Version);
Console.WriteLine(new WebClient().DownloadString(basurl + "updatePCKStudio.txt").Replace("\n", "") + " != " + Version);
if (MessageBox.Show("Update avaliable!\ndo you want to update?", "UPDATE", MessageBoxButtons.YesNo) == DialogResult.Yes)
Process.Start(Environment.CurrentDirectory + "\\nobleUpdater.exe");
else
@@ -3279,6 +3306,39 @@ namespace MinecraftUSkinEditor
}
saved = false;
}
private void joinDevelopmentDiscordToolStripMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://discord.gg/Byh4hcq25w");
}
private void timer1_Tick(object sender, EventArgs e)
{
if (PCKFile != PCKFileBCKUP)
{
RPC.CloseRPC();
if (string.IsNullOrWhiteSpace(PCKFile))
try
{
RPC.SetRPC("825875166574673940", "Sitting alone", "Program by PhoenixARC", "pcklgo", "PCK Studio", "pcklgo");
}
catch
{
Console.WriteLine("ERROR WITH RPC");
}
else
try
{
RPC.SetRPC("825875166574673940", "Developing " + PCKFile, "Program by PhoenixARC", "pcklgo", "PCK Studio", "pcklgo");
}
catch
{
Console.WriteLine("ERROR WITH RPC");
}
PCKFileBCKUP = PCKFile;
}
}
}
}

View File

@@ -367,7 +367,7 @@
</value>
</data>
<data name="newToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="newToolStripMenuItem.Text" xml:space="preserve">
<value>New</value>
@@ -381,7 +381,7 @@
</value>
</data>
<data name="openToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="openToolStripMenuItem.Text" xml:space="preserve">
<value>Open</value>
@@ -395,7 +395,7 @@
</value>
</data>
<data name="extractToolStripMenuItem1.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="extractToolStripMenuItem1.Text" xml:space="preserve">
<value>Extract</value>
@@ -414,7 +414,7 @@
</value>
</data>
<data name="saveToolStripMenuItem1.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="saveToolStripMenuItem1.Text" xml:space="preserve">
<value>Save</value>
@@ -433,7 +433,7 @@
</value>
</data>
<data name="saveToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="saveToolStripMenuItem.Text" xml:space="preserve">
<value>Save As</value>
@@ -452,7 +452,7 @@
</value>
</data>
<data name="metaToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="metaToolStripMenuItem.Text" xml:space="preserve">
<value>Meta</value>
@@ -470,7 +470,7 @@
</value>
</data>
<data name="addPasswordToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>180, 22</value>
<value>149, 22</value>
</data>
<data name="addPasswordToolStripMenuItem.Text" xml:space="preserve">
<value>Add Password</value>
@@ -3709,13 +3709,13 @@
<value>Help</value>
</data>
<data name="openToolStripMenuItem1.Size" type="System.Drawing.Size, System.Drawing">
<value>176, 22</value>
<value>212, 22</value>
</data>
<data name="openToolStripMenuItem1.Text" xml:space="preserve">
<value>Open PCK Center</value>
</data>
<data name="wiiUPCKInstallerToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>176, 22</value>
<value>212, 22</value>
</data>
<data name="wiiUPCKInstallerToolStripMenuItem.Text" xml:space="preserve">
<value>Wii U PCK Installer</value>
@@ -3724,17 +3724,26 @@
<value>False</value>
</data>
<data name="PS3PCKInstallerToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>176, 22</value>
<value>212, 22</value>
</data>
<data name="PS3PCKInstallerToolStripMenuItem.Text" xml:space="preserve">
<value>PS3 PCK Installer</value>
</data>
<data name="VitaPCKInstallerToolStripMenuItem.Enabled" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="VitaPCKInstallerToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>176, 22</value>
<value>212, 22</value>
</data>
<data name="VitaPCKInstallerToolStripMenuItem.Text" xml:space="preserve">
<value>PSVita PCK Installer</value>
</data>
<data name="joinDevelopmentDiscordToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>212, 22</value>
</data>
<data name="joinDevelopmentDiscordToolStripMenuItem.Text" xml:space="preserve">
<value>Join Development Discord</value>
</data>
<data name="storeToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>63, 20</value>
</data>
@@ -4363,7 +4372,7 @@
<value>myTablePanel1</value>
</data>
<data name="&gt;&gt;myTablePanel1.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;myTablePanel1.Parent" xml:space="preserve">
<value>tabMetaDisplay</value>
@@ -4450,7 +4459,7 @@
<value>myTablePanelPckEdit</value>
</data>
<data name="&gt;&gt;myTablePanelPckEdit.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;myTablePanelPckEdit.Parent" xml:space="preserve">
<value>tabPage1</value>
@@ -5740,7 +5749,7 @@
<value>myTablePanel3</value>
</data>
<data name="&gt;&gt;myTablePanel3.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;myTablePanel3.Parent" xml:space="preserve">
<value>tabPage2</value>
@@ -5827,7 +5836,7 @@
<value>myTablePanel2</value>
</data>
<data name="&gt;&gt;myTablePanel2.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;myTablePanel2.Parent" xml:space="preserve">
<value>metroTabPage1</value>
@@ -5949,6 +5958,9 @@
<data name="&gt;&gt;metroTabControl1.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>781, 23</value>
</metadata>
<data name="myTablePanelStartScreen.ColumnCount" type="System.Int32, mscorlib">
<value>2</value>
</data>
@@ -6073,7 +6085,7 @@
<value>myTablePanelStartScreen</value>
</data>
<data name="&gt;&gt;myTablePanelStartScreen.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;myTablePanelStartScreen.Parent" xml:space="preserve">
<value>$this</value>
@@ -8118,6 +8130,12 @@
<data name="&gt;&gt;VitaPCKInstallerToolStripMenuItem.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;joinDevelopmentDiscordToolStripMenuItem.Name" xml:space="preserve">
<value>joinDevelopmentDiscordToolStripMenuItem</value>
</data>
<data name="&gt;&gt;joinDevelopmentDiscordToolStripMenuItem.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;uPDATEToolStripMenuItem1.Name" xml:space="preserve">
<value>uPDATEToolStripMenuItem1</value>
</data>
@@ -8154,6 +8172,12 @@
<data name="&gt;&gt;directorySearcher1.Type" xml:space="preserve">
<value>System.DirectoryServices.DirectorySearcher, System.DirectoryServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="&gt;&gt;timer1.Name" xml:space="preserve">
<value>timer1</value>
</data>
<data name="&gt;&gt;timer1.Type" xml:space="preserve">
<value>System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>FormMain</value>
</data>

View File

@@ -11,7 +11,7 @@ using System.Windows.Forms;
using System.Drawing.Drawing2D;
using MySql.Data.MySqlClient;
using System.Net;
using minekampf;
using PckStudio;
namespace MinecraftUSkinEditor
{

View File

@@ -1,4 +1,4 @@
namespace minekampf
namespace PckStudio
{
partial class generateModel
{
@@ -67,7 +67,7 @@
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.tabBody = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.myTablePanel2 = new minekampf.Forms.MyTablePanel();
this.myTablePanel2 = new PckStudio.Forms.MyTablePanel();
this.offsetArms = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.offsetBody = new System.Windows.Forms.TextBox();
@@ -77,7 +77,7 @@
this.offsetHead = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.tabArmor = new System.Windows.Forms.TabPage();
this.myTablePanel1 = new minekampf.Forms.MyTablePanel();
this.myTablePanel1 = new PckStudio.Forms.MyTablePanel();
this.offsetBoots = new System.Windows.Forms.TextBox();
this.offsetPants = new System.Windows.Forms.TextBox();
this.offsetTool = new System.Windows.Forms.TextBox();
@@ -187,16 +187,16 @@
//
// textTextureX
//
this.tableLayoutPanelMain.SetColumnSpan(this.textTextureX, 2);
resources.ApplyResources(this.textTextureX, "textTextureX");
this.tableLayoutPanelMain.SetColumnSpan(this.textTextureX, 2);
this.textTextureX.Name = "textTextureX";
this.textTextureX.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
this.textTextureX.Leave += new System.EventHandler(this.textXc_Leave);
//
// buttonIMPORT
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonIMPORT, 3);
resources.ApplyResources(this.buttonIMPORT, "buttonIMPORT");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonIMPORT, 3);
this.buttonIMPORT.ForeColor = System.Drawing.Color.White;
this.buttonIMPORT.Name = "buttonIMPORT";
this.buttonIMPORT.UseVisualStyleBackColor = true;
@@ -211,8 +211,8 @@
//
// buttonZcplus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZcplus, 2);
resources.ApplyResources(this.buttonZcplus, "buttonZcplus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZcplus, 2);
this.buttonZcplus.ForeColor = System.Drawing.Color.White;
this.buttonZcplus.Name = "buttonZcplus";
this.buttonZcplus.UseVisualStyleBackColor = true;
@@ -220,8 +220,8 @@
//
// buttonXcminus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXcminus, 2);
resources.ApplyResources(this.buttonXcminus, "buttonXcminus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXcminus, 2);
this.buttonXcminus.ForeColor = System.Drawing.Color.White;
this.buttonXcminus.Name = "buttonXcminus";
this.buttonXcminus.UseVisualStyleBackColor = true;
@@ -229,8 +229,8 @@
//
// buttonYcminus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYcminus, 2);
resources.ApplyResources(this.buttonYcminus, "buttonYcminus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYcminus, 2);
this.buttonYcminus.ForeColor = System.Drawing.Color.White;
this.buttonYcminus.Name = "buttonYcminus";
this.buttonYcminus.UseVisualStyleBackColor = true;
@@ -238,8 +238,8 @@
//
// buttonZcminus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZcminus, 2);
resources.ApplyResources(this.buttonZcminus, "buttonZcminus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZcminus, 2);
this.buttonZcminus.ForeColor = System.Drawing.Color.White;
this.buttonZcminus.Name = "buttonZcminus";
this.buttonZcminus.UseVisualStyleBackColor = true;
@@ -247,8 +247,8 @@
//
// buttonYcplus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYcplus, 2);
resources.ApplyResources(this.buttonYcplus, "buttonYcplus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYcplus, 2);
this.buttonYcplus.ForeColor = System.Drawing.Color.White;
this.buttonYcplus.Name = "buttonYcplus";
this.buttonYcplus.UseVisualStyleBackColor = true;
@@ -256,8 +256,8 @@
//
// buttonXcplus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXcplus, 2);
resources.ApplyResources(this.buttonXcplus, "buttonXcplus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXcplus, 2);
this.buttonXcplus.ForeColor = System.Drawing.Color.White;
this.buttonXcplus.Name = "buttonXcplus";
this.buttonXcplus.UseVisualStyleBackColor = true;
@@ -265,8 +265,8 @@
//
// buttonZfplus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZfplus, 2);
resources.ApplyResources(this.buttonZfplus, "buttonZfplus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZfplus, 2);
this.buttonZfplus.ForeColor = System.Drawing.Color.White;
this.buttonZfplus.Name = "buttonZfplus";
this.buttonZfplus.UseVisualStyleBackColor = true;
@@ -274,8 +274,8 @@
//
// buttonXfminus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXfminus, 2);
resources.ApplyResources(this.buttonXfminus, "buttonXfminus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXfminus, 2);
this.buttonXfminus.ForeColor = System.Drawing.Color.White;
this.buttonXfminus.Name = "buttonXfminus";
this.buttonXfminus.UseVisualStyleBackColor = true;
@@ -283,8 +283,8 @@
//
// buttonYfminus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYfminus, 2);
resources.ApplyResources(this.buttonYfminus, "buttonYfminus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYfminus, 2);
this.buttonYfminus.ForeColor = System.Drawing.Color.White;
this.buttonYfminus.Name = "buttonYfminus";
this.buttonYfminus.UseVisualStyleBackColor = true;
@@ -292,8 +292,8 @@
//
// buttonZfminus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZfminus, 2);
resources.ApplyResources(this.buttonZfminus, "buttonZfminus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonZfminus, 2);
this.buttonZfminus.ForeColor = System.Drawing.Color.White;
this.buttonZfminus.Name = "buttonZfminus";
this.buttonZfminus.UseVisualStyleBackColor = true;
@@ -301,8 +301,8 @@
//
// buttonYfplus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYfplus, 2);
resources.ApplyResources(this.buttonYfplus, "buttonYfplus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonYfplus, 2);
this.buttonYfplus.ForeColor = System.Drawing.Color.White;
this.buttonYfplus.Name = "buttonYfplus";
this.buttonYfplus.UseVisualStyleBackColor = true;
@@ -310,8 +310,8 @@
//
// buttonXfplus
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXfplus, 2);
resources.ApplyResources(this.buttonXfplus, "buttonXfplus");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonXfplus, 2);
this.buttonXfplus.ForeColor = System.Drawing.Color.White;
this.buttonXfplus.Name = "buttonXfplus";
this.buttonXfplus.UseVisualStyleBackColor = true;
@@ -319,8 +319,8 @@
//
// buttonEXPORT
//
this.tableLayoutPanelMain.SetColumnSpan(this.buttonEXPORT, 3);
resources.ApplyResources(this.buttonEXPORT, "buttonEXPORT");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonEXPORT, 3);
this.buttonEXPORT.ForeColor = System.Drawing.Color.White;
this.buttonEXPORT.Name = "buttonEXPORT";
this.buttonEXPORT.UseVisualStyleBackColor = true;
@@ -335,9 +335,9 @@
//
// buttonDone
//
resources.ApplyResources(this.buttonDone, "buttonDone");
this.tableLayoutPanelMain.SetColumnSpan(this.buttonDone, 3);
this.buttonDone.DialogResult = System.Windows.Forms.DialogResult.OK;
resources.ApplyResources(this.buttonDone, "buttonDone");
this.buttonDone.ForeColor = System.Drawing.Color.White;
this.buttonDone.Name = "buttonDone";
this.buttonDone.UseVisualStyleBackColor = true;
@@ -345,48 +345,48 @@
//
// textYc
//
this.tableLayoutPanelMain.SetColumnSpan(this.textYc, 2);
resources.ApplyResources(this.textYc, "textYc");
this.tableLayoutPanelMain.SetColumnSpan(this.textYc, 2);
this.textYc.Name = "textYc";
this.textYc.TextChanged += new System.EventHandler(this.textYc_TextChanged);
this.textYc.Leave += new System.EventHandler(this.textXc_Leave);
//
// textZc
//
this.tableLayoutPanelMain.SetColumnSpan(this.textZc, 2);
resources.ApplyResources(this.textZc, "textZc");
this.tableLayoutPanelMain.SetColumnSpan(this.textZc, 2);
this.textZc.Name = "textZc";
this.textZc.TextChanged += new System.EventHandler(this.textZc_TextChanged);
this.textZc.Leave += new System.EventHandler(this.textXc_Leave);
//
// textXf
//
this.tableLayoutPanelMain.SetColumnSpan(this.textXf, 2);
resources.ApplyResources(this.textXf, "textXf");
this.tableLayoutPanelMain.SetColumnSpan(this.textXf, 2);
this.textXf.Name = "textXf";
this.textXf.TextChanged += new System.EventHandler(this.textXf_TextChanged);
this.textXf.Leave += new System.EventHandler(this.textXc_Leave);
//
// textYf
//
this.tableLayoutPanelMain.SetColumnSpan(this.textYf, 2);
resources.ApplyResources(this.textYf, "textYf");
this.tableLayoutPanelMain.SetColumnSpan(this.textYf, 2);
this.textYf.Name = "textYf";
this.textYf.TextChanged += new System.EventHandler(this.textYf_TextChanged);
this.textYf.Leave += new System.EventHandler(this.textXc_Leave);
//
// textZf
//
this.tableLayoutPanelMain.SetColumnSpan(this.textZf, 2);
resources.ApplyResources(this.textZf, "textZf");
this.tableLayoutPanelMain.SetColumnSpan(this.textZf, 2);
this.textZf.Name = "textZf";
this.textZf.TextChanged += new System.EventHandler(this.textZf_TextChanged);
this.textZf.Leave += new System.EventHandler(this.textXc_Leave);
//
// textXc
//
this.tableLayoutPanelMain.SetColumnSpan(this.textXc, 2);
resources.ApplyResources(this.textXc, "textXc");
this.tableLayoutPanelMain.SetColumnSpan(this.textXc, 2);
this.textXc.Name = "textXc";
this.textXc.TextChanged += new System.EventHandler(this.textXc_TextChanged);
this.textXc.Leave += new System.EventHandler(this.textXc_Leave);
@@ -400,9 +400,9 @@
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.tableLayoutPanelMain.SetColumnSpan(this.groupBox1, 6);
this.groupBox1.Controls.Add(this.tabBody);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.ForeColor = System.Drawing.Color.White;
this.groupBox1.Name = "groupBox1";
this.tableLayoutPanelMain.SetRowSpan(this.groupBox1, 2);
@@ -410,17 +410,17 @@
//
// tabBody
//
resources.ApplyResources(this.tabBody, "tabBody");
this.tabBody.Controls.Add(this.tabPage1);
this.tabBody.Controls.Add(this.tabArmor);
resources.ApplyResources(this.tabBody, "tabBody");
this.tabBody.Name = "tabBody";
this.tabBody.SelectedIndex = 0;
//
// tabPage1
//
resources.ApplyResources(this.tabPage1, "tabPage1");
this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
this.tabPage1.Controls.Add(this.myTablePanel2);
resources.ApplyResources(this.tabPage1, "tabPage1");
this.tabPage1.Name = "tabPage1";
//
// myTablePanel2
@@ -486,9 +486,9 @@
//
// tabArmor
//
resources.ApplyResources(this.tabArmor, "tabArmor");
this.tabArmor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(17)))), ((int)(((byte)(17)))));
this.tabArmor.Controls.Add(this.myTablePanel1);
resources.ApplyResources(this.tabArmor, "tabArmor");
this.tabArmor.Name = "tabArmor";
//
// myTablePanel1
@@ -560,6 +560,7 @@
//
// comboParent
//
resources.ApplyResources(this.comboParent, "comboParent");
this.comboParent.FormattingEnabled = true;
this.comboParent.Items.AddRange(new object[] {
resources.GetString("comboParent.Items"),
@@ -568,7 +569,6 @@
resources.GetString("comboParent.Items3"),
resources.GetString("comboParent.Items4"),
resources.GetString("comboParent.Items5")});
resources.ApplyResources(this.comboParent, "comboParent");
this.comboParent.Name = "comboParent";
this.comboParent.SelectedValueChanged += new System.EventHandler(this.comboParent_SelectedIndexChanged);
//
@@ -580,9 +580,9 @@
//
// listViewBoxes
//
resources.ApplyResources(this.listViewBoxes, "listViewBoxes");
this.listViewBoxes.Activation = System.Windows.Forms.ItemActivation.OneClick;
this.listViewBoxes.ContextMenuStrip = this.contextMenuStrip1;
resources.ApplyResources(this.listViewBoxes, "listViewBoxes");
this.listViewBoxes.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.listViewBoxes.HideSelection = false;
this.listViewBoxes.LabelEdit = true;
@@ -598,6 +598,7 @@
//
// contextMenuStrip1
//
resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.createToolStripMenuItem,
@@ -605,7 +606,6 @@
this.deleteToolStripMenuItem,
this.changeColorToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
//
// createToolStripMenuItem
//
@@ -729,19 +729,19 @@
//
// displayBox
//
resources.ApplyResources(this.displayBox, "displayBox");
this.displayBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tableLayoutPanelMain.SetColumnSpan(this.displayBox, 3);
resources.ApplyResources(this.displayBox, "displayBox");
this.displayBox.Image = global::minekampf.Properties.Resources.bg2;
this.displayBox.Image = global::PckStudio.Properties.Resources.bg2;
this.displayBox.Name = "displayBox";
this.tableLayoutPanelMain.SetRowSpan(this.displayBox, 17);
this.displayBox.TabStop = false;
//
// texturePreview
//
resources.ApplyResources(this.texturePreview, "texturePreview");
this.texturePreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tableLayoutPanelMain.SetColumnSpan(this.texturePreview, 6);
resources.ApplyResources(this.texturePreview, "texturePreview");
this.texturePreview.Name = "texturePreview";
this.tableLayoutPanelMain.SetRowSpan(this.texturePreview, 5);
this.texturePreview.TabStop = false;

View File

@@ -11,7 +11,7 @@ using Brush = System.Drawing.Brush;
using Color = System.Drawing.Color;
namespace minekampf
namespace PckStudio
{
public partial class generateModel : MetroFramework.Forms.MetroForm
{

View File

@@ -118,6 +118,63 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="buttonImportModel.Location" type="System.Drawing.Point, System.Drawing">
<value>240, 3</value>
</data>
<data name="buttonImportModel.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 21</value>
</data>
<data name="buttonImportModel.Text" xml:space="preserve">
<value>CSMを開く</value>
</data>
<data name="buttonExportModel.Location" type="System.Drawing.Point, System.Drawing">
<value>446, 3</value>
</data>
<data name="buttonExportModel.Text" xml:space="preserve">
<value>CSMのエクスポート</value>
</data>
<data name="checkTextureGenerate.Location" type="System.Drawing.Point, System.Drawing">
<value>240, 601</value>
</data>
<data name="checkTextureGenerate.Size" type="System.Drawing.Size, System.Drawing">
<value>127, 17</value>
</data>
<data name="checkTextureGenerate.Text" xml:space="preserve">
<value>テクスチャの自動生成</value>
</data>
<data name="checkGuide.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 17</value>
</data>
<data name="checkGuide.Text" xml:space="preserve">
<value>ガイドライン</value>
</data>
<data name="labelView.Location" type="System.Drawing.Point, System.Drawing">
<value>240, 577</value>
</data>
<data name="labelView.Size" type="System.Drawing.Size, System.Drawing">
<value>132, 13</value>
</data>
<data name="labelView.Text" xml:space="preserve">
<value>見る:</value>
</data>
<data name="button2.Text" xml:space="preserve">
<value>左に回転</value>
</data>
<data name="button1.Location" type="System.Drawing.Point, System.Drawing">
<value>476, 572</value>
</data>
<data name="button1.Text" xml:space="preserve">
<value>右に回る</value>
</data>
<data name="label7.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 194</value>
</data>
<data name="labelModeParts.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 13</value>
</data>
<data name="labelModeParts.Text" xml:space="preserve">
<value>モデルパーツ</value>
</data>
<data name="createToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -126,6 +183,12 @@
jWAohxRkde4wnGftBS90axNmphIGAAAAAElFTkSuQmCC
</value>
</data>
<data name="createToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="createToolStripMenuItem.Text" xml:space="preserve">
<value>作成する</value>
</data>
<data name="cloneToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -141,6 +204,12 @@
TkSuQmCC
</value>
</data>
<data name="cloneToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="cloneToolStripMenuItem.Text" xml:space="preserve">
<value>クローン</value>
</data>
<data name="deleteToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -150,6 +219,12 @@
byIunLh7mD2ySLcAAAAASUVORK5CYII=
</value>
</data>
<data name="deleteToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>削除</value>
</data>
<data name="changeColorToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -163,6 +238,231 @@
rkJggg==
</value>
</data>
<data name="changeColorToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
<value>134, 26</value>
</data>
<data name="changeColorToolStripMenuItem.Text" xml:space="preserve">
<value>色を変える</value>
</data>
<data name="contextMenuStrip1.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 108</value>
</data>
<data name="displayBox.Size" type="System.Drawing.Size, System.Drawing">
<value>435, 536</value>
</data>
<data name="labelFullSkinPreview.Size" type="System.Drawing.Size, System.Drawing">
<value>97, 13</value>
</data>
<data name="labelFullSkinPreview.Text" xml:space="preserve">
<value>フルスキンプレビュー</value>
</data>
<data name="labelTextureMappingPreview.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 0</value>
</data>
<data name="labelTextureMappingPreview.Size" type="System.Drawing.Size, System.Drawing">
<value>137, 13</value>
</data>
<data name="labelTextureMappingPreview.Text" xml:space="preserve">
<value>テクスチャマッピングプレビュー</value>
</data>
<data name="texturePreview.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 30</value>
</data>
<data name="buttonIMPORT.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 164</value>
</data>
<data name="buttonIMPORT.Text" xml:space="preserve">
<value>インポート</value>
</data>
<data name="buttonEXPORT.Location" type="System.Drawing.Point, System.Drawing">
<value>638, 164</value>
</data>
<data name="buttonEXPORT.Text" xml:space="preserve">
<value>書き出す</value>
</data>
<data name="textTextureX.Location" type="System.Drawing.Point, System.Drawing">
<value>638, 191</value>
</data>
<data name="label3.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 214</value>
</data>
<data name="label3.Size" type="System.Drawing.Size, System.Drawing">
<value>36, 13</value>
</data>
<data name="label3.Text" xml:space="preserve">
<value>サイズ</value>
</data>
<data name="buttonXfplus.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 230</value>
</data>
<data name="textXf.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 259</value>
</data>
<data name="buttonXfminus.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 285</value>
</data>
<data name="label5.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 311</value>
</data>
<data name="label5.Size" type="System.Drawing.Size, System.Drawing">
<value>52, 13</value>
</data>
<data name="label5.Text" xml:space="preserve">
<value>ポジション</value>
</data>
<data name="buttonXcplus.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 327</value>
</data>
<data name="textXc.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 356</value>
</data>
<data name="buttonXcminus.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 382</value>
</data>
<data name="buttonYfplus.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 230</value>
</data>
<data name="textYf.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 259</value>
</data>
<data name="buttonYfminus.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 285</value>
</data>
<data name="buttonYcplus.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 327</value>
</data>
<data name="textYc.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 356</value>
</data>
<data name="buttonYcminus.Location" type="System.Drawing.Point, System.Drawing">
<value>615, 382</value>
</data>
<data name="buttonZfplus.Location" type="System.Drawing.Point, System.Drawing">
<value>660, 230</value>
</data>
<data name="textZf.Location" type="System.Drawing.Point, System.Drawing">
<value>660, 259</value>
</data>
<data name="buttonZfminus.Location" type="System.Drawing.Point, System.Drawing">
<value>660, 285</value>
</data>
<data name="buttonZcplus.Location" type="System.Drawing.Point, System.Drawing">
<value>660, 327</value>
</data>
<data name="textZc.Location" type="System.Drawing.Point, System.Drawing">
<value>660, 356</value>
</data>
<data name="buttonZcminus.Location" type="System.Drawing.Point, System.Drawing">
<value>660, 382</value>
</data>
<data name="label6.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 13</value>
</data>
<data name="label6.Text" xml:space="preserve">
<value>親</value>
</data>
<data name="buttonTemplate.Text" xml:space="preserve">
<value>テンプレートをロード</value>
</data>
<data name="offsetArms.Location" type="System.Drawing.Point, System.Drawing">
<value>62, 81</value>
</data>
<data name="label14.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 13</value>
</data>
<data name="label14.Text" xml:space="preserve">
<value>腕</value>
</data>
<data name="offsetBody.Location" type="System.Drawing.Point, System.Drawing">
<value>62, 29</value>
</data>
<data name="offsetLegs.Location" type="System.Drawing.Point, System.Drawing">
<value>62, 55</value>
</data>
<data name="label10.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 13</value>
</data>
<data name="label10.Text" xml:space="preserve">
<value>頭</value>
</data>
<data name="label13.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 13</value>
</data>
<data name="label13.Text" xml:space="preserve">
<value>脚</value>
</data>
<data name="offsetHead.Location" type="System.Drawing.Point, System.Drawing">
<value>62, 3</value>
</data>
<data name="label12.Size" type="System.Drawing.Size, System.Drawing">
<value>19, 13</value>
</data>
<data name="label12.Text" xml:space="preserve">
<value>体</value>
</data>
<data name="myTablePanel2.Size" type="System.Drawing.Size, System.Drawing">
<value>119, 104</value>
</data>
<data name="tabPage1.Size" type="System.Drawing.Size, System.Drawing">
<value>125, 110</value>
</data>
<data name="offsetBoots.Location" type="System.Drawing.Point, System.Drawing">
<value>59, 81</value>
</data>
<data name="offsetPants.Location" type="System.Drawing.Point, System.Drawing">
<value>59, 55</value>
</data>
<data name="offsetTool.Location" type="System.Drawing.Point, System.Drawing">
<value>59, 29</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>ツール</value>
</data>
<data name="label9.Size" type="System.Drawing.Size, System.Drawing">
<value>50, 13</value>
</data>
<data name="label9.Text" xml:space="preserve">
<value>ヘルメット</value>
</data>
<data name="offsetHelmet.Location" type="System.Drawing.Point, System.Drawing">
<value>59, 3</value>
</data>
<data name="label15.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 13</value>
</data>
<data name="label15.Text" xml:space="preserve">
<value>ブーツ</value>
</data>
<data name="label16.Size" type="System.Drawing.Size, System.Drawing">
<value>35, 13</value>
</data>
<data name="label16.Text" xml:space="preserve">
<value>パンツ</value>
</data>
<data name="myTablePanel1.Size" type="System.Drawing.Size, System.Drawing">
<value>119, 104</value>
</data>
<data name="tabArmor.Size" type="System.Drawing.Size, System.Drawing">
<value>125, 110</value>
</data>
<data name="tabBody.Size" type="System.Drawing.Size, System.Drawing">
<value>133, 136</value>
</data>
<data name="groupBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>571, 411</value>
</data>
<data name="groupBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>139, 155</value>
</data>
<data name="groupBox1.Text" xml:space="preserve">
<value>オフセット</value>
</data>
<data name="labelTheme.Size" type="System.Drawing.Size, System.Drawing">
<value>76, 13</value>
</data>
<data name="labelTheme.Text" xml:space="preserve">
<value>バックグラウンド</value>
</data>
<data name="listViewBGs.Items" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
@@ -307,6 +607,24 @@
AAADAAAACw==
</value>
</data>
<data name="checkBoxArmor.Location" type="System.Drawing.Point, System.Drawing">
<value>378, 601</value>
</data>
<data name="checkBoxArmor.Size" type="System.Drawing.Size, System.Drawing">
<value>139, 17</value>
</data>
<data name="checkBoxArmor.Text" xml:space="preserve">
<value>アーマーオフセットを表示</value>
</data>
<data name="buttonDone.Location" type="System.Drawing.Point, System.Drawing">
<value>638, 601</value>
</data>
<data name="buttonDone.Text" xml:space="preserve">
<value>作成する</value>
</data>
<data name="textTextureY.Location" type="System.Drawing.Point, System.Drawing">
<value>602, 191</value>
</data>
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
AAABAAYAEBAAAAEAIABoBAAAZgAAACAgAAABACAAqBAAAM4EAAAwMAAAAQAgAKglAAB2FQAAQEAAAAEA
@@ -2035,100 +2353,4 @@
<data name="$this.Text" xml:space="preserve">
<value>モデルジェネレーター</value>
</data>
<data name="button1.Text" xml:space="preserve">
<value>右に回る</value>
</data>
<data name="button2.Text" xml:space="preserve">
<value>左に回転</value>
</data>
<data name="buttonDone.Text" xml:space="preserve">
<value>作成する</value>
</data>
<data name="buttonEXPORT.Text" xml:space="preserve">
<value>書き出す</value>
</data>
<data name="buttonExportModel.Text" xml:space="preserve">
<value>CSMのエクスポート</value>
</data>
<data name="buttonIMPORT.Text" xml:space="preserve">
<value>インポート</value>
</data>
<data name="buttonImportModel.Text" xml:space="preserve">
<value>CSMを開く</value>
</data>
<data name="buttonTemplate.Text" xml:space="preserve">
<value>テンプレートをロード</value>
</data>
<data name="changeColorToolStripMenuItem.Text" xml:space="preserve">
<value>色を変える</value>
</data>
<data name="checkBoxArmor.Text" xml:space="preserve">
<value>アーマーオフセットを表示</value>
</data>
<data name="checkGuide.Text" xml:space="preserve">
<value>ガイドライン</value>
</data>
<data name="checkTextureGenerate.Text" xml:space="preserve">
<value>テクスチャの自動生成</value>
</data>
<data name="cloneToolStripMenuItem.Text" xml:space="preserve">
<value>クローン</value>
</data>
<data name="createToolStripMenuItem.Text" xml:space="preserve">
<value>作成する</value>
</data>
<data name="deleteToolStripMenuItem.Text" xml:space="preserve">
<value>削除</value>
</data>
<data name="groupBox1.Text" xml:space="preserve">
<value>オフセット</value>
</data>
<data name="label10.Text" xml:space="preserve">
<value>頭</value>
</data>
<data name="label12.Text" xml:space="preserve">
<value>体</value>
</data>
<data name="label13.Text" xml:space="preserve">
<value>脚</value>
</data>
<data name="label14.Text" xml:space="preserve">
<value>腕</value>
</data>
<data name="label15.Text" xml:space="preserve">
<value>ブーツ</value>
</data>
<data name="label16.Text" xml:space="preserve">
<value>パンツ</value>
</data>
<data name="label3.Text" xml:space="preserve">
<value>サイズ</value>
</data>
<data name="label4.Text" xml:space="preserve">
<value>ツール</value>
</data>
<data name="label5.Text" xml:space="preserve">
<value>ポジション</value>
</data>
<data name="label6.Text" xml:space="preserve">
<value>親</value>
</data>
<data name="label9.Text" xml:space="preserve">
<value>ヘルメット</value>
</data>
<data name="labelFullSkinPreview.Text" xml:space="preserve">
<value>フルスキンプレビュー</value>
</data>
<data name="labelModeParts.Text" xml:space="preserve">
<value>モデルパーツ</value>
</data>
<data name="labelTextureMappingPreview.Text" xml:space="preserve">
<value>テクスチャマッピングプレビュー</value>
</data>
<data name="labelTheme.Text" xml:space="preserve">
<value>バックグラウンド</value>
</data>
<data name="labelView.Text" xml:space="preserve">
<value>見る:</value>
</data>
</root>

View File

@@ -33,7 +33,7 @@
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.addDisplayIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteDisplayIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.locSort = new minekampf.Forms.MyTablePanel();
this.locSort = new PckStudio.Forms.MyTablePanel();
this.buttonReplaceAll = new System.Windows.Forms.Button();
this.dataGridViewLocEntryData = new System.Windows.Forms.DataGridView();
this.textBoxReplaceAll = new System.Windows.Forms.TextBox();
@@ -128,7 +128,7 @@
private System.Windows.Forms.ToolStripMenuItem addDisplayIDToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem deleteDisplayIDToolStripMenuItem;
private System.Windows.Forms.TextBox textBoxReplaceAll;
private minekampf.Forms.MyTablePanel locSort;
private PckStudio.Forms.MyTablePanel locSort;
private System.Windows.Forms.Button buttonReplaceAll;
}
}

View File

@@ -2017,7 +2017,7 @@
<value>MetroFramework.Forms.MetroForm, MetroFramework, Version=1.4.0.0, Culture=neutral, PublicKeyToken=5f91a84759bf584a</value>
</data>
<data name="&gt;&gt;locSort.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;buttonReplaceAll.Parent" xml:space="preserve">
<value>locSort</value>

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class PCK_Manager
{

View File

@@ -10,7 +10,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class PCK_Manager : MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class Pref
{

View File

@@ -10,7 +10,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class Pref : MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class installPS3
{
@@ -30,7 +30,7 @@
{
this.components = new System.ComponentModel.Container();
this.metroTabPageMain = new MetroFramework.Controls.MetroTabPage();
this.myTablePanel1 = new minekampf.Forms.MyTablePanel();
this.myTablePanel1 = new PckStudio.Forms.MyTablePanel();
this.EurDig = new System.Windows.Forms.RadioButton();
this.USDig = new System.Windows.Forms.RadioButton();
this.buttonServerToggle = new System.Windows.Forms.Button();
@@ -297,7 +297,7 @@
//
// replaceToolStripMenuItem
//
this.replaceToolStripMenuItem.Image = global::minekampf.Properties.Resources.Replace;
this.replaceToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Replace;
this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
this.replaceToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.replaceToolStripMenuItem.Text = "Replace";
@@ -306,7 +306,7 @@
//
// replacePCKToolStripMenuItem
//
this.replacePCKToolStripMenuItem.Image = global::minekampf.Properties.Resources.Replace;
this.replacePCKToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Replace;
this.replacePCKToolStripMenuItem.Name = "replacePCKToolStripMenuItem";
this.replacePCKToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.replacePCKToolStripMenuItem.Text = "Replace with external PCK";

View File

@@ -13,7 +13,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class installPS3 : MetroForm
{

View File

@@ -1,5 +1,5 @@

namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class installVita
{
@@ -32,7 +32,7 @@ namespace minekampf.Forms
{
this.components = new System.ComponentModel.Container();
this.metroTabPageMain = new MetroFramework.Controls.MetroTabPage();
this.myTablePanel1 = new minekampf.Forms.MyTablePanel();
this.myTablePanel1 = new PckStudio.Forms.MyTablePanel();
this.EurDig = new System.Windows.Forms.RadioButton();
this.USDig = new System.Windows.Forms.RadioButton();
this.buttonServerToggle = new System.Windows.Forms.Button();
@@ -299,7 +299,7 @@ namespace minekampf.Forms
//
// replaceToolStripMenuItem
//
this.replaceToolStripMenuItem.Image = global::minekampf.Properties.Resources.Replace;
this.replaceToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Replace;
this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
this.replaceToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.replaceToolStripMenuItem.Text = "Replace";
@@ -308,7 +308,7 @@ namespace minekampf.Forms
//
// replacePCKToolStripMenuItem
//
this.replacePCKToolStripMenuItem.Image = global::minekampf.Properties.Resources.Replace;
this.replacePCKToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Replace;
this.replacePCKToolStripMenuItem.Name = "replacePCKToolStripMenuItem";
this.replacePCKToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.replacePCKToolStripMenuItem.Text = "Replace with external PCK";

View File

@@ -13,7 +13,7 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class installVita : MetroForm
{

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class installWiiU
{
@@ -31,7 +31,7 @@
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(installWiiU));
this.metroTabPageMain = new MetroFramework.Controls.MetroTabPage();
this.myTablePanel1 = new minekampf.Forms.MyTablePanel();
this.myTablePanel1 = new PckStudio.Forms.MyTablePanel();
this.buttonServerToggle = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.radioButtonSystem = new System.Windows.Forms.RadioButton();
@@ -115,7 +115,7 @@
// buttonSelect
//
resources.ApplyResources(this.buttonSelect, "buttonSelect");
this.buttonSelect.BackgroundImage = global::minekampf.Properties.Resources.sdDownload;
this.buttonSelect.BackgroundImage = global::PckStudio.Properties.Resources.sdDownload;
this.buttonSelect.ForeColor = System.Drawing.Color.White;
this.buttonSelect.Name = "buttonSelect";
this.buttonSelect.UseVisualStyleBackColor = true;
@@ -261,14 +261,14 @@
// replaceToolStripMenuItem
//
resources.ApplyResources(this.replaceToolStripMenuItem, "replaceToolStripMenuItem");
this.replaceToolStripMenuItem.Image = global::minekampf.Properties.Resources.Replace;
this.replaceToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Replace;
this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
//
// replacePCKToolStripMenuItem
//
resources.ApplyResources(this.replacePCKToolStripMenuItem, "replacePCKToolStripMenuItem");
this.replacePCKToolStripMenuItem.Image = global::minekampf.Properties.Resources.Replace;
this.replacePCKToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Replace;
this.replacePCKToolStripMenuItem.Name = "replacePCKToolStripMenuItem";
this.replacePCKToolStripMenuItem.Click += new System.EventHandler(this.replacePCKToolStripMenuItem_Click);
//

View File

@@ -12,7 +12,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class installWiiU : MetroFramework.Forms.MetroForm
{

View File

@@ -2191,7 +2191,7 @@
<value>metroTabPageMain</value>
</data>
<data name="&gt;&gt;myTablePanel1.Type" xml:space="preserve">
<value>minekampf.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
<value>PckStudio.Forms.MyTablePanel, PCK Studio, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;radioButtonUSB.Parent" xml:space="preserve">
<value>panel1</value>

View File

@@ -1,4 +1,4 @@
namespace minekampf.Forms
namespace PckStudio.Forms
{
partial class pckCenter
{
@@ -196,13 +196,13 @@
// deleteToolStripMenuItem
//
resources.ApplyResources(this.deleteToolStripMenuItem, "deleteToolStripMenuItem");
this.deleteToolStripMenuItem.Image = global::minekampf.Properties.Resources.Del;
this.deleteToolStripMenuItem.Image = global::PckStudio.Properties.Resources.Del;
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
//
// exportToolStripMenuItem
//
resources.ApplyResources(this.exportToolStripMenuItem, "exportToolStripMenuItem");
this.exportToolStripMenuItem.Image = global::minekampf.Properties.Resources.ExportFile;
this.exportToolStripMenuItem.Image = global::PckStudio.Properties.Resources.ExportFile;
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
//
// pckCenter

View File

@@ -10,14 +10,15 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Media.Imaging;
using RichPresenceClient;
namespace minekampf.Forms
namespace PckStudio.Forms
{
public partial class pckCenter : MetroFramework.Forms.MetroForm
{
string[] mods;
string hosturl = File.ReadAllText(Environment.CurrentDirectory + "\\settings.ini").Split(new[] { "\r\n", "\n" }, StringSplitOptions.None)[1] + "/studio/PCK/api/";
string loadDirectory = File.ReadAllText(Environment.CurrentDirectory + "\\settings.ini").Split(new[] { "\r\n", "\n" }, StringSplitOptions.None)[1] + "pckCenterList.txt";
string loadDirectory = File.ReadAllText(Environment.CurrentDirectory + "\\settings.ini").Split(new[] { "\r\n", "\n" }, StringSplitOptions.None)[1] + "/studio/PCK/api/pckCenterList.txt";
string appData = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + "/PCK Studio/";
string cacheDir;
@@ -86,76 +87,80 @@ namespace minekampf.Forms
foreach (string mod in mods)
{
if (File.Exists(cacheDir + mod + ".png") && checkNeeded == true)
try
{
//image cache
HttpWebRequest textureFile = (HttpWebRequest)WebRequest.Create(hosturl + "pcks/" + mod + ".png");
HttpWebResponse textureFileResponse = (HttpWebResponse)textureFile.GetResponse();
if (File.Exists(cacheDir + mod + ".png") && checkNeeded == true)
{
//image cache
HttpWebRequest textureFile = (HttpWebRequest)WebRequest.Create(hosturl + "pcks/" + mod + ".png");
HttpWebResponse textureFileResponse = (HttpWebResponse)textureFile.GetResponse();
DateTime localImageModifiedTime = File.GetLastWriteTime(cacheDir + mod + ".png");
DateTime onlineImageModifiedTime = textureFileResponse.LastModified;
textureFileResponse.Dispose();
if (localImageModifiedTime >= onlineImageModifiedTime)
DateTime localImageModifiedTime = File.GetLastWriteTime(cacheDir + mod + ".png");
DateTime onlineImageModifiedTime = textureFileResponse.LastModified;
textureFileResponse.Dispose();
if (localImageModifiedTime >= onlineImageModifiedTime)
{
}
else
{
client.DownloadFile(hosturl + "pcks/" + mod + ".png", cacheDir + mod + ".png");
}
}
else if (mod.Length == 0) { }
else if (File.Exists(cacheDir + mod + ".png") && checkNeeded == false)
{
}
else
{
// MessageBox.Show(mod + ".png");
client.DownloadFile(hosturl + "pcks/" + mod + ".png", cacheDir + mod + ".png");
}
}
else if(mod.Length == 0) { }
else if (File.Exists(cacheDir + mod + ".png") && checkNeeded == false)
{
}
else
{
// MessageBox.Show(mod + ".png");
client.DownloadFile(hosturl + "pcks/" + mod + ".png", cacheDir + mod + ".png");
}
if (File.Exists(cacheDir + mod + ".desc") && checkNeeded == true)
{
//desc cache
HttpWebRequest descFile = (HttpWebRequest)WebRequest.Create(hosturl + "pcks/" + mod + ".desc");
HttpWebResponse descFileResponse = (HttpWebResponse)descFile.GetResponse();
if (File.Exists(cacheDir + mod + ".desc") && checkNeeded == true)
{
//desc cache
HttpWebRequest descFile = (HttpWebRequest)WebRequest.Create(hosturl + "pcks/" + mod + ".desc");
HttpWebResponse descFileResponse = (HttpWebResponse)descFile.GetResponse();
DateTime localDescModifiedTime = File.GetLastWriteTime(cacheDir + mod + ".desc");
DateTime onlineDescModifiedTime = descFileResponse.LastModified;
descFileResponse.Dispose();
DateTime localDescModifiedTime = File.GetLastWriteTime(cacheDir + mod + ".desc");
DateTime onlineDescModifiedTime = descFileResponse.LastModified;
descFileResponse.Dispose();
if (localDescModifiedTime >= onlineDescModifiedTime)
{
if (localDescModifiedTime >= onlineDescModifiedTime)
}
else
{
client.DownloadFile(hosturl + "pcks/" + mod + ".desc", cacheDir + mod + ".desc");
}
}
else if (File.Exists(cacheDir + mod + ".png") && checkNeeded == false)
{
}
else if (mod.Length == 0) { }
else
{
client.DownloadFile(hosturl + "pcks/" + mod + ".desc", cacheDir + mod + ".desc");
}
}
else if (File.Exists(cacheDir + mod + ".png") && checkNeeded == false)
{
if (mod.Length != 0)
{
string[] parseDesc = File.ReadAllText(cacheDir + mod + ".desc").Split('\n');
Bitmap bmp = new Bitmap(Image.FromFile(cacheDir + mod + ".png"));
string pckName = parseDesc[0];
string author = parseDesc[1];
string desc = parseDesc[2];
string direct = parseDesc[3];
string ad = parseDesc[4];
PckPreview pckPreview = new PckPreview(pckName, author, desc, direct, ad, bmp, 0, mod, null);
pckLayout.Controls.Add(pckPreview);
}
}
else if(mod.Length == 0) { }
else
{
client.DownloadFile(hosturl + "pcks/" + mod + ".desc", cacheDir + mod + ".desc");
}
if (mod.Length != 0)
{
string[] parseDesc = File.ReadAllText(cacheDir + mod + ".desc").Split('\n');
Bitmap bmp = new Bitmap(Image.FromFile(cacheDir + mod + ".png"));
string pckName = parseDesc[0];
string author = parseDesc[1];
string desc = parseDesc[2];
string direct = parseDesc[3];
string ad = parseDesc[4];
PckPreview pckPreview = new PckPreview(pckName, author, desc, direct, ad, bmp, 0, mod, null);
pckLayout.Controls.Add(pckPreview);
}
catch { }
}
}
}
@@ -281,6 +286,16 @@ namespace minekampf.Forms
Directory.CreateDirectory(appData + "/PCK Center/myPcks/");
reload(nobleLoaded);
nobleLoaded = false;
try
{
RPC.SetRPC("825875166574673940", "Viewing the PCK Center", "Program by PhoenixARC", "pcklogo", "PCK Studio", "pcklogo");
}
catch
{
Console.WriteLine("ERROR WITH RPC");
}
}
private void pckLayout_MouseUp(object sender, MouseEventArgs e)

Some files were not shown because too many files have changed in this diff Show More