forked from coti/classement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
classement.py
executable file
·788 lines (663 loc) · 22 KB
/
classement.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
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" Outil de recuperation du classement.
"
" :copyright: Copyright 2013-2015, see AUTHORS
" Copyright 2013-2015, voir AUTHORS
" :licence: CeCILL-C or LGPL, see COPYING for details.
" CeCILL-C ou LGPL, voir COPYING pour plus de details.
"
"
" TODO:
" - Prise en compte des formats courts
" - Joli formattage de sortie
"""
classementNumerique = { "S" : -1,
"NC" : 0,
"40" : 1,
"30/5" : 2,
"30/4" : 3,
"30/3" : 4,
"30/2" : 5,
"30/1" : 6,
"30" : 7,
"15/5" : 8,
"15/4" : 9,
"15/3" : 10,
"15/2" : 11,
"15/1" : 12,
"15" : 13,
"5/6" : 14,
"4/6" : 15,
"3/6" : 16,
"2/6" : 17,
"1/6" : 18,
"0" : 19,
"-2/6" : 20,
"-4/6" : 21,
"-15" : 22,
"-30" : 23,
"Promo" : 24,
"1S" : 25}
points = { -3 : 15,
-2 : 20,
-1 : 30,
0 : 60,
1 : 90,
2 : 120 }
maintienF = { "NC" : 0,
"40" : 0,
"30/5" : 6,
"30/4" : 70,
"30/3" : 120,
"30/2" : 170,
"30/1" : 210,
"30" : 260,
"15/5" : 290,
"15/4" : 300,
"15/3" : 310,
"15/2" : 330,
"15/1" : 350,
"15" : 400,
"5/6" : 400,
"4/6" : 430,
"3/6" : 490,
"2/6" : 550,
"1/6" : 600,
"0" : 700,
"-2/6" : 740,
"-4/6" : 750,
"-15" : 800,
"-30" : 850,
"Promo" : 910,
"1S" : 5000}
maintienH = { "NC" : 0,
"40" : 0,
"30/5" : 6,
"30/4" : 70,
"30/3" : 120,
"30/2" : 170,
"30/1" : 210,
"30" : 280,
"15/5" : 300,
"15/4" : 310,
"15/3" : 320,
"15/2" : 340,
"15/1" : 370,
"15" : 430,
"5/6" : 430,
"4/6" : 430,
"3/6" : 480,
"2/6" : 490,
"1/6" : 540,
"0" : 600,
"-2/6" : 750,
"-4/6" : 850,
"-15" : 950,
"-30" : 1000,
"Promo" : 1100,
"1S" : 5000}
victoiresF = { "NC" : 6,
"40" : 6,
"30/5" : 6,
"30/4" : 6,
"30/3" : 6,
"30/2" : 6,
"30/1" : 6,
"30" : 8,
"15/5" : 8,
"15/4" : 8,
"15/3" : 8,
"15/2" : 8,
"15/1" : 8,
"15" : 9,
"5/6" : 9,
"4/6" : 9,
"3/6" : 10,
"2/6" : 11,
"1/6" : 12,
"0" : 14,
"-2/6" : 15,
"-4/6" : 16,
"-15" : 17,
"-30" : 17,
"Promo" : 19,
"1S" : 19}
victoiresH = { "NC" : 6,
"40" : 6,
"30/5" : 6,
"30/4" : 6,
"30/3" : 6,
"30/2" : 6,
"30/1" : 6,
"30" : 8,
"15/5" : 8,
"15/4" : 8,
"15/3" : 8,
"15/2" : 8,
"15/1" : 8,
"15" : 9,
"5/6" : 9,
"4/6" : 9,
"3/6" : 10,
"2/6" : 10,
"1/6" : 11,
"0" : 12,
"-2/6" : 15,
"-4/6" : 17,
"-15" : 19,
"-30" : 20,
"Promo" : 22,
"1S" : 22}
serie = { "NC" : 4,
"40" : 4,
"30/5" : 4,
"30/4" : 4,
"30/3" : 4,
"30/2" : 4,
"30/1" : 4,
"30" : 3,
"15/5" : 3,
"15/4" : 3,
"15/3" : 3,
"15/2" : 3,
"15/1" : 3,
"15" : 2,
"5/6" : 2,
"4/6" : 2,
"3/6" : 2,
"2/6" : 2,
"1/6" : 2,
"0" : -2,
"-2/6" : -2,
"-4/6" : -2,
"-15" : -2,
"-30" : -2,
"Promo" : -2,
"1S" : 1}
# affiche le classement calculé d'un joueur
def afficheClassement( origine, calcul, harmonise ):
print " ==> Classement de sortie : ", calcul, " - Harmonisé : " , harmonise, " - classement d\'origine : ", origine
return
# calcule le V - E - 2I - 5G
def VE2I5G( classement, victoires, defaites ):
v = len( victoires )
print "V = ", v, " (Nombre de victoires)"
e = nbInf( classement, defaites, 0 )
print "E = ", e, " (Nb de défaites à échelon égal)"
i = nbInf( classement, defaites, 1 )
print "I = ", i, " (Nb de défaites à échelon -1)"
g = nbInf( classement, defaites, -1 )
print "G = ", g, " (Nb de défaites à échelons <= -2 et par w.o à partir du 3e)"
return ( v - e - 2*i - 5*g )
# Calcule le nb de defaites E echelons en-dessous
def nbInf( myClassement, defaites, E ):
global classementNumerique
lst = []
nb = 0
for i in defaites:
if( E >= 0 ) :
if not i[1]: # exclure les WO
if( classementNumerique[ i[0] ] == ( classementNumerique[ myClassement ] - E ) ):
lst.append( i[0] )
nb = nb+1
else:
if not i[1] or i[0] == "S": # exclure les WO sauf à partir du 3eme
if( classementNumerique[ i[0] ] <= ( classementNumerique[ myClassement ] - 2 ) ):
lst.append( i[0] )
nb = nb+1
print lst
return nb
# Retourne le nombre de points apportes par une victoire
def pointsVictoire( myClassement, classementBattu ):
global classementNumerique
global points
diff = classementNumerique[ classementBattu ] - classementNumerique[ myClassement ]
if( diff < -3 ):
return 0
else:
if( diff > 2 ):
diff = 2
return points[ diff ]
# Retourne le nombre de victoires prises en compte
def nbVictoiresComptant( myClassement, sexe, myVictoires, myDefaites ):
global serie
global victoiresH
global victoiresF
if( "H" == sexe ):
victoires = victoiresH
else:
victoires = victoiresF
nb = victoires[ myClassement ]
v = VE2I5G( myClassement, myVictoires, myDefaites )
print "V - E - 2I - 5G : ", v
add = 0
if( 4 == serie[ myClassement ] ):
if( v < 0 ) :
add = 0
elif( v >= 0 and v <= 4 ):
add = 1
elif( v >= 5 and v <= 9 ):
add = 2
elif( v >= 10 and v <= 14 ):
add = 3
elif( v >= 15 and v <= 19 ):
add = 4
elif( v >= 20 and v <= 24 ):
add = 5
elif( v >= 25 ):
add = 6
elif( 3 == serie[ myClassement ] ):
if( v < 0 ) :
add = 0
elif( v >= 0 and v <= 7 ):
add = 1
elif( v >= 8 and v <= 14 ):
add = 2
elif( v >= 15 and v <= 22 ):
add = 3
elif( v >= 23 and v <= 29 ):
add = 4
elif( v >= 30 and v <= 39 ):
add = 5
elif( v >= 40 ):
add = 6
elif( 2 == serie[ myClassement ] ):
if( v < -41 ) :
add = -3
elif( v >= -40 and v <= -31 ):
add = -2
elif( v >= -30 and v <= -21 ):
add = -1
elif( v >= -1 and v <= -20 ):
add = 0
elif( v >= 0 and v <= 7 ):
add = 1
elif( v >= 8 and v <= 14 ):
add = 2
elif( v >= 15 and v <= 22 ):
add = 3
elif( v >= 23 and v <= 29 ):
add = 4
elif( v >= 30 and v <= 39 ):
add = 5
elif( v >= 40 ):
add = 6
elif( -2 == serie[ myClassement ] ):
if( v < -81 ) :
add = -4
elif( v >= -80 and v <= 61 ):
add = -4
elif( v >= -60 and v <= -41 ):
add = -3
elif( v >= -31 and v <= -40 ):
add = -2
elif( v >= -21 and v <= -30 ):
add = -1
elif( v >= -1 and v <= -20 ):
add = 0
elif( v >= 0 and v <= 9 ):
add = 1
elif( v >= 10 and v <= 19 ):
add = 2
elif( v >= 20 and v <= 24 ):
add = 3
elif( v >= 25 and v <= 29 ):
add = 4
elif( v >= 30 and v <= 34 ):
add = 5
elif( v >= 35 and v <= 44 ):
add = 6
elif( v >= 45 ):
add = 7
else: # 1S et promo
add = 0
return nb + add
# Calcule les points a un classement donne
def calculPoints( myClassement, sexe, myVictoires, myDefaites, nbVicChampIndiv ):
nbV = nbVictoiresComptant( myClassement, sexe, myVictoires, myDefaites )
sortedVictoires = sortVictoires( myVictoires )
victoiresComptant = victoiresQuiComptent( sortedVictoires, nbV )
# victoiresComptant = sortedVictoires[:nbV]
print "Victoires prises en compte (", nbV,") : ", victoiresComptant
nbPoints = 0
for v in victoiresComptant:
nbPoints = nbPoints + pointsVictoire( myClassement, v )
# Bonifs
nb = nbWO( myVictoires )
bonifAbsenceDefaitesPossible = ( ( len( myVictoires ) - nb ) >= 5 )
bonif = 0
if True == bonifAbsenceDefaitesPossible:
global serie
if serie[ myClassement ] == 2:
if True == absenceDef( myDefaites, myClassement ):
bonif =150
if serie[ myClassement ] == 3:
if True == absenceDef( myDefaites, myClassement ):
bonif = 100
if myClassement == '30/2' or myClassement == '30/1' :
if True == absenceDef( myDefaites, myClassement ):
bonif = 50
if bonif != 0:
print "Bonif absence de defaite significative: ", bonif
nbPoints = nbPoints + bonif
if nbVicChampIndiv > 3:
nbVicChampIndiv = 3
bonif = nbVicChampIndiv * 15
nbPoints = nbPoints + bonif
if bonif != 0:
print "Bonif championnat indiv: ", bonif
return nbPoints
# Trie les victoires par ordre decroissant
def sortVictoires( myVictoires ):
global classementNumerique
if 0 == len( myVictoires ):
return []
dicVictoires = {}
pairVictoires = []
sortedVictoires = []
for v in myVictoires:
pairVictoires.append( ( v[0], classementNumerique[ v[0] ], v[1] ) )
dicVictoires[ v[0] ] = classementNumerique[ v[0] ]
sortedValues = sorted( dicVictoires.values(), reverse=True )
for s in sortedValues:
for k, v, w in pairVictoires:
if( v == s ):
sortedVictoires.append( ( k, w ) )
return sortedVictoires
# Teste si les points de maintien sont atteints pour le classement
def maintienOK( myClassement, mySexe, myPoints ):
global maintienH
global maintienF
if( 'H' == mySexe ):
maintien = maintienH
else:
maintien = maintienF
print "Points acquis : ", myPoints, " - points nécessaires pour le maintien a ", myClassement, " : ", maintien[ myClassement ]
if( maintien[ myClassement ] > myPoints ):
return False
else:
return True
# Plus gros classement battu
def plusGrosseVictoire( myVictoires ):
if 0 == len( myVictoires ):
return None
sorted = sortVictoires( myVictoires )
for v in sorted:
if v[1] != True:
return v[0]
# Plus gros classement battu + E echelons
def plusGrosseVictoirePlusN( myVictoires, E ):
global classementNumerique
if 0 == len( myVictoires ):
return None
grosse = plusGrosseVictoire( myVictoires )
if grosse == "Promo" or grosse == "1S":
return "1S"
else:
for( k, v ) in classementNumerique.iteritems():
if( k == grosse ):
for( k_, v_ ) in classementNumerique.iteritems():
if( v_ == v + E ):
return k_
# Echelon inferieur au classement d'entree
def echelonInferieur( myClassement ):
global classementNumerique
v = classementNumerique[ myClassement ]
if( v == 0 ):
return 0
for( k_, v_ ) in classementNumerique.iteritems():
if( v_ == v - 1 ):
return k_
# Classement propose au premier tour
def classementPropose1erTour( myVictoires, myClassement ):
global serie
global classementNumerique
grosse = plusGrosseVictoire( myVictoires )
if( 4 == serie[ grosse ] ):
plus = plusGrosseVictoirePlusN( myVictoires, 2 )
else:
plus = plusGrosseVictoirePlusN( myVictoires, 1 )
if classementNumerique[ plus ] > classementNumerique[ myClassement ]:
return plus
else:
return myClassement
# Normalise un classement
def normalisation( cl, sexe ):
classement = cl[0]
c = classement.split( ) # certains classements ont des precisions, e.g. 'NC (2014)' -> garder uniquement la 1ere partie
if len( c ) > 1:
classement = c[0]
cl[0] = c[0]
if len( classement ) < 2:
return cl
o = classement
if estNumerote( classement ):
# on est sur un numerote
s = classement[1:]
n = int( s )
if 'H' == sexe:
if n <= 30:
o = "1S"
else:
o = "Promo"
else:
if n <= 20:
o = "1S"
else:
o = "Promo"
else:
if "PROMO" == classement or "promo" == classement :
o = "Promo"
return o, cl[1]
# determine si le joueur est numéroté
def estNumerote( classement ):
if ( 'T' == classement[0] ) or ( 'N' == classement[0] and 'C' != classement[1] ):
return True
else:
return False
# Conversion des numerotes en "Promo" ou "1S"
def normalisationTab( tab, sexe ):
tabSortie = []
for c in tab:
o = normalisation( c, sexe )
tabSortie.append( o )
return tabSortie
# Compter le nombre de wo
def nbWO( tab ):
n = 0
for t in tab:
if t[1]:
n = n + 1
return n
# Insertion de la penalite wo : a partir de 3, tout wo compte comme une defaite significative
def penaliteWO( defaites ):
_def = []
w = 0
for d in defaites:
if d[1] == True:
w = w + 1
if w >= 3:
o = ( 'S', d[1] )
# on insere une defaite qu'on appelle S pour que ca compte comme une def significative
print "Defaite significative ajoutée (wo)"
else:
o = d
else:
o = d
_def.append( o )
return defaites
# Absence de defaite significative ?
def absenceDef( defaites, classement ):
global classementNumerique
for d in defaites:
# if 'S' != d: # on exclu les wo
if d[1] == False:
if( classementNumerique[ d[0] ] <= ( classementNumerique[ classement ] ) ):
return False
return True
# Victoires comptant : on supprime les wo
def victoiresQuiComptent( vic, nb ):
tab = []
for v in vic:
if False == v[1] :
tab.append( v[0] )
return tab[:nb]
# Calcul du classement
def calculClassement( myVictoires, myDefaites, mySexe, myClassement, nbVicChampIndiv ):
ok = False
if estNumerote( myClassement ):
print "Cas particulier : le joueur est numéroté. On le calcule au meme classement."
afficheClassement( myClassement, myClassement, myClassement )
return ( myClassement, myClassement )
if 0 == len( victoiresQuiComptent( myVictoires, len( myVictoires ) ) ):
if( 'NC' == myClassement ):
if 0 != len( myDefaites ):
afficheClassement( myClassement, '40', '40' )
return ( '40', '40' )
else:
afficheClassement( myClassement, '40', '40' )
return ( 'NC', 'NC' )
else:
cl = echelonInferieur( myClassement )
if 'NC' == cl:
if 0 != len( myDefaites ):
afficheClassement( myClassement, '40', '40' )
return ( '40', '40' )
else:
afficheClassement( myClassement, '40', '40' )
return ( 'NC', 'NC' )
else:
afficheClassement( myClassement, cl, cl )
return ( cl, cl )
myVictoires = normalisationTab( myVictoires, mySexe )
myDefaites = normalisationTab( myDefaites, mySexe )
# Insertion de la penalite wo
if nbWO( myDefaites ) >= 3:
myDefaites = penaliteWO( myDefaites )
myClassement = normalisation( myClassement, mySexe )
classementPropose = classementPropose1erTour( myVictoires, myClassement )
borneInf = echelonInferieur( myClassement ) # on ne peut pas descendre plus d'un echelon en-dessous
while( ( False == ok ) and ( "NC" != classementPropose ) and not ( classementPropose is borneInf ) ):
print " ==> Classement proposé : ", classementPropose
pt = calculPoints( classementPropose, mySexe, myVictoires, myDefaites, nbVicChampIndiv )
ok = maintienOK( classementPropose, mySexe, pt )
if( True != ok ):
classementPropose = echelonInferieur( classementPropose )
# harmonisation du classement
classementHarmonise = classementPropose
# penalite WO ?
if nbWO( myDefaites ) >= 5:
print "Penalite car trop de WO (", nbWO( myDefaites ), " > 5 )"
classementHarmonise = echelonInferieur( classementPropose )
# penalite mauvais V - E - 2I - 5G ?
if 2 == serie[ classementHarmonise ]:
v = VE2I5G( classementHarmonise, myVictoires, myDefaites )
if v <= -100:
print "Joueur en 2eme serie, V-E-2I-5G inférieur ou égal à 100 (" + str( v ) + ") : pénalité et descente d'un classement"
classementHarmonise = echelonInferieur( classementHarmonise )
if 'NC' == classementPropose:
if 0 != ( len( myDefaites ) + len( myVictoires ) ):
classementPropose = classementHarmonise = '40'
else:
classementPropose = classementHarmonise = 'NC'
afficheClassement( myClassement, classementPropose, classementHarmonise )
return ( classementPropose, classementHarmonise )
def test():
"""
testDef = [ "30/2", "30/1", "NC", "15/2", "30/3", "30/4", "30/5", "30/3" ]
testVic = [ "30", "30", "NC", "15/5", "15/4", "30/1", "30/3", "30/5", "N2", "N42", "N3" ]
testCl = "30/2"
"""
file_vic = './test_victoires.txt'
file_def = './test_defaites.txt'
testVic = []
testDef = []
testVic_n = []
testDef_n = []
try:
fd_v = open( file_vic, 'r' )
fd_d = open( file_def, 'r' )
except:
import sys
print "Erreur ouverture", sys.exc_type, sys.exc_value
try:
lines = fd_v.readlines( )
for l in lines:
if l != "\n" : # si la ligne n'est pas vide
s = l.split( '\t' )
if 3 == len(s):
wo = False
else:
wo = True
n = [] # retirer les \n
for st in s[1], s[2]:
if "\n" == st[-1:]:
st = st[:-1]
n.append( st )
testVic.append( [ n[0], wo ] )
testVic_n.append( [ n[1], wo ] )
fd_v.close()
lines = fd_d.readlines( )
for l in lines:
if l != "\n" : # si la ligne n'est pas vide
s = l.split( '\t' )
if 3 == len(s):
wo = False
else:
wo = True
n = [] # retirer les \n
for st in s[1], s[2]:
if "\n" == st[-1:]:
st = st[:-1]
n.append( st )
testDef.append( [ n[0], wo ] )
testDef_n.append( [ n[1], wo ] )
fd_d.close()
except:
import sys
print "Erreur lecture", sys.exc_type, sys.exc_value
fd_v.close()
fd_d.close()
"""
print "Palma de Martin :"
print " === VICTOIRES === "
for m in testVic:
print m
print " === DEFAITES === "
for m in testDef:
print m
"""
champ = 0
testSexe = "H"
classement = "15"
"""
print "Victoires :", testVic
testVic = normalisationTab( testVic, testSexe )
print "Apres normalisation :", testVic
print "En etant", testCl
rc = VE2I5G( testCl, testVic, testDef )
print "V - E - 2I - 5G = ", rc
for p in testVic:
print "Points pour ", p, " : ", pointsVictoire( testCl, p )
print "Nb de victoires prises en compte: ", nbVictoiresComptant( testCl, testSexe, testVic, testDef )
print "Victoires triees:"
print sortVictoires( testVic )
print "Defaites triees:"
print sortVictoires( testDef )
pt = calculPoints( testCl, testSexe, testVic, testDef, True )
print "Points: ", pt, " - maintien: ", maintienOK( testCl, testSexe, pt )
print "Plus gros classement battu: ", plusGrosseVictoire( testVic )
print "Plus gros classement battu + 2: ", plusGrosseVictoirePlusN( testVic, 2 )
print "Plus grosse victoire :", plusGrosseVictoire( testVic )
print " - * - * - * - * - * - * - * - * - * -"
"""
calculClassement( testVic_n, testDef_n, testSexe, classement, champ )
def main():
test()
if __name__ == "__main__":
import sys
if sys.version_info[0] != 2:
print "Erreur -- Fonctionne avec Python 2.x"
exit -1
main()