dugout-> emulator_art.dugout
Provide emulator element that can be used in rendering various types of visual-outputs
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2024 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## CREATED: 2024/01/13
## INSTANCE: emulator_art.dugout
## MODIFIED: 2024/01/13
## OVERVIEW: Provide emulator elements that can be used in rendering various
## types of visual-outputs
## HISTORY: VERSION 1.0
## -> 2024/01/13 (VERSION 1.0) Production
###############################################################################
## Emulator Outputs
###############################################################################
## Text Decoration: td_line_blank
td_line_blank() {
printf "%b\n" "${tmodReset}"
}
## Text Decoration: td_line_*
td_line_one() {
printf "%b#%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_two() {
printf "%b##%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_three() {
printf "%b###%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_four() {
printf "%b####%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_five() {
printf "%b#####%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_ten() {
printf "%b##########%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_twenty() {
printf "%b####################%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_forty() {
printf "%b########################################%b\n" "${tmodLineColor}" "${tmodReset}"
}
td_line_eighty() {
printf "%b################################################################################%b\n" "${tmodLineColor}" "${tmodReset}"
}
## Text Decoration: td_cured_*
td_cured_one() {
printf "%b+%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_two() {
printf "%b++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_three() {
printf "%b+++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_four() {
printf "%b++ ++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_five() {
printf "%b++ + ++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_ten() {
printf "%b+++ ++ ++ +++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_twenty() {
printf "%b+++ ++ ++ +++ +++ ++ ++ +++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_forty() {
printf "%b+++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
td_cured_eighty() {
printf "%b+++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++ +++ ++ ++ +++%b\n" "${tmodCuredColor}" "${tmodReset}"
}
## Text Decoration: td_dash_*
td_dash_one() {
printf "%b-%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_two() {
printf "%b--%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_three() {
printf "%b---%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_four() {
printf "%b----%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_five() {
printf "%b-----%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_ten() {
printf "%b----------%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_space_ten() {
printf "%b- - - - - - - - - -%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_twenty() {
printf "%b--------------------%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_space_twenty() {
printf "%b- - - - - - - - - - - - - - - - - - - -%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_forty() {
printf "%b----------------------------------------%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_space_forty() {
printf "%b- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -%b\n" "${tmodDashColor}" "${tmodReset}"
}
td_dash_eighty() {
printf "%b--------------------------------------------------------------------------------%b\n" "${tmodDashColor}" "${tmodReset}"
}
## Text Decoration: td_star_*
td_star_one() {
printf "%b*%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_two() {
printf "%b**%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_three() {
printf "%b***%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_four() {
printf "%b****%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_five() {
printf "%b*****%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_ten() {
printf "%b**********%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_space_ten() {
printf "%b* * * * * * * * * *%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_twenty() {
printf "%b********************%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_space_twenty() {
printf "%b* * * * * * * * * * * * * * * * * * * *%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_forty() {
printf "%b****************************************%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_space_forty() {
printf "%b* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *%b\n" "${tmodStarColor}" "${tmodReset}"
}
td_star_eighty() {
printf "%b********************************************************************************%b\n" "${tmodStarColor}" "${tmodReset}"
}