Browse Source

début fonctionnement jeu

old
Kalyax 2 years ago
parent
commit
e8eeebd2b9
  1. 17
      game/core.py
  2. 0
      game/inventaire.py
  3. 13
      game/personnage.py
  4. 86
      graphics/engine.py
  5. 26
      graphics/layers.py
  6. 10
      main.py

17
game/core.py

@ -0,0 +1,17 @@
from game.personnage import Personnage, ClassType
class Game:
def __init__(self):
self.personnage = Personnage(" ", ClassType.GUERRIER)
self.ennemy = Personnage("Zombie", ClassType.ZOMBIE)
def attack(self, attacker, victim):
atk_dmg = attacker.jet_attaque()
def_dmg = victim.jet_defense()
victim.change_hp(atk_dmg)
attacker.change_hp(def_dmg)
if self.personnage.get_hp() == 0:
for i in range(50):
print("FIN")
if self.ennemy.get_hp() == 0:
self.ennemy = Personnage("Zombie", ClassType.ZOMBIE)

0
charaters/Inventaire.py → game/inventaire.py

13
charaters/personnage.py → game/personnage.py

@ -19,6 +19,9 @@ class ClassType(Enum):
VOLEUR = StatsSet(16, 12, 6, 8, 15, 7) VOLEUR = StatsSet(16, 12, 6, 8, 15, 7)
ELF = StatsSet(16, 12, 6, 8, 15, 7) ELF = StatsSet(16, 12, 6, 8, 15, 7)
#Enemy
ZOMBIE = StatsSet(16, 12, 6, 8, 15, 7)
class Personnage: class Personnage:
def __init__(self, nom, class_type): def __init__(self, nom, class_type):
@ -33,14 +36,15 @@ class Personnage:
#self.element = #self.element =
def jet_attaque(self): def jet_attaque(self):
#TODO: ajouter crit
damage = randint(1, 20) damage = randint(1, 20)
self.change_exp(self.class_type.xpcoef * self.__xp) self.change_exp(self.class_type.xpcoef * self.__xp)
return damage + damage * (self.class_type.atkP + self.stats.atkP) return damage + damage * (self.class_type.atkP//100 + self.stats.atkP//100)
def jet_defense(self): def jet_defense(self):
damage = randint(1, 20) damage = randint(1, 20)
self.change_exp(self.class_type.xpcoef * self.__xp) self.change_exp(self.class_type.xpcoef * self.__xp)
return damage + damage * (self.class_type.defP + self.stats.defP) return damage + damage * (self.class_type.defP//100 + self.stats.defP//100)
def get_hp(self): def get_hp(self):
return self.__hp return self.__hp
@ -63,7 +67,7 @@ class Personnage:
f"Type de classe: {self.class_name}", f"Type de classe: {self.class_name}",
f"Vie: {self.__hp}", f"Vie: {self.__hp}",
f"Expérience: {self.__xp}", f"Expérience: {self.__xp}",
"Stats (classe + personnage):", "Stats (classe + inventaire):",
f"- HP: {self.class_type.hp} + {self.stats.hp}", f"- HP: {self.class_type.hp} + {self.stats.hp}",
f"- ATK%: {self.class_type.atkP} + {self.stats.atkP}", f"- ATK%: {self.class_type.atkP} + {self.stats.atkP}",
f"- DEF%: {self.class_type.defP} + {self.stats.defP}", f"- DEF%: {self.class_type.defP} + {self.stats.defP}",
@ -71,3 +75,6 @@ class Personnage:
f"- CRITRATE%: {self.class_type.critrateP} + {self.stats.critrateP}", f"- CRITRATE%: {self.class_type.critrateP} + {self.stats.critrateP}",
f"- XPCOEF: {self.class_type.xpcoef} + {self.stats.xpcoef}" f"- XPCOEF: {self.class_type.xpcoef} + {self.stats.xpcoef}"
) )
def reduced_stats(self):
return("Ennemi:", f"Type: {self.class_name}", f"Vie: {self.__hp}",)

86
graphics/writer.py → graphics/engine.py

