-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
203 lines (179 loc) · 6.97 KB
/
Form1.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
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
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.Globalization;
using CreazioneIniMateriali;
namespace CreazioneIniMateriali
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void CancellaLabel(RichTextBox label)
{
label.Text = "";
}
private void CopiaLabel(RichTextBox label)
{
Clipboard.SetText(label.Text);
}
private void IncollaLabel(RichTextBox label)
{
label.Text = Clipboard.GetText();
}
private void SeparaStringa(string insert, out string exit)
{
exit = "";
Elementi el = new Elementi();
List<string> lineString = insert.ToLower().Split('\n').ToList();
foreach(string line in lineString)
{
if (!string.IsNullOrWhiteSpace(line))
{
char[] c = line.Replace(" ", "").ToCharArray();
char oldChar = ' ';
string newLine = "";
for(int i = 0; i < c.Length; i++) // Prima pulizia rimozione di simboli, del limite massimo e rilevamento stringhe troncate
{
if(char.IsLetterOrDigit(c[i]) || c[i].Equals('/') || c[i].Equals('.'))
{
if (c[i].Equals('/')) break;
else if (c[i].Equals('.') && oldChar.Equals('.')) // Se trova il doppio punto presume che la stringa sia troncata quindi isnserisce "="
{
newLine = newLine.Remove(newLine.Length - 1);
newLine += "=";
}
else
{
newLine += c[i];
}
oldChar = c[i];
}
}
if (!string.IsNullOrWhiteSpace(newLine))
{
string component = "";
int value = 0;
if (newLine.Contains("=")) // Seconda pulizia tramite "=" e confronto con tutte le stringhe presenti nella tabella
{
component = GestioneMateriali(newLine.Remove(newLine.IndexOf("=") - 1));
foreach (string e in el.dictElement)
{
if (e.Contains(component))
{
value = CalcoloValore(newLine.Substring(newLine.IndexOf("=") + 1));
exit += e + "=" + value.ToString() + "\n";
break;
}
}
}
else
{
foreach (string e in el.dictElement) // Seconda pulizia tramite il matching con l'array
{
component = GestioneMateriali(newLine);
if (component.Contains(e))
{
value = CalcoloValore(component.Replace(e, ""));
exit += e + "=" + value.ToString() + "\n";
break;
}
}
}
}
}
}
}
private int CalcoloValore(string strValore) // Prima pulizia del valore per estrazione del numero
{
strValore = strValore.Replace(",", ".");
int somma = 1;
double dbValore = 0;
if (strValore.Contains("k"))
{
strValore = strValore.Replace("k", "");
somma = 1000;
}
else if (strValore.Contains("m"))
{
strValore = strValore.Replace("m", "");
somma = 1000000;
}
if (Double.TryParse(strValore, NumberStyles.Any, NumberFormatInfo.InvariantInfo, out dbValore))
return (int)Math.Truncate(dbValore * somma);
else
return (int)Math.Truncate(PuliziaValore(strValore) * somma);
}
private double PuliziaValore(string strValore) // Seconda pulizia del valore da eventuali residui
{
if (!string.IsNullOrWhiteSpace(strValore))
{
char[] c = strValore.Replace(" ", "").ToCharArray();
string newLine = "";
double dbValore = 0;
for (int i = 0; i < c.Length; i++) // Pulizia valore da simboli non concessi
{
if (char.IsDigit(c[i]) || c[i].Equals('.'))
{
newLine += c[i];
}
}
if (Double.TryParse(newLine, NumberStyles.Any, NumberFormatInfo.InvariantInfo, out dbValore))
return dbValore;
else
return 0;
}
else
return 0;
}
private string GestioneMateriali(string strMateriale) // In base alla selezione tramite combobox inserisce il tipo di materiale
{
switch (this.cmb_SelezioneMateriali.SelectedIndex)
{
case 0: return strMateriale;
case 1: return "ingot/" + strMateriale;
case 2: return "ore/" + strMateriale;
default: return strMateriale;
}
}
private void btn_Cancella_Click(object sender, EventArgs e)
{
CancellaLabel(this.lbl_Insert);
}
private void btn_Cancella2_Click(object sender, EventArgs e)
{
CancellaLabel(this.lbl_Out);
}
private void btn_Copia_Click(object sender, EventArgs e)
{
CopiaLabel(this.lbl_Insert);
}
private void btn_Copia2_Click(object sender, EventArgs e)
{
CopiaLabel(this.lbl_Out);
}
private void btn_Incolla_Click(object sender, EventArgs e)
{
IncollaLabel(this.lbl_Insert);
}
private void btn_Incolla2_Click(object sender, EventArgs e)
{
IncollaLabel(this.lbl_Out);
}
private void btn_Converti_Click(object sender, EventArgs e)
{
string insert = this.lbl_Insert.Text;
string exit;
SeparaStringa(insert, out exit);
this.lbl_Out.Text = exit;
}
}
}