-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenu.cs
339 lines (314 loc) · 12.4 KB
/
Menu.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
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
using System;
using System.IO;
using System.Windows.Forms;
using TuringMachineExecuter.Structures;
using System.Collections.Generic;
using System.Linq;
namespace TuringMachineExecuter
{
public partial class menuForm : Form {
TuringMachine TuringMachine;
Tape TapeStep;
public menuForm()
{
InitializeComponent();
TuringMachine = new TuringMachine();
}
private void btnLoadFile_Click(object sender, EventArgs e)
{
var openFileDialog = new OpenFileDialog()
{
Filter = "Text files (*.txt)|*.txt",
Title = "MT a ejecutar"
};
try
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
var filepath = openFileDialog.FileName;
var fileName = Path.GetFileName(filepath);
DialogResult dialogResult = MessageBox.Show($"¿Quiere continuar y colocar {fileName} como la MT a ejecutar?", "Confirmar MT", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
EnableButtons(true);
var onlyFileName = Path.GetFileName(filepath);
GenerateTuringMachineFromFile(openFileDialog.OpenFile(), fileName);
}
}
}
catch
{
MessageBox.Show("El formato del archivo de entrada es incorrecto, \npor favor inténtelo nuevamente.");
EnableButtons(false);
TuringMachine.SetUse(false);
}
}
private void GenerateTuringMachineFromFile(Stream fileStream, string fileName)
{
using (StreamReader reader = new(fileStream))
{
var line = reader.ReadLine(); //Qty of States
var initialState = reader.ReadLine(); //initialState
var alphabet = reader.ReadLine(); //alphabet
TuringMachine = new TuringMachine(Convert.ToInt32(line), initialState, alphabet);
var transitionResult = string.Empty;
Dictionary<string, string> StateTransitions = new Dictionary<string, string>();
while ((line = reader.ReadLine()) != null) //Transitions
{
transitionResult = TuringMachine.AddTransition(line);
string[] auxtrasition = line.Split(',');
string key = auxtrasition[0] + auxtrasition[1];
if (!StateTransitions.TryAdd(key, transitionResult))
{
MessageBox.Show("Entrada inválida, un estado tiene más de una transición con el mismo caracter");
EnableButtons(false);
TuringMachine.SetUse(false);
return;
}
if (transitionResult != "Transición creada correctamente")
{
MessageBox.Show(transitionResult);
EnableButtons(false);
TuringMachine.SetUse(false);
return;
}
}
if (!TuringMachine.StatesValidness())
{
MessageBox.Show("Entrada inválida, tiene menos estados de los indicados");
EnableButtons(false);
TuringMachine.SetUse(false);
return;
}
if (TuringMachine.CheckInitialState())
{
lblCurrentNode.Text = TuringMachine.GetInitialState();
txtFile.Text = fileName;
EnableButtons(false);
btnLoadTape.Enabled = true;
}
else
{
MessageBox.Show("Entrada inválida, el estado inicial no pertenece al conjunto de estados ingresados");
EnableButtons(false);
TuringMachine.SetUse(false);
}
}
}
private void btnLoadTape_Click(object sender, EventArgs e) {
if (TuringMachine.IsUsable())
{
TapeStep = new Tape();
if (CheckTape(txtInitTape.Text))
{
var word = "_" + txtInitTape.Text + "_";
foreach (var value in word)
{
TapeStep.WordTape.Add(Convert.ToString(value));
}
PrintTape(TapeStep.WordTape);
TapeStep.CurrentPosition = 0;
TuringMachine.SetCurrentNode(TuringMachine.GetInitialNode());
EnableButtons(true);
btnLoadTape.Enabled = false;
}
else
{
MessageBox.Show("Entrada inválida, intente nuevamente, por favor");
txtInitTape.Text = "";
}
}
else
{
MessageBox.Show("El formato del archivo de entrada es incorrecto, \npor favor inténtelo nuevamente.");
}
}
private bool CheckTape(string newTape)
{
foreach (var character in newTape)
{
if (!TuringMachine.CharacterInAlphabet(character))
{
return false;
}
}
return true;
}
private void menuForm_Load(object sender, EventArgs e) {
EnableButtons(false);
txtFile.Enabled = false;
btnAutomatic.Enabled = false;
lblEjecution.Visible = false;
checkBox1.Visible = false;
checkBox2.Visible = false;
checkBox3.Visible = false;
}
public void EnableButtons(bool state) {
btnAutomatic.Enabled = state;
btnLoadTape.Enabled = state;
btnNextStep.Enabled = state;
btnStop.Enabled = state;
}
private void btnNextStep_Click(object sender, EventArgs e)
{
btnStop.Enabled = false;
if (TapeStep == null)
{
MessageBox.Show("Error de Ejecucion");
return;
}
MachineStep();
}
public void MachineStep()
{
var letter = TapeStep.WordTape[TapeStep.CurrentPosition];
Node auxNode = TuringMachine.GetCurrentNode();
var transitionList = auxNode.GetTransitions().Where(x => x.ReadingCharacter == letter);
if (transitionList.Any())
{
var transition = transitionList.First();
TapeStep.WordTape[TapeStep.CurrentPosition] = transition.WritingCharacter;
MoveTape(transition, letter);
PrintTape(TapeStep.WordTape);
TuringMachine.SetCurrentNode(TuringMachine.GetStates().Find(x => x.GetState() == transition.NextState));
lblCurrentNode.Text = TuringMachine.GetCurrentNode().GetState();
lblLastMovement.Text = transition.PrintTransition();
if (TapeStep.Repetitions0 == 10 || TapeStep.RepetitionsD == 10)
{
EnableButtons(false);
tmrAutomatic.Enabled = false;
DialogResult dialogResult = MessageBox.Show($"La entrada ha sido rechazada, \n ¿desea intentar nuevamente con otra cadena en la cinta?", "¡No hay solución!", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
EnableButtons(true);
txtInitTape.Text = "";
tape.Items.Clear();
return;
}
Application.Exit();
}
return;
}
EnableButtons(false);
lblCurrentNode.Text = TuringMachine.GetCurrentNode().GetState();
lblLastMovement.Text = "Transición No Existente";
MessageBox.Show("ERROR: No hay Trasicion");
tmrAutomatic.Enabled = false;
}
private void MoveTape(Transition transition, string letter)
{
if (transition.HeadMovement == "d" || transition.HeadMovement == "D")
{
TapeStep.CurrentPosition++;
TapeStep.Repetitions0 = 0;
if (letter != "_")
{
TapeStep.RepetitionsD = 0;
}
else
{
TapeStep.RepetitionsD++;
if (TapeStep.CurrentPosition == TapeStep.WordTape.Count)
TapeStep.WordTape.Add("_");
}
return;
}
if (transition.HeadMovement == "i" || transition.HeadMovement == "I")
{
TapeStep.CurrentPosition--;
TapeStep.Repetitions0 = 0;
TapeStep.RepetitionsD = 0;
if (TapeStep.CurrentPosition < 0)
{
MessageBox.Show("MT inválida, la cinta no es infinita hacia la izquierda");
EnableButtons(false);
}
return;
}
if (transition.HeadMovement == "0")
{
TapeStep.Repetitions0++;
TapeStep.RepetitionsD = 0;
return;
}
if (transition.HeadMovement == "p" || transition.HeadMovement == "P")
{
TapeStep.Repetitions0 = 0;
TapeStep.RepetitionsD = 0;
if (Format())
{
tmrAutomatic.Enabled = false;
MessageBox.Show("Fin de la Ejecicion, \nEjecución Exitosa");
}
else
{
tmrAutomatic.Enabled = false;
MessageBox.Show("Formato de salida inválido. \nEjecución Terminada.");
}
EnableButtons(false);
}
}
public bool Format() {
string word = "";
foreach (var item in TapeStep.WordTape)
word += item;
string[] array = word.Split('_');
if (array[0].Length == 0 && array[2].Length == 0 && TapeStep.WordTape[TapeStep.CurrentPosition] == "_")
{
return true;
}
return false;
}
public void PrintTape (List<string> word)
{
tape.Items.Clear();
foreach (var value in word)
{
tape.Items.Add(value);
}
tape.SetItemChecked(TapeStep.CurrentPosition,true);
}
private void btnStop_Click(object sender, EventArgs e) {
tmrAutomatic.Enabled = false;
btnAutomatic.Enabled = true;
btnNextStep.Enabled = true;
lblEjecution.Visible = false;
checkBox1.Visible = false;
checkBox2.Visible = false;
checkBox3.Visible = false;
}
private void tmrAutomatic_Tick(object sender, EventArgs e) {
MachineStep();
btnAutomatic.Enabled = false;
btnNextStep.Enabled = false;
}
private void btnAutomatic_Click(object sender, EventArgs e){
tmrAutomatic.Enabled = true;
lblEjecution.Visible = true;
btnStop.Enabled = true;
checkBox1.Visible = true;
checkBox2.Visible = true;
checkBox3.Visible = true;
checkBox2.Checked = true;
}
private void btnReset_Click(object sender, EventArgs e) {
Application.Restart();
Environment.Exit(0);
}
private void checkBox1_CheckedChanged(object sender, EventArgs e) {
tmrAutomatic.Interval = 1000;
checkBox2.Checked = false;
checkBox3.Checked = false;
}
private void checkBox2_CheckedChanged(object sender, EventArgs e) {
tmrAutomatic.Interval = 1500;
checkBox1.Checked = false;
checkBox3.Checked = false;
}
private void checkBox3_CheckedChanged(object sender, EventArgs e) {
tmrAutomatic.Interval = 3000;
checkBox1.Checked = false;
checkBox2.Checked = false;
}
}
}