private void openToolStripMenuItem_Click(object sender, EventArgs e) { OpenFileDialog dlg = new OpenFileDialog(); dlg.Filter = "brg files|*.brg"; if (dlg.ShowDialog() == DialogResult.OK) { file = new BrgFile(File.Open(dlg.FileName, FileMode.Open, FileAccess.Read, FileShare.Read));//, new MaxPlugin()); } }
public Form1() { InitializeComponent(); string output = ""; HashSet <int> ttt = new HashSet <int>(); GrnFile grnFile = new GrnFile(); //MtrlFile mf = new MtrlFile(); //mf.Read(File.Open(@"C:\Games\Steam\SteamApps\common\Age of Mythology\materials\animal alfred_attacka_0.mtrl", FileMode.Open, FileAccess.Read, FileShare.Read)); List <string> newData = new List <string>(); Dictionary <int, int> strIds = new Dictionary <int, int>(); using (StreamReader reader = new StreamReader(File.Open(@"C:\Users\Petar\Desktop\SWConv\SW.txt", FileMode.Open, FileAccess.Read, FileShare.Read))) { int i = 0; while (!reader.EndOfStream) { string line = reader.ReadLine(); int spIndex = line.IndexOf(' '); int id = Convert.ToInt32(line.Substring(0, spIndex)); int newId = i + 137000; strIds.Add(id, newId); newData.Add(newId + " " + line.Substring(spIndex + 1)); ++i; } } using (StreamWriter writer = new StreamWriter(File.Open(@"C:\Users\Petar\Desktop\SWConv\SW2.txt", FileMode.Create, FileAccess.Write, FileShare.Read))) { for (int i = 0; i < newData.Count; ++i) { writer.WriteLine(newData[i]); } } int unitId = 37000; XDocument doc = XDocument.Load(File.Open(@"C:\Users\Petar\Desktop\SWConv\SW.xml", FileMode.Open, FileAccess.Read, FileShare.Read)); foreach (XElement unit in doc.Root.Elements("unit")) { XAttribute xid = unit.Attribute("id"); xid.Value = unitId.ToString(); unit.Element("dbid").Value = unitId.ToString(); ++unitId; XElement xDispNameId = unit.Element("displaynameid"); if (xDispNameId.Value.Contains("x") || xDispNameId.Value.Contains("X")) { continue; } int oldDispId = Convert.ToInt32(xDispNameId.Value); xDispNameId.Value = strIds[oldDispId].ToString(); } doc.Save(File.Open(@"C:\Users\Petar\Desktop\SWConv\SW2.xml", FileMode.Create, FileAccess.Write, FileShare.Read)); //@"C:\Users\Petar\Desktop\Nieuwe map (3)\Output" //bool areEq = this.AreEqual(AoMEngineLibrary.Graphics.Model.Matrix3x3.Identity, new AoMEngineLibrary.Graphics.Model.Matrix3x3(0.9999996f, 0f, 0f, 0f, 0.9999996f, 0f, 0f, 0f, 0.9999996f)); //grnFile.DumpData(File.Open(@"C:\Games\Steam\steamapps\common\Age of Mythology\models\ajax_17youmayfeel.grn", FileMode.Open, FileAccess.Read, FileShare.Read), @"C:\Users\Petar\Desktop\Nieuwe map (3)\Output"); //grnFile.Read(File.Open(@"C:\Games\Steam\steamapps\common\Age of Mythology\models\ajax_17youmayfeel.grn", FileMode.Open, FileAccess.Read, FileShare.Read)); //grnFile.Read(File.Open(@"C:\Users\Petar\Desktop\Nieuwe map (3)\AoM Grn\ajax_17youmayfeel.grn", FileMode.Open, FileAccess.Read, FileShare.Read)); //grnFile.Read(File.Open(@"C:\Users\Petar\Desktop\Nieuwe map (3)\AoM Grn\ajaxC.grn", FileMode.Open, FileAccess.Read, FileShare.Read)); //grnFile.Read(File.Open(@"C:\Users\Petar\Desktop\Nieuwe map (3)\AoM Grn\agamem_idlea.grn", FileMode.Open, FileAccess.Read, FileShare.Read)); //grnFile.Write(File.Open(@"C:\Users\Petar\Desktop\Nieuwe map (3)\AoM Grn\ajaxC2.grn", FileMode.Create, FileAccess.Write, FileShare.Read)); //grnFile.Meshes[0].CalculateUniqueMap(); /*DdtFile ddt = new DdtFile(File.Open(@"C:\Users\Petar\Desktop\aom\textures\agamemnon map.ddt", FileMode.Open, FileAccess.Read, FileShare.Read)); * Dds dds = new Dds(ddt); * dds.Write(File.Open(@"C:\Users\Petar\Desktop\archer x arcus corpse bodya.dds", FileMode.Create, FileAccess.Write, FileShare.Read), -1); * foreach (string s in Directory.GetFiles(@"C:\Users\Petar\Desktop\aom\textures", "*.ddt", SearchOption.AllDirectories)) * { * ddt = new DdtFile(File.Open(s, FileMode.Open, FileAccess.Read, FileShare.Read)); * if (ddt.Width == 256 && ddt.texelFormat == DdtTexelFormat.DXT5) * { * output += s + Environment.NewLine; * } * if (ddt.texelFormat == DdtTexelFormat.Grayscale8) * { * //output += s + Environment.NewLine; * } * } * richTextBox1.Text = output; * return;*/ //@"C:\Games\Steam\SteamApps\common\Age of Mythology\models" //@"C:\Users\Petar\Desktop\modelsAlpha" foreach (string s in Directory.GetFiles(@"C:\Games\Steam\SteamApps\common\Age of Mythology\models", "*.brg", SearchOption.AllDirectories)) //foreach (string s in Directory.GetFiles(@"C:\Users\Petar\Desktop\modelsBeta", "*.brg", SearchOption.AllDirectories)) //foreach (string s in Directory.GetFiles(@"C:\Users\Petar\Desktop\modelsAlpha", "*.brg", SearchOption.AllDirectories)) { continue; try { file = new BrgFile(File.Open(s, FileMode.Open, FileAccess.Read, FileShare.Read)); if (file.Meshes.Count > 0 && (file.Meshes[0].Header.Flags.HasFlag(BrgMeshFlag.COLORCHANNEL))) { output += Path.GetFileName(s) + " " + file.Meshes[0].Header.Flags.ToString() + Environment.NewLine; } if (file.Meshes.Count > 0 && (file.Meshes[0].Header.Format.HasFlag(BrgMeshFormat.ANIMTEXCOORDSNAP))) { //output += Path.GetFileName(s) + " " + file.Meshes[0].Header.Format.ToString() + Environment.NewLine; } if (file.Meshes.Count > 0 && (file.Meshes[0].Header.AnimationType.HasFlag(BrgMeshAnimType.NonUniform))) { //output += Path.GetFileName(s) + " " + file.Meshes[0].Header.AnimationType.ToString() + Environment.NewLine; } //if (file.Materials.Count > 0) //{ // foreach (BrgMaterial mat in file.Materials) // { // //if(mat.sfx.Count > 1) // if (mat.Flags.HasFlag(BrgMatFlag.ILLUMREFLECTION)) // { // output += Path.GetFileName(s) + "," + mat.DiffuseMap + "," + mat.BumpMap + "," + mat.sfx[0].Name; // //output += Path.GetFileName(s) + " " + mat.Flags.ToString() + Environment.NewLine; // } // else // { // output += Path.GetFileName(s) + "," + mat.DiffuseMap + "," + mat.BumpMap + "," + string.Empty; // } // foreach (BrgMatFlag eval in Enum.GetValues(typeof(BrgMatFlag)).Cast<BrgMatFlag>()) // { // output += ","; // if (mat.Flags.HasFlag(eval)) // { // output += eval.ToString(); // } // } // output += Environment.NewLine; // } //} //file.Write(File.Open(@"C:\Users\Petar\Desktop\modelsAlphaConv\" + Path.GetFileName(s), FileMode.Create, FileAccess.Write, FileShare.Read)); } catch (Exception ex) { output += Path.GetFileName(s) + Environment.NewLine; output += ex.Message + "\t---------------------------------------------------------------------------" + Environment.NewLine; //break; } continue; try { file = new BrgFile(File.Open(s, FileMode.Open, FileAccess.Read, FileShare.Read));//, new MaxPlugin()); //if ((file.Mesh[0].unknown09[6] != file.Mesh[0].unknown09d - 1) && (file.Material.Count - 1 != file.Mesh[0].unknown09[6])) if (file.Meshes[0].ExtendedHeader.NameLength == 4) { //output += Path.GetFileName(s) + Environment.NewLine; //output += "\tu09[0] = " + file.Mesh[0].unknown09[0]; //output += "\tu09[0] = " + file.Mesh[0].unknown09[0]; //output += Environment.NewLine; } /*if (file.Mesh[0].flags.HasFlag(BrgMeshFlag.VERTCOLOR) || file.Mesh[0].flags.HasFlag(BrgMeshFlag.TRANSPCOLOR) || file.Mesh[0].flags.HasFlag(BrgMeshFlag.CHANGINGCOL)) * //if (file.Mesh[0].unknown09Unused != 0) * { * output += Path.GetFileName(s) + Environment.NewLine; * output += "\tu09[0] = " + file.Mesh[0].numIndex0; * output += "\tu09[1] = " + file.Mesh[0].numMatrix0; * output += "\tu09[2] = " + file.Mesh[0].unknown091; * output += "\tu09[3] = " + file.Mesh[0].unknown09Unused; * output += "\tu09[6] = " + file.Mesh[0].lastMaterialIndex; * output += "\tu09[7] = " + file.Mesh[0].animTime; * output += Environment.NewLine; * }*/ if ((file.Meshes[0].ExtendedHeader.NumUniqueMaterials - 1 != file.Meshes[0].ExtendedHeader.NumMaterials)) { //output += Path.GetFileName(s) + Environment.NewLine; //output += "\tu09[6] = " + file.Mesh[0].unknown09[6]; } for (int j = 0; j < file.Meshes.Count; j++) { //ttt.Add(file.Mesh[j].unknown09[2]); } if (file.Meshes.Count > 1 && (file.Meshes[0].Header.Format != file.Meshes[1].Header.Format)) { //output += Path.GetFileName(s) + Environment.NewLine; } for (int j = 0; j < file.Meshes.Count; j++) { if (!ttt.Contains((int)file.Meshes[j].Header.Format)) { //ttt.Add(file.Mesh[j].meshFormat2); } else { continue; } } //if (file.Mesh[0].unknown091 == 550) //if (file.Mesh[0].animTimeMult != 1) //if (file.Mesh.Count > 1 && (file.Mesh[0].flags | BrgMeshFlag.NOTFIRSTMESH) != file.Mesh[1].flags) if (true) { bool print = false; for (int i = 0; i < file.Meshes.Count; i++) { if ((uint)file.Meshes[0].Header.AnimationType != 256 && (uint)file.Meshes[0].Header.AnimationType != 1 && (uint)file.Meshes[0].Header.AnimationType != 0) { print = true; } } if (print) { //MessageBox.Show("ttt"); output += Path.GetFileName(s); output += file.Meshes[0].Header.AnimationType + " "; //output += "\tu09[3] = " + file.Mesh[1].unknown09Unused + Environment.NewLine; //output += "\tu10 = " + Convert.ToInt32(file.Mesh[0].unknown10) + Environment.NewLine; } continue; //output += Path.GetFileName(s) + Environment.NewLine; output += "animTime = " + file.AsetHeader.animTime; output += "\tmeshCount = " + file.Meshes.Count; //output += "\tmeshFormat = " + file.Mesh[0].meshFormat; output += "\tunknown01b = " + file.Meshes[0].Header.Format; output += "\tunknown02 = " + file.Meshes[0].Header.AnimationType; //output += "\tu03[0] = " + file.Mesh[0].unknown03[0]; //output += "\tu03[1] = " + file.Mesh[0].unknown03[1]; //output += "\tu03[2] = " + file.Mesh[0].unknown03[2]; // output += "\tu03[3] = " + file.Mesh[0].unknown03[3]; //output += "\tu04[4] = " + file.Mesh[0].unknown04[4]; //output += "\tu04[5] = " + file.Mesh[0].unknown04[5]; //output += "\tu09[0] = " + file.Mesh[0].numIndex0; //output += "\tu09[1] = " + file.Mesh[0].numMatrix0; output += "\tu09[2] = " + file.Meshes[0].ExtendedHeader.NameLength; output += "\tu09[3] = " + file.Meshes[0].ExtendedHeader.PointRadius; output += "\taTime = " + Convert.ToString(file.Meshes[0].ExtendedHeader.AnimationLength); //output += "\tunknown09e = " + Convert.ToInt32(file.Mesh[0].unknown09e); //output += "\tunknown09b = " + Convert.ToInt32(file.Mesh[0].unknown09b); //output += "\tlenSpace = " + Convert.ToInt32(file.Mesh[0].lenSpace); output += "\tu09d = " + Convert.ToInt32(file.Meshes[0].ExtendedHeader.NumUniqueMaterials); //output += "\tu10 = " + Convert.ToInt32(file.Mesh[0].unknown10); output += "\tflags = " + file.Meshes[0].Header.Flags; output += Environment.NewLine; } // MATERIALS _______________________________________________________ if (file.Materials.Count > 50) { bool print = false; for (int j = 0; j < file.Materials.Count; j++) { ttt.Add((int)file.Materials[j].Flags); //if (file.Material[j].flags.HasFlag(BrgMatFlag.MATTEX2)) //if (file.Material[j].flags.HasFlag(BrgMatFlag.REFLECTTEX) && file.Material[j].sfx.Count > 1) if ((((int)file.Materials[j].Flags & 0x000000FF) != (int)BrgMatFlag.Alpha) && (((int)file.Materials[j].Flags & 0x000000FF) == 0)) //if ((int)file.Material[j].flags == 0x00800000) //if ((int)file.Material[j].flags == 0x00800030) //if ((int)file.Material[j].flags == 0x00800800) //if ((int)file.Material[j].flags == 0x00800830) //if ((int)file.Material[j].flags == 0x00801030) //if ((int)file.Material[j].flags == 0x00808330) // -TT //if ((int)file.Material[j].flags == 0x00820000) //if ((int)file.Material[j].flags == 0x00820030) //if ((int)file.Material[j].flags == 0x00840030) //if ((int)file.Material[j].flags == 0x00860030) //if ((int)file.Material[j].flags == 0x00880030) //if ((int)file.Material[j].flags == 0x008a0030) //if ((int)file.Material[j].flags == 0x00a00030) //if ((int)file.Material[j].flags == 0x00A20030) // -TT //if ((int)file.Material[j].flags == 0x00a40030) //if ((int)file.Material[j].flags == 0x01800030) //if ((int)file.Material[j].flags == 0x02800030) //if ((int)file.Material[j].flags == 0x02820030) //if ((int)file.Material[j].flags == 0x04820030) // -TT //if ((int)file.Material[j].flags == 0x1c800030) //if ((int)file.Material[j].flags == 0x1c840030) //if ((int)file.Material[j].flags == 0x1e800030) //if (file.Material[j].flags.HasFlag(BrgMatFlag.MATNONE8)) { print = true; output += "id = " + file.Materials[j].Id; output += "\tflags = " + file.Materials[j].Flags; output += "\tflags78 = " + ((int)file.Materials[j].Flags & 0x000000FF); output += "\tu01b = " + file.Materials[j].unknown01b; output += "\tname = " + file.Materials[j].DiffuseMap; output += Environment.NewLine; } } if (print) { output += Path.GetFileName(s); output += "\t" + file.Meshes[0].Header.Flags + Environment.NewLine; } } } catch (Exception ex) { output += Path.GetFileName(s) + Environment.NewLine; output += ex.Message + "\t---------------------------------------------------------------------------" + Environment.NewLine; continue; } } IEnumerable <int> tttSort = ttt.OrderBy(tVal => tVal); foreach (int t in tttSort) { output += String.Format("0x{0:X8} ", t); } richTextBox1.Text = output; }
public Form1() { InitializeComponent(); //DdtFile ddt = new DdtFile(File.Open(@"D:\Petar\LatestFiles\Mods\Tools\AoMed\bars\textures\archer n throwing axeman standard.ddt", FileMode.Open, FileAccess.Read, FileShare.Read)); //Dds dds = new Dds(ddt); //dds.Write(File.Open(@"D:\Petar\LatestFiles\Mods\Tools\AoMed\archer n throwing axeman standard.dds", FileMode.Create, FileAccess.Write, FileShare.Read), -1); string output = ""; HashSet <int> ttt = new HashSet <int>(); foreach (string s in Directory.GetFiles(@"F:\Mods\Tools\AoMed\bars\models2", "*.brg", SearchOption.AllDirectories)) { try { file = new BrgFile(File.Open(s, FileMode.Open, FileAccess.Read, FileShare.Read));//, new MaxPlugin()); //if ((file.Mesh[0].unknown09[6] != file.Mesh[0].unknown09d - 1) && (file.Material.Count - 1 != file.Mesh[0].unknown09[6])) if (file.Mesh[0].unknown091 == 4) { //output += Path.GetFileName(s) + Environment.NewLine; //output += "\tu09[0] = " + file.Mesh[0].unknown09[0]; //output += "\tu09[0] = " + file.Mesh[0].unknown09[0]; //output += Environment.NewLine; } if (file.Mesh[0].flags.HasFlag(BrgMeshFlag.VERTCOLOR) || file.Mesh[0].flags.HasFlag(BrgMeshFlag.TRANSPCOLOR) || file.Mesh[0].flags.HasFlag(BrgMeshFlag.CHANGINGCOL)) //if (file.Mesh[0].unknown09Unused != 0) { output += Path.GetFileName(s) + Environment.NewLine; output += "\tu09[0] = " + file.Mesh[0].numIndex0; output += "\tu09[1] = " + file.Mesh[0].numMatrix0; output += "\tu09[2] = " + file.Mesh[0].unknown091; output += "\tu09[3] = " + file.Mesh[0].unknown09Unused; output += "\tu09[6] = " + file.Mesh[0].lastMaterialIndex; output += "\tu09[7] = " + file.Mesh[0].animTime; output += Environment.NewLine; } if ((file.Mesh[0].numMaterialsUsed - 1 != file.Mesh[0].lastMaterialIndex)) { //output += Path.GetFileName(s) + Environment.NewLine; //output += "\tu09[6] = " + file.Mesh[0].unknown09[6]; } for (int j = 0; j < file.Mesh.Count; j++) { //ttt.Add(file.Mesh[j].unknown09[2]); } if (file.Mesh.Count > 1 && (file.Mesh[0].format != file.Mesh[1].format)) { //output += Path.GetFileName(s) + Environment.NewLine; } for (int j = 0; j < file.Mesh.Count; j++) { if (!ttt.Contains((int)file.Mesh[j].format)) { //ttt.Add(file.Mesh[j].meshFormat2); } else { continue; } } //if (file.Mesh[0].unknown091 == 550) //if (file.Mesh[0].animTimeMult != 1) //if (file.Mesh.Count > 1 && (file.Mesh[0].flags | BrgMeshFlag.NOTFIRSTMESH) != file.Mesh[1].flags) if (false) { bool print = false; for (int i = 1; i < file.Mesh.Count; i++) { if (true) { print = true; } } if (print) { //MessageBox.Show("ttt"); output += Path.GetFileName(s); output += "\tu09[3] = " + file.Mesh[1].unknown09Unused + Environment.NewLine; //output += "\tu10 = " + Convert.ToInt32(file.Mesh[0].unknown10) + Environment.NewLine; } continue; //output += Path.GetFileName(s) + Environment.NewLine; output += "animTime = " + file.AsetHeader.animTime; output += "\tmeshCount = " + file.Mesh.Count; //output += "\tmeshFormat = " + file.Mesh[0].meshFormat; output += "\tunknown01b = " + file.Mesh[0].format; output += "\tunknown02 = " + file.Mesh[0].properties; //output += "\tu03[0] = " + file.Mesh[0].unknown03[0]; //output += "\tu03[1] = " + file.Mesh[0].unknown03[1]; //output += "\tu03[2] = " + file.Mesh[0].unknown03[2]; // output += "\tu03[3] = " + file.Mesh[0].unknown03[3]; //output += "\tu04[4] = " + file.Mesh[0].unknown04[4]; //output += "\tu04[5] = " + file.Mesh[0].unknown04[5]; output += "\tu09[0] = " + file.Mesh[0].numIndex0; output += "\tu09[1] = " + file.Mesh[0].numMatrix0; output += "\tu09[2] = " + file.Mesh[0].unknown091; output += "\tu09[3] = " + file.Mesh[0].unknown09Unused; output += "\taTime = " + Convert.ToString(file.Mesh[0].animTime); //output += "\tunknown09e = " + Convert.ToInt32(file.Mesh[0].unknown09e); //output += "\tunknown09b = " + Convert.ToInt32(file.Mesh[0].unknown09b); //output += "\tlenSpace = " + Convert.ToInt32(file.Mesh[0].lenSpace); output += "\tu09d = " + Convert.ToInt32(file.Mesh[0].numMaterialsUsed); //output += "\tu10 = " + Convert.ToInt32(file.Mesh[0].unknown10); output += "\tflags = " + file.Mesh[0].flags; output += Environment.NewLine; } // MATERIALS _______________________________________________________ if (file.Material.Count > 0) { bool print = false; for (int j = 0; j < file.Material.Count; j++) { ttt.Add((int)file.Material[j].flags); //if (file.Material[j].flags.HasFlag(BrgMatFlag.MATTEX2)) //if (file.Material[j].flags.HasFlag(BrgMatFlag.REFLECTTEX) && file.Material[j].sfx.Count > 1) if ((((int)file.Material[j].flags & 0x000000FF) != (int)BrgMatFlag.DIFFUSETEXTURE) && (((int)file.Material[j].flags & 0x000000FF) == 0)) //if ((int)file.Material[j].flags == 0x00800000) //if ((int)file.Material[j].flags == 0x00800030) //if ((int)file.Material[j].flags == 0x00800800) //if ((int)file.Material[j].flags == 0x00800830) //if ((int)file.Material[j].flags == 0x00801030) //if ((int)file.Material[j].flags == 0x00808330) // -TT //if ((int)file.Material[j].flags == 0x00820000) //if ((int)file.Material[j].flags == 0x00820030) //if ((int)file.Material[j].flags == 0x00840030) //if ((int)file.Material[j].flags == 0x00860030) //if ((int)file.Material[j].flags == 0x00880030) //if ((int)file.Material[j].flags == 0x008a0030) //if ((int)file.Material[j].flags == 0x00a00030) //if ((int)file.Material[j].flags == 0x00A20030) // -TT //if ((int)file.Material[j].flags == 0x00a40030) //if ((int)file.Material[j].flags == 0x01800030) //if ((int)file.Material[j].flags == 0x02800030) //if ((int)file.Material[j].flags == 0x02820030) //if ((int)file.Material[j].flags == 0x04820030) // -TT //if ((int)file.Material[j].flags == 0x1c800030) //if ((int)file.Material[j].flags == 0x1c840030) //if ((int)file.Material[j].flags == 0x1e800030) //if (file.Material[j].flags.HasFlag(BrgMatFlag.MATNONE8)) { print = true; output += "id = " + file.Material[j].id; output += "\tflags = " + file.Material[j].flags; output += "\tflags78 = " + ((int)file.Material[j].flags & 0x000000FF); output += "\tu01b = " + file.Material[j].unknown01b; output += "\tname = " + file.Material[j].name; output += Environment.NewLine; } } if (print) { output += Path.GetFileName(s); output += "\t" + file.Mesh[0].flags + Environment.NewLine; } } } catch (Exception ex) { output += Path.GetFileName(s) + Environment.NewLine; output += ex.Message + "\t---------------------------------------------------------------------------" + Environment.NewLine; continue; } } IEnumerable <int> tttSort = ttt.OrderBy(tVal => tVal); foreach (int t in tttSort) { output += String.Format("0x{0:X8} ", t); } richTextBox1.Text = output; }