Conversion.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. from math import log
  2. from Outils.Moteur_de_jeu import Plateau
  3. from Outils.Moteur_de_jeu.Plateau import *
  4. BASE_REFERENCE = 62 # base utilisées par toutes les fonctions ici
  5. def tri_a_bulle(tab) :
  6. n = len(tab)
  7. for i in range(n - 1) :
  8. for j in range(n - 1) :
  9. if tab[j] > tab[j + 1] :
  10. (tab[j],tab[j + 1]) = (tab[j + 1],tab[j])
  11. def insertion_place(tab, x, p) :
  12. # Insère x à l'indice p, sans tenir compte de l'ordre
  13. tab.append(x)
  14. for i in range(len(tab) - 1, p, -1) :
  15. (tab[i],tab[i - 1]) = (tab[i - 1], tab[i])
  16. def insertion_ordonnee(tab, x) :
  17. tab.append(x)
  18. i = len(tab) - 1
  19. while tab[i] < tab[i - 1] and i > 0:
  20. (tab[i],tab[i - 1]) = (tab[i - 1], tab[i])
  21. i -= 1
  22. def recherche(tab, e) :
  23. """ Recherche d'élément dans une tableau par dichotomie. Retourne un couple (booléen, indice) """
  24. a = 0
  25. b = len(tab) - 1
  26. if b == -1 :
  27. return (False, 0)
  28. if tab[0] >= e :
  29. return (tab[0] == e, 0)
  30. elif tab[b] == e :
  31. return (True, b)
  32. elif tab[b] < e :
  33. return (False, b + 1)
  34. c = 1
  35. while b - a > 1 :
  36. c = (a + b)//2
  37. if tab[c] == e :
  38. return (True, c)
  39. elif tab[c] < e :
  40. a = c
  41. else :
  42. b = c
  43. if tab[c] == e :
  44. return (True,c)
  45. else :
  46. if tab[c] < e :
  47. return (False, c + 1)
  48. else :
  49. return (False, c)
  50. def conversion_base(x, bf) :
  51. """
  52. Convertit l'entier naturel x exprimée en base 10 dans la base bf
  53. """
  54. if x == 0 :
  55. return "0"
  56. chiffres = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  57. s = ""
  58. for n in range(int(log(x,bf)), -1, -1) :
  59. s += chiffres[x//(bf**n)]
  60. x = x % bf**n
  61. return s
  62. def retour_base_10(s, bi) :
  63. """
  64. Convertit le nombre s exprimée en base bi dans la base 10
  65. """
  66. chiffres = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  67. x = 0
  68. n = len(s)
  69. for k in range(n) :
  70. x += chiffres.find(s[n - 1 - k]) * bi**k
  71. return x
  72. def code_from_barriere(b) :
  73. """
  74. Concatène les données relatives à la barrière sous la forme x,y,o
  75. 2 = v et 1 = h
  76. Convertit ensuite ce nombre en base 62
  77. """
  78. if b.orientation == "h" :
  79. n = 100*b.x + 10*b.y + 1
  80. else :
  81. n = 100*b.x + 10*b.y + 2
  82. return conversion_base(n, BASE_REFERENCE)
  83. def code_from_plateau(plateau) :
  84. """
  85. Retourne l'entier associée au plateau
  86. Structure : b1o,b1x,b1y ; ... ; bno,bnx,bny ; x0,y0,b0 ; x1,y1,b1 ; t
  87. Les bio valent 1 si la barrière est horizontale et 2 sinon
  88. Ce nombre est ensuite converti en base 62, tout en classant les barrières dans l'ordre croissant.
  89. """
  90. s = conversion_base(10**8 * plateau.pions[1][0] + 10**7 * plateau.pions[1][1] + 10**5 * plateau.barrieres_restantes[1] +\
  91. 10**4 * plateau.pions[0][0] + 10**3 * plateau.pions[0][1] + 10 * plateau.barrieres_restantes[0] +\
  92. plateau.tour, 62)
  93. codes_barrieres = [code_from_barriere(b) for b in plateau.liste_barrieres]
  94. tri_a_bulle(codes_barrieres)
  95. for b in codes_barrieres :
  96. s = b + s
  97. return s
  98. def coup_from_str(s) :
  99. x = int(s[2])
  100. y = int(s[4])
  101. if s[0] == "M" :
  102. return Coup("M", case = (x,y))
  103. else :
  104. return Coup("B", barriere = Barriere(s[6], x, y))
  105. def code_from_str(s) :
  106. x = int(s[2])
  107. y = int(s[4])
  108. if s[0] == "M" :
  109. n = 100*x + 10*y + 2
  110. else :
  111. n = 100*x + 10*y
  112. if s[6] == "h" :
  113. n += 1
  114. return conversion_base(n, BASE_REFERENCE)
  115. def code_from_coup(coup) :
  116. if coup.type == "M" :
  117. n = 100 * coup.case[0] + 10 * coup.case[1] + 2
  118. else :
  119. n = 100 * coup.barriere.x + 10 * coup.barriere.y
  120. if coup.barriere.orientation == "h" :
  121. n += 1
  122. return conversion_base(n, BASE_REFERENCE)
  123. def coup_from_code(code) :
  124. n = retour_base_10(code, BASE_REFERENCE)
  125. info = n%10
  126. x = n//100
  127. y = (n - 100*x)//10
  128. if info == 2 :
  129. return Coup("M", case = (x,y))
  130. else :
  131. return Coup("B", barriere = Barriere(["v","h"][info], x, y))
  132. """coup = coup_from_str("B_4_5_h")
  133. print(coup.type, coup.barriere.x, coup.barriere.y, coup.barriere.orientation)
  134. coup = coup_from_str("M_4_5")
  135. print(coup.type, coup.case[0], coup.case[1])
  136. """
  137. """from random import shuffle
  138. p = Plateau(9,9,10)
  139. l = [Barriere("h",4,6), Barriere("h",2,6), Barriere("h",5,1), Barriere("h",3,2)]
  140. l = []
  141. shuffle(l)
  142. for b in l :
  143. p.executer_coup(Coup("B", barriere = b))
  144. print(code_from_plateau(p))
  145. print(code_from_str("M_5_0"))
  146. print(coup_from_code("86").get_code())"""
  147. """p = Plateau(9,9,10)
  148. p.executer_coup(Coup("B", barriere = Barriere("h",4,6)))
  149. p.executer_coup(Coup("B", barriere = Barriere("h",3,2)))
  150. print(code_from_plateau(p))
  151. p = Plateau(9,9,10)
  152. p.executer_coup(Coup("B", barriere = Barriere("h",3,2)))
  153. p.executer_coup(Coup("B", barriere = Barriere("h",4,6)))
  154. print(code_from_plateau(p))"""
  155. """l = [4,9,4,57,547,5647,567,7,87,7,8]
  156. insertion_place(l, 0, 7)
  157. insertion_place(l, -1, 45)
  158. print(l)"""