1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
|
# -*- coding: utf-8 -*-
#
# libcaca Colour ASCII-Art library
# Python language bindings
# Copyright (c) 2010 Alex Foulon <alxf@lavabit.com>
# All Rights Reserved
#
# This library is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
#
""" Libcaca Python bindings """
import ctypes
import errno
from caca import _lib, utf8_to_utf32, utf32_to_utf8
from caca import _PYTHON3, _str_to_bytes, _bytes_to_str
from caca.font import _Font
class _Canvas(object):
""" Model for Canvas objects.
"""
def __init__(self):
self._cv = 0
def from_param(self):
""" Required by ctypes module to call object as parameter of
a C function.
"""
return self._cv
def __str__(self):
return "<CacaCanvas %dx%d>" % (self.get_width(), self.get_height())
def __del__(self):
if self._cv > 0:
self._free()
def _free(self):
""" Free a libcaca canvas.
"""
_lib.caca_free_canvas.argtypes = [_Canvas]
_lib.caca_free_canvas.restype = ctypes.c_int
return _lib.caca_free_canvas(self)
class Canvas(_Canvas):
""" Canvas object, methods are libcaca functions with canvas_t as
first parameter.
"""
def __init__(self, width=0, height=0, pointer=None):
""" Canvas constructor.
width -- the desired canvas width
height -- the desired canvas height
pointer -- pointer to libcaca canvas
"""
_lib.caca_create_canvas.argtypes = [ctypes.c_int, ctypes.c_int]
if pointer is None:
try:
self._cv = _lib.caca_create_canvas(width, height)
except ctypes.ArgumentError:
self._cv = 0
raise CanvasError("Specified width or height is invalid")
else:
if self._cv == 0:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Specified width or height is"
" invalid")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory for the requested"
" canvas size")
else:
raise CanvasError("Unknown error: failed to create"
" canvas")
else:
self._cv = pointer
def manage(self, *args, **kw):
""" Not implemented.
"""
raise CanvasError("Not implemented")
def unmanage(self, *args, **kw):
""" Not implemented.
"""
raise CanvasError("Not implemented")
def set_size(self, width, height):
""" Resize a canvas.
width -- the desired canvas width
height -- the desired canvas height
"""
_lib.caca_set_canvas_size.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int
]
_lib.caca_set_canvas_size.restype = ctypes.c_int
try:
ret = _lib.caca_set_canvas_size(self, width, height)
except ctypes.ArgumentError:
raise CanvasError("Specified width or height is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Specified width or height is invalid")
elif err.value == errno.EBUSY:
raise CanvasError("The canvas is in use by a display driver"
" and cannot be resized")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory for the requested"
" canvas size")
else:
return ret
def get_width(self):
""" Get the canvas width.
"""
_lib.caca_get_canvas_width.argtypes = [_Canvas]
_lib.caca_get_canvas_width.restype = ctypes.c_int
return _lib.caca_get_canvas_width(self)
def get_height(self):
""" Get the canvas height.
"""
_lib.caca_get_canvas_height.argtypes = [_Canvas]
_lib.caca_get_canvas_height.restype = ctypes.c_int
return _lib.caca_get_canvas_height(self)
def get_chars(self, *args, **kw):
""" Not implemented.
"""
raise CanvasError("Not implemented")
def get_attrs(self, *args, **kw):
""" Not implemented.
"""
raise CanvasError("Not implemented")
def gotoxy(self, x, y):
""" Set cursor position. Setting the cursor position outside the canvas
is legal but the cursor will not be shown.
x -- X cursor coordinate
y -- Y cursor coordinate
"""
_lib.caca_gotoxy.argtypes = [_Canvas, ctypes.c_int, ctypes.c_int]
_lib.caca_gotoxy.restyoe = ctypes.c_int
try:
ret = _lib.caca_gotoxy(self, x, y)
except ctypes.ArgumentError:
raise CanvasError("specified coordinate X or Y is invalid")
else:
return ret
def wherex(self):
""" Get X cursor position.
"""
_lib.caca_wherex.argtypes = [_Canvas]
_lib.caca_wherex.restype = ctypes.c_int
return _lib.caca_wherex(self)
def wherey(self):
""" Get Y cursor position.
"""
_lib.caca_wherey.argtypes = [_Canvas]
_lib.caca_wherey.restype = ctypes.c_int
return _lib.caca_wherey(self)
def put_char(self, x, y, ch):
""" Print an ASCII or Unicode character. Return the width of the
printed character: 2 for a fullwidth character, 1 otherwise.
x -- X coordinate
y -- Y coordinate
ch -- the character to print
"""
_lib.caca_put_char.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_put_char.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_put_char(self, x, y, ch)
except ctypes.ArgumentError:
raise CanvasError("specified coordinate X or Y is invalid")
else:
return ret
def get_char(self, x, y):
""" Get the Unicode character at the given coordinates.
x -- X coordinate
y -- Y coordinate
"""
_lib.caca_get_char.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int
]
_lib.caca_get_char.restype = ctypes.c_uint32
try:
ch = _lib.caca_get_char(self, x, y)
except ctypes.ArgumentError:
raise CanvasError("specified coordinate X or Y is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf32_to_utf8(ch)
return ch
def put_str(self, x, y, s):
""" Print a string.
x -- X coordinate
y -- Y coordinate
s -- the string to print
"""
_lib.caca_put_str.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_char_p
]
_lib.caca_put_str.restype = ctypes.c_int
if _PYTHON3 and isinstance(s, str):
s = _str_to_bytes(s)
try:
ret = _lib.caca_put_str(self, x, y, s)
except ctypes.ArgumentError:
raise CanvasError("Invalid argument")
else:
return ret
def printf(self, x, y, fmt, *args):
""" Print a formated string.
x -- X coordinate
y -- Y coordinate
fmt -- the format string to print
args -- Arguments to the format string
"""
_lib.caca_printf.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_char_p
]
_lib.caca_printf.restype = ctypes.c_int
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
if _PYTHON3:
nargs = []
for arg in args[:]:
if isinstance(arg, str):
nargs.append(_str_to_bytes(arg))
else:
nargs.append(arg)
else:
nargs = args
try:
ret = _lib.caca_printf(self, x, y, fmt, *nargs)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate X or Y is invalid")
else:
return ret
def vprintf(self, *args, **kw):
""" Not implemented.
"""
raise CanvasError("Not implemented")
def clear(self):
""" Clear the canvas.
"""
_lib.caca_clear_canvas.argtypes = [_Canvas]
_lib.caca_clear_canvas.restype = ctypes.c_int
return _lib.caca_clear_canvas(self)
def set_handle(self, x, y):
""" Set cursor handle. Blitting method will use the handle value to
put the canvas at the proper coordinates.
x -- X handle coordinate
y -- Y handle coordinate
"""
_lib.caca_set_canvas_handle.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int
]
_lib.caca_set_canvas_handle.restype = ctypes.c_int
try:
ret = _lib.caca_set_canvas_handle(self, x, y)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate X or Y is invalid")
else:
return ret
def get_handle_x(self):
""" Get X handle position.
"""
_lib.caca_get_canvas_handle_x.argtypes = [_Canvas]
_lib.caca_get_canvas_handle_x.restype = ctypes.c_int
return _lib.caca_get_canvas_handle_x(self)
def get_handle_y(self):
""" Get Y handle position.
"""
_lib.caca_get_canvas_handle_y.argtypes = [_Canvas]
_lib.caca_get_canvas_handle_y.restype = ctypes.c_int
return _lib.caca_get_canvas_handle_y(self)
def blit(self, x, y, cv, mask=None):
""" Blit canvas onto another one.
x -- X coordinate
y -- Y coordinate
cv -- the source canvas
mask -- the mask canvas
"""
_lib.caca_blit.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, _Canvas, _Canvas
]
_lib.caca_blit.restype = ctypes.c_int
if not isinstance(cv, Canvas):
raise CanvasError("Specified mask canvas is invalid")
else:
if mask is None:
mask = NullCanvas()
else:
if not isinstance(mask, _Canvas):
raise CanvasError("Specified mask canvas is invalid")
try:
ret = _lib.caca_blit(self, x, y, cv, mask)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate X or Y is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("A mask was specified but the mask size"
" and source canvas size do not match")
else:
return ret
def set_boundaries(self, x, y, width, height):
""" Set a canvas' new boundaries.
x -- X coordinate of the top-left corner
y -- Y coordinate of the top-left corner
width -- width of the box
height -- height of the box
"""
_lib.caca_set_canvas_boundaries.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_int, ctypes.c_int
]
_lib.caca_set_canvas_boundaries.restype = ctypes.c_int
try:
ret = _lib.caca_set_canvas_boundaries(self, x, y, width, height)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate or size is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Specified width or height is invalid")
elif err.value == errno.EBUSY:
raise CanvasError("The canvas is in use by a display driver"
" and cannot be resized")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory for the requested"
" canvas size")
else:
return ret
def disable_dirty_rect(self):
""" Disable dirty rectangles.
"""
_lib.caca_disable_dirty_rect.argtypes = [_Canvas]
_lib.caca_disable_dirty_rect.restype = ctypes.c_int
return _lib.caca_disable_dirty_rect(self)
def enable_dirty_rect(self):
""" Enable dirty rectangles.
"""
_lib.caca_enable_dirty_rect.argtypes = [_Canvas]
_lib.caca_enable_dirty_rect.restype = ctypes.c_int
ret = _lib.caca_enable_dirty_rect(self)
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Dirty rectangles were not disabled")
else:
return ret
def get_dirty_rect_count(self):
""" Get the number of dirty rectangles in the canvas.
"""
_lib.caca_get_dirty_rect_count.argtypes = [_Canvas]
_lib.caca_get_dirty_rect_count.restype = ctypes.c_int
return _lib.caca_get_dirty_rect_count(self)
def get_dirty_rect(self, idx):
""" Get a canvas's dirty rectangle. Return python dictionnary with
coords as keys: x, y, width, height.
idx -- the requested rectangle index
"""
dct = None
x = ctypes.c_int()
y = ctypes.c_int()
width = ctypes.c_int()
height = ctypes.c_int()
_lib.caca_get_dirty_rect.argtypes = [
_Canvas, ctypes.c_int,
ctypes.POINTER(ctypes.c_int), ctypes.POINTER(ctypes.c_int),
ctypes.POINTER(ctypes.c_int), ctypes.POINTER(ctypes.c_int)
]
_lib.caca_get_dirty_rect.restype = ctypes.c_int
try:
ret = _lib.caca_get_dirty_rect(self, idx, x, y, width, height)
except ctypes.ArgumentError:
raise CanvasError("Specified rectangle index is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Specified rectangle index is out of"
" bounds")
else:
dct = {
'x': x.value, 'y': y.value,
'width': width.value, 'height': height.value,
}
return dct
def add_dirty_rect(self, x, y, width, height):
""" Add an area to the canvas's dirty rectangle list.
x -- the leftmost edge of the additional dirty rectangle
y -- the topmost edge of the additional dirty rectangle
width -- the width of the additional dirty rectangle
height -- the height of the additional dirty rectangle
"""
_lib.caca_add_dirty_rect.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int
]
_lib.caca_add_dirty_rect.restype = ctypes.c_int
try:
ret =_lib.caca_add_dirty_rect(self, x, y, width, height)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate or size is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Specified rectangle coordinates are out"
" of bounds")
else:
return ret
def remove_dirty_rect(self, x, y, width, height):
""" Remove an area from the dirty rectangle list.
x -- the leftmost edge of the additional dirty rectangle
y -- the topmost edge of the additional dirty rectangle
width -- the width of the additional rectangle
height -- the height of the additional dirty rectangle
"""
_lib.caca_remove_dirty_rect.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int
]
_lib.caca_remove_dirty_rect.restype = ctypes.c_int
try:
ret = _lib.caca_remove_dirty_rect(self, x, y, width, height)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate or size is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Specified rectangle coordinates are out"
" of bounds")
else:
return ret
def clear_dirty_rect_list(self):
""" Clear a canvas's dirty rectangle list.
"""
_lib.caca_clear_dirty_rect_list.argtypes = [_Canvas]
_lib.caca_clear_dirty_rect_list.restype = ctypes.c_int
return _lib.caca_clear_dirty_rect_list(self)
def invert(self):
""" Invert a canvas' colours.
"""
_lib.caca_invert.argtypes = [_Canvas]
_lib.caca_invert.restype = ctypes.c_int
return _lib.caca_invert(self)
def flip(self):
""" Flip a canvas horizontally.
"""
_lib.caca_flip.argtypes = [_Canvas]
_lib.caca_flip.restype = ctypes.c_int
return _lib.caca_flip(self)
def flop(self):
""" Flip a canvas vertically.
"""
_lib.caca_flop.argtypes = [_Canvas]
_lib.caca_flop.restype = ctypes.c_int
return _lib.caca_flop(self)
def rotate_180(self):
""" Rotate a canvas.
"""
_lib.caca_rotate_180.argtypes = [_Canvas]
_lib.caca_rotate_180.restype = ctypes.c_int
return _lib.caca_rotate_180(self)
def rotate_left(self):
""" Rotate a canvas, 90 degrees counterclockwise.
"""
_lib.caca_rotate_left.argtypes = [_Canvas]
_lib.caca_rotate_left.restype = ctypes.c_int
ret = _lib.caca_rotate_left(self)
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EBUSY:
raise CanvasError("The canvas is in use by a display driver"
" and cannot be rotated")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate the new"
" canvas size")
else:
return ret
def rotate_right(self):
""" Rotate a canvas, 90 degrees clockwise.
"""
_lib.caca_rotate_right.argtypes = [_Canvas]
_lib.caca_rotate_right.restype = ctypes.c_int
ret = _lib.caca_rotate_right(self)
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EBUSY:
raise CanvasError("The canvas is in use by a display driver"
" and cannot be rotated")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate the new"
" canvas size")
else:
return ret
def stretch_left(self):
""" Rotate and stretch a canvas, 90 degrees counterclockwise.
"""
_lib.caca_stretch_left.argtypes = [_Canvas]
_lib.caca_stretch_left.restype = ctypes.c_int
ret = _lib.caca_stretch_left(self)
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EBUSY:
raise CanvasError("The canvas is in use by a display driver"
" and cannot be rotated")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate the new"
" canvas size")
else:
return ret
def stretch_right(self):
""" Rotate and stretch a canvas, 90 degrees clockwise.
"""
_lib.caca_stretch_right.argtypes = [_Canvas]
_lib.caca_stretch_right.restype = ctypes.c_int
ret = _lib.caca_stretch_right(self)
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EBUSY:
raise CanvasError("The canvas is in use by a display driver"
" and cannot be rotated")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate the new"
" canvas size")
else:
return ret
def get_attr(self, x, y):
""" Get the text attribute at the given coordinates.
x -- X coordinate
y -- Y coordinate
"""
_lib.caca_get_attr.argtypes = [_Canvas, ctypes.c_int, ctypes.c_int]
_lib.caca_get_attr.restype = ctypes.c_uint32
try:
ret = _lib.caca_get_attr(self, x, y)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate X or Y is invalid")
else:
return ret
def set_attr(self, attr):
""" Set the default character attribute.
attr -- the requested attribute value
"""
_lib.caca_set_attr.argtypes = [_Canvas, ctypes.c_uint32]
_lib.caca_set_attr.restype = ctypes.c_int
try:
ret = _lib.caca_set_attr(self, attr)
except ctypes.ArgumentError:
raise CanvasError("Specified attribute is invalid")
else:
return ret
def unset_attr(self, attr):
""" Unset the default character attribute.
attr -- the requested attribute value
"""
_lib.caca_unset_attr.argtypes = [_Canvas, ctypes.c_uint32]
_lib.caca_unset_attr.restype = ctypes.c_int
try:
ret = _lib.caca_unset_attr(self, attr)
except ctypes.ArgumentError:
raise CanvasError("Specified attribute is invalid")
else:
return ret
def toggle_attr(self, attr):
""" Toggle the default character attribute.
attr -- the requested attribute value
"""
_lib.caca_toggle_attr.argtypes = [_Canvas, ctypes.c_uint32]
_lib.caca_toggle_attr.restype = ctypes.c_int
try:
ret = _lib.caca_toggle_attr(self, attr)
except ctypes.ArgumentError:
raise CanvasError("Specified attribute is invalid")
else:
return ret
def put_attr(self, x, y, attr):
""" Set the character attribute at the given coordinates.
x -- X coordinate
y -- Y coordinate
attr -- the requested attribute value
"""
_lib.caca_put_attr.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_put_attr.restype = ctypes.c_int
try:
ret = _lib.caca_put_attr(self, x, y, attr)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate or attribute is invalid")
else:
return ret
def set_color_ansi(self, fg, bg):
""" Set the default colour pair for text (ANSI version).
fg -- the requested ANSI foreground colour.
bg -- the requested ANSI background colour.
"""
_lib.caca_set_color_ansi.argtypes = [
_Canvas, ctypes.c_uint8, ctypes.c_uint8
]
_lib.caca_set_color_ansi.restype = ctypes.c_int
try:
ret = _lib.caca_set_color_ansi(self, fg, bg)
except ctypes.ArgumentError:
raise CanvasError("At least one of the colour values is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("At least one of the colour values"
" is invalid")
else:
return ret
def set_color_argb(self, fg, bg):
""" Set the default colour pair for text (truecolor version).
fg -- the requested ARGB foreground colour.
bg -- the requested ARGB background colour.
"""
_lib.caca_set_color_argb.argtypes = [
_Canvas, ctypes.c_uint16, ctypes.c_uint16
]
_lib.caca_set_color_argb.restype = ctypes.c_int
try:
ret = _lib.caca_set_color_argb(self, fg, bg)
except ctypes.ArgumentError:
raise CanvasError("At least one of the colour values is invalid")
else:
return ret
def draw_line(self, x1, y1, x2, y2, ch):
""" Draw a line on the canvas using the given character.
x1 -- X coordinate of the first point
y1 -- Y coordinate of the first point
x2 -- X coordinate of the second point
y2 -- Y coordinate of the second point
ch -- character to be used to draw the line
"""
_lib.caca_draw_line.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_draw_line.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_draw_line(self, x1, y1, x2, y2, ch)
except ctypes.ArgumentError:
raise CanvasError("specified coordinate is invalid")
else:
return ret
def draw_polyline(self, array_xy, ch):
""" Draw a polyline.
array_xy -- List of (X, Y) coordinates
ch -- character to be used to draw the line
"""
if not isinstance(array_xy, list) or len(array_xy) < 2:
raise CanvasError("Specified array of coordinates is invalid")
else:
for item in array_xy:
if not isinstance(item, list) and \
not isinstance(item, tuple):
raise CanvasError("Specified array of coordinates"
" is invalid")
ax = ctypes.c_int * len(array_xy)
ay = ctypes.c_int * len(array_xy)
_lib.caca_draw_polyline.argtypes = [
_Canvas, ax, ay, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_draw_polyline.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ax = ax(*[x[0] for x in array_xy])
ay = ay(*[y[1] for y in array_xy])
except IndexError:
raise CanvasError("Specified array coordinates is invalid")
try:
ret = _lib.caca_draw_polyline(self, ax, ay,
len(array_xy) - 1, ch)
except ctypes.ArgumentError:
raise CanvasError("specified array of coordinates is invalid")
else:
return ret
def draw_thin_line(self, x1, y1, x2, y2):
""" Draw a thin line on the canvas, using ASCII art.
x1 -- X coordinate of the first point
y1 -- Y coordinate of the first point
x2 -- X coordinate of the second point
y2 -- Y coordinate of the second point
"""
_lib.caca_draw_thin_line.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int
]
_lib.caca_draw_thin_line.restype = ctypes.c_int
try:
ret = _lib.caca_draw_thin_line(self, x1, y1, x2, y2)
except ctypes.ArgumentError:
raise CanvasError("specified coordinate is invalid")
else:
return ret
def draw_thin_polyline(self, array_xy):
""" Draw an ASCII art thin polyline.
array_xy -- Array of (X, Y) coordinates
"""
if not isinstance(array_xy, list) or len(array_xy) < 2:
raise CanvasError("Specified array of coordinates is invalid")
else:
for item in array_xy:
if not isinstance(item, list) and \
not isinstance(item, tuple):
raise CanvasError("Specified array of coordinates"
" is invalid")
ax = ctypes.c_int * len(array_xy)
ay = ctypes.c_int * len(array_xy)
_lib.caca_draw_thin_polyline.argtypes = [
Canvas, ax, ay, ctypes.c_int
]
_lib.caca_draw_thin_polyline.restype = ctypes.c_int
try:
ax = ax(*[x[0] for x in array_xy])
ay = ay(*[y[1] for y in array_xy])
except IndexError:
raise CanvasError("Specified array coordinates is invalid")
try:
ret = _lib.caca_draw_thin_polyline(self, ax, ay, len(array_xy) - 1)
except ctypes.ArgumentError:
raise CanvasError("specified array of coordinates is invalid")
else:
return ret
def draw_circle(self, x, y, r, ch):
""" Draw a circle on the canvas using the given character.
x -- center X coordinate
y -- center Y coordinate
r -- circle radius
ch -- the UTF-32 character to be used to draw the circle outline
"""
_lib.caca_draw_circle.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_draw_circle.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_draw_circle(self, x, y, r, ch)
except ctypes.ArgumentError:
raise CanvasError("Specified circle coordinate or radius is"
" invalid")
else:
return ret
def draw_ellipse(self, xo, yo, a, b, ch):
""" Draw an ellipse on the canvas using the given character.
xo -- center X coordinate
yo -- center Y coordinate
a -- ellipse x radius
b -- ellipse y radius
ch -- UTF-32 character to be used to draw the ellipse outline
"""
_lib.caca_draw_ellipse.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_draw_ellipse.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_draw_ellipse(self, xo, yo, a, b, ch)
except ctypes.ArgumentError:
raise CanvasError("Specified ellipse coordinate or radius is"
" invalid")
else:
return ret
def draw_thin_ellipse(self, xo, yo, a, b):
""" Draw a thin ellipse on the canvas.
xo -- center X coordinate
yo -- center Y coordinate
a -- ellipse X radius
b -- ellipse Y radius
"""
_lib.caca_draw_thin_ellipse.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int
]
_lib.caca_draw_thin_ellipse.restype = ctypes.c_int
try:
ret = _lib.caca_draw_thin_ellipse(self, xo, yo, a, b)
except ctypes.ArgumentError:
raise CanvasError("Specified ellipse coordinate or radius is"
" invalid")
else:
return ret
def fill_ellipse(self, xo, yo, a, b, ch):
""" Fill an ellipse on the canvas using the given character.
xo -- center X coordinate
yo -- center Y coordinate
a -- ellipse X radius
b -- ellipse Y radius
ch -- UTF-32 character to be used to fill the ellipse
"""
_lib.caca_fill_ellipse.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_fill_ellipse.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_fill_ellipse(self, xo, yo, a, b, ch)
except ctypes.ArgumentError:
raise CanvasError("Specified ellipse coordinate or radius is"
" invalid")
else:
return ret
def draw_box(self, x, y, width, height, ch):
""" Draw a box on the canvas using the given character.
x -- X coordinate of the upper-left corner of the box
y -- Y coordinate of the upper-left corner of the box
width -- width of the box
height -- height of the box
ch -- character to be used to draw the box
"""
_lib.caca_draw_box.argtypes = [
Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_draw_box.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_draw_box(self, x, y, width, height, ch)
except ctypes.ArgumentError:
raise CanvasError("specified box coordinate is invalid")
else:
return ret
def draw_thin_box(self, x, y, width, height):
""" Draw a thin box on the canvas.
x -- X coordinate of the upper-left corner of the box
y -- Y coordinate of the upper-left corner of the box
width -- width of the box
height -- height of the box
"""
_lib.caca_draw_thin_box.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int
]
_lib.caca_draw_thin_box.restype = ctypes.c_int
try:
ret = _lib.caca_draw_thin_box(self, x, y, width, height)
except ctypes.ArgumentError:
raise CanvasError("specified box coordinate is invalid")
else:
return ret
def draw_cp437_box(self, x, y, width, height):
""" Draw a box on the canvas using CP437 characters.
x -- X coordinate of the upper-left corner box
y -- Y coordinate of the upper-left corner box
width -- width of the box
height -- height of the box
"""
_lib.caca_draw_cp437_box.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int
]
_lib.caca_draw_cp437_box.restype = ctypes.c_int
try:
ret = _lib.caca_draw_cp437_box(self, x, y, width, height)
except ctypes.ArgumentError:
raise CanvasError("specified box coordinate is invalid")
else:
return ret
def fill_box(self, x, y, width, height, ch):
""" Fill a box on the canvas using the given character.
x -- X coordinate of the upper-left corner of the box
y -- Y coordinate of the upper-left corner of the box
width -- width of the box
height -- height of the box
ch -- UFT-32 character to be used to fill the box
"""
_lib.caca_fill_box.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_fill_box.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_fill_box(self, x, y, width, height, ch)
except ctypes.ArgumentError:
raise CanvasError("specified box coordinate is invalid")
else:
return ret
def draw_triangle(self, x1, y1, x2, y2, x3, y3, ch):
""" Draw a triangle on the canvas using the given character.
x1 -- X coordinate of the first point
y1 -- Y coordinate of the first point
x2 -- X coordinate of the second point
y2 -- Y coordinate of the second point
x3 -- X coordinate of the third point
y3 -- Y coordinate of the third point
ch -- UTF-32 character to be used to draw the triangle outline
"""
_lib.caca_draw_triangle.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_int, ctypes.c_uint32
]
_lib.caca_draw_triangle.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_draw_triangle(self, x1, y1, x2, y2, x3, y3, ch)
except ctypes.ArgumentError:
raise CanvasError("specified triangle coordinate is invalid")
else:
return ret
def draw_thin_triangle(self, x1, y1, x2, y2, x3, y3):
""" Draw a thin triangle on the canvas.
x1 -- X coordinate of the first point
y1 -- Y coordinate of the first point
x2 -- X coordinate of the second point
y2 -- Y coordinate of the second point
x3 -- X coordinate of the third point
y3 -- Y coordinate of the third point
"""
_lib.caca_draw_thin_triangle.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_int
]
_lib.caca_draw_thin_triangle.restype = ctypes.c_int
try:
ret = _lib.caca_draw_thin_triangle(self, x1, y1, x2, y2, x3, y3)
except ctypes.ArgumentError:
raise CanvasError("specified triangle coordinate is invalid")
else:
return ret
def fill_triangle(self, x1, y1, x2, y2, x3, y3, ch):
""" Fill a triangle on the canvas using the given character.
x1 -- X coordinate of the first point
y1 -- Y coordinate of the first point
x2 -- X coordinate of the second point
y2 -- Y coordinate of the second point
x3 -- X coordinate of the second point
y3 -- Y coordinate of the second point
ch -- UTF-32 character to be used to fill the triangle
"""
_lib.caca_fill_triangle.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_int, ctypes.c_int
]
_lib.caca_fill_triangle.restype = ctypes.c_int
if not isinstance(ch, str):
raise CanvasError("Specified character is invalid")
else:
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
try:
ret = _lib.caca_fill_triangle(self, x1, y1, x2, y2, x3, y3, ch)
except ctypes.ArgumentError:
raise CanvasError("specified triangle coordinate is invalid")
else:
return ret
def fill_triangle_textured(self, coords, tex, uv):
""" Fill a triangle on the canvas using an arbitrary-sized texture.
coords -- coordinates of the triangle (3{x,y})
tex -- the handle of the canvas texture
uv -- coordinates of the texture (3{u,v})
"""
_lib.caca_fill_triangle_textured.argtypes = [
_Canvas, ctypes.c_int * 6, _Canvas, ctypes.c_int * 6
]
_lib.caca_fill_triangle_textured.restype = ctypes.c_int
return _lib.caca_fill_triangle_textured(self, coords, tex, uv)
def get_frame_count(self):
""" Get the number of frames in a canvas.
"""
_lib.caca_get_frame_count.argtypes = [_Canvas]
_lib.caca_get_frame_count.restype = ctypes.c_int
return _lib.caca_get_frame_count(self)
def set_frame(self, idx):
""" Activate a given canvas frame.
idx -- the canvas frame to activate
"""
_lib.caca_set_frame.argtypes = [_Canvas, ctypes.c_int]
_lib.caca_set_frame.restype = ctypes.c_int
try:
ret = _lib.caca_set_frame(self, idx)
except ctypes.ArgumentError:
raise CanvasError("specified index is invalid")
else:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Requested frame is out of range")
else:
return ret
def get_frame_name(self):
""" Get the current frame's name.
"""
_lib.caca_get_frame_name.argtypes = [_Canvas]
_lib.caca_get_frame_name.restype = ctypes.c_char_p
if _PYTHON3:
return _bytes_to_str(_lib.caca_get_frame_name(self))
else:
return _lib.caca_get_frame_name(self)
def set_frame_name(self, name):
""" Set the current frame's name.
name -- the name to give to the current frame
"""
_lib.caca_set_frame_name.argtypes = [_Canvas, ctypes.c_char_p]
_lib.caca_set_frame_name.restype = ctypes.c_int
if _PYTHON3 and isinstance(name, str):
name = _str_to_bytes(name)
try:
ret = _lib.caca_set_frame_name(self, name)
except ctypes.ArgumentError:
raise CanvasError("Specified name is invalid")
else:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate new frame")
else:
return ret
def create_frame(self, idx):
""" Add a frame to a canvas.
idx -- the index where to insert the new frame
"""
_lib.caca_create_frame.argtypes = [_Canvas, ctypes.c_int]
_lib.caca_create_frame.restype = ctypes.c_int
try:
ret = _lib.caca_create_frame(self, idx)
except ctypes.ArgumentError:
raise CanvasError("specified index is invalid")
else:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate new frame")
else:
return ret
def free_frame(self, idx):
""" Remove a frame from a canvas.
idx -- the index of the frame to delete
"""
_lib.caca_free_frame.argtypes = [_Canvas, ctypes.c_int]
_lib.caca_free_frame.restype = ctypes.c_int
try:
ret = _lib.caca_free_frame(self, idx)
except ctypes.ArgumentError:
raise CanvasError("specified index is invalid")
else:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Requested frame is out of range, or attempt"
" to delete the last frame of the canvas")
else:
return ret
def import_from_memory(self, data, fmt):
""" Import a memory buffer into a canvas.
data -- a memory area containing the data to be loaded into
the canvas
fmt -- a string describing the input format
Valid values for format are:
- "": attempt to autodetect the file format.
- caca: import native libcaca files.
- text: import ASCII text files.
- ansi: import ANSI files.
- utf8: import UTF-8 files with ANSI colour codes.
"""
_lib.caca_import_canvas_from_memory.argtypes = [
Canvas, ctypes.c_char_p,
ctypes.c_size_t, ctypes.c_char_p
]
_lib.caca_import_canvas_from_memory.restype = ctypes.c_int
if _PYTHON3 and isinstance(data, str):
data = _str_to_bytes(data)
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
length = ctypes.c_size_t(len(data))
try:
ret = _lib.caca_import_canvas_from_memory(self, data, length, fmt)
except ctypes.ArgumentError:
raise CanvasError("Given data are invalid")
else:
err = ctypes.c_int.in_dll(_lib, "errno")
if ret == -1:
if err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate canvas")
elif err.value == errno.EINVAL:
raise CanvasError("Invalid format requested")
else:
return ret
def import_from_file(self, filename, fmt):
""" Import a file into a canvas.
filename -- the name of the file to load
fmt -- a string describing the input format
Valid values for format are:
- "": attempt to autodetect the file format.
- caca: import native libcaca files.
- text: import ASCII text files.
- ansi: import ANSI files.
- utf8: import UTF-8 files with ANSI colour codes.
"""
_lib.caca_import_canvas_from_file.argtypes = [
_Canvas, ctypes.c_char_p, ctypes.c_char_p
]
_lib.caca_import_canvas_from_file.restype = ctypes.c_int
if _PYTHON3 and isinstance(filename, str):
filename = _str_to_bytes(filename)
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
try:
ret = _lib.caca_import_canvas_from_file(self, filename, fmt)
except ctypes.ArgumentError:
raise CanvasError("Specified filename is invalid")
else:
err = ctypes.c_int.in_dll(_lib, "errno")
if ret == -1:
if err.value == errno.ENOSYS:
raise CanvasError("File access is not implemented on this"
" system")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate canvas")
elif err.value == errno.EINVAL:
raise CanvasError("Invalid format requested")
else:
return ret
def import_area_from_memory(self, x, y, data, fmt):
""" Import a memory buffer into a canvas area.
x -- the leftmost coordinate of the area to import to
y -- the topmost coordinate of the area to import to
data -- a memory area containing the data to be loaded into
the canvas
fmt -- a string describing the input format
Valid values for format are:
- "": attempt to autodetect the file format.
- caca: import native libcaca files.
- text: import ASCII text files.
- ansi: import ANSI files.
- utf8: import UTF-8 files with ANSI colour codes.
"""
length = ctypes.c_size_t(len(data))
_lib.caca_import_area_from_memory.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_char_p, ctypes.c_size_t, ctypes.c_char_p
]
_lib.caca_import_area_from_memory.restype = ctypes.c_int
if _PYTHON3 and isinstance(data, str):
data = _str_to_bytes(data)
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
try:
ret = _lib.caca_import_area_from_memory(self, x, y,
data, length, fmt)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate X or Y is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Unsupported format requested or"
" invalid coordinates")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate canvas")
else:
return ret
def import_area_from_file(self, x, y, filename, fmt):
""" Import a file into a canvas area.
x -- the leftmost coordinate of the area to import to
y -- the topmost coordinate of the area to import to
filename -- the name of the file to be load
fmt -- a string describing the input format
Valid values for format are:
- "": attempt to autodetect the file format.
- caca: import native libcaca files.
- text: import ASCII text files.
- ansi: import ANSI files.
- utf8: import UTF-8 files with ANSI colour codes.
"""
_lib.caca_import_area_from_file.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int,
ctypes.c_char_p, ctypes.c_char_p
]
_lib.caca_import_area_from_file.restype = ctypes.c_int
if _PYTHON3 and isinstance(filename, str):
filename = _str_to_bytes(filename)
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
try:
ret = _lib.caca_import_area_from_file(self, x, y, filename, fmt)
except ctypes.ArgumentError:
raise CanvasError("Specified coordinate X or Y is invalid")
else:
if ret == -1:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.ENOSYS:
raise CanvasError("File access is not implemented on this"
" system")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate canvas")
elif err.value == errno.EINVAL:
raise CanvasError("Unsupported format requested or"
" invalid coordinates")
else:
return ret
def export_to_memory(self, fmt):
""" Export a canvas into a foreign format.
fmt -- a string describing the output format
Valid values for format are:
- caca: export native libcaca files.
- ansi: export ANSI art (CP437 charset with ANSI colour codes).
- html: export an HTML page with CSS information.
- html3: export an HTML table that should be compatible with
most navigators, including textmode ones.
- irc: export UTF-8 text with mIRC colour codes.
- ps: export a PostScript document.
- svg: export an SVG vector image.
- tga: export a TGA image.
"""
p_size_t = ctypes.POINTER(ctypes.c_size_t)
_lib.caca_export_canvas_to_memory.argtypes = [
_Canvas, ctypes.c_char_p, p_size_t
]
_lib.caca_export_canvas_to_memory.restype = ctypes.POINTER(
ctypes.c_char_p)
p = ctypes.c_size_t()
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
try:
ret = _lib.caca_export_canvas_to_memory(self, fmt, p)
except ctypes.ArgumentError:
raise CanvasError("Invalid format requested")
else:
if not ret:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Invalid format requested")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate output"
" buffer")
else:
if _PYTHON3:
return _bytes_to_str(ctypes.string_at(ret, p.value))
else:
return ctypes.string_at(ret, p.value)
def export_area_to_memory(self, x, y, width, height, fmt):
""" Export a canvas portion into a foreign format.
x -- the leftmost coordinate of the area to export
y -- the topmost coordinate of the area to export
width -- the width of the area to export
height -- the height of the area to export
fmt -- a string describing the output format
Valid values for format are:
- caca: export native libcaca files.
- ansi: export ANSI art (CP437 charset with ANSI colour codes).
- html: export an HTML page with CSS information.
- html3: export an HTML table that should be compatible with
most navigators, including textmode ones.
- irc: export UTF-8 text with mIRC colour codes.
- ps: export a PostScript document.
- svg: export an SVG vector image.
- tga: export a TGA image.
"""
p_size_t = ctypes.POINTER(ctypes.c_size_t)
_lib.caca_export_area_to_memory.argtypes = [
_Canvas, ctypes.c_int, ctypes.c_int, ctypes.c_int,
ctypes.c_int, ctypes.c_char_p, p_size_t
]
_lib.caca_export_area_to_memory.restype = ctypes.POINTER(ctypes.c_char_p)
p = ctypes.c_size_t()
if _PYTHON3 and isinstance(fmt, str):
fmt = _str_to_bytes(fmt)
try:
ret = _lib.caca_export_area_to_memory(self, x, y, width, height,
fmt, p)
except ctypes.ArgumentError:
raise CanvasError("Requested area coordinate is invalid")
else:
if not ret:
err = ctypes.c_int.in_dll(_lib, "errno")
if err.value == errno.EINVAL:
raise CanvasError("Invalid format requested")
elif err.value == errno.ENOMEM:
raise CanvasError("Not enough memory to allocate output"
" buffer")
else:
if _PYTHON3:
return _bytes_to_str(ctypes.string_at(ret, p.value))
else:
return ctypes.string_at(ret, p.value)
def set_figfont(self, filename):
""" Load a figfont and attach it to a canvas.
filename -- the figfont file to load.
"""
_lib.caca_canvas_set_figfont.argtypes = [_Canvas, ctypes.c_char_p]
_lib.caca_canvas_set_figfont.restype = ctypes.c_int
if _PYTHON3 and isinstance(filename, str):
filename = _str_to_bytes(filename)
return _lib.caca_canvas_set_figfont(self, filename)
def put_figchar(self, ch):
""" Paste a character using the current figfont.
ch -- the character to paste
"""
_lib.caca_put_figchar.argtypes = [_Canvas, ctypes.c_uint32]
_lib.caca_put_figchar.restype = ctypes.c_int
if _PYTHON3 and isinstance(ch, str):
ch = _str_to_bytes(ch)
try:
ch = ord(ch)
except TypeError:
ch = utf8_to_utf32(ch)
return _lib.caca_put_figchar(self, ch)
def flush_figlet(self):
""" Flush the figlet context
"""
_lib.caca_flush_figlet.argtypes = [_Canvas]
_lib.caca_flush_figlet.restype = ctypes.c_int
return _lib.caca_flush_figlet(self)
def render(self, font, buf, width, height, pitch):
""" Render the canvas onto an image buffer.
font -- a Font() object
buf -- the image buffer
width -- the width (in pixels) of the image
heigth -- the height (in pixels) of the image
pitch -- the pitch (in bytes) of the image
"""
_lib.caca_render_canvas.argtypes = [
_Canvas, _Font, ctypes.c_char_p,
ctypes.c_int, ctypes.c_int, ctypes.c_int
]
_lib.caca_render_canvas.restype = ctypes.c_int
return _lib.caca_render_canvas(self, font, buf, width, height, pitch)
class NullCanvas(_Canvas):
""" Represent a NULL canvas_t, eg to use as canvas mask for blit operations.
"""
def __str__(self):
return "<NullCanvas>"
class CanvasError(Exception):
pass
|