超级玛丽python源代码
时间: 2023-09-02 15:05:47 浏览: 140
基于Python的超级玛丽源代码.zip
5星 · 资源好评率100%
以下是一个简单的超级玛丽Python源代码,可以在命令行界面上运行:
```python
import sys
import tty
import termios
import time
class Mario:
def __init__(self):
self.x = 0
self.y = 0
def move_left(self):
self.x -= 1
def move_right(self):
self.x += 1
def move_up(self):
self.y -= 1
def move_down(self):
self.y += 1
def display(self):
for i in range(10):
for j in range(20):
if i == self.y and j == self.x:
print("M", end="")
else:
print("-", end="")
print("")
def get_char():
fd = sys.stdin.fileno()
old_settings = termios.tcgetattr(fd)
try:
tty.setraw(sys.stdin.fileno())
ch = sys.stdin.read(1)
finally:
termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
return ch
def main():
mario = Mario()
while True:
mario.display()
char = get_char()
if char == "q":
break
elif char == "a":
mario.move_left()
elif char == "d":
mario.move_right()
elif char == "w":
mario.move_up()
elif char == "s":
mario.move_down()
time.sleep(0.1)
if __name__ == "__main__":
main()
```
注意:这只是一个简单的示例代码,没有完整的游戏逻辑和图形界面。
阅读全文