MaskImagesImport - Copy.cs
15.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.Xml;
namespace AIAWindowsUtility
{
public partial class MaskImagesImport : Form
{
public MaskImagesImport()
{
InitializeComponent();
}
private void btnImportFile_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog1 = new OpenFileDialog();
// Set filter options and filter index.
openFileDialog1.Filter = "Extensible Markup Language (*.xml)|*.xml|All Files (*.*)|*.*";
openFileDialog1.FilterIndex = 1;
DialogResult result = openFileDialog1.ShowDialog();
if (result == DialogResult.OK) // Test result.
{
if (!String.Equals(Path.GetExtension(openFileDialog1.FileName),
".xml",
StringComparison.OrdinalIgnoreCase))
{
// Invalid file type selected; display an error.
MessageBox.Show("The type of the selected file is not supported by this application. You must select an XML file.",
"Invalid File Type",
MessageBoxButtons.OK,
MessageBoxIcon.Error);
}
else
{
if (openFileDialog1.FileName.Length > 0) //If a file is open
{
string path = openFileDialog1.FileName; // The Path to the .Xml file //
FileStream READER = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); //Set up the filestream (READER) //
System.Xml.XmlDocument CompSpecs = new System.Xml.XmlDocument();// Set up the XmlDocument (CompSpecs) //
CompSpecs.Load(READER); //Load the data from the file into the XmlDocument (CompSpecs) //
XmlNodeList dlNodeList = CompSpecs.SelectNodes("/response/dl");
foreach (XmlNode dlNode in dlNodeList)
{
int folderNameValue = Convert.ToInt32(dlNode.Attributes["ln"].Value);
string folderName = (folderNameValue - 1).ToString();
string layersFolder = @"I:\100-PROJECTS\100-REQUIREMENTS\400AIA\Module\DA\images\Gender\Female\DissectibleBodyView\FemaleAnterior(voId=5)\Layers\" + folderName;
if (Directory.Exists(layersFolder))
{
Console.WriteLine("Layer: " + folderName + " is already created");
XmlNodeList mapNodeList = dlNode.SelectNodes("map");
string imageFileSourcePath = @"I:\100-PROJECTS\400-DEVELOPMENT\ADAMEduAIA\Flex\v107\content\en_US\da_dat_img\75\5\";
foreach (XmlNode mapNode in mapNodeList)
{
string bodyRegionFolder = mapNode.Attributes["brId"].Value.ToString();
string bodyRegionFolderPath = layersFolder + @"\" + bodyRegionFolder + @"\";
if (Directory.Exists(bodyRegionFolderPath))
{
if (folderName == "0")
{
DirectoryInfo bodyRegionDr = Directory.CreateDirectory(bodyRegionFolderPath);
XmlNode artNode = mapNode.SelectSingleNode("art");
string skinToneName = artNode.Attributes["sktn"].Value.ToString();
DirectoryInfo skinToneDr = Directory.CreateDirectory(bodyRegionFolderPath + skinToneName);
string imageFileName = artNode.Attributes["compId"].Value.ToString();
string[] imagenameSplit = imageFileName.Split('.');
string maskImageName = imagenameSplit[0] + "_mci.png";
imageFileSourcePath = imageFileSourcePath + maskImageName;
string skinToneDirectoryPath = bodyRegionFolderPath + skinToneName + @"\" + maskImageName;
if (File.Exists(imageFileSourcePath))
{
File.Copy(imageFileSourcePath, skinToneDirectoryPath);
}
else
{
System.IO.File.WriteAllText("~/logs/imageNotFound_" + System.DateTime.Now.ToString("MMddyyyy") + ".txt", "not found at :" + imageFileSourcePath + " for l;ayer no: " + folderName + " Body Region Id: " + bodyRegionFolder);
}
}
else
{
Console.WriteLine("BodyRegion: " + bodyRegionFolder + " is already created");
}
}
else
{
if (folderName == "0")
{
DirectoryInfo bodyRegionDr = Directory.CreateDirectory(bodyRegionFolderPath);
XmlNode artNode = mapNode.SelectSingleNode("art");
string skinToneName = artNode.Attributes["sktn"].Value.ToString();
DirectoryInfo skinToneDr = Directory.CreateDirectory(bodyRegionFolderPath + skinToneName);
string imageFileName = artNode.Attributes["compId"].Value.ToString();
string[] imagenameSplit = imageFileName.Split('.');
string maskImageName = imagenameSplit[0] + "_mci.png";
imageFileSourcePath = imageFileSourcePath + maskImageName;
string skinToneDirectoryPath = bodyRegionFolderPath + skinToneName + @"\" + maskImageName;
if (File.Exists(imageFileSourcePath))
{
File.Copy(imageFileSourcePath, skinToneDirectoryPath);
}
else
{
System.IO.File.WriteAllText("~/logs/imageNotFound_" + System.DateTime.Now.ToString("MMddyyyy") + ".txt", "not found at :" + imageFileSourcePath + " for l;ayer no: " + folderName + " Body Region Id: " + bodyRegionFolder);
}
}
else
{
DirectoryInfo bodyRegionDr = Directory.CreateDirectory(bodyRegionFolderPath);
XmlNode artNode = mapNode.SelectSingleNode("art");
string imageFileName = artNode.Attributes["compId"].Value.ToString();
string[] imagenameSplit = imageFileName.Split('.');
string maskImageName = imagenameSplit[0] + "_mci." + imagenameSplit[1];
if (File.Exists(imageFileSourcePath))
{
File.Copy(imageFileSourcePath, bodyRegionFolderPath + maskImageName);
}
else
{
System.IO.File.WriteAllText("~/logs/imageNotFound_" + System.DateTime.Now.ToString("MMddyyyy") + ".txt", "not found at :" + imageFileSourcePath + " for l;ayer no: " + folderName + " Body Region Id: " + bodyRegionFolder);
}
}
}
}
}
else
{
DirectoryInfo di = Directory.CreateDirectory(layersFolder);
XmlNodeList mapNodeList = dlNode.SelectNodes("map");
string imageFileSourcePath = @"I:\100-PROJECTS\400-DEVELOPMENT\ADAMEduAIA\Flex\v107\content\en_US\da_dat_img\75\5\";
foreach (XmlNode mapNode in mapNodeList)
{
string bodyRegionFolder = mapNode.Attributes["brId"].Value.ToString();
string bodyRegionFolderPath = layersFolder + @"\" + bodyRegionFolder + @"\";
if (Directory.Exists(bodyRegionFolderPath))
{
if (folderName == "0")
{
DirectoryInfo bodyRegionDr = Directory.CreateDirectory(bodyRegionFolderPath);
XmlNode artNode = mapNode.SelectSingleNode("art");
string skinToneName = artNode.Attributes["sktn"].Value.ToString();
DirectoryInfo skinToneDr = Directory.CreateDirectory(bodyRegionFolderPath + skinToneName);
string imageFileName = artNode.Attributes["compId"].Value.ToString();
string[] imagenameSplit = imageFileName.Split('.');
string maskImageName = imagenameSplit[0] + "_mci.png";
imageFileSourcePath = imageFileSourcePath + maskImageName;
string skinToneDirectoryPath = bodyRegionFolderPath + skinToneName + @"\" + maskImageName;
if (File.Exists(imageFileSourcePath))
{
File.Copy(imageFileSourcePath, skinToneDirectoryPath);
}
else
{
System.IO.File.WriteAllText("~/logs/imageNotFound_" + System.DateTime.Now.ToString("MMddyyyy") + ".txt", "not found at :" + imageFileSourcePath + " for l;ayer no: " + folderName + " Body Region Id: " + bodyRegionFolder);
}
}
else
{
Console.WriteLine("BodyRegion: " + bodyRegionFolder + " is already created");
}
}
else
{
if (folderName == "0")
{
DirectoryInfo bodyRegionDr = Directory.CreateDirectory(bodyRegionFolderPath);
XmlNode artNode = mapNode.SelectSingleNode("art");
string skinToneName = artNode.Attributes["sktn"].Value.ToString();
DirectoryInfo skinToneDr = Directory.CreateDirectory(bodyRegionFolderPath + skinToneName);
string imageFileName = artNode.Attributes["compId"].Value.ToString();
string[] imagenameSplit = imageFileName.Split('.');
string maskImageName = imagenameSplit[0] + "_mci.png";
imageFileSourcePath = imageFileSourcePath + maskImageName;
string skinToneDirectoryPath = bodyRegionFolderPath + skinToneName + @"\" + maskImageName;
if (File.Exists(imageFileSourcePath))
{
File.Copy(imageFileSourcePath, skinToneDirectoryPath);
}
else
{
System.IO.File.WriteAllText("~/logs/imageNotFound_" + System.DateTime.Now.ToString("MMddyyyy") + ".txt", "not found at :" + imageFileSourcePath + " for l;ayer no: " + folderName + " Body Region Id: " + bodyRegionFolder);
}
}
else
{
DirectoryInfo bodyRegionDr = Directory.CreateDirectory(bodyRegionFolderPath);
XmlNode artNode = mapNode.SelectSingleNode("art");
string imageFileName = artNode.Attributes["compId"].Value.ToString();
string[] imagenameSplit = imageFileName.Split('.');
string maskImageName = imagenameSplit[0] + "_mci." + imagenameSplit[1];
if (File.Exists(imageFileSourcePath))
{
File.Copy(imageFileSourcePath, bodyRegionFolderPath + maskImageName);
}
else
{
System.IO.File.WriteAllText("~/logs/imageNotFound_" + System.DateTime.Now.ToString("MMddyyyy") + ".txt", "not found at :" + imageFileSourcePath + " for l;ayer no: " + folderName + " Body Region Id: " + bodyRegionFolder);
}
}
}
}
//MessageBox.Show("Congratulations !! you have successfully imported all images for xml : " + path);
}
// }
}
}
}
}
}
}
}