@ -1,56 +1,17 @@
import os import os
from graphics.colors import Colors from graphics.colors import Colors
class Layer:
def __init__(self, screen, z_index, name):
self.name = name
self.frame = {}
self.z_index = z_index
self.x = screen.x
self.y = screen.y
self.screen = screen
self.handle_keys = True
screen.set_layer(self)
def put_char(self, char, x, y, colors=[]):
if x > self.x or x < 0 or y > self.y or y < 0:
raise ValueError("out of range pixel")
self.frame[(x, y)] = "".join(colors) + char + Colors.RESET
def put_string(self, string, x, y, colors=[]):
if x > self.x or x < 0 or y > self.y or y < 0:
raise ValueError("out of range pixel")
string = string.split("\n")
for string_y in range(len(string)):
for string_x in range(len(string[string_y])):
self.frame[(x+string_x, y+string_y)] = "".join(colors) + string[string_y][string_x] + Colors.RESET
def rect(self, x1, y1, x2, y2, colors=[], template=' '):
if (x1 > self.x or x1 < 0 or y1 > self.y or y1 < 0) or (x2 > self.x or x2 < 0 or y2 > self.y or y2 < 0):
raise ValueError("out of range pixel")
if len(template) > 1:
raise ValueError("template should be 1 char long")
for x in range(x1, x2+1):
for y in range(y1, y2+1):
self.frame[(x, y)] = "".join(colors) + template + Colors.RESET
def draw(self):
self.frame = {}
def key_handler(self):
pass
class Screen: class Screen:
"""Moteur graphique basé sur des claques""" """Moteur graphique basé sur des claques"""
def __init__(self): def __init__(self, game):
size = os.get_terminal_size() size = os.get_terminal_size()
self.x = size.columns self.x = size.columns
self.y = size.lines - 2 self.y = size.lines - 2
self.frame = {} self.frame = {}
self.__layers = {} self.__layers = {}
self.game = game
self.handlers = [] self.handlers = []
def set_layer(self, layer): def set_layer(self, layer):
@ -89,3 +50,44 @@ class Screen:
for layer in list(self.__layers.values()): for layer in list(self.__layers.values()):
if layer.handle_keys == True: if layer.handle_keys == True:
layer.key_handler(key) layer.key_handler(key)
class Layer:
def __init__(self, screen, z_index, name):
self.name = name
self.frame = {}
self.z_index = z_index
self.x = screen.x
self.y = screen.y
self.screen = screen
self.handle_keys = True
screen.set_layer(self)
def put_char(self, char, x, y, colors=[]):
if x > self.x or x < 0 or y > self.y or y < 0:
raise ValueError("out of range pixel")
self.frame[(x, y)] = "".join(colors) + char + Colors.RESET
def put_string(self, string, x, y, colors=[]):
if x > self.x or x < 0 or y > self.y or y < 0:
raise ValueError("out of range pixel")
string = string.split("\n")
for string_y in range(len(string)):
for string_x in range(len(string[string_y])):
self.frame[(x+string_x, y+string_y)] = "".join(colors) + string[string_y][string_x] + Colors.RESET
def rect(self, x1, y1, x2, y2, colors=[], template=' '):
if (x1 > self.x or x1 < 0 or y1 > self.y or y1 < 0) or (x2 > self.x or x2 < 0 or y2 > self.y or y2 < 0):
raise ValueError("out of range pixel")
if len(template) > 1:
raise ValueError("template should be 1 char long")
for x in range(x1, x2+1):
for y in range(y1, y2+1):
self.frame[(x, y)] = "".join(colors) + template + Colors.RESET
def draw(self):
self.frame = {}
def key_handler(self):
pass

26
graphics/layers.py

@ -1,7 +1,7 @@
from charaters.personnage import Personnage, ClassType from game.personnage import Personnage, ClassType
from graphics.colors import Colors from graphics.colors import Colors
from graphics.writer import Layer from graphics.engine import Layer
from getkey import keys from getkey import keys
from re import match from re import match
@ -13,7 +13,8 @@ class GUI(Layer):
self.current = 0 self.current = 0
self.handle_keys = False self.handle_keys = False
self.personnage = Personnage(" ", ClassType.GUERRIER) #self.personnage = Personnage(" ", ClassType.GUERRIER)
#self.ennemy = Personnage("Zombie", ClassType.ZOMBIE)
def draw(self): def draw(self):
super().draw() super().draw()
@ -25,12 +26,16 @@ class GUI(Layer):
self.put_string(button, x, self.y-10, color) self.put_string(button, x, self.y-10, color)
x += len(button)+1 x += len(button)+1
stats = self.personnage.affiche_caracteristiques() stats = self.screen.game.personnage.affiche_caracteristiques()
for i in range(4): for i in range(4):
self.put_string(stats[i], 0, self.y-8+i, [Colors.RED2]) self.put_string(stats[i], 0, self.y-8+i, [Colors.RED2])
for i in range(7): for i in range(7):
self.put_string(stats[i+4], 40, self.y-8+i, [Colors.RED2]) self.put_string(stats[i+4], 40, self.y-8+i, [Colors.RED2])
ennemy_stats = self.screen.game.ennemy.reduced_stats()
for i in range(3):
self.put_string(ennemy_stats[i], 80, self.y-8+i, [Colors.BLUE2])
return self return self
def key_handler(self, key): def key_handler(self, key):
@ -38,13 +43,15 @@ class GUI(Layer):
self.current += 1 self.current += 1
elif key == keys.LEFT and self.current > 0: elif key == keys.LEFT and self.current > 0:
self.current -= 1 self.current -= 1
elif key == keys.ENTER and self.current == 0:
attacker = self.screen.game.personnage
victim = self.screen.game.ennemy
self.screen.game.attack(attacker, victim)
class PopUp(Layer): class StartPopUp(Layer):
def __init__(self, screen, z_index): def __init__(self, screen, z_index):
super().__init__(screen, z_index, "popup") super().__init__(screen, z_index, "popup")
#screen.add_key_handler(self.key_handler)
self.__classes = ["GUERRIER", "MAGICIEN", "VOLEUR", "ELF"] self.__classes = ["GUERRIER", "MAGICIEN", "VOLEUR", "ELF"]
self.__choosen_class = 0 self.__choosen_class = 0
self.__username = "" self.__username = ""
@ -53,12 +60,10 @@ class PopUp(Layer):
super().draw() super().draw()
#bg #bg
self.rect(self.x//3, self.y//6, self.x//3 + self.x//4, self.y//4 + self.y//3, Colors.WHITEBG) self.rect(self.x//3, self.y//6, self.x//3 + self.x//4, self.y//4 + self.y//3, Colors.WHITEBG)
#name #name
self.put_string("Nom: [A-z]", self.x//3 + 1, self.y//6 + 1, [Colors.WHITEBG, Colors.BLACK]) self.put_string("Nom: [A-z]", self.x//3 + 1, self.y//6 + 1, [Colors.WHITEBG, Colors.BLACK])
self.rect(self.x//3 + 1, self.y//6 + 2, self.x//3 + self.x//4 - 1, self.y//6 + 2, Colors.BLACKBG) self.rect(self.x//3 + 1, self.y//6 + 2, self.x//3 + self.x//4 - 1, self.y//6 + 2, Colors.BLACKBG)
self.put_string(self.__username, self.x//3 + 1, self.y//6 + 2, [Colors.WHITE, Colors.BLACKBG]) self.put_string(self.__username, self.x//3 + 1, self.y//6 + 2, [Colors.WHITE, Colors.BLACKBG])
#Classes #Classes
self.put_string("Classe perso.: SHIFT+[1-4]", self.x//3 + 1, self.y//6 + 4, [Colors.WHITEBG, Colors.BLACK]) self.put_string("Classe perso.: SHIFT+[1-4]", self.x//3 + 1, self.y//6 + 4, [Colors.WHITEBG, Colors.BLACK])
y = 0 y = 0
@ -83,4 +88,5 @@ class PopUp(Layer):
elif key == keys.TAB: elif key == keys.TAB:
self.screen.get_layer("gui").handle_keys = True self.screen.get_layer("gui").handle_keys = True
self.screen.del_layer("popup") self.screen.del_layer("popup")
self.screen.get_layer("gui").personnage = Personnage(self.__username, ClassType[self.__classes[self.__choosen_class]]) self.screen.game.personnage = Personnage(self.__username, ClassType[self.__classes[self.__choosen_class]])
#self.screen.get_layer("gui").personnage = Personnage(self.__username, ClassType[self.__classes[self.__choosen_class]])

10
main.py

@ -1,15 +1,17 @@
from charaters.personnage import Personnage, ClassType from game.personnage import Personnage, ClassType
from game.core import Game
import graphics.layers as layers import graphics.layers as layers
from graphics.writer import Screen from graphics.engine import Screen
import graphics.key_listener as listener import graphics.key_listener as listener
from time import sleep from time import sleep
if __name__ == "__main__": if __name__ == "__main__":
#Initialise la partie graphique #Initialise la partie graphique
screen = Screen() game = Game()
layers.PopUp(screen, 1) screen = Screen(game)
layers.StartPopUp(screen, 1)
layers.GUI(screen, 2, ["Attaquer", "Inventaire"]) layers.GUI(screen, 2, ["Attaquer", "Inventaire"])
listener.build_thread(screen).start() listener.build_thread(screen).start()

Loading…
Cancel
Save