Obliczenia brydżowe (HTML)
Jacek Kowalski
2015-07-11 7f8ceb8e55b8778180ea890edae3daea5bd05cae
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>Wyniki brydżowe</title>
<link rel="stylesheet" href="bridge.css" type="text/css" />
</head>
<body>
 
<p>
<button onclick="addResult()">Dodaj wynik</button>
<button onclick="addPlayer()">Dodaj gracza</button>
<button onclick="clearAll()">Wyczyść</button>
</p>
 
<div id="results">
</div>
 
<div id="overlay">
</div>
 
<script type="text/javascript">
function ResultsTable(id, container) {
    this.id = id;
    this.players = [];
    this.results = [];
    this.store = window.sessionStorage;
    
    container.appendChild(this._createTable());
}
ResultsTable.prototype._createTable = function() {
    this.table = document.createElement('table');
    this.table.className = 'results';
    this.thead = document.createElement('thead');
    this.tbody = document.createElement('tbody');
    this.tplayers = document.createElement('tr');
    this.tresults = document.createElement('tr');
    
    this.table.appendChild(this.thead);
    this.table.appendChild(this.tbody);
    this.thead.appendChild(this.tplayers);
    this.thead.appendChild(this.tresults);
    
    return this.table;
};
ResultsTable.prototype.load = function() {
    if(this.store) {
        this.players = JSON.parse(this.store.getItem(this.id+'_players'));
        this.results = JSON.parse(this.store.getItem(this.id+'_results'));
        this.refresh();
    }
};
ResultsTable.prototype.save = function() {
    if(this.store) {
        this.store.setItem(this.id+'_players', JSON.stringify(this.players));
        this.store.setItem(this.id+'_results', JSON.stringify(this.results));
    }
};
ResultsTable.prototype.clear = function() {
    this.players = [];
    this.results = [];
    this.refresh();
    if(this.store) {
        this.store.removeItem(this.id+'_players');
        this.store.removeItem(this.id+'_results');
    }
};
ResultsTable.prototype.addPlayer = function(name) {
    var results = (this.results[0] && this.results[0].length) || 0;
    results = new Array(results);
    for(var i = 0; i < results.length; i++) {
        results[i] = 'X';
    }
    
    this.players.push(name);
    this.results.push(results);
    this.refresh();
};
ResultsTable.prototype._createPlayerTh = function(name) {
    var th = document.createElement('th');
    th.innerText = name;
    th.onclick = function(self) { return function() {
        var originalName = th.innerText;
        var result = prompt('Podaj nowe inicjały gracza. Wyczyść pole, by go usunąć.', name);
        
        if(result == null) {
            return;
        }
        
        if(result) {
            self.players[self.players.indexOf(originalName)] = result;
            th.innerText = result;
        }
        else
        {
            var index = self.players.indexOf(originalName);
            self.players = self.players.splice(index, 1);
            self.results = self.results.splice(index, 1);
            self.refresh();
        }
    } }(this);
    return th;
};
ResultsTable.prototype.addResult = function(result) {
    for(var i = 0; i < result.length; i++) {
        this.results[i].push(result[i]);
    }
    this.refresh();
};
ResultsTable.prototype.refresh = function() {
    this.save();
    
    while(this.tplayers.lastChild) {
        this.tplayers.removeChild(this.tplayers.lastChild);
    }
    for(var i = 0; i < this.players.length; i++) {
        this.tplayers.appendChild(this._createPlayerTh(this.players[i]));
    }
    
    while(this.tresults.lastChild) {
        this.tresults.removeChild(this.tresults.lastChild);
    }
    for(var i = 0; i < this.results.length; i++) {
        var td = document.createElement('th');
        td.innerText = this.results[i].reduce(function(a, b) { return (parseInt(a, 10) || 0)+(parseInt(b, 10) || 0); }, 0);
        this.tresults.appendChild(td);
    }
    
    while(this.tbody.lastChild) {
        this.tbody.removeChild(this.tbody.lastChild);
    }
    if(this.results.length > 0) {
        for(var i = 0; i < this.results[0].length; i++) {
            var tr = document.createElement('tr');
            
            for(var j = 0; j < this.results.length; j++) {
                var td = document.createElement('td');
                td.innerText = this.results[j][i];
                td.onclick = function(j, i, self) { return function() {
                    var result = prompt('Podaj nową wartość:', self.results[j][i]);
                    if(result != null) {
                        self.results[j][i] = result;
                        self.refresh();
                    }
                } }(j, i, this);
                tr.appendChild(td);
            }
            
            this.tbody.appendChild(tr);
        }
    }
};
 
