alles mal in die engine gepumpt
This commit is contained in:
parent
d4aa1c12bb
commit
48634a0926
4 changed files with 110 additions and 101 deletions
Binary file not shown.
|
@ -98,7 +98,7 @@ if __name__ == "__main__":
|
||||||
ymin = 0
|
ymin = 0
|
||||||
xmin = 0
|
xmin = 0
|
||||||
startwinkel = 34
|
startwinkel = 34
|
||||||
startgeschwindigkeit = 60
|
startgeschwindigkeit = 20
|
||||||
starthoehe = 0
|
starthoehe = 0
|
||||||
schlafzeit = 0.05
|
schlafzeit = 0.05
|
||||||
###
|
###
|
||||||
|
|
Binary file not shown.
155
v2.py
155
v2.py
|
@ -1,34 +1,28 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
import os
|
#import os
|
||||||
from tengine.main import *#ty,tx,clear,genfeld,strfeld,change_char,bg_char
|
from tengine.main import *#ty,tx,clear,genfeld,strfeld,change_char,bg_char
|
||||||
from pynput import keyboard
|
from pynput import keyboard
|
||||||
from time import sleep
|
from time import sleep
|
||||||
from physics.parabelfunc import berechneflugbahn
|
from physics.parabelfunc import berechneflugbahn
|
||||||
import random
|
import ascii
|
||||||
|
#import random
|
||||||
|
|
||||||
#def clear():
|
|
||||||
# if os.name == "nt":
|
|
||||||
# os.system("cls")
|
|
||||||
# else:
|
|
||||||
# os.system("clear")
|
|
||||||
|
|
||||||
|
|
||||||
def on_press(key):
|
def on_press(key):
|
||||||
global running
|
global key_space
|
||||||
if key == keyboard.Key.space:
|
if key == keyboard.Key.space:
|
||||||
running = False
|
key_space = True
|
||||||
|
|
||||||
|
|
||||||
def on_release(key):
|
def on_release(key):
|
||||||
global running
|
global running,key_space
|
||||||
|
if key == keyboard.Key.space:
|
||||||
|
key_space = False
|
||||||
if key == keyboard.Key.esc:
|
if key == keyboard.Key.esc:
|
||||||
# Stop listener
|
# Stop listener
|
||||||
running = "finito"
|
running = "finito"
|
||||||
|
|
||||||
|
key_space = None
|
||||||
listener = keyboard.Listener(on_press=on_press, on_release=on_release)
|
listener = keyboard.Listener(on_press=on_press, on_release=on_release)
|
||||||
|
|
||||||
listener.start()
|
listener.start()
|
||||||
|
|
||||||
txhalb = int(tx / 2)-2
|
txhalb = int(tx / 2)-2
|
||||||
|
@ -36,18 +30,34 @@ wobble_speed = 0.01
|
||||||
wobble_pos = 0
|
wobble_pos = 0
|
||||||
wobble_way = "right"
|
wobble_way = "right"
|
||||||
points = 0
|
points = 0
|
||||||
|
startscreen = True
|
||||||
running = True
|
running = True
|
||||||
|
|
||||||
|
if __name__ == "__main__" and running == True:
|
||||||
|
feld = genfeld()
|
||||||
|
feld = change_block(feld,ascii.logo,[1,int(tx/2-21)])
|
||||||
|
|
||||||
|
while startscreen == True:
|
||||||
|
feld = change_block(feld,ascii.start_screen_text,[10,int(tx/2-5)])
|
||||||
|
print(strfeld(feld))
|
||||||
|
sleep(0.2)
|
||||||
|
feld = viereck(feld,[11,int(tx/2-4)],11,1," ")
|
||||||
|
print(strfeld(feld))
|
||||||
|
sleep(0.2)
|
||||||
|
clear()
|
||||||
|
if key_space == True:
|
||||||
|
while not key_space == False:
|
||||||
|
startscreen = False
|
||||||
|
|
||||||
|
feld = bg_char(feld," ")
|
||||||
|
#feld = change_block[feld,ascii.cowsay,[int(tx/2-8),int(ty/2-2)]]
|
||||||
while running == True:
|
while running == True:
|
||||||
wobl = "-" * (tx - wobble_pos - 5)
|
wobl = "-" * (tx - wobble_pos - 5)
|
||||||
wobr = "-" * wobble_pos
|
wobr = "-" * wobble_pos
|
||||||
wobbl = f"{wobr}🐄️{wobl}"
|
wobbl = f"{wobr}🐄️{wobl}"
|
||||||
print(" " * txhalb, "↓")
|
feld = change_block(feld," " * txhalb+"↓",[ty-3,0])
|
||||||
print(f"[{wobbl}]")
|
feld = change_block(feld,f"[{wobbl}]",[ty-2,0])
|
||||||
print(wobble_pos)
|
print(strfeld(feld))
|
||||||
print(points)
|
|
||||||
print(tx)
|
|
||||||
print(txhalb)
|
|
||||||
|
|
||||||
if wobble_pos > txhalb:
|
if wobble_pos > txhalb:
|
||||||
wobble_site = "left"
|
wobble_site = "left"
|
||||||
else:
|
else:
|
||||||
|
@ -66,7 +76,7 @@ while running == True:
|
||||||
else:
|
else:
|
||||||
points += 1
|
points += 1
|
||||||
|
|
||||||
if wobble_pos >= tx - 4:
|
if wobble_pos >= tx - 5:
|
||||||
wobble_way = "left"
|
wobble_way = "left"
|
||||||
elif wobble_pos == 0:
|
elif wobble_pos == 0:
|
||||||
wobble_way = "right"
|
wobble_way = "right"
|
||||||
|
@ -74,55 +84,54 @@ while running == True:
|
||||||
sleep(wobble_speed)
|
sleep(wobble_speed)
|
||||||
clear()
|
clear()
|
||||||
|
|
||||||
if running == "finito":
|
if key_space == True:
|
||||||
exit()
|
break
|
||||||
|
points_prozent = int((points/txhalb)*100)
|
||||||
#tx halb = max points #in ausgerechneten bruch und an in bruch mit nenner 100 ergibt zähler mit punktewert
|
|
||||||
|
|
||||||
for a in range(int(points*2)):
|
for a in range(int(points*2)):
|
||||||
print("-" * a + "🐄️", end="\r")
|
feld = change_block(feld,"-"*a+"🐄️",[0,0])
|
||||||
sleep(0.01)
|
feld = change_block(feld,str(points_prozent)+"%",[1,int(tx/2-2)])
|
||||||
|
|
||||||
points = int((points/txhalb)*100)
|
|
||||||
print("\n", points, "%")
|
|
||||||
|
|
||||||
feld = genfeld()
|
|
||||||
# Randomly choose a cow
|
|
||||||
cows = "🐵🐒🦍🦧🐕🐯🦝🐩🐅🐴🐎🦄🦌🐗🐂🐃🐄🐪🐫🦙🦒🐹🦘🦡🐧🕊️ 🦅🦆🦉🐍🦎🐊🦜🦚🦩🐲🐉🦕"
|
|
||||||
cowlistlength = len(cows)
|
|
||||||
cow = cows[random.randint(0, cowlistlength - 1)]
|
|
||||||
# Needed: find our screensize. We are in textmode here
|
|
||||||
#termsize_xy = os.get_terminal_size()
|
|
||||||
### I m p o r t a n t p a r a m e t e r s ###
|
|
||||||
# X-Resolution of the display
|
|
||||||
xmax = tx-1 #termsize_xy[0] - 1
|
|
||||||
xsteps = 20#xmax
|
|
||||||
ymax = ty #termsize_xy[1]
|
|
||||||
ymin = 0
|
|
||||||
xmin = 0
|
|
||||||
startwinkel = 70
|
|
||||||
startgeschwindigkeit = 60
|
|
||||||
starthoehe = 0
|
|
||||||
schlafzeit = 0.05
|
|
||||||
###
|
|
||||||
# needed for erasing old position
|
|
||||||
xold = xmin
|
|
||||||
yold = ymin
|
|
||||||
x = xmin
|
|
||||||
y = xmin
|
|
||||||
# Call the function, which calculates the coordinates)
|
|
||||||
ergebnis = berechneflugbahn(xmax, ymax, xsteps, startwinkel, startgeschwindigkeit, starthoehe, gravitation=1, xstep=2)
|
|
||||||
|
|
||||||
feld = bg_char(feld,"-")
|
|
||||||
|
|
||||||
# here we draw the cow
|
|
||||||
for count in range(xmin, len(ergebnis), 2):
|
|
||||||
xold, yold = x, y
|
|
||||||
x, y = ergebnis[count], ergebnis[count + 1]
|
|
||||||
change_block(feld,"@",[x, y])
|
|
||||||
sleep(schlafzeit)
|
|
||||||
change_block(feld,"#",[xold, yold]) #☁️
|
|
||||||
print(strfeld(feld))
|
print(strfeld(feld))
|
||||||
print()
|
sleep(0.01)
|
||||||
sleep(2)
|
clear()
|
||||||
#sys.exit(home + curon)
|
print(strfeld(feld))
|
||||||
|
|
||||||
|
|
||||||
|
## Randomly choose a cow
|
||||||
|
#cows = "🐵🐒🦍🦧🐕🐯🦝🐩🐅🐴🐎🦄🦌🐗🐂🐃🐄🐪🐫🦙🦒🐹🦘🦡🐧🕊️ 🦅🦆🦉🐍🦎🐊🦜🦚🦩🐲🐉🦕"
|
||||||
|
#cowlistlength = len(cows)
|
||||||
|
#cow = cows[random.randint(0, cowlistlength - 1)]
|
||||||
|
## Needed: find our screensize. We are in textmode here
|
||||||
|
##termsize_xy = os.get_terminal_size()
|
||||||
|
#### I m p o r t a n t p a r a m e t e r s ###
|
||||||
|
## X-Resolution of the display
|
||||||
|
#xmax = tx-1 #termsize_xy[0] - 1
|
||||||
|
#xsteps = 20#xmax
|
||||||
|
#ymax = ty #termsize_xy[1]
|
||||||
|
#ymin = 0
|
||||||
|
#xmin = 0
|
||||||
|
#startwinkel = 70
|
||||||
|
#startgeschwindigkeit = 60
|
||||||
|
#starthoehe = 0
|
||||||
|
#schlafzeit = 0.05
|
||||||
|
####
|
||||||
|
## needed for erasing old position
|
||||||
|
#xold = xmin
|
||||||
|
#yold = ymin
|
||||||
|
#x = xmin
|
||||||
|
#y = xmin
|
||||||
|
## Call the function, which calculates the coordinates)
|
||||||
|
#ergebnis = berechneflugbahn(xmax, ymax, xsteps, startwinkel, startgeschwindigkeit, starthoehe, gravitation=1, xstep=2)
|
||||||
|
#
|
||||||
|
#feld = bg_char(feld,"-")
|
||||||
|
#
|
||||||
|
## here we draw the cow
|
||||||
|
#for count in range(xmin, len(ergebnis), 2):
|
||||||
|
# xold, yold = x, y
|
||||||
|
# x, y = ergebnis[count], ergebnis[count + 1]
|
||||||
|
# change_block(feld,"@",[x, y])
|
||||||
|
# sleep(schlafzeit)
|
||||||
|
# change_block(feld,"#",[xold, yold]) #☁️
|
||||||
|
# print(strfeld(feld))
|
||||||
|
# print()
|
||||||
|
#sleep(2)
|
||||||
|
##sys.exit(home + curon)
|
Loading…
Reference in a new issue