Terminal
Module: terminaltexteffects.engine.terminal
A class for managing the terminal state and output.
Attributes:
Name | Type | Description |
---|---|---|
config |
TerminalConfig
|
Configuration for the terminal. |
canvas |
Canvas
|
The canvas in the terminal. |
character_by_input_coord |
dict[Coord, EffectCharacter]
|
A dictionary of characters by their input coordinates. |
Methods:
Name | Description |
---|---|
get_piped_input |
Gets the piped input from stdin. |
prep_canvas |
Prepares the terminal for the effect by adding empty lines and hiding the cursor. |
restore_cursor |
Restores the cursor visibility. |
get_characters |
bool = True, fill_chars: bool = False, added_chars: bool = False, sort: CharacterSort = CharacterSort.TOP_TO_BOTTOM_LEFT_TO_RIGHT) -> list[EffectCharacter]: Get a list of all EffectCharacters in the terminal with an optional sort. |
get_characters_grouped |
CharacterGroup = CharacterGroup.ROW_TOP_TO_BOTTOM, input_characters: bool = True, fill_chars: bool = False, added_chars: bool = False) -> list[list[EffectCharacter]]: Get a list of all EffectCharacters grouped by the specified CharacterGroup grouping. |
get_character_by_input_coord |
Coord) -> EffectCharacter | None: Get an EffectCharacter by its input coordinates. |
set_character_visibility |
EffectCharacter, is_visible: bool): Set the visibility of a character. |
get_formatted_output_string |
Get the formatted output string based on the current terminal state. |
print |
str, enforce_frame_rate: bool = True): Prints the current terminal state to stdout while preserving the cursor position. |
Source code in terminaltexteffects/engine/terminal.py
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 |
|
CharacterGroup
Bases: Enum
An enum specifying character groupings.
Attributes:
Name | Type | Description |
---|---|---|
COLUMN_LEFT_TO_RIGHT |
Group characters by column from left to right. |
|
COLUMN_RIGHT_TO_LEFT |
Group characters by column from right to left. |
|
ROW_TOP_TO_BOTTOM |
Group characters by row from top to bottom. |
|
ROW_BOTTOM_TO_TOP |
Group characters by row from bottom to top. |
|
DIAGONAL_TOP_LEFT_TO_BOTTOM_RIGHT |
Group characters by diagonal from top left to bottom right. |
|
DIAGONAL_BOTTOM_LEFT_TO_TOP_RIGHT |
Group characters by diagonal from bottom left to top right. |
|
DIAGONAL_TOP_RIGHT_TO_BOTTOM_LEFT |
Group characters by diagonal from top right to bottom left. |
|
DIAGONAL_BOTTOM_RIGHT_TO_TOP_LEFT |
Group characters by diagonal from bottom right to top left. |
|
CENTER_TO_OUTSIDE_DIAMONDS |
Group characters by distance from the center to the outside in diamond shapes. |
|
OUTSIDE_TO_CENTER_DIAMONDS |
Group characters by distance from the outside to the center in diamond shapes. |
Source code in terminaltexteffects/engine/terminal.py
CharacterSort
Bases: Enum
An enum for specifying character sorts.
Attributes:
Name | Type | Description |
---|---|---|
RANDOM |
Random order. |
|
TOP_TO_BOTTOM_LEFT_TO_RIGHT |
Top to bottom, left to right. |
|
TOP_TO_BOTTOM_RIGHT_TO_LEFT |
Top to bottom, right to left. |
|
BOTTOM_TO_TOP_LEFT_TO_RIGHT |
Bottom to top, left to right. |
|
BOTTOM_TO_TOP_RIGHT_TO_LEFT |
Bottom to top, right to left. |
|
OUTSIDE_ROW_TO_MIDDLE |
Outside row to middle. |
|
MIDDLE_ROW_TO_OUTSIDE |
Middle row to outside. |
Source code in terminaltexteffects/engine/terminal.py
__init__(input_data, config=None)
Initializes the Terminal object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_data |
str
|
The input data to be displayed in the terminal. |
required |
config |
TerminalConfig
|
Configuration for the terminal. Defaults to None. |
None
|
Source code in terminaltexteffects/engine/terminal.py
add_character(symbol, coord)
Adds a character to the terminal for printing. Used to create characters that are not in the input data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
symbol |
str
|
symbol to add |
required |
coord |
Coord
|
(Coord): set character's input coordinates |
required |
Returns:
Name | Type | Description |
---|---|---|
EffectCharacter |
EffectCharacter
|
the character that was added |
Source code in terminaltexteffects/engine/terminal.py
enforce_framerate()
Enforces the frame rate set in the terminal config by sleeping if the time since the last frame is shorter than the expected frame delay.
Source code in terminaltexteffects/engine/terminal.py
get_character_by_input_coord(coord)
Get an EffectCharacter by its input coordinates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
coord |
Coord
|
input coordinates of the character |
required |
Returns:
Type | Description |
---|---|
EffectCharacter | None
|
EffectCharacter | None: the character at the specified coordinates, or None if no character is found |
Source code in terminaltexteffects/engine/terminal.py
get_characters(*, input_characters=True, fill_chars=False, added_chars=False, sort=CharacterSort.TOP_TO_BOTTOM_LEFT_TO_RIGHT)
Get a list of all EffectCharacters in the terminal with an optional sort.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_characters |
bool
|
whether to include input characters. Defaults to True. |
True
|
fill_chars |
bool
|
whether to include fill characters. Defaults to False. |
False
|
added_chars |
bool
|
whether to include added characters. Defaults to False. |
False
|
sort |
CharacterSort
|
order to sort the characters. Defaults to CharacterSort.TOP_TO_BOTTOM_LEFT_TO_RIGHT. |
TOP_TO_BOTTOM_LEFT_TO_RIGHT
|
Returns:
Type | Description |
---|---|
list[EffectCharacter]
|
list[EffectCharacter]: list of EffectCharacters in the terminal |
Source code in terminaltexteffects/engine/terminal.py
get_characters_grouped(grouping=CharacterGroup.ROW_TOP_TO_BOTTOM, *, input_characters=True, fill_chars=False, added_chars=False)
Get a list of all EffectCharacters grouped by the specified CharacterGroup grouping.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
grouping |
CharacterGroup
|
order to group the characters. Defaults to ROW_TOP_TO_BOTTOM. |
ROW_TOP_TO_BOTTOM
|
input_characters |
bool
|
whether to include input characters. Defaults to True. |
True
|
fill_chars |
bool
|
whether to include fill characters. Defaults to False. |
False
|
added_chars |
bool
|
whether to include added characters. Defaults to False. |
False
|
Returns:
Type | Description |
---|---|
list[list[EffectCharacter]]
|
list[list[EffectCharacter]]: list of lists of EffectCharacters in the terminal. Inner lists correspond to groups as specified in the grouping. |
Source code in terminaltexteffects/engine/terminal.py
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 |
|
get_formatted_output_string()
Get the formatted output string based on the current terminal state.
This method updates the internal terminal representation state before returning the formatted output string.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The formatted output string. |
Source code in terminaltexteffects/engine/terminal.py
get_piped_input()
staticmethod
Gets the piped input from stdin.
This method checks if there is any piped input from the standard input (stdin). If there is no piped input, it returns an empty string. If there is piped input, it reads the input data from stdin and returns it as a string.
The sys.stdin.isatty()
check is used to determine if the program is being run interactively
or if there is piped input. When the program is run interactively, sys.stdin.isatty()
returns True,
indicating that there is no piped input. In this case, the method returns an empty string.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The piped input from stdin as a string, or an empty string if there is no piped input. |
Source code in terminaltexteffects/engine/terminal.py
move_cursor_to_top()
Restores the cursor position to the top of the canvas.
prep_canvas()
Prepares the terminal for the effect by adding empty lines and hiding the cursor.
Source code in terminaltexteffects/engine/terminal.py
print(output_string, *, enforce_frame_rate=True)
Prints the current terminal state to stdout while preserving the cursor position.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_string |
str
|
The string to be printed. |
required |
enforce_frame_rate |
bool
|
Whether to enforce the frame rate set in the terminal config. Defaults to True. |
True
|
Notes
This method includes animation timing to control the frame rate. If the time since the last print is less than required to limit the frame rate, the method will sleep for the remaining time to ensure a consistent animation speed.
Source code in terminaltexteffects/engine/terminal.py
restore_cursor(end_symbol='\n')
Restores the cursor visibility and prints the end_symbol.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
end_symbol |
str
|
The symbol to print after the effect has completed. Defaults to newline. |
'\n'
|
Source code in terminaltexteffects/engine/terminal.py
set_character_visibility(character, is_visible)
Set the visibility of a character.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
character |
EffectCharacter
|
the character to set visibility for |
required |
is_visible |
bool
|
whether the character should be visible |
required |