-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm2.cs
133 lines (128 loc) · 4.87 KB
/
Form2.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
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;
namespace Code_Checker
{
public partial class Form2 : Form
{
string CodeCheck = "";
string Accepted = "";
string TestGen = "";
public Form2(string textarea1, string textarea2, string textarea3, string textarea4, string textarea5)
{
InitializeComponent();
CodeCheck = textarea1;
Accepted = textarea2;
TestGen = textarea3;
testInput.Text = textarea4;
timeInput.Text = textarea5;
opentest = testInput.Text;
opentime = timeInput.Text;
checkBox1.Checked = Global.usechecker;
if (Global.checkerpath == "") checkName.Text = "No Program Imported";
else{
if (Path.GetFileName(Global.checkerpath).Length <= 25) checkName.Text = Path.GetFileName(Global.checkerpath);
else
{
checkName.Text = "";
for (int i = 0; i < 25; i++) checkName.Text += Path.GetFileName(Global.checkerpath)[i];
checkName.Text += "...";
}
}
}
private void Run_Click(object sender, EventArgs e)
{
Verdict.Text = "";
failedInput.Text = "";
failedOutput.Text = "";
int test, time;
if (int.TryParse(testInput.Text, out test) && test >= 1)
{
if (int.TryParse(timeInput.Text, out time) && time >= 1)
{
if ((Global.usechecker == true && Global.checkerpath != "") || Global.usechecker == false)
{
Form3 run = new Form3(CodeCheck, Accepted, TestGen, test, time);
run.StartPosition = FormStartPosition.CenterParent;
run.ShowDialog();
Verdict.Text = run.value;
failedInput.Text = run.failedinp;
failedOutput.Text = run.failedout;
}
else Verdict.Text = "Invalid external judger";
}
else Verdict.Text = "Invalid time limit";
}
else Verdict.Text = "Invalid amount of test";
}
private void testInput_TextChanged(object sender, EventArgs e)
{
opentest = testInput.Text;
}
private void timeInput_TextChanged(object sender, EventArgs e)
{
opentime = timeInput.Text;
}
private void exportInput_Click(object sender, EventArgs e)
{
saveInput.Title = "Export Input";
saveInput.Filter = "All files|*.*";
saveInput.FileName = "failed.inp";
if (saveInput.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
Stream stream = saveInput.OpenFile();
StreamWriter strw = new StreamWriter(stream);
strw.Write(failedInput.Text);
strw.Close();
stream.Close();
}
}
private void exportOutput_Click(object sender, EventArgs e)
{
saveOutput.Title = "Export Output";
saveOutput.Filter = "All files|*.*";
saveOutput.FileName = "failed.out";
if (saveOutput.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
Stream stream = saveOutput.OpenFile();
StreamWriter strw = new StreamWriter(stream);
strw.Write(failedOutput.Text);
strw.Close();
stream.Close();
}
}
private void button2_Click(object sender, EventArgs e)
{
openChecker.Title = "Import External Judger";
openChecker.Filter = "Executable files|*.exe";
openChecker.FileName = "";
if (openChecker.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
Global.checkerpath = openChecker.FileName;
if (Path.GetFileName(Global.checkerpath).Length <= 25) checkName.Text = Path.GetFileName(Global.checkerpath);
else
{
checkName.Text = "";
for (int i = 0; i < 25; i++) checkName.Text += Path.GetFileName(Global.checkerpath)[i];
checkName.Text += "...";
}
}
else
{
checkName.Text = "No Program Imported";
Global.checkerpath = "";
}
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
Global.usechecker = checkBox1.Checked;
}
}
}