var resultsTable = new ResultsTable('html', document.getElementById('results'));
resultsTable.load();
 
function addPlayer() {
    var result = prompt('Podaj inicjały gracza');
    if(result) {
        resultsTable.addPlayer(result);
    }
}
 
function addResult() {
    if(resultsTable.players.length < 4) {
        alert('Dodaj przynajmniej 4 graczy.');
        return;
    }
    window.open('compute.html');
}
 
function clearAll() {
    resultsTable.clear();
}
 
function saveResult(result, p1, p2, p3, p4) {
    var lista = document.getElementById('overlay');
    
    if(p1 == null || p2 == null || p3 == null || p4 == null) {
        while(lista.lastChild) {
            lista.removeChild(lista.lastChild);
        }
        
        var selectable = [];
        lista.appendChild(document.createElement('br'));
        for(var i = 0; i < resultsTable.players.length; i++) {
            if(p1 == i || p2 == i || p3 == i || p4 == i) {
                continue;
            }
            selectable.push(i);
        }
        if(p3 == null && p4 == null && selectable.length == 2) {
            return saveResult(result, p1, p2, selectable[0], selectable[1]);
        }
        
        var p = document.createElement('p');
        if(p1 == null) {
            p.appendChild(document.createTextNode('Rozgrywający 1:'));
        } else if(p2 == null) {
            p.appendChild(document.createTextNode('Rozgrywający 2:'));
        } else if(p3 == null) {
            p.appendChild(document.createTextNode('Przeciwnik 1:'));
        } else {
            p.appendChild(document.createTextNode('Przeciwnik 2:'));
        }
        lista.appendChild(p);
        for(var j = 0; j < selectable.length; j++) {
            var i = selectable[j];
            var button = document.createElement('button');
            button.innerText = resultsTable.players[i];
            button.onclick = (function (j) { return function() {
                if(p1 == null) {
                    saveResult(result, j, null, null, null);
                } else if(p2 == null) {
                    saveResult(result, p1, j, null, null);
                } else if(p3 == null) {
                    saveResult(result, p1, p2, j, null);
                } else {
                    saveResult(result, p1, p2, p3, j);
                }
            } })(i);
            lista.appendChild(button);
        }
        
        button = document.createElement('button');
        button.innerText = 'Anuluj';
        button.onclick = function() {
            lista.style.display = 'none';
        }
        
        lista.appendChild(button);
        lista.style.display = 'block';
    } else {
        lista.style.display = 'none';
        
        var results = [];
        for(var i = 0; i < resultsTable.players.length; i++) {
            if(p1 == i || p2 == i) {
                if(result.dla == 0) {
                    results.push(result.IMP);
                } else {
                    results.push('-');
                }
            } else if(p3 == i || p4 == i) {
                if(result.dla != 0) {
                    results.push(result.IMP);
                } else {
                    results.push('-');
                }
            } else {
                results.push('X');
            }
        }
        
        resultsTable.addResult(results);
    }
}
 
function handler(event) {
    var result = event.data;
    
    setTimeout(function() {
        saveResult(result, null, null, null, null);
    }, 1);
}
 
window.addEventListener('message', handler, false);
</script>
 
</body>
</html>