-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFileControl.cs
158 lines (135 loc) · 4.65 KB
/
FileControl.cs
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
using System;
using System.Windows.Forms;
namespace Material_Editor
{
public partial class FileControl : CustomControl
{
private Label lbLabel;
private TextBox tbFile;
private Button btFile;
private OpenFileDialog textureFileDialog;
private OpenFileDialog materialFileDialog;
public enum FileType
{
Texture,
Material
}
public FileType CurrentFileType;
public FileControl(string label, System.Drawing.Font font, Func<CustomControl, bool> visibilityCallback, Action<CustomControl> changedCallback, FileType fileType = FileType.Texture, string initialPath = "") : base(label)
{
lbLabel.Text = label;
CurrentFileType = fileType;
tbFile.Font = font;
tbFile.Text = initialPath;
tbFile.PlaceholderText = fileType switch
{
FileType.Texture => "<no texture>",
FileType.Material => "<no material>",
_ => "<no file>",
};
VisibilityCallback = visibilityCallback;
ChangedCallback = changedCallback;
}
public override void CreateControls()
{
lbLabel = new Label
{
Anchor = AnchorStyles.Top | AnchorStyles.Left,
AutoSize = true,
Name = "lbLabel",
Text = "Label",
Tag = this
};
tbFile = new TextBox
{
AutoSize = true,
Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right,
MaxLength = 260,
Name = "tbFile",
TabIndex = 0,
Tag = this
};
tbFile.TextChanged += new EventHandler(TbFile_TextChanged);
btFile = new Button
{
AutoSize = true,
Anchor = AnchorStyles.Top | AnchorStyles.Right,
Name = "btFile",
TabStop = false,
Text = "...",
Size = new System.Drawing.Size(35, 20),
Tag = this
};
btFile.Click += new EventHandler(BtFile_Click);
textureFileDialog = new OpenFileDialog
{
DefaultExt = "dds",
Filter = "Texture File (*.dds;*.tga)|*.dds;*.tga",
Title = "Choose a texture file..."
};
materialFileDialog = new OpenFileDialog
{
DefaultExt = "bgsm",
Filter = "Material File (*.bgsm;*.bgem)|*.bgsm;*.bgem",
Title = "Choose a material file..."
};
}
private void TbFile_TextChanged(object sender, EventArgs e)
{
InvokeChangedCallback();
}
private void BtFile_Click(object sender, EventArgs e)
{
string fileName = "";
string filePrefix = "";
switch (CurrentFileType)
{
case FileType.Texture:
if (textureFileDialog.ShowDialog() != DialogResult.OK)
return;
fileName = textureFileDialog.FileName;
filePrefix = @"\textures\";
break;
case FileType.Material:
if (materialFileDialog.ShowDialog() != DialogResult.OK)
return;
fileName = materialFileDialog.FileName;
filePrefix = @"\materials\";
break;
}
int index = fileName.IndexOf(filePrefix, StringComparison.CurrentCultureIgnoreCase);
if (index >= 0 && fileName.Length - 1 > index + 10)
{
// Found directory
fileName = fileName[(index + 10)..];
}
else
{
// No directory found, using just the file name
index = fileName.LastIndexOf('\\');
if (index >= 0 && fileName.Length - 1 > index + 1)
{
fileName = fileName[(index + 1)..];
}
}
tbFile.Text = fileName.Trim().Replace('\\', '/');
InvokeChangedCallback();
}
public override Label LabelControl
{
get { return lbLabel; }
}
public override Control Control
{
get { return tbFile; }
}
public override Control ExtraControl
{
get { return btFile; }
}
public override object GetProperty()
{
return tbFile.Text;
}
}
}