2022-09-05 12:23:17 -05:00
|
|
|
#% extends "py-script.mk" %#
|
2022-09-05 17:44:39 -05:00
|
|
|
#% block name %#ansi#% endblock %#
|
2022-09-05 12:23:17 -05:00
|
|
|
#% block script %#
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
color2byte = dict(
|
|
|
|
black=0,
|
|
|
|
red=1,
|
|
|
|
green=2,
|
|
|
|
yellow=3,
|
|
|
|
blue=4,
|
|
|
|
magenta=5,
|
|
|
|
cyan=6,
|
|
|
|
white=7,
|
|
|
|
)
|
|
|
|
|
|
|
|
state2byte = dict(
|
|
|
|
bold=1, faint=2, italic=3, underline=4, blink=5, fast_blink=6, crossed=9
|
|
|
|
)
|
|
|
|
|
2022-09-16 13:23:55 -05:00
|
|
|
addfg = lambda byte: byte + 30
|
|
|
|
addbg = lambda byte: byte + 40
|
2022-09-05 12:23:17 -05:00
|
|
|
|
2022-09-05 17:44:39 -05:00
|
|
|
class Ansi:
|
2022-09-16 13:26:31 -05:00
|
|
|
"""ANSI escape codes"""
|
2022-09-05 12:23:17 -05:00
|
|
|
|
|
|
|
def __init__(self):
|
2022-09-05 17:44:39 -05:00
|
|
|
self.setcode("end", "\033[0m")
|
2022-09-13 16:40:07 -05:00
|
|
|
self.setcode("default", "\033[38m")
|
|
|
|
self.setcode("bg_default", "\033[48m")
|
2022-09-05 12:23:17 -05:00
|
|
|
for name, byte in color2byte.items():
|
2022-09-16 13:23:55 -05:00
|
|
|
self.setcode(name, f"\033[{addfg(byte)}m")
|
|
|
|
self.setcode(f"b_{name}", f"\033[1;{addfg(byte)}m")
|
|
|
|
self.setcode(f"d_{name}", f"\033[2;{addfg(byte)}m")
|
2022-09-05 12:23:17 -05:00
|
|
|
for bgname, bgbyte in color2byte.items():
|
2022-09-16 13:23:55 -05:00
|
|
|
self.setcode(f"{name}_on_{bgname}", f"\033[{addbg(bgbyte)};{addfg(byte)}m")
|
2022-09-05 12:23:17 -05:00
|
|
|
for name, byte in state2byte.items():
|
2022-09-05 17:44:39 -05:00
|
|
|
self.setcode(name, f"\033[{byte}m")
|
2022-09-05 12:23:17 -05:00
|
|
|
|
2022-09-07 00:11:26 -05:00
|
|
|
def setcode(self, name, escape_code):
|
|
|
|
"""create attr for style and escape code"""
|
|
|
|
|
|
|
|
if not sys.stdout.isatty() or os.getenv("NO_COLOR", False):
|
|
|
|
setattr(self, name, "")
|
|
|
|
else:
|
|
|
|
setattr(self, name, escape_code)
|
|
|
|
|
|
|
|
def custom(self, fg=None, bg=None):
|
|
|
|
"""use custom color"""
|
|
|
|
|
|
|
|
code, end = "\033[", "m"
|
|
|
|
if fg:
|
|
|
|
if isinstance(fg, int):
|
|
|
|
code += f"38;5;{fg}"
|
|
|
|
elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 1:
|
|
|
|
code += f"38;5;{fg[0]}"
|
|
|
|
elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 3:
|
|
|
|
code += f"38;2;{';'.join((str(i) for i in fg))}"
|
|
|
|
else:
|
|
|
|
print("Expected one or three values for fg as a list")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
if bg:
|
|
|
|
if isinstance(bg, int):
|
|
|
|
code += f"{';' if fg else ''}48;5;{bg}"
|
|
|
|
elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 1:
|
|
|
|
code += f"{';' if fg else ''}48;5;{bg[0]}"
|
|
|
|
elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 3:
|
|
|
|
code += f"{';' if fg else ''}48;2;{';'.join((str(i) for i in bg))}"
|
|
|
|
else:
|
|
|
|
print("Expected one or three values for bg as a list")
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
return code + end
|
|
|
|
|
2022-09-13 18:51:01 -05:00
|
|
|
def style(self, text, style):
|
|
|
|
if style not in self.__dict__:
|
|
|
|
print(f"unknown style {style}")
|
|
|
|
sys.exit(1)
|
|
|
|
else:
|
|
|
|
return f"{self.__dict__[style]}{text}{self.__dict__['end']}"
|
|
|
|
|
2022-09-05 12:23:17 -05:00
|
|
|
|
2022-09-05 17:44:39 -05:00
|
|
|
a = ansi = Ansi()
|
2022-09-05 12:23:17 -05:00
|
|
|
#% endblock %#
|