main.js
9.44 KB
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
var data;
var acum_list = new Array(); // 번호별 누적횟수를 구하기 위한 배열
for (i=0;i<45;i++){
acum_list[i]=0;
}
//회차별 당첨번호를 가지고 오기 위하여 테이블을 만들고 data를 가지고 오기 위해 주소를 변경하는 함수
$(document).ready(function () {
var dropdown = $('#selectBox');
var form = $('#form');
var result = $('#result');
var a2=$('#a1');
for (i = 1; i < 862; i++) {
var option = $('<option>');
option.val(i).text(i+'회차');
dropdown.append(option);
}
form.on('submit', function (event) {
event.preventDefault();
if (!dropdown.val()) {
alert('뭔가 선택을 하세요.');
dropdown.focus();
} else {
//회차별로 api에서 당첨번호를 끌어오기 위한 문자열 주소 조합
document.getElementById("lotto_api_src").src="http://lotto.kaisyu.com/api?method=get&gno="+dropdown.val()+";callback=loadlot";
//api에서 data를 끌어올때 최초 1회만 끌어올수 있는 문제를 해결하기 위한 방안
var lotto_parent = document.getElementById("lotto_api_data");
var lotto_child=document.getElementById("lotto_api_src");
lotto_child.remove();
child_node=document.createElement('script');
child_node.id="lotto_api_src";
lotto_parent.append(child_node);
}
});
});
//로또 번호 생성
function dice(n, s, b) {
var out = 0;
for (i = 0; i < n; i++) {
out += Math.ceil(s * Math.random());
}
return out + b;
}
//로또 번호를 생성하고 번호별로 style을 주며 당첨등을 총괄하기 위한 함수
function count() {
// console.log($('#inputnum').val());
var numberSort = function(a, b) {
return a[0] - b[0];
};
$('#lottotable').html(""); //초기화
$('#accumulate_table').html(""); //초기화
$('#recom_table').html("");
var win1 = 0;
var win2 = 0;
var win3 = 0;
var win4 = 0;
var win5 = 0;
(function engine(i) {
setTimeout(function() {
var list_length = ($('#lottotable li').length + 1);
var list = "";
var val = [
[0, 0], //[번호, 당첨여부]
[0, 0],
[0, 0],
[0, 0],
[0, 0],
[0, 0]
];
var match = 0; //몇개 숫자가 적중했나
var match_b = 0; //보너스숫자가 적중했나
for (j = 0; j < 6; j++) {
// val[j][0] = dice(1, 45, 0);
function roll(n) {
if (j == 0) {
val[j][0] = n;
} else {
for (l = 0; l < j; l++) {
// console.log(n);
if (n == val[l][0]) {
roll(dice(1, 45, 0));
} else {
val[j][0] = n;
}
}
}
}
roll(dice(1, 45, 0));
// console.log("No." + (list_length) + ": " + val);
for (m = 0; m < 6; m++) {
if (val[j][0] == data.nums[m]) {
val[j][1] = 1;
match++;
}
}
// console.log("No." + (list_length) + ": " + val);
if (val[j][0] == data.bnum) {
val[j][1] = 2;
match_b = 1;
}
}
// console.log("before sort: "+val);
val.sort(numberSort);
// console.log("after sort: "+val);
for (j = 0; j < 6; j++) {
function setColorClass() {
if (val[j][0] <= 10) {
num_class = "c1 ";
} else if (val[j][0] <= 20) {
num_class = "c2 ";
} else if (val[j][0] <= 30) {
num_class = "c3 ";
} else if (val[j][0] <= 40) {
num_class = "c4 ";
} else {
num_class = "c5 ";
}
if (val[j][1] == 1) {
num_class += "match ";
} else if (val[j][1] == 2) {
num_class += "match_b ";
}
}
var num_class;
setColorClass();
list += '<div class="output ' + num_class + '">' + val[j][0] + '</div>';
// console.log(match);
}
acum_list[val[0][0]-1]+=1;
acum_list[val[1][0]-1]+=1;
acum_list[val[2][0]-1]+=1;
acum_list[val[3][0]-1]+=1;
acum_list[val[4][0]-1]+=1;
acum_list[val[5][0]-1]+=1;
var win_class;
if (match == 6) {
win_class = 'win win1';
win1++;
console.log('win1');
} else if (match == 5 && match_b == 1) {
win_class = 'win win2';
win2++;
console.log('win2');
} else if (match == 5) {
win_class = 'win win3';
win3++;
console.log('win3');
} else if (match == 4) {
win_class = 'win win4';
win4++;
console.log('win4');
} else if (match == 3) {
win_class = 'win win5';
win5++;
console.log('win5');
}
$('#stats').html(
'1등: ' + win1 + "<span class='translation'>(" + (win1 / list_length * 100).toFixed(2) + "%)</span>" +
' | 2등: ' + win2 + "<span class='translation'>(" + (win2 / list_length * 100).toFixed(2) + "%)</span>" +
' | 3등: ' + win3 + "<span class='translation'>(" + (win3 / list_length * 100).toFixed(2) + "%)</span>" +
' | 4등: ' + win4 + "<span class='translation'>(" + (win4 / list_length * 100).toFixed(2) + "%)</span>" +
' | 5등: ' + win5 + "<span class='translation'>(" + (win5 / list_length * 100).toFixed(2) + "%)</span>" +
" | 총당첨율: " + ((win1 + win2 + win3 + win4 + win5) / list_length * 100).toFixed(2) + "%" +
" | 손수익 : " + (((win1*2000000000)+(win2*50000000)+(win3*1000000)+(win4*50000)+(win5*5000))-(totalbuy*1000)).toFixed(0)+"원"+
'<br><progress value="' + list_length + '" max="' + totalbuy + '"></progress>'
);
$('#lottotable').append('<li class="' + win_class + '">' + list + '</li>');
// break;
if (--i) engine(i);
}, 0)
})($('#inputnum').val());
var totalmatch = (win1 + win2 + win3 + win4 + win5)
var totalbuy = $('#inputnum').val();
}
//api로부터 당첨 data를 끌어오기 위한 함수
function loadlot(a) {
$("#lottok").html('제 ' + a.gno + '회차 당첨 결과(' + a.gdate + ')'); // + '<br/>' +
//a.nums + a.bnum;
a.nums[6] = a.bnum;
for (i = 0; i < 7; i++) {
$('#output' + i).text(a.nums[i]);
}
for (i = 0; i < 7; i++) {
if (a.nums[i] <= 10) {
$('#output' + i).addClass("c1");
} else if (a.nums[i] <= 20) {
$('#output' + i).addClass("c2");
} else if (a.nums[i] <= 30) {
$('#output' + i).addClass("c3");
} else if (a.nums[i] <= 40) {
$('#output' + i).addClass("c4");
} else {
$('#output' + i).addClass("c5");
}
}
data = a;
}
//생성한 번호별 누적횟수와 추천번호를 위한 함수
function accumulate_number() {
$('#lottotable').html(""); //초기화
$('#accumulate_table').html(""); //초기화
$('#recom_table').html(""); //초기화
var temp= JSON.parse(JSON.stringify( acum_list ));
var out_temp= JSON.parse(JSON.stringify( acum_list ));
temp.sort(function(a,b){return a-b});
var recom_number = new Array();
$('#recom_table').append('<section id="recom_section" class="shadow"></scetion>');
for(i=44;i>=0;i--) {
for(j=0;j<45;j++){
if(temp[i]==out_temp[j]){
if(j<9)
$('#recom_section').append('<div class="output c1">'+(j+1)+'</div>'+'<progress value="' + temp[i] + '" max="' + (temp[44]+20)+ '"></progress>'+' '+temp[i]);
else if(j<19)
$('#recom_section').append('<div class="output c2">'+(j+1)+'</div>'+'<progress value="' + temp[i] + '" max="' + (temp[44]+20)+ '"></progress>'+' '+temp[i]);
else if(j<29)
$('#recom_section').append('<div class="output c3">'+(j+1)+'</div>'+'<progress value="' + temp[i] + '" max="' + (temp[44]+20)+ '"></progress>'+' '+temp[i]);
else if(j<39)
$('#recom_section').append('<div class="output c4">'+(j+1)+'</div>'+'<progress value="' + temp[i] + '" max="' + (temp[44]+20)+ '"></progress>'+' '+temp[i]);
else
$('#recom_section').append('<div class="output c5">'+(j+1)+'</div>'+'<progress value="' + temp[i] + '" max="' + (temp[44]+20)+ '"></progress>'+' '+temp[i]);
out_temp[j]=null;
if(i>38){
recom_number[44-i]=j+1;
}
break;
}
}
}
recom_number.sort(function(a,b){return a-b});
var numberSort = function(a, b) {
return a[0] - b[0];
};
var list = "";
var num_class= "c2 ";
list += '<div class="output ' + num_class + '">' + "3" + '</div>';
$('#accumulate_table').append('<section id="accumulate_section" class="shadow"></scetion>');
$("#accumulate_section").append('추천 로또 번호(누적 상위 6개)'+'</font>'+'<br>'+'<br>');
for (i = 0; i < 6; i++) {
if (recom_number[i] <= 10) {
$('#accumulate_section').append('<div class="output c1">'+recom_number[i]+'</div>');
} else if (recom_number[i] <= 20) {
$('#accumulate_section').append('<div class="output c2">'+recom_number[i]+'</div>');
} else if (recom_number[i] <= 30) {
$('#accumulate_section').append('<div class="output c3">'+recom_number[i]+'</div>');
} else if (recom_number[i] <= 40) {
$('#accumulate_section').append('<div class="output c4">'+recom_number[i]+'</div>');
} else {
$('#accumulate_section').append('<div class="output c5">'+recom_number[i]+'</div>');
}
}
}
//현재 보이는 화면을 초기화함과 동시에 누적번호 또한 초기화 하기 위한 함수
function resets() {
$('#lottotable').html(""); //초기화
$('#accumulate_table').html(""); //초기화
$('#recom_table').html(""); //초기화
$('#stats').html(""); //초기화
for (i=0;i<45;i++){
acum_list[i]=0;
}
}