From c5930053e46a5ca680e4a0b9b3c89f9b42f187f5 Mon Sep 17 00:00:00 2001 From: sysek Date: Mon, 13 Jan 2025 21:52:14 +0100 Subject: [PATCH] MNUE --- .gitignore | 5 ++++- README.md | 10 ++++++++++ app.py | 48 +++++++++++++++++++++++++++++++++++++++--------- engine.py | 36 +++++------------------------------- game.py | 28 ++++++++++++++++++++++++++++ 5 files changed, 86 insertions(+), 41 deletions(-) create mode 100644 README.md create mode 100644 game.py diff --git a/.gitignore b/.gitignore index ddfdd05..68ec41b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,7 @@ __pycache__ #### misc -.projectile \ No newline at end of file +.projectile +auto-save-list +.\#* +.kateproject diff --git a/README.md b/README.md new file mode 100644 index 0000000..3607c8e --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# Untitled Cyberbonk 2077 + +Projekt gry RPG (czy coś, nie wiem) napisany w Pythonie w celu nauki + +# Autor +sysek + +# License + +This work is licensed under CC BY-NC-SA 4.0 diff --git a/app.py b/app.py index fb854b0..c1312e2 100644 --- a/app.py +++ b/app.py @@ -1,10 +1,14 @@ from engine import Engine +from game import Game from player import Player from enemy import Enemy -# ENGINE SECTIONS +# ENGINE SECTION eng = Engine() +# GAME SECTION +game = Game() + # PLAYER SECTION player = Player("キーウィ") @@ -12,14 +16,40 @@ player = Player("キーウィ") dummykid = Enemy() -# GAME TEST +def logo(): + logo = """ + ⣀⡀⠀⠀⠀⠀⠀⠀⠀⡔⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ +⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡠⢚⣉⣠⡽⠂⠀⠀⠀⠀⡰⢋⡼⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⢴⡆⠀⠀ +⠀⠀⠀⠀⠀⢀⡤⠐⢊⣥⠶⠛⠁⢀⠄⡆⣠⠤⣤⠞⢠⠿⢥⡤⠀⠀⠠⢤⠀⠀⠀⠤⠤⠤⡄⢠⠤⠄⠤⠀⠀⠀⠒⣆⡜⣿⣄⠀⡤⢤⠖⣠⣀⠤⢒⣭⠶⠛⠃⠀⠀ +⢀⣀⡠⢴⣎⣥⣴⣾⣟⡓⠒⠒⠒⠺⣄⡋⢀⡾⢃⣴⢖⣢⣞⢁⣋⣉⣹⠏⠚⠛⢛⣉⣤⡴⢞⠃⣰⠾⠟⣛⣩⢵⢶⡟⣰⠇⠘⡼⢡⡟⣀⡋⢵⡞⠋⠁⠀⠀⠀⠀⠀ +⠈⠢⠄⠤⠤⠤⠤⠤⠴⠤⠴⠶⠶⢾⠟⣱⡿⢤⢿⣕⠾⣿⣿⣩⡭⢤⠞⣰⠶⢤⣀⡉⠓⢾⡍⣠⠴⠾⠛⠹⠡⣟⡁⢰⢏⣼⡇⢰⣿⢀⠟⠳⣤⣌⣦⡀⠀⠀⠀⠀⠀ +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡠⢃⡼⠋⠛⠾⠚⠁⠀⠈⠉⠀⠀⠸⣄⠏⠀⠀⠈⠙⠓⡟⣰⠏⠀⠀⠀⠘⠾⠛⠳⠞⠉⠁⠙⠋⠙⠚⠀⠀⠀⠙⠛⢿⣷⣤⣀⠀⠀ +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣜⡵⠟⠀⠀⠀⠀⠀⠀⣼⣿⣾⣿⣽⣽⣿⣿⢏⢫⣻⡹⡽⣰⢏⣯⠍⡭⡍⣭⢩⡭⢩⡍⡏⡏⣯⡍⣍⠙⡭⢹⣄⣤⠄⢠⠉⠓⢿⣕⡄ +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠠⣯⠃⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⣿⣿⣿⣽⣾⣾⣟⣯⣣⣱⣾⣟⣞⣸⣇⣳⣃⣿⣛⣷⣬⠧⠳⠇⠿⢧⢿⢀⣷⢸⠧⢾⢃⠇⠀⠀⠀⠀⠁ + """ + print(logo) -player.show_stats() -print("") -dummykid.show_dummy() -roll = eng.roll_d20() +loop = True +while loop is True: + logo() + if player is False: + print("--- CREATE CHARACTER ___") + game.create_character() + else: + print(f"--- HELLO {player.name} ___") + print("--- WARNING, TEST MODE ___") + print("? What you would like to do today?") + print("戦う [f]ight mode") + print("顔 show [c]haracter") -if roll < 10: - eng.figth_mode(player, dummykid) - + # breakpoint() + timetochoose = input(">___ ") + + if timetochoose == "Q" or timetochoose == "q": + loop = False + elif timetochoose == "F" or timetochoose == "f": + print("### tutaj będzie fight mode ###") + # game.figth_mode() + elif timetochoose == 'C' or timetochoose == 'c': + player.show_stats() diff --git a/engine.py b/engine.py index 64949af..6c877ce 100644 --- a/engine.py +++ b/engine.py @@ -1,39 +1,13 @@ import random -from player import Player -from enemy import Enemy -from time import sleep +from os import system + class Engine: def roll_d20(self): - return random.randint(1,20) + return random.randint(1, 20) - def roll_d10(self): - return random.randint(1,10) - + return random.randint(1, 10) def roll_d6(self): - return random.randint(1,6) - - - def figth_mode(self, player: Player, enemy: Enemy): - """ - --- FIGHT MODE ___ - player: PlayerClass - enemy: EnemyClass - """ - - print("--- FIGHT MODE ___") - print(f"{player.name} vs. {enemy.name}") - - INIT_PLAYER = self.roll_d10() - INIT_ENEMY = self.roll_d10() - - if INIT_PLAYER > INIT_ENEMY: - print(f"PLAYER ROLL: {INIT_PLAYER}") - print(f"ENEMY ROLL: {INIT_ENEMY}") - print("FIGHT OFF, CHICKEN") - else: - print("YOU GOT SOME TROUBLE, MATE") - - + return random.randint(1, 6) diff --git a/game.py b/game.py new file mode 100644 index 0000000..f97eac7 --- /dev/null +++ b/game.py @@ -0,0 +1,28 @@ +# from engine import Engine +from player import Player +from enemy import Enemy + + +class Game: + def figth_mode(self, player: Player, enemy: Enemy): + """ + --- FIGHT MODE ___ + player: Player Class + enemy: Enemy Class + """ + + print("--- FIGHT MODE ___") + print(f"{player.name} vs. {enemy.name}") + + INIT_PLAYER = self.roll_d10() + INIT_ENEMY = self.roll_d10() + + if INIT_PLAYER > INIT_ENEMY: + print(f"PLAYER ROLL: {INIT_PLAYER}") + print(f"ENEMY ROLL: {INIT_ENEMY}") + print("FIGHT OFF, CHICKEN") + else: + print("YOU GOT SOME TROUBLE, MATE") + + def create_character(self): + pass