-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathForm1.cs
726 lines (660 loc) · 26.7 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
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace XplotterGui
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//task List
private List<Task> tasklist;
//task Counter
private int x1;
private int x2;
//task Notifier
AutoResetEvent[] autoEvents;
public struct Task
{
public int file;
public int fileLength;
public int start;
public int len;
}
//display plotter task status
void task1Status(string text)
{
if (plotStatus1.InvokeRequired){
plotStatus1.Invoke(new MethodInvoker(() => { task1Status(text); }));
return;
}
else
{
plotStatus1.Text = text;
}
}
//display transfer task status
void task2Status(string text)
{
if (transferStatus1.InvokeRequired)
{
transferStatus1.Invoke(new MethodInvoker(() => { task2Status(text); }));
return;
} else {
transferStatus1.Text = text;
}
}
//display plotter output
void p_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
Process p = sender as Process;
if (p == null)
return;
if (plotStatus2.InvokeRequired)
{
plotStatus2.Invoke(new MethodInvoker(() => { p_OutputDataReceived(sender, e); }));
return;
}
else
{
if (e.Data != null)
{
if (plotStatus2.Lines.Length > 50) plotStatus2.Text = "";
plotStatus2.AppendText(e.Data+ "\r\n");
}
}
}
//display transfer ourput
void p_OutputDataReceived2(object sender, DataReceivedEventArgs e)
{
Process p = sender as Process;
if (p == null)
return;
if (transferStatus2.InvokeRequired)
{
transferStatus2.Invoke(new MethodInvoker(() => { p_OutputDataReceived2(sender, e); }));
return;
}
else
{
if (e.Data != null)
{
if (transferStatus2.Lines.Length > 50) transferStatus2.Text = "";
transferStatus2.AppendText(e.Data + "\n");
}
}
}
//thread error handling
void p_ErrorDataReceived(object sender, DataReceivedEventArgs e)
{
Process p = sender as Process;
if (p == null)
return;
if (statusStrip1.InvokeRequired)
{
statusStrip1.Invoke(new MethodInvoker(() => { p_OutputDataReceived2(sender, e); }));
return;
}
else
{
if (e.Data != null)
{
sts_lbl.Text = e.Data;
}
}
}
//locate xplotter executable
private void btn_Xplotter_Click(object sender, EventArgs e)
{
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
xPlotter.Text = openFileDialog.FileName;
Properties.Settings.Default.xplotter = openFileDialog.FileName;
Properties.Settings.Default.Save();
}
}
//locate SSD cache
private void updateSSD_Click(object sender, EventArgs e)
{
if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
{
ssdCache.Text = folderBrowserDialog.SelectedPath;
Properties.Settings.Default.cache = ssdCache.Text;
Properties.Settings.Default.Save();
UpdateSpace();
}
}
//update plot size label
private void displayPlotSize()
{
plotsize.Text = "Total size: " + prettyBytes((long)ntp.Value * (2 << 17));
if (oneFile.Checked)
{
files.Text = "1 file(s)";
}
else
{
if (npf.Value > 0)
files.Text = Math.Ceiling((double)ntp.Value / (double)npf.Value).ToString() + " file(s)";
}
}
//update startnonce
private void updatesn()
{
if (automaticsn.Checked)
{
snonce.Value = (drive.Value - 1) * offset.Value;
}
}
//update cache info label
private void UpdateSpace()
{
if (Directory.Exists(ssdCache.Text)){
DriveInfo drive = new DriveInfo(ssdCache.Text);
DriveInfo a = new DriveInfo(drive.Name);
if (spct.Checked)
{
long nbnonce = (a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64;
cnonces.Value = 2*nbnonce;
space.Text = "Using 2 files, each " + prettyBytes(nbnonce * (2 << 17)) + " (" + (nbnonce).ToString("#,##0") + " Nonces)" + " out of " + prettyBytes(a.AvailableFreeSpace) + " (" + (a.AvailableFreeSpace / (2 << 17)).ToString("#,##0") + " Nonces)";
}
else
{
long nbnonce = Math.Min((a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18)/8)*8,((long)cnonces.Value / 2 / 64) * 64);
space.Text = "Using 2 files, each " + prettyBytes(nbnonce*(2<<17)) + " (" + (nbnonce).ToString("#,##0") + " Nonces)" + " out of " + prettyBytes(a.AvailableFreeSpace) + " (" + (a.AvailableFreeSpace / (2 << 17)).ToString("#,##0") + " Nonces)";
}
}
}
//update target drive info label
private void UpdateSpace2()
{
if (Directory.Exists(target.Text))
{
DriveInfo drive = new DriveInfo(target.Text);
DriveInfo a = new DriveInfo(drive.Name);
space2.Text = prettyBytes(a.AvailableFreeSpace) + " (" + (a.AvailableFreeSpace *0.99999 / (2 << 17)).ToString("#,##0") + " Nonces)";
}
}
//update NTP label
private void updateNtp()
{
if (ntpmax.Checked && Directory.Exists(target.Text))
{
DriveInfo drive = new DriveInfo(target.Text);
DriveInfo a = new DriveInfo(drive.Name);
ntp.Value = (decimal)((double)(a.AvailableFreeSpace / (2 << 17)) * 0.99999);
Properties.Settings.Default.ntpvalue = ntp.Value;
Properties.Settings.Default.Save();
}
}
//nicen bytes output
private string prettyBytes(long bytes)
{
string result;
if (bytes < 1024) { result = Math.Round((double)bytes, 1).ToString() + "B"; }
else if (bytes < 1024 * 1024) { result = Math.Round((double)bytes / 1024, 1).ToString() + "kB"; }
else if (bytes < 1024 * 1024 * 1024) { result = Math.Round((double)bytes / 1024 / 1024, 1).ToString() + "MB"; }
else if (bytes < 1024L * 1024 * 1024 * 1024) { result = Math.Round((double)bytes / 1024 / 1024 / 1024, 1).ToString() + "GB"; }
else { result = Math.Round((double)bytes / 1024 / 1024 / 1024 / 1024, 1).ToString() + "TB"; }
return result;
}
//load form and user settings
private void Form1_Load(object sender, EventArgs e)
{
loadSettings();
UpdateSpace();
UpdateSpace2();
updatesn();
}
//locate plot target directory
private void button4_Click(object sender, EventArgs e)
{
if (folderBrowserDialog.ShowDialog() == DialogResult.OK)
{
target.Text = folderBrowserDialog.SelectedPath;
Properties.Settings.Default.target = target.Text;
Properties.Settings.Default.Save();
UpdateSpace2();
updateNtp();
}
}
//load user settings
private void loadSettings()
{
//TODO: optimize order, disable label updates until load complete
decimal test = Properties.Settings.Default.cnonces;
xPlotter.Text = Properties.Settings.Default.xplotter;
numericID.Text = Properties.Settings.Default.ID;
threads.Value = Properties.Settings.Default.threads;
ram.Value = Properties.Settings.Default.ram;
ssdCache.Text = Properties.Settings.Default.cache;
cachepct.Value = Properties.Settings.Default.space;
ntpValue.Checked = !Properties.Settings.Default.ntp;
ntp.Value = Properties.Settings.Default.ntpvalue;
target.Text = Properties.Settings.Default.target;
automaticsn.Checked = Properties.Settings.Default.start;
manualsn.Checked = !Properties.Settings.Default.start;
drive.Value = Properties.Settings.Default.drive;
offset.Value = Properties.Settings.Default.offset;
ntpmax.Checked = Properties.Settings.Default.ntp;
cnonce.Checked = !Properties.Settings.Default.pct;
spct.Checked = Properties.Settings.Default.pct;
cnonces.Value = test;
modeA.Checked = Properties.Settings.Default.modea;
modeB.Checked = !Properties.Settings.Default.modea;
oneFile.Checked = Properties.Settings.Default.ftp;
moreFiles.Checked = !Properties.Settings.Default.ftp;
npf.Value = Properties.Settings.Default.ftpvalue;
}
private void btn_Preview_Click(object sender, EventArgs e)
{
int cachesize = 0;
//get cache
if (Directory.Exists(ssdCache.Text))
{
DriveInfo drive = new DriveInfo(ssdCache.Text);
DriveInfo a = new DriveInfo(drive.Name);
if (spct.Checked)
{
cachesize = (int)(a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64;
}
else
{
cachesize = (int)Math.Min((a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64, ((long)cnonces.Value / 2 / 64) * 64);
}
}
else { return; }
x1 = 0;
x2 = 0;
//prepare tasklist
tasklist = new List<Task>();
//loop files
for (int i = 0; i < (int)Math.Ceiling(((double)ntp.Value / (double)npf.Value)); i++)
{
//loop chunks
int length = Math.Min((int)npf.Value, -(int)npf.Value * i + (int)ntp.Value);
for (int j = 0; j < (int)Math.Ceiling(((double)length / (double)cachesize)); j++) //todo replace with cache size in nonces
{
//create Task
tasklist.Add(new Task { file = i, fileLength = length, start = i * (int)npf.Value + j * cachesize, len = Math.Min(cachesize, length - j * cachesize) });
}
}
string output = "";
int file = -1;
for (int i = 1; i < Math.Min(50, tasklist.Count + 1); i++)
{
if (file != tasklist[i - 1].file)
{
string command;
command = target.Text + "\\" + numericID.Text + "_" + (snonce.Value + npf.Value * tasklist[i - 1].file).ToString() + "_" + tasklist[i - 1].fileLength.ToString();
output += command + "\r\n";
file = tasklist[i - 1].file;
}
}
if (tasklist.Count > 49) { output = output + "...\r\n"; }
MessageBox.Show(output, "Plot File Preview", MessageBoxButtons.OK);
}
//start plotting
private void start_Click(object sender, EventArgs e)
{
int cachesize =0;
//get cache
if (Directory.Exists(ssdCache.Text))
{
DriveInfo drive = new DriveInfo(ssdCache.Text);
DriveInfo a = new DriveInfo(drive.Name);
if (spct.Checked)
{
cachesize = (int)(a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64;
}
else
{
cachesize = (int)Math.Min((a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64, ((long)cnonces.Value / 2 / 64) * 64);
}
}
else { return; }
x1 = 0;
x2 = 0;
//prepare tasklist
tasklist = new List<Task>();
//loop files
for (int i = 0; i < (int)Math.Ceiling(((double)ntp.Value / (double)npf.Value)); i++)
{
//loop chunks
int length = Math.Min((int)npf.Value, -(int)npf.Value * i + (int)ntp.Value);
for (int j = 0; j < (int)Math.Ceiling(((double)length / (double)cachesize)); j++) //todo replace with cache size in nonces
{
//create Task
tasklist.Add(new Task { file = i, fileLength = length, start = i * (int)npf.Value + j * cachesize, len = Math.Min(cachesize, length - j * cachesize) });
}
}
//start control thread
new Thread(() =>
{
Thread.CurrentThread.IsBackground = true;
Control();
}).Start();
}
//control thread
private void Control()
{
autoEvents = new AutoResetEvent[]
{
new AutoResetEvent(false),
new AutoResetEvent(false)
};
for (int i = 0; i < tasklist.Count+1; i++)
{
ThreadPool.QueueUserWorkItem(new WaitCallback(U1));
ThreadPool.QueueUserWorkItem(new WaitCallback(U2));
WaitHandle.WaitAll(autoEvents);
}
}
//Plotter Thread
public void U1(object stateInfo)
{
//Reset Status
task1Status("");
if (x1 == tasklist.Count)
{
task1Status("All tasks completed!");
x1++;
autoEvents[0].Set();
}
else
{
try
{
using (Process p1 = new Process())
{
// set start info
//Console.WriteLine("-id " + numericID.Text + " -sn " + (snonce.Value + tasklist[x1].start).ToString() + " -n " + tasklist[x1].len + " -t " + threads.Value.ToString() + " -mem " + ram.Value.ToString() + "G" + " -path " + ssdCache.Text);
p1.StartInfo = new ProcessStartInfo(xPlotter.Text, "-id "+numericID.Text+" -sn "+ (snonce.Value+tasklist[x1].start).ToString()+" -n "+tasklist[x1].len+" -t "+threads.Value.ToString() + " -mem " + ram.Value.ToString()+"G" + " -path "+ssdCache.Text)
{
WindowStyle = ProcessWindowStyle.Hidden,
//Arguments = "/A",
//RedirectStandardInput = true,
RedirectStandardOutput = true,
UseShellExecute = false,
WorkingDirectory = @"c:\",
CreateNoWindow = true
};
// event handlers for output & error
p1.EnableRaisingEvents = true;
p1.OutputDataReceived += p_OutputDataReceived;
p1.ErrorDataReceived += p_ErrorDataReceived;
p1.Exited += new EventHandler(p1_threadExit);
// start process
task1Status("Running plotter task: " + (x1 + 1).ToString() + "/" + (tasklist.Count + 1).ToString());
p1.Start();
p1.BeginOutputReadLine();
p1.WaitForExit();
x1++;
autoEvents[0].Set();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
}
public void p1_threadExit(object sender, System.EventArgs e)
{
task1Status("Task " + (x1 + 1).ToString() + " completed! ! Bottleneck is HDD.");
}
public void p2_threadExit(object sender, System.EventArgs e)
{
if (x2 == tasklist.Count)
{
task2Status("All tasks completed!");
}
else
{
task2Status("Task "+(x2+1).ToString()+" completed! Bottleneck is CPU.");
}
}
//Mover Thread
public void U2(object stateInfo)
{
//Reset Status
task2Status("");
if (x2 == 0)
{
task2Status("Warming up! Waiting for plotter task...");
//Console.WriteLine("Task done! Waiting for Task 1, i.e. HDD is bottleneck!");
x2++;
autoEvents[1].Set();
}
else
{
try
{
using (Process p2 = new Process())
{
// set start info
string param;
string command;
if (modeA.Checked) {
command = "cmd.exe";
param = "/A /C copy "+ssdCache.Text + "\\" + numericID.Text + "_" + (tasklist[x2 - 1].start + snonce.Value).ToString() + "_" + tasklist[x2 - 1].len.ToString() + " " + target.Text;
}
else
{
command = Application.StartupPath + "\\" + "plotMerge.exe";
param = ssdCache.Text + "\\" + numericID.Text + "_" + (tasklist[x2 - 1].start + snonce.Value).ToString() + "_" + tasklist[x2 - 1].len.ToString() + " " + target.Text + "\\" + numericID.Text + "_" + (snonce.Value + npf.Value * tasklist[x2 - 1].file).ToString() + "_" + tasklist[x2 - 1].fileLength.ToString();
}
//Console.WriteLine(command);
p2.StartInfo = new ProcessStartInfo(command, param)
{
WindowStyle = ProcessWindowStyle.Hidden,
//Arguments = "/A",
//RedirectStandardInput = true,
RedirectStandardOutput = true,
UseShellExecute = false,
WorkingDirectory = @"c:\",
CreateNoWindow = true
};
// event handlers for output & error
p2.EnableRaisingEvents = true;
p2.OutputDataReceived += p_OutputDataReceived2;
p2.ErrorDataReceived += p_ErrorDataReceived;
p2.Exited += new EventHandler(p2_threadExit);
// start process
task2Status("Running transfer task: " + (x2+1).ToString() + "/" + (tasklist.Count + 1).ToString());
p2.Start();
p2.BeginOutputReadLine();
p2.WaitForExit();
// p2.Close();
File.Delete(ssdCache.Text + "\\" + numericID.Text + "_" + (tasklist[x2 - 1].start + snonce.Value).ToString() + "_" + tasklist[x2 - 1].len.ToString());
//start_plot(x1, x2);
//task2Status("Task done! Waiting for Task 1, i.e. CPU is bottleneck!");
x2++;
autoEvents[1].Set();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
}
//below this line all GUI handling
private void xPlotter_TextChanged(object sender, EventArgs e)
{
Properties.Settings.Default.xplotter = xPlotter.Text;
Properties.Settings.Default.Save();
}
private void ssdCache_TextChanged(object sender, EventArgs e)
{
Properties.Settings.Default.cache = ssdCache.Text;
Properties.Settings.Default.Save();
UpdateSpace();
}
private void cachepct_ValueChanged(object sender, EventArgs e)
{
Properties.Settings.Default.space = cachepct.Value;
Properties.Settings.Default.Save();
if (modeA.Checked && (Directory.Exists(ssdCache.Text)))
{
moreFiles.Checked = true;
DriveInfo drive = new DriveInfo(ssdCache.Text);
DriveInfo a = new DriveInfo(drive.Name);
npf.Value = (int)Math.Min((a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64, ((long)cnonces.Value / 2 / 64) * 64);
}
UpdateSpace();
}
private void target_TextChanged(object sender, EventArgs e)
{
Properties.Settings.Default.target = target.Text;
Properties.Settings.Default.Save();
UpdateSpace2();
updateNtp();
}
private void numericID_TextChanged(object sender, EventArgs e)
{
Properties.Settings.Default.ID = numericID.Text;
Properties.Settings.Default.Save();
}
private void threads_ValueChanged(object sender, EventArgs e)
{
Properties.Settings.Default.threads = (int)threads.Value;
Properties.Settings.Default.Save();
}
private void ram_ValueChanged(object sender, EventArgs e)
{
Properties.Settings.Default.ram = (int)ram.Value;
Properties.Settings.Default.Save();
}
private void drive_ValueChanged(object sender, EventArgs e)
{
updatesn();
Properties.Settings.Default.drive = drive.Value;
Properties.Settings.Default.Save();
}
private void automaticsn_CheckedChanged(object sender, EventArgs e)
{
updatesn();
Properties.Settings.Default.start = automaticsn.Checked;
Properties.Settings.Default.Save();
}
private void ntpmax_CheckedChanged(object sender, EventArgs e)
{
updateNtp();
Properties.Settings.Default.ntp = ntpmax.Checked;
Properties.Settings.Default.Save();
}
private void offset_ValueChanged(object sender, EventArgs e)
{
updatesn();
Properties.Settings.Default.offset = offset.Value;
Properties.Settings.Default.Save();
}
private void ntp_ValueChanged(object sender, EventArgs e)
{
if (!ntpmax.Checked)
{
ntp.Value = (int)ntp.Value / 64 * 64;
Properties.Settings.Default.ntpvalue = ntp.Value;
Properties.Settings.Default.Save();
}
displayPlotSize();
if (oneFile.Checked)
{
npf.Value = ntp.Value;
}
}
private void oneFile_CheckedChanged(object sender, EventArgs e)
{
npf.Value = ntp.Value;
Properties.Settings.Default.ftp = oneFile.Checked;
Properties.Settings.Default.Save();
displayPlotSize();
}
private void npf_ValueChanged(object sender, EventArgs e)
{
npf.Value = (int)npf.Value / 64 * 64;
Properties.Settings.Default.ftpvalue = npf.Value;
Properties.Settings.Default.Save();
displayPlotSize();
}
private void ntp_Enter(object sender, EventArgs e)
{
ntpValue.Checked = true;
}
private void npf_Enter(object sender, EventArgs e)
{
moreFiles.Checked = true;
modeB.Checked = true;
}
private void snonce_Enter(object sender, EventArgs e)
{
manualsn.Checked = true;
}
private void drive_Enter(object sender, EventArgs e)
{
automaticsn.Checked = true;
}
private void offset_Enter(object sender, EventArgs e)
{
automaticsn.Checked =true;
}
private void spct_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.pct = spct.Checked;
Properties.Settings.Default.Save();
UpdateSpace();
}
private void cachepct_Enter(object sender, EventArgs e)
{
spct.Checked = true;
}
private void cnonces_Enter(object sender, EventArgs e)
{
cnonce.Checked = true;
}
private void cnonces_ValueChanged(object sender, EventArgs e)
{
Properties.Settings.Default.cnonces = cnonces.Value;
Properties.Settings.Default.Save();
if (modeA.Checked && ssdCache.Text != "")
{
moreFiles.Checked = true;
DriveInfo drive = new DriveInfo(ssdCache.Text);
DriveInfo a = new DriveInfo(drive.Name);
npf.Value = (int)Math.Min((a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) *64, ((long)cnonces.Value / 2 / 64) * 64);
}
UpdateSpace();
}
private void modeA_CheckedChanged(object sender, EventArgs e)
{
Properties.Settings.Default.modea = modeA.Checked;
Properties.Settings.Default.Save();
if (modeA.Checked)
{
moreFiles.Checked = true;
DriveInfo drive = new DriveInfo(ssdCache.Text);
DriveInfo a = new DriveInfo(drive.Name);
npf.Value = (int)Math.Min((a.AvailableFreeSpace * (long)cachepct.Value / 100 / (2 << 18) / 64) * 64, ((long)cnonces.Value / 2 / 64) * 64);
}
displayPlotSize();
}
private void oneFile_Enter(object sender, EventArgs e)
{
modeB.Checked = true;
}
private void moreFiles_Enter(object sender, EventArgs e)
{
modeB.Checked = true;
}
}
}