blob: a37ead663603cdf9b3f4ffee46c5a80aa15be728 (
plain)
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
|
using System;
using System.Collections.Generic;
using System.Threading;
namespace BCDD
{
public class BCDDFile
{
public List<String> errors;
private String filename;
public static int filesCounter;
public static ManualResetEvent filesCountdown = new ManualResetEvent(false);
public BCDDFile(String filename)
{
this.errors = new List<String>();
this.filename = filename;
}
private void error(String message, String boardNo = "")
{
if (!"".Equals(boardNo))
{
message = String.Format("[{0}:{1}] {2}", this.filename, boardNo, message);
}
else
{
message = String.Format("[{0}] {1}", this.filename, message);
}
errors.Add(message);
Console.WriteLine("ERROR: " + message);
}
public void analyze(object state)
{
try
{
PBNFile file = new PBNFile(filename);
foreach (PBNBoard board in file.Boards)
{
DDTable table = new DDTable(board);
String boardNo;
try
{
boardNo = board.GetNumber();
}
catch (FieldNotFoundException)
{
boardNo = "?";
}
try
{
int[,] ddTable = table.GetDDTable();
if (ddTable != null)
{
ParScore par = new ParScore(board);
ParContract contract = par.GetParContract(ddTable);
board.SaveDDTable(ddTable);
board.SaveParContract(contract);
Console.WriteLine("Board " + boardNo);
DDTable.PrintTable(ddTable);
Console.WriteLine(contract);
Console.WriteLine();
}
else
{
this.error("unable to determine DD table for board " + boardNo, boardNo);
}
}
catch (DllNotFoundException)
{
throw;
}
catch (Exception e)
{
this.error(e.Message, boardNo);
}
file.WriteBoard(board);
}
file.Save();
}
catch (DllNotFoundException)
{
this.error("libbcalcdds.dll could not be loaded - make sure it's present in application directory!");
return;
}
catch (Exception e)
{
this.error(e.Message);
}
finally
{
if (Interlocked.Decrement(ref BCDDFile.filesCounter) == 0)
{
BCDDFile.filesCountdown.Set();
}
}
}
}
}
|