New Entity AI



dugout-> emulator_art.dugout



Provide emulator element that can be used in rendering various types of visual-outputs


            
  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
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2020-2026 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
## INSTANCE: emulator_art.dugout
## MODIFIED: 2026/04/20
## OVERVIEW: Provide emulator elements that can be used in rendering various
## types of visual-outputs
###############################################################################
## 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}"
}