-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
229 lines (217 loc) · 10.1 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
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
using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Text.RegularExpressions;
using System.Security.Cryptography;
using System.Web;
namespace Nomlyzer
{
public partial class Form1 : Form
{
[DllImport("comctl32.dll", CharSet = CharSet.Unicode, EntryPoint = "TaskDialog")]
static extern int TaskDialog2(IntPtr hWndParent, IntPtr hInstance, String pszWindowTitle,
String pszMainInstruction, String pszContent, int dwCommonButtons, IntPtr pszIcon, out int pnButton);
public static string Nombre = "Fulano";
public List<String> listaNom = new List<String>();
Strings st = new Strings();
public Form1()
{
InitializeComponent();
this.Text = "Normlyzer ";
this.Text += st.obtenerVersion();
this.Text += " por elstef41";
}
// ReverseString, de dotnetperls. https://www.dotnetperls.com/reverse-string
public static string ReverseString(string s)
{
char[] arr = s.ToCharArray();
Array.Reverse(arr);
return new string(arr);
}
private void button1_Click_1(object sender, EventArgs e)
{
Nombre = NomBox.Text;
int NomCar = NomBox.TextLength;
if (Nombre == "")
{
MessageBox.Show("El cuadro del nombre no puede estar vacío. ¿No crees?", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (Nombre.Contains(" "))
{
MessageBox.Show("El nombre no puede contener espacios.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (genc.SelectedItem == null)
{
MessageBox.Show("No has selecionado un género.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (NomCar >= 51)
{
MessageBox.Show("El nombre es demasiado largo. Asegúrate que no supere los 50 caracteres (tiene " + NomCar + ").", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
/* Guardar dato para introducirlo en el historial */
listaNom.Add(Nombre);
/* Cambia la estructura del formulario */
this.Width = 688;
this.Height = 400;
inicio.Visible = true;
label3.Visible = false;
genc.Visible = false;
label1.Visible = false;
button1.Visible = false;
NomBox.Visible = false;
label7.Visible = true;
nom.Text = Nombre;
nom.Visible = true;
String gen = "o";
label7.Text = "Género seleccionado: " + genc.Text;
switch (genc.SelectedIndex)
{
case 0:
{
gen = "o";
break;
}
case 1:
{
gen = "a";
break;
}
}
capitob.Text = "&Averiguar significado de " + Nombre;
capitob.Visible = true;
if (Nombre.EndsWith("i") == true)
{
MiniNom.Text = Nombre + "t" + gen;
}
else if (Nombre.EndsWith("co"))
{
String Nombren2 = Nombre.Remove(Nombre.Length - 2);
MiniNom.Text = Nombren2 + "quito";
}
else if (Nombre.EndsWith("l") || Nombre.EndsWith("r") || Nombre.EndsWith("n") || Nombre.EndsWith("a") || Nombre.EndsWith("e") || Nombre.EndsWith("o") || Nombre.EndsWith("u") || Nombre.EndsWith("y") || Nombre.EndsWith("x"))
{
MiniNom.Text = Nombre + "sit" + gen;
}
else
{
MiniNom.Text = Nombre + "it" + gen;
}
DescGroup.Visible = true;
String NomNoCons = Regex.Replace(Nombre, "[zxcvbsdmnfghjklñqwrtpZXCVBSDMNFGHJKLÑQWRTP]", "");
String NomNoVocs = Regex.Replace(Nombre, "[aeiouAEIOUáéíóúÁÉÍÓÚ]", "");
String NomInMay = System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(Nombre.ToLower());
String urlcoded = HttpUtility.UrlEncode(Nombre);
String htmlcoded = HttpUtility.HtmlEncode(Nombre);
var sha1 = new System.Security.Cryptography.SHA1Managed();
var sha256 = new System.Security.Cryptography.SHA256Managed();
var md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[] tData = System.Text.Encoding.UTF8.GetBytes(Nombre);
byte[] tData2 = System.Text.Encoding.UTF8.GetBytes(Nombre);
byte[] tData3 = System.Text.Encoding.UTF8.GetBytes(Nombre);
byte[] hash = sha1.ComputeHash(tData);
byte[] hash256 = sha256.ComputeHash(tData2);
byte[] hash2 = md5.ComputeHash(tData3);
string NomSha1 = BitConverter.ToString(hash).Replace("-", String.Empty);
string NomSha256 = BitConverter.ToString(hash256).Replace("-", String.Empty);
string NomMd5 = BitConverter.ToString(hash2).Replace("-", String.Empty);
String NomConNums = Nombre.Replace("A", "4").Replace("a", "4").Replace("Á", "4").Replace("á", "4").Replace("E", "3").Replace("e", "3").Replace("É", "3").Replace("é", "3").Replace("I", "1").Replace("i", "1").Replace("Í", "1").Replace("í", "1").Replace("O", "0").Replace("o", "0").Replace("Ó", "0").Replace("ó", "0");
String textBur = Regex.Replace(Nombre, "a", "ᴀ")
.Replace("e", "ᴇ")
.Replace("i", "ɪ")
.Replace("b", "ʙ")
.Replace("d", "ᴅ")
.Replace("f", "ғ")
.Replace("g", "ɢ")
.Replace("h", "ʜ")
.Replace("j", "ᴊ")
.Replace("k", "ᴋ")
.Replace("l", "ʟ")
.Replace("m", "ᴍ")
.Replace("n", "ɴ")
.Replace("p", "ᴘ")
.Replace("q", "ǫ")
.Replace("r", "ʀ")
.Replace("t", "ᴛ")
.Replace("y", "ʏ");
String textMay = Nombre.ToUpper();
String textMin = Nombre.ToLower();
NoCons.Text = NomNoCons;
NoVocs.Text = NomNoVocs;
tcSHA1.Text = NomSha1;
tcMD5.Text = NomMd5;
tcSHA256.Text = NomSha256;
tcURLc.Text = urlcoded;
tcHTMLc.Text = htmlcoded;
label11.Text = Nombre.Length + " caracteres (" + NomNoCons.Length + " vocales y " + NomNoVocs.Length + " consonantes).";
ConNums.Text = NomConNums;
nomBur.Text = textBur;
nomBur.Text = textBur;
tMay.Text = textMay;
tMin.Text = textMin;
tInMay.Text = NomInMay;
button2.Visible = true;
historialToolStripMenuItem.Enabled = true;
nomVes.Text = ReverseString(Nombre);
if (!button2.Enabled)
{
button2.Enabled = true;
}
}
}
private void capitob_Click(object sender, EventArgs e)
{
MessageBox.Show("Se abrirá un sitio web ajeno al programa el cual tratará de mostrar la información del nombre solicitado", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
SignificadoExt SignificadoE = new SignificadoExt(Nombre);
SignificadoE.Show();
}
private void inicio_Click(object sender, EventArgs e)
{
this.Width = 340;
this.Height = 155;
inicio.Visible = false;
label3.Visible = true;
genc.Visible = true;
label1.Visible = true;
button1.Visible = true;
NomBox.Visible = true;
label7.Visible = false;
nom.Visible = false;
capitob.Visible = false;
DescGroup.Visible = false;
}
private void button2_Click(object sender, EventArgs e)
{
HistorialNom HNom = new HistorialNom(listaNom);
HNom.Show();
}
private void acercaDeToolStripMenuItem_Click(object sender, EventArgs e)
{
new AcercaDe().ShowDialog();
}
private void salirToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Dispose();
}
private void historialToolStripMenuItem_Click(object sender, EventArgs e)
{
HistorialNom HNom = new HistorialNom(listaNom);
HNom.Show();
}
private void licenciaToolStripMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://www.apache.org/licenses/LICENSE-2.0.html");
}
private void repositorioToolStripMenuItem_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/elstef41/nomlyzer");
}
}
}