Compare commits

...

2 Commits

Author SHA1 Message Date
f972b9b5cd
Update details in file header for the fork.
Also remove trailing whitespace in the header.
2025-06-01 20:59:25 -04:00
c8d49bda3d
Use r-strings for embedded train car art
That fixes these SyntaxWarnings:

tilde-train.py:60: SyntaxWarning: invalid escape sequence '\_'
  |  |              | |__/V\_| |
tilde-train.py:76: SyntaxWarning: invalid escape sequence '\-'
  == - /  \-/  \-----/  \-/  \ - ==
tilde-train.py:86: SyntaxWarning: invalid escape sequence '\-'
  - /  \-/  \------/  \-/  \ -
2025-06-01 20:56:06 -04:00

View File

@ -6,12 +6,10 @@
## \__|_|_\__,_\___(_)__|_| \__,_|_|_||_| ## \__|_|_\__,_\___(_)__|_| \__,_|_|_||_|
## ##
## tilde.train is an instance of TerminalTrain. It was originally developed ## tilde.train is an instance of TerminalTrain. It was originally developed
## by cmccabe on tilde.town but is now maintained in tildegit with the main ## by cmccabe on tilde.town but is now maintained by vilmibm.
## development ocurring on rawtext.club.
## ##
## If you want to contribute to code improvement, or if you have suggestions ## If you want to contribute code improvements, create a pull request here:
## for cmccabe, create a pull request here: https://tildegit.org/cmccabe/TerminalTrain ## https://git.tilde.town/vilmibm/tilde-train
## or email cmccabe at cmccabe@rawtext.club
## ##
## ----------------- ## -----------------
## ##
@ -53,7 +51,7 @@ print_train = False ## print train to file (instead of the screen scroll)
train = [""]*max_y ## empty train of correct height. train = [""]*max_y ## empty train of correct height.
cars = [] cars = []
engine = """ ____ engine = r""" ____
|____| ------------ |____| ------------
| | === | ------ | | | === | ------ |
___| |__| |_____| | O | | ___| |__| |_____| | O | |
@ -65,7 +63,7 @@ engine = """ ____
//// \__/ \__/ \__/ \__/ """ //// \__/ \__/ \__/ \__/ """
engine = engine.split("\n") engine = engine.split("\n")
caboose = """ || caboose = r""" ||
============= || ============= ||
=========| |========== =========| |==========
| ---- ---- | | ---- ---- |
@ -77,7 +75,7 @@ caboose = """ ||
\__/ \__/ \__/ \__/ """ \__/ \__/ \__/ \__/ """
caboose = caboose.split("\n") caboose = caboose.split("\n")
default_car = """ ---------------------------- default_car = r""" ----------------------------
| | | |
| YOUR TRAIN CAR HERE! | | YOUR TRAIN CAR HERE! |
| Just create a | | Just create a |