mirror of
https://github.com/iruletheworldmo/strawberry.git
synced 2024-08-13 23:12:55 -05:00
Learn To Code AGI-man
This commit is contained in:
parent
53b3b7fdfc
commit
23f87a0dea
1 changed files with 19 additions and 39 deletions
|
@ -1,47 +1,27 @@
|
||||||
import os
|
import os
|
||||||
import time
|
import time
|
||||||
|
|
||||||
YELLOW = '\033[93m'
|
YELLOW, BROWN, RESET = '\033[93m', '\033[38;5;52m', '\033[0m'
|
||||||
BROWN = '\033[38;5;52m'
|
|
||||||
RESET = '\033[0m'
|
|
||||||
|
|
||||||
def garden(sub_stage=0):
|
def garden(stage):
|
||||||
frame = [
|
flower = f" {YELLOW}(q*){RESET} "
|
||||||
" ",
|
soil = f"{BROWN}{'#' * 16}{RESET}"
|
||||||
" ",
|
frames = [" "] * 4 + [f"{BROWN}{'~' * 16}{RESET}"] + [soil] * 5
|
||||||
" ",
|
if stage < 5:
|
||||||
" ",
|
frames[stage] = flower
|
||||||
f"{BROWN}~~~~~~~~~~~~~~~~{RESET}",
|
else:
|
||||||
f"{BROWN}################{RESET}",
|
frames[5 + (stage - 5)] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}"
|
||||||
f"{BROWN}################{RESET}",
|
return "\n".join(frames)
|
||||||
f"{BROWN}################{RESET}",
|
|
||||||
f"{BROWN}################{RESET}",
|
|
||||||
f"{BROWN}################{RESET}"
|
|
||||||
]
|
|
||||||
|
|
||||||
if sub_stage < 4:
|
|
||||||
frame[sub_stage] = f" {YELLOW}(q*){RESET} "
|
|
||||||
elif sub_stage == 4:
|
|
||||||
frame[4] = f"{BROWN}~~~~~~{YELLOW}(q*){BROWN}~~~~~~{RESET}"
|
|
||||||
elif sub_stage == 5:
|
|
||||||
frame[5] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}"
|
|
||||||
elif sub_stage == 6:
|
|
||||||
frame[6] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}"
|
|
||||||
elif sub_stage == 7:
|
|
||||||
frame[7] = f"{BROWN}######{YELLOW}(q*){BROWN}######{RESET}"
|
|
||||||
|
|
||||||
return "\n".join(frame)
|
|
||||||
|
|
||||||
def delicious():
|
def animate():
|
||||||
while True:
|
|
||||||
for i in range(8):
|
|
||||||
os.system('cls' if os.name == 'nt' else 'clear')
|
|
||||||
print(garden(i))
|
|
||||||
time.sleep(0.5)
|
|
||||||
time.sleep(1)
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
try:
|
try:
|
||||||
delicious()
|
while True:
|
||||||
|
for i in range(10): # Increased to 10 stages
|
||||||
|
os.system('cls' if os.name == 'nt' else 'clear')
|
||||||
|
print(garden(i))
|
||||||
|
time.sleep(0.5)
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print("\nAnimation stopped.")
|
print("\nAnimation stopped.")
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
animate()
|
Loading…
Reference in a new issue