我想将此问题移植到 Python (Windows + Linux + Mac Os)
如何使用 C# 在 Windows 控制台应用程序中创建 ASCII 动画?
谢谢!
我刚刚将我的示例与动画 gif 移植到 ASCII 动画,从我的答案到python。您需要从这里安装 pyglet 库,因为不幸的是 python 没有内置的动画 gif 支持。希望你喜欢 :)
import pyglet, sys, os, time
def animgif_to_ASCII_animation(animated_gif_path):
# map greyscale to characters
chars = ('#', '#', '@', '%', '=', '+', '*', ':', '-', '.', ' ')
clear_console = 'clear' if os.name == 'posix' else 'CLS'
# load image
anim = pyglet.image.load_animation(animated_gif_path)
# Step through forever, frame by frame
while True:
for frame in anim.frames:
# Gets a list of luminance ('L') values of the current frame
data = frame.image.get_data('L', frame.image.width)
# Built up the string, by translating luminance values to characters
outstr = ''
for (i, pixel) in enumerate(data):
outstr += chars[(ord(pixel) * (len(chars) - 1)) / 255] + \
('\n' if (i + 1) % frame.image.width == 0 else '')
# Clear the console
os.system(clear_console)
# Write the current frame on stdout and sleep
sys.stdout.write(outstr)
sys.stdout.flush()
time.sleep(0.1)
# run the animation based on some animated gif
animgif_to_ASCII_animation(u'C:\\some_animated_gif.gif')
这正是我创建asciimatics的那种应用程序。
它是一个跨平台的控制台 API,支持从一组丰富的文本效果生成动画场景。它已被证明适用于各种风格的 CentOS 和 Windows 和 OSX。
可以从图库中获取可能的示例。这是一个类似于其他答案中提供的动画 GIF 代码的示例。
我假设您只是在寻找一种制作任何动画的方法,但如果您真的想复制蒸汽火车,您可以将其转换为 Sprite 并为其提供一条在屏幕上运行的路径,然后将其播放为场景的一部分。可以在文档中找到对象的完整说明。
简单的控制台动画,在 Ubuntu 的 python3 上测试。addch() 不喜欢那个非 ascii 字符,但它在 addstr() 中有效。
#this comment is needed in windows:
# encoding=latin-1
def curses(win):
from curses import use_default_colors, napms, curs_set
use_default_colors()
win.border()
curs_set(0)
row, col = win.getmaxyx()
anim = '.-+^°*'
y = int(row / 2)
x = int((col - len(anim))/2)
while True:
for i in range(6):
win.addstr(y, x+i, anim[i:i+1])
win.refresh()
napms(100)
win.addch(y, x+i, ' ')
if __name__ == "__main__":
from curses import wrapper
wrapper(curses)
@Philip Daubmeier:我已经在 Windoze 下对此进行了测试,但它不起作用:(。未来有三个基本选项:(请选择)
颜色: http ://pypi.python.org/pypi/colorama