kitty/kitty_tests/gr.py
Kovid Goyal 40722f42d3
...
2017-10-17 10:18:03 +05:30

73 lines
1.9 KiB
Python

#!/usr/bin/env python
# vim:fileencoding=utf-8
# License: GPL v3 Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
import os
import sys
import zlib
from base64 import standard_b64encode
write = getattr(sys.stdout, 'buffer', sys.stdout).write
def clear_screen():
write(b'\033[2J')
def move_cursor(x, y):
write('\033[{};{}H'.format(y, x).encode('ascii'))
def write_gr_cmd(cmd, payload):
cmd = ','.join('{}={}'.format(k, v) for k, v in cmd.items())
w = write
w(b'\033_G'), w(cmd.encode('ascii')), w(b';'), w(payload), w(b'\033\\')
sys.stdout.flush()
def display(data, width, height, x, y, z, ncols=0, nrows=0):
move_cursor(x, y)
cmd = {'a': 'T', 's': width, 'v': height, 'c': ncols, 'r': nrows, 'S': len(data), 'z': z}
data = zlib.compress(data)
cmd['o'] = 'z'
data = standard_b64encode(data)
while data:
chunk, data = data[:4096], data[4096:]
m = 1 if data else 0
cmd['m'] = m
write_gr_cmd(cmd, chunk)
cmd.clear()
def display_png_file(path):
cmd = {'a': 'T', 't': 'f', 'f': '100'}
path = os.path.abspath(path)
if not isinstance(path, bytes):
path = path.encode(sys.getfilesystemencoding() or 'utf-8')
data = standard_b64encode(path)
write_gr_cmd(cmd, data)
def main():
clear_screen()
display(b'\xdd\xdd\xdd\xff', 1, 1, 0, 0, -10, 40, 20)
display(open('logo/kitty.rgba', 'rb').read(), 256, 256, 0, 5, -9)
display(b'\0\0\0\xaa', 1, 1, 0, 7, -8, 40, 3)
move_cursor(5, 8)
print('kitty is \033[3m\033[32mawesome\033[m!')
move_cursor(0, 21)
print('Lenna...')
display_png_file('kitty_tests/Lenna.png')
try:
try:
raw_input()
except NameError:
input()
except (EOFError, KeyboardInterrupt):
pass
if __name__ == '__main__':
os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
main()