-
Notifications
You must be signed in to change notification settings - Fork 0
/
moteur.py
753 lines (656 loc) · 36.1 KB
/
moteur.py
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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
# -*- coding: utf-8 -*-
"""
Created on Sat Feb 22 02:11:25 2020
Moteur de match de foot
@author: alexa
"""
import random as rnd
import math
from copy import deepcopy
### NOM DES EQUIPES A CHARGER
# replace the argument list with a dictionary containinbg the parameters
def match_foot(metadata_dom, metadata_ext, arguments = {}):
"""
Génère un match de foot
Prend en entrée:
- les données de l'équipe à domicile
- les données de l'équipe à l'extérieur
- est-ce que les prolongations sont autorisées
- si il y a prolongations, y a-t-il un match aller à prendre en compte
- si il y a un match aller à prendre en compte, y a-t-il avantage aux
buts marqués à l'extérieur
- les tirs aux buts sont-ils autorisés
- le match se déroule-t-il sur terrain neutre
En sortie il renvoie un tuple contenant:
- le nombre de buts inscrits par l'équipe à domicile
- le nombre de buts inscrits par l'équipe à l'extérieur
- le détails des buts inscrits par l'équipe jouant à domicile
- le détails des buts inscrits par l'équipe jouant à l'extérieur
- le résultat des tirs aux buts
- le détail de la séance des tirs aux buts
"""
params = { 'prolongations' : False,
'agg_dom' : 0,
'agg_ext' : 0,
'buts_ext_2' : False,
'tab' : False,
'terrain_neutre' : False,
'bonus_dom' : 1.025,
'pen_threshold' : 0.08,
'proba_csc' : 0.003,
'penalty_term' : 2.0,
'proba_but_peno' : 0.7}
for k in arguments:
params[k] = arguments[k]
if params['terrain_neutre']:
params['bonus_dom'] = 1.000
### LECTURE DES FICHIERS AYANT LES INFOS DES DEUX EQUIPES
metadata_dom_copy = deepcopy(metadata_dom)
metadata_ext_copy = deepcopy(metadata_ext)
h=['','','','','']
a=['','','','','']
joueurs_h = [[],
[],
[],
[]
]
joueurs_a = [[],
[],
[],
[]
]
### EQUIPE DOMICILE
metadata_dom_copy.reverse()
h[0],_,_ = metadata_dom_copy.pop().split(';')
nb_df,nb_mil,nb_att,_ = metadata_dom_copy.pop().split(';')
formation_h = [1,int(nb_df),int(nb_mil),int(nb_att)]
metadata_dom_copy.reverse()
niv_joueurs_h_tmp = [{},{},{},{}]
pen_joueurs_h_tmp = [{},{},{},{}]
poids_joueurs_h = [{},{},{},{}]
tireurs_pen_h = []
for l in metadata_dom_copy:
nom, poste, niveau, tireur_peno,_ = l.split(';')
if '/' in poste:
postes_possibles = poste.split('/')
else:
postes_possibles = poste
if 'Gardien' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Gardien") == 0 else 0.8
poids_joueurs_h[0][nom] = int(niveau) * modifier
niv_joueurs_h_tmp[0][nom] = niveau
pen_joueurs_h_tmp[0][nom] = (tireur_peno == '1')
if 'Defenseur' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Defenseur") == 0 else 0.8
poids_joueurs_h[1][nom] = int(niveau) * modifier
niv_joueurs_h_tmp[1][nom] = niveau
pen_joueurs_h_tmp[1][nom] = (tireur_peno == '1')
if 'Milieu' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Milieu") == 0 else 0.8
poids_joueurs_h[2][nom] = int(niveau) * modifier
niv_joueurs_h_tmp[2][nom] = niveau
pen_joueurs_h_tmp[2][nom] = (tireur_peno == '1')
if 'Attaquant' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Attaquant") == 0 else 0.8
poids_joueurs_h[3][nom] = int(niveau) * modifier
niv_joueurs_h_tmp[3][nom] = niveau
pen_joueurs_h_tmp[3][nom] = (tireur_peno == '1')
for p in poids_joueurs_h:
value = round(0.8*min(p.values()))
for i in p:
p[i] = p[i]-value
force_joueurs = [[],[],[],[]]
bon_choix = False
while not bon_choix:
joueur_choisi = rnd.choices(list(niv_joueurs_h_tmp[0].keys()),
weights=list(poids_joueurs_h[0].values()), k=1)[0]
bon_choix = True
for ij in range(len(poids_joueurs_h)):
if ((joueur_choisi in poids_joueurs_h[ij]) &
(len(poids_joueurs_h[ij])==formation_h[ij]) & (ij > 0)):
bon_choix = False
joueurs_h[0].append(joueur_choisi)
h[1] = int(niv_joueurs_h_tmp[0][joueur_choisi])
if pen_joueurs_h_tmp[0][joueur_choisi]:
tireurs_pen_h.append(joueur_choisi)
for d in poids_joueurs_h:
d.pop(joueur_choisi, None)
for d in niv_joueurs_h_tmp:
d.pop(joueur_choisi, None)
for j in range(0,int(nb_df)):
bon_choix = False
while not bon_choix:
joueur_choisi = rnd.choices(list(niv_joueurs_h_tmp[1].keys()),
weights=list(poids_joueurs_h[1].values()), k=1)[0]
bon_choix = True
for ij in range(len(poids_joueurs_h)):
if ((joueur_choisi in poids_joueurs_h[ij]) &
(len(poids_joueurs_h[ij])==formation_h[ij]) & (ij > 1)):
bon_choix = False
joueurs_h[1].append(joueur_choisi)
force_joueurs[1].append(int(niv_joueurs_h_tmp[1][joueur_choisi]))
if pen_joueurs_h_tmp[1][joueur_choisi]:
tireurs_pen_h.append(joueur_choisi)
for d in poids_joueurs_h:
d.pop(joueur_choisi, None)
for d in niv_joueurs_h_tmp:
d.pop(joueur_choisi, None)
for j in range(0,int(nb_mil)):
bon_choix = False
while not bon_choix:
joueur_choisi = rnd.choices(list(niv_joueurs_h_tmp[2].keys()),
weights=list(poids_joueurs_h[2].values()), k=1)[0]
bon_choix = True
for ij in range(len(poids_joueurs_h)):
if ((joueur_choisi in poids_joueurs_h[ij]) &
(len(poids_joueurs_h[ij])==formation_h[ij]) & (ij > 2)):
bon_choix = False
joueurs_h[2].append(joueur_choisi)
force_joueurs[2].append(int(niv_joueurs_h_tmp[2][joueur_choisi]))
if pen_joueurs_h_tmp[2][joueur_choisi]:
tireurs_pen_h.append(joueur_choisi)
for d in poids_joueurs_h:
d.pop(joueur_choisi, None)
for d in niv_joueurs_h_tmp:
d.pop(joueur_choisi, None)
for j in range(0,int(nb_att)):
joueur_choisi = rnd.choices(list(niv_joueurs_h_tmp[3].keys()),
weights=list(poids_joueurs_h[3].values()), k=1)[0]
joueurs_h[3].append(joueur_choisi)
force_joueurs[3].append(int(niv_joueurs_h_tmp[3][joueur_choisi]))
if pen_joueurs_h_tmp[3][joueur_choisi]:
tireurs_pen_h.append(joueur_choisi)
for d in poids_joueurs_h:
d.pop(joueur_choisi, None)
for d in niv_joueurs_h_tmp:
d.pop(joueur_choisi, None)
if tireurs_pen_h == []:
tireurs_pen_h = [rnd.choice(joueurs_h[3])]
h[2] = nb_df+'x'+str(sum(force_joueurs[1])/int(nb_df))
h[3] = nb_mil+'x'+str(sum(force_joueurs[2])/int(nb_mil))
h[4] = nb_att+'x'+str(sum(force_joueurs[3])/int(nb_att))
### EQUIPE EXTERIEURE
metadata_ext_copy.reverse()
a[0],_,_ = metadata_ext_copy.pop().split(';')
nb_df,nb_mil,nb_att,_ = metadata_ext_copy.pop().split(';')
formation_a = [1,int(nb_df),int(nb_mil),int(nb_att)]
metadata_ext_copy.reverse()
niv_joueurs_a_tmp = [{},{},{},{}]
pen_joueurs_a_tmp = [{},{},{},{}]
poids_joueurs_a = [{},{},{},{}]
tireurs_pen_a = []
for l in metadata_ext_copy:
nom, poste, niveau, tireur_peno,_ = l.split(';')
if '/' in poste:
postes_possibles = poste.split('/')
else:
postes_possibles = poste
if 'Gardien' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Gardien") == 0 else 0.8
poids_joueurs_a[0][nom] = int(niveau) * modifier
niv_joueurs_a_tmp[0][nom] = niveau
pen_joueurs_a_tmp[0][nom] = (tireur_peno == '1')
if 'Defenseur' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Defenseur") == 0 else 0.8
poids_joueurs_a[1][nom] = int(niveau) * modifier
niv_joueurs_a_tmp[1][nom] = niveau
pen_joueurs_a_tmp[1][nom] = (tireur_peno == '1')
if 'Milieu' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Milieu") == 0 else 0.8
poids_joueurs_a[2][nom] = (int(niveau) * modifier)
niv_joueurs_a_tmp[2][nom] = niveau
pen_joueurs_a_tmp[2][nom] = (tireur_peno == '1')
if 'Attaquant' in postes_possibles:
modifier = 1.0 if postes_possibles.index("Attaquant") == 0 else 0.8
poids_joueurs_a[3][nom] = (int(niveau) * modifier)
niv_joueurs_a_tmp[3][nom] = niveau
pen_joueurs_a_tmp[3][nom] = (tireur_peno == '1')
for p in poids_joueurs_a:
value =round(0.8*min(p.values()))
for i in p:
p[i] = p[i]-value
force_joueurs = [[],[],[],[]]
bon_choix = False
while not bon_choix:
joueur_choisi = rnd.choices(list(niv_joueurs_a_tmp[0].keys()),
weights=list(poids_joueurs_a[0].values()), k=1)[0]
bon_choix = True
for ij in range(len(poids_joueurs_a)):
if ((joueur_choisi in poids_joueurs_a[ij]) &
(len(poids_joueurs_a[ij])==formation_a[ij]) & (ij > 0)):
bon_choix = False
joueurs_a[0].append(joueur_choisi)
a[1] = int(niv_joueurs_a_tmp[0][joueur_choisi])
if pen_joueurs_a_tmp[0][joueur_choisi]:
tireurs_pen_a.append(joueur_choisi)
for d in poids_joueurs_a:
d.pop(joueur_choisi, None)
for d in niv_joueurs_a_tmp:
d.pop(joueur_choisi, None)
for j in range(0,int(nb_df)):
bon_choix = False
while not bon_choix:
joueur_choisi = rnd.choices(list(niv_joueurs_a_tmp[1].keys()),
weights=list(poids_joueurs_a[1].values()), k=1)[0]
bon_choix = True
for ij in range(len(poids_joueurs_a)):
if ((joueur_choisi in poids_joueurs_a[ij]) &
(len(poids_joueurs_a[ij])==formation_a[ij]) & (ij > 1)):
bon_choix = False
joueurs_a[1].append(joueur_choisi)
force_joueurs[1].append(int(niv_joueurs_a_tmp[1][joueur_choisi]))
if pen_joueurs_a_tmp[1][joueur_choisi]:
tireurs_pen_a.append(joueur_choisi)
for d in poids_joueurs_a:
d.pop(joueur_choisi, None)
for d in niv_joueurs_a_tmp:
d.pop(joueur_choisi, None)
for j in range(0,int(nb_mil)):
bon_choix = False
while not bon_choix:
joueur_choisi = rnd.choices(list(niv_joueurs_a_tmp[2].keys()),
weights=list(poids_joueurs_a[2].values()), k=1)[0]
bon_choix = True
for ij in range(len(poids_joueurs_a)):
if ((joueur_choisi in poids_joueurs_a[ij]) &
(len(poids_joueurs_a[ij])==formation_a[ij]) & (ij > 2)):
bon_choix = False
joueurs_a[2].append(joueur_choisi)
force_joueurs[2].append(int(niv_joueurs_a_tmp[2][joueur_choisi]))
if pen_joueurs_a_tmp[2][joueur_choisi]:
tireurs_pen_a.append(joueur_choisi)
for d in poids_joueurs_a:
d.pop(joueur_choisi, None)
for d in niv_joueurs_a_tmp:
d.pop(joueur_choisi, None)
for j in range(0,int(nb_att)):
joueur_choisi = rnd.choices(list(niv_joueurs_a_tmp[3].keys()),
weights=list(poids_joueurs_a[3].values()), k=1)[0]
joueurs_a[3].append(joueur_choisi)
force_joueurs[3].append(int(niv_joueurs_a_tmp[3][joueur_choisi]))
if pen_joueurs_a_tmp[3][joueur_choisi]:
tireurs_pen_a.append(joueur_choisi)
for d in poids_joueurs_a:
d.pop(joueur_choisi, None)
for d in niv_joueurs_a_tmp:
d.pop(joueur_choisi, None)
if tireurs_pen_a == []:
tireurs_pen_a = [rnd.choice(joueurs_a[3])]
a[2] = nb_df+'x'+str(sum(force_joueurs[1])/int(nb_df))
a[3] = nb_mil+'x'+str(sum(force_joueurs[2])/int(nb_mil))
a[4] = nb_att+'x'+str(sum(force_joueurs[3])/int(nb_att))
### STATS DES EQUIPES
statistiques_h = { 'niveau_gb' : float(h[1]),
'niveau_df' : float(h[2].split('x')[1]),
'nb_df' : int(h[2].split('x')[0]),
'niveau_mil' : float(h[3].split('x')[1]),
'nb_mil' : int(h[3].split('x')[0]),
'niveau_att' : float(h[4].split('x')[1]),
'nb_att' : int(h[4].split('x')[0])
}
statistiques_a = { 'niveau_gb' : float(a[1]),
'niveau_df' : float(a[2].split('x')[1]),
'nb_df' : int(a[2].split('x')[0]),
'niveau_mil' : float(a[3].split('x')[1]),
'nb_mil' : int(a[3].split('x')[0]),
'niveau_att' : float(a[4].split('x')[1]),
'nb_att' : int(a[4].split('x')[0])
}
### DEFINITION DE STATISTIQUES DERIVEES
### TOUT D'ABORD LA BATAILLE DU MILIEU
statistiques_h['force_milieu'] = params['bonus_dom']*(statistiques_h['niveau_mil'] +
((statistiques_h['nb_mil']/(statistiques_h['nb_mil']+statistiques_a['nb_mil']))*100))/2
statistiques_a['force_milieu'] = (statistiques_a['niveau_mil'] +
((statistiques_a['nb_mil']/(statistiques_h['nb_mil']+statistiques_a['nb_mil']))*100))/2
repartition_m = ((statistiques_h['force_milieu']/(statistiques_h['force_milieu']+statistiques_a['force_milieu'])+0.5)**6)/2
### ENSUITE LA FORCE D'ATTAQUE PLACEE DES DEUX EQUIPES
force_att_brute_h = (2/3)*statistiques_h['niveau_att'] + (1/3)*statistiques_h['niveau_mil']
force_att_nb_h = ((statistiques_h['nb_att']+(statistiques_h['nb_mil']/2)) /
(statistiques_h['nb_att']+statistiques_a['nb_df']+(statistiques_h['nb_mil']/2)+(statistiques_a['nb_mil']/2)))
statistiques_h['force_att_domin'] = params['bonus_dom']*(force_att_brute_h+(100*force_att_nb_h))/2
force_att_brute_a = (2/3)*statistiques_a['niveau_att'] + (1/3)*statistiques_a['niveau_mil']
force_att_nb_a = ((statistiques_a['nb_att']+(statistiques_a['nb_mil']/2)) /
(statistiques_a['nb_att']+statistiques_h['nb_df']+(statistiques_h['nb_mil']/2)+(statistiques_a['nb_mil']/2)))
statistiques_a['force_att_domin'] = (force_att_brute_a+(100*force_att_nb_a))/2
### LA FORCE DE CONTRE DE CHAQUE EQUIPE
force_att_brute_h = (3/4)*statistiques_h['niveau_att'] + (1/4)*statistiques_h['niveau_mil']
force_att_nb_h = (((statistiques_h['nb_att']/2)+(statistiques_h['nb_mil']/3)) /
((statistiques_h['nb_att']/2)+(statistiques_a['nb_df']/2)+(statistiques_h['nb_mil']/3)+(statistiques_a['nb_mil']/3)))
statistiques_h['force_att_contre'] = params['bonus_dom']*(force_att_brute_h+(100*force_att_nb_h))/2
force_att_brute_a = (3/4)*statistiques_a['niveau_att'] + (1/4)*statistiques_a['niveau_mil']
force_att_nb_a = (((statistiques_a['nb_att']/2)+(statistiques_a['nb_mil']/3)) /
((statistiques_a['nb_att']/2)+(statistiques_h['nb_df']/2)+(statistiques_h['nb_mil']/3)+(statistiques_a['nb_mil']/3)))
statistiques_a['force_att_contre'] = (force_att_brute_a+(100*force_att_nb_a))/2
### FORCE DE DEFENSE D'ATTAQUE PLACEES
force_df_brute_h = (2/3)*statistiques_h['niveau_df'] + (1/3)*statistiques_h['niveau_mil']
force_df_nb_h = ((statistiques_h['nb_df']+(statistiques_h['nb_mil']/2)) /
(statistiques_h['nb_df']+statistiques_a['nb_att']+(statistiques_h['nb_mil']/2)+(statistiques_a['nb_mil']/2)))
statistiques_h['force_df_domin'] = params['bonus_dom']*(force_df_brute_h+(100*force_df_nb_h))/2
force_df_brute_a = (2/3)*statistiques_a['niveau_df'] + (1/3)*statistiques_a['niveau_mil']
force_df_nb_a = ((statistiques_a['nb_df']+(statistiques_a['nb_mil']/2)) /
(statistiques_a['nb_df']+statistiques_h['nb_att']+(statistiques_h['nb_mil']/2)+(statistiques_a['nb_mil']/2)))
statistiques_a['force_df_domin'] = (force_df_brute_a+(100*force_df_nb_a))/2
### FORCE DE DEFENSE SUR CONTRES
force_df_brute_h = (3/4)*statistiques_h['niveau_df'] + (1/4)*statistiques_h['niveau_mil']
force_df_nb_h = (((statistiques_h['nb_df']/2)+(statistiques_h['nb_mil']/3)) /
((statistiques_h['nb_df']/2)+(statistiques_a['nb_att']/2)+(statistiques_h['nb_mil']/3)+(statistiques_a['nb_mil']/3)))
statistiques_h['force_df_contre'] = params['bonus_dom']*(force_df_brute_h+(100*force_df_nb_h))/2
force_df_brute_a = (3/4)*statistiques_a['niveau_df'] + (1/4)*statistiques_a['niveau_mil']
force_df_nb_a = (((statistiques_a['nb_df']/2)+(statistiques_a['nb_mil']/3)) /
((statistiques_a['nb_df']/2)+(statistiques_h['nb_att']/2)+(statistiques_h['nb_mil']/3)+(statistiques_a['nb_mil']/3)))
statistiques_a['force_df_contre'] = (force_df_brute_a+(100*force_df_nb_a))/2
### LES FORCES DE TIRS DES DEUX EQUIPES
force_tir_domin_h = statistiques_h['nb_att']/(statistiques_h['nb_att']+statistiques_a['nb_df']+1)
force_tir_contre_h = statistiques_h['nb_att']/(statistiques_h['nb_att']+(statistiques_a['nb_df']/2)+1)
statistiques_h['force_tir_domin'] = params['bonus_dom']*(statistiques_h['niveau_att']+(100*force_tir_domin_h))/2
statistiques_h['force_tir_contre'] = params['bonus_dom']*(statistiques_h['niveau_att']+(100*force_tir_contre_h))/2
force_tir_domin_a = statistiques_a['nb_att']/(statistiques_a['nb_att']+statistiques_h['nb_df']+1)
force_tir_contre_a = statistiques_a['nb_att']/(statistiques_a['nb_att']+(statistiques_h['nb_df']/2)+1)
statistiques_a['force_tir_domin'] = (statistiques_a['niveau_att']+(100*force_tir_domin_a))/2
statistiques_a['force_tir_contre'] = (statistiques_a['niveau_att']+(100*force_tir_contre_a))/2
### LES FORCES DE GARDIEN DES DEUX EQUIPES
### D'ABORD CONTRES DES ATATQUES PLACESS
force_gb_brute_h = (2/3)*statistiques_h['niveau_gb'] + (1/3)*statistiques_h['niveau_df']
force_gb_nb_h = (1+statistiques_h['nb_df'])/(1+statistiques_h['nb_df']+statistiques_a['nb_att'])
statistiques_h['force_gb_domin'] = params['bonus_dom']*(force_gb_brute_h+(100*force_df_nb_h))/2
force_gb_brute_a = (2/3)*statistiques_a['niveau_gb'] + (1/3)*statistiques_a['niveau_df']
force_gb_nb_a = (1+statistiques_a['nb_df'])/(1+statistiques_a['nb_df']+statistiques_h['nb_att'])
statistiques_a['force_gb_domin'] = (force_gb_brute_a+(100*force_df_nb_a))/2
### ENSUITE FACE A DES CONTRES
force_gb_brute_h = (3/4)*statistiques_h['niveau_gb'] + (1/4)*statistiques_h['niveau_df']
force_gb_nb_h = (1+(statistiques_h['nb_df']/2))/(1+(statistiques_h['nb_df']/2)+statistiques_a['nb_att'])
statistiques_h['force_gb_contre'] = params['bonus_dom']*(force_gb_brute_h+(100*force_gb_nb_h))/2
force_gb_brute_a = (3/4)*statistiques_a['niveau_gb'] + (1/4)*statistiques_a['niveau_df']
force_gb_nb_a = (1+(statistiques_a['nb_df']/2))/(1+(statistiques_a['nb_df']/2)+statistiques_h['nb_att'])
statistiques_a['force_gb_contre'] = (force_gb_brute_a+(100*force_gb_nb_a))/2
### CE QUI DONNE DES PROBABILITES DE MARQUER ET D'OBTENIR UN CERTAIN NOMBRE DE TIRS
statistiques_h['nb_tir_domin'] = max(0.1,1 + math.log(statistiques_h['force_att_domin'] /
(statistiques_h['force_att_domin']+statistiques_a['force_df_domin'])))
statistiques_h['chance_but_domin'] = (statistiques_h['force_tir_domin'] /
(statistiques_h['force_tir_domin']+statistiques_a['force_gb_domin']))
statistiques_h['nb_tir_contre'] = max(0.1,1 + math.log(statistiques_h['force_att_contre'] /
(statistiques_h['force_att_contre']+statistiques_a['force_df_contre'])))
statistiques_h['chance_but_contre'] = (statistiques_h['force_tir_contre'] /
(statistiques_h['force_tir_contre']+statistiques_a['force_gb_contre']))
statistiques_a['nb_tir_domin'] = max(0.1,1 + math.log(statistiques_a['force_att_domin'] /
(statistiques_a['force_att_domin']+statistiques_h['force_df_domin'])))
statistiques_a['chance_but_domin'] = (statistiques_a['force_tir_domin'] /
(statistiques_a['force_tir_domin']+statistiques_h['force_gb_domin']))
statistiques_a['nb_tir_contre'] = max(0.1,1 + math.log(statistiques_a['force_att_contre'] /
(statistiques_a['force_att_contre']+statistiques_h['force_df_contre'])))
statistiques_a['chance_but_contre'] = (statistiques_a['force_tir_contre'] /
(statistiques_a['force_tir_contre']+statistiques_h['force_gb_contre']))
### DEFINITION DU SCORE ET DU TEMPS
score = {'h': 0, 'a': 0}
temps=[range(0,50,5),range(0,50,5)]
### ON VA AUSSI ENREGISTRER QUELQUES STATS SUR LE MATCH
statistiques_h['nb tirs'] = 0
statistiques_h['domination'] = 0
statistiques_h['buteurs'] = []
statistiques_a['nb tirs'] = 0
statistiques_a['domination'] = 0
statistiques_a['buteurs'] = []
mi_temps = 0
for half in temps:
for time in half:
who_dominates = rnd.random()
dominator = 'h'
counter = 'a'
dico_domin = statistiques_h
dico_contre = statistiques_a
joueurs_domin = joueurs_h
joueurs_contre = joueurs_a
pen_domin = tireurs_pen_h
pen_contre = tireurs_pen_a
if who_dominates > repartition_m:
dominator = 'a'
counter = 'h'
dico_domin = statistiques_a
dico_contre = statistiques_h
joueurs_domin = joueurs_a
joueurs_contre = joueurs_h
pen_domin = tireurs_pen_a
pen_contre = tireurs_pen_h
dico_domin['domination'] += 1
nb_tir_domin = round(abs(rnd.random() - 0.5)*dico_domin['nb_tir_domin']*10)
dico_domin['nb tirs'] += nb_tir_domin
nb_tir_contre = round(abs(rnd.random() - 0.5)*dico_contre['nb_tir_contre']*5)
dico_contre['nb tirs'] += nb_tir_contre
minutes = []
for m in range(1,6):
minutes.append(m+time+mi_temps)
for i in range(0,nb_tir_domin):
is_but = rnd.random() <= dico_domin['chance_but_domin']**params['penalty_term']
if is_but:
score[dominator]+=1
csc = rnd.random() <= params['proba_csc']
marker = ''
poste_buteur = rnd.random()
if csc:
marker = ' c.s.c.'
if poste_buteur <= 1/11:
buteur = joueurs_contre[0][0]
elif (poste_buteur > 1/11) & (poste_buteur <= (1+dico_contre['nb_df'])/11):
buteur = rnd.choice(joueurs_contre[1])
elif (poste_buteur > (1+dico_contre['nb_df'])/11) & (poste_buteur > (1+dico_contre['nb_df']+
dico_contre['nb_att'])/11):
buteur = rnd.choice(joueurs_contre[2])
else:
buteur = rnd.choice(joueurs_contre[3])
else:
pen = rnd.random() <= params['pen_threshold']
if pen:
marker = ' s.p.'
buteur = rnd.choice(pen_domin)
else:
but_att = (1.5*statistiques_h['nb_att']/5)
if poste_buteur < but_att:
buteur = rnd.choice(joueurs_domin[3])
elif poste_buteur >= 1-((1-but_att)/3):
buteur = rnd.choice(joueurs_domin[1])
else:
buteur = rnd.choice(joueurs_domin[2])
chosen_minute = rnd.choice(minutes)
minutes.remove(chosen_minute)
if minutes == []:
for m in range(1,6):
minutes.append(m+time+mi_temps)
if (mi_temps == 0 and chosen_minute > 45) or (mi_temps == 45 and chosen_minute > 90):
dico_domin['buteurs'].append(buteur+', '+str(mi_temps+45)+'+'+
str(chosen_minute-(mi_temps+45))+marker)
else:
dico_domin['buteurs'].append(buteur+', '+str(chosen_minute)+marker)
for j in range(0,nb_tir_contre):
is_but = rnd.random() <= dico_contre['chance_but_contre']**params['penalty_term']
if is_but:
score[counter]+=1
csc = rnd.random() <= params['proba_csc']
marker = ''
poste_buteur = rnd.random()
if csc:
marker = ' c.s.c.'
poste_buteur = rnd.random()
if poste_buteur <= 1/(dico_domin['nb_df']+(dico_domin['nb_mil']/2)):
buteur = joueurs_domin[0][0]
elif poste_buteur > (dico_domin['nb_mil']/2)/(dico_domin['nb_df']+(dico_domin['nb_mil']/2)):
buteur = rnd.choice(joueurs_domin[2])
else:
buteur = rnd.choice(joueurs_domin[1])
else:
pen = rnd.random() <= params['pen_threshold']
if pen:
marker = ' s.p.'
buteur = rnd.choice(pen_contre)
else:
but_att = 2*statistiques_h['nb_att']/5
if poste_buteur < but_att:
buteur = rnd.choice(joueurs_contre[3])
elif poste_buteur >= 1-((1-but_att)/6):
buteur = rnd.choice(joueurs_contre[1])
else:
buteur = rnd.choice(joueurs_contre[2])
chosen_minute = rnd.choice(minutes)
minutes.remove(chosen_minute)
if minutes == []:
for m in range(1,6):
minutes.append(m+time+mi_temps)
if (mi_temps == 0 and chosen_minute > 45) or (mi_temps == 45 and chosen_minute > 90):
dico_contre['buteurs'].append(buteur+', '+str(mi_temps+45)+'+'+str(chosen_minute-(mi_temps+45))+marker)
else:
dico_contre['buteurs'].append(buteur+', '+str(chosen_minute)+marker)
mi_temps = 45
a_p = False
if params['prolongations']:
if (((not params['buts_ext_2']) & (params['agg_dom']+score['h'] == params['agg_ext']+score['a'])) |
((params['buts_ext_2']) & (params['agg_dom'] == score['a'])
& (params['agg_ext'] == score['h']))):
a_p = True
temps_prol=[range(0,15,5),range(0,15,5)]
prol_mi_temps = 0
for half in temps_prol:
for time in half:
who_dominates = rnd.random()
dominator = 'h'
counter = 'a'
dico_domin = statistiques_h
dico_contre = statistiques_a
joueurs_domin = joueurs_h
joueurs_contre = joueurs_a
pen_domin = tireurs_pen_h
pen_contre = tireurs_pen_a
if who_dominates > repartition_m:
dominator = 'a'
counter = 'h'
dico_domin = statistiques_a
dico_contre = statistiques_h
joueurs_domin = joueurs_a
joueurs_contre = joueurs_h
pen_domin = tireurs_pen_a
pen_contre = tireurs_pen_h
dico_domin['domination'] += 1
nb_tir_domin = round(abs(rnd.random() - 0.5)*dico_domin['nb_tir_domin']*10)
dico_domin['nb tirs'] += nb_tir_domin
nb_tir_contre = round(abs(rnd.random() - 0.5)*dico_contre['nb_tir_contre']*5)
dico_contre['nb tirs'] += nb_tir_contre
minutes = []
for m in range(1,6):
minutes.append(m+time+90+prol_mi_temps)
for i in range(0,nb_tir_domin):
is_but = rnd.random() <= dico_domin['chance_but_domin']**params['penalty_term']
if is_but:
score[dominator]+=1
csc = rnd.random() <= params['proba_csc']
marker = ''
poste_buteur = rnd.random()
if csc:
marker = ' c.s.c.'
if poste_buteur <= 1/11:
buteur = joueurs_contre[0][0]
elif (poste_buteur > 1/11) & (poste_buteur <= (1+dico_contre['nb_df'])/11):
buteur = rnd.choice(joueurs_contre[1])
elif (poste_buteur > (1+dico_contre['nb_df'])/11) & (poste_buteur > (1+dico_contre['nb_df']+
dico_contre['nb_att'])/11):
buteur = rnd.choice(joueurs_contre[2])
else:
buteur = rnd.choice(joueurs_contre[3])
else:
pen = rnd.random() <= params['pen_threshold']
if pen:
marker = ' s.p.'
buteur = rnd.choice(pen_domin)
else:
but_att = (1.5*statistiques_h['nb_att']/5)
if poste_buteur < but_att:
buteur = rnd.choice(joueurs_domin[3])
elif poste_buteur >= 1-((1-but_att)/3):
buteur = rnd.choice(joueurs_domin[1])
else:
buteur = rnd.choice(joueurs_domin[2])
chosen_minute = rnd.choice(minutes)
minutes.remove(chosen_minute)
if minutes == []:
for m in range(1,6):
minutes.append(m+time+prol_mi_temps+90)
dico_domin['buteurs'].append(buteur+', '+str(chosen_minute)+marker)
for j in range(0,nb_tir_contre):
is_but = rnd.random() <= dico_contre['chance_but_contre']**params['penalty_term']
if is_but:
score[counter]+=1
csc = rnd.random() <= params['proba_csc']
marker = ''
poste_buteur = rnd.random()
if csc:
marker = ' c.s.c.'
poste_buteur = rnd.random()
if poste_buteur <= 1/(dico_domin['nb_df']+(dico_domin['nb_mil']/2)):
buteur = joueurs_domin[0][0]
elif poste_buteur > (dico_domin['nb_mil']/2)/(dico_domin['nb_df']+(dico_domin['nb_mil']/2)):
buteur = rnd.choice(joueurs_domin[2])
else:
buteur = rnd.choice(joueurs_domin[1])
else:
pen = rnd.random() <= params['pen_threshold']
if pen:
marker = ' s.p.'
buteur = rnd.choice(pen_contre)
else:
but_att = 2*statistiques_h['nb_att']/5
if poste_buteur < but_att:
buteur = rnd.choice(joueurs_contre[3])
elif poste_buteur >= 1-((1-but_att)/6):
buteur = rnd.choice(joueurs_contre[1])
else:
buteur = rnd.choice(joueurs_contre[2])
chosen_minute = rnd.choice(minutes)
minutes.remove(chosen_minute)
if minutes == []:
for m in range(1,6):
minutes.append(m+time+prol_mi_temps+90)
dico_contre['buteurs'].append(buteur+', '+str(chosen_minute)+marker)
prol_mi_temps = 15
score_tabs = {'h' : 0,
'a': 0}
res_tireurs = {'h' : [],
'a' : []}
if params['tab']:
if (((not params['buts_ext_2']) & (params['agg_dom']+score['h'] == params['agg_ext']+score['a'])) |
((params['buts_ext_2']) & (params['agg_dom'] == score['a'])
& (params['agg_ext'] == score['h']))):
premiere_equipe = rnd.choice(['h', 'a'])
equipe_actuelle = premiere_equipe
equipe_attendant = 'h' if (equipe_actuelle == 'a') else 'a'
nb_tirs = 0
victoire = False
tireurs = { 'h' : joueurs_h[1]+joueurs_h[2]+joueurs_h[3],
'a' : joueurs_a[1]+joueurs_a[2]+joueurs_a[3]}
rnd.shuffle(tireurs['h'])
rnd.shuffle(tireurs['a'])
tireurs['h'] = tireurs['h']+joueurs_h[0]
tireurs['a'] = tireurs['a']+joueurs_a[0]
while victoire == False:
if premiere_equipe == equipe_actuelle:
nb_tirs += 1
but = rnd.random() <= params['proba_but_peno']
if but:
score_tabs[equipe_actuelle] += 1
res_tireurs[equipe_actuelle].append([tireurs[equipe_actuelle][(nb_tirs-1)%11], but])
if ((nb_tirs == 3) & (premiere_equipe != equipe_actuelle) &
(abs(score_tabs[equipe_actuelle]-score_tabs[equipe_attendant]) == 3)):
victoire = True
elif ((nb_tirs == 4) & (premiere_equipe == equipe_actuelle) &
((score_tabs[equipe_actuelle]-score_tabs[equipe_attendant] > 2) |
(score_tabs[equipe_attendant]-score_tabs[equipe_actuelle] >= 2))):
victoire = True
elif ((nb_tirs == 4) & (premiere_equipe != equipe_actuelle) &
(abs(score_tabs[equipe_actuelle]-score_tabs[equipe_attendant]) > 1)):
victoire = True
elif ((nb_tirs == 5) & (premiere_equipe == equipe_actuelle) &
((score_tabs[equipe_actuelle]-score_tabs[equipe_attendant] > 1) |
(score_tabs[equipe_attendant]-score_tabs[equipe_actuelle] >= 1))):
victoire = True
elif ((nb_tirs >= 5) & (premiere_equipe != equipe_actuelle) &
(score_tabs[equipe_actuelle] != score_tabs[equipe_attendant])):
victoire = True
equipe_actuelle, equipe_attendant = equipe_attendant, equipe_actuelle
return(score['h'],score['a'],statistiques_h['buteurs'],statistiques_a['buteurs'],
a_p, score_tabs, res_tireurs)