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
|
#!/usr/bin/env perl
# $XTermId: lrmm-scroll.pl,v 1.14 2022/10/10 17:07:48 tom Exp $
# -----------------------------------------------------------------------------
# Copyright 2019,2022 by Thomas E. Dickey
#
# All Rights Reserved
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name(s) of the above copyright
# holders shall not be used in advertising or otherwise to promote the
# sale, use or other dealings in this Software without prior written
# authorization.
# -----------------------------------------------------------------------------
# Tests scroll left/right feature in xterm, optionally using margins. This
# applies only to the visible screen (saved-lines are unaffected).
#
use warnings;
use strict;
use diagnostics;
use Term::ReadKey;
use Getopt::Std;
# do this so output from successive calls to this script won't get in the
# wrong order:
use IO::Handle;
STDERR->autoflush(1);
STDOUT->autoflush(1);
our ( $opt_8, $opt_c, $opt_l, $opt_o, $opt_r, $opt_s, $opt_w, $opt_x );
our ( $margins, $test_state, $test_string, $test_width );
our ( $term_height, $term_width );
our $CSI = "\033[";
our @resize;
sub read_resize($) {
my $field = shift;
my $result = shift;
if ( $#resize < 0 ) {
open( FP, "resize -u |" ) or exit $!;
@resize = <FP>;
chomp @resize;
close(FP);
}
for my $n ( 0 .. $#resize ) {
if ( $resize[$n] =~ /^$field=/ ) {
$result = $resize[$n];
$result =~ s/^[^=]*=//;
$result =~ s/;.*//;
last;
}
}
return $result;
}
# returns the number of rows in the screen
sub screen_height() {
return &read_resize( "LINES", 24 );
}
# returns the number of columns in the screen
sub screen_width() {
return &read_resize( "COLUMNS", 80 );
}
sub set_color($) {
my $code = shift;
if ( defined($opt_c) ) {
if ( $code == 3 ) {
printf "%s1;33;42m", $CSI; # yellow-on-green
}
elsif ( $code == 2 ) {
printf "%s0;31;45m", $CSI; # red-on-magenta
}
elsif ( $code == 1 ) {
printf "%s0;36;44m", $CSI; # cyan-on-blue
}
else {
printf "%s0;39;49m", $CSI;
}
}
}
# returns a string of two-column characters given an ASCII alpha/numeric string
sub double_cells($) {
my $value = $_[0];
$value =~ s/ / /g;
pack(
"U*",
map {
( $_ <= 32 || $_ > 127 ) # if non-ASCII character...
? 32 # ...just show a blank
: ( 0xff00 + ( $_ - 32 ) ) # map to "Fullwidth Form"
} unpack( "C*", $value )
); # unpack unsigned-char characters
}
sub clear_screen() {
&upper_left;
printf "%sJ", $CSI;
}
sub clr_to_eol() {
printf "%sK", $CSI;
}
sub lower_left() {
printf "%s%dH", $CSI, $term_height;
}
sub upper_left() {
printf "%sH", $CSI;
}
sub move_to($) {
my $value = shift;
$value += ( $opt_l - 1 ) if ( $margins and not $opt_o );
printf "%s%dG", $CSI, $value + 1;
}
sub bak_scroll($) {
my $value = shift;
if ($value) {
printf "%s%dS", $CSI, $value;
}
else {
printf "%sS", $CSI;
}
}
sub delete_char() {
&set_color(2);
printf "%s%dP", $CSI, 1;
&set_color(1);
}
sub insert_once($) {
my $value = shift;
&set_color(2);
printf "%s%d@", $CSI, length($value);
&write_chars($value);
}
sub insert_mode($) {
my $value = shift;
&set_color(2);
printf "%s%dP", $CSI, length($value);
printf "%s4h", $CSI;
&write_chars($value);
printf "%s4l", $CSI;
}
sub write_chars($) {
&set_color(3);
printf "%s", $_[0];
&set_color(1);
}
# vary the starting point of each line, to make a more interesting pattern
sub starts_of($) {
my $value = shift;
if ( defined($opt_w) ) {
# 0,1,1,2,2,3,3,...
$value = ( ( $value + 1 ) / 2 ) % length($test_string);
}
else {
$value %= length($test_string);
}
return $value;
}
# write the text for the given line-number
sub show_line($) {
my $number = shift;
my $length = $test_width;
# use delete-lines to "pull" the screen up, like scrolling.
select( undef, undef, undef, 0.05 ) if ($opt_s);
&lower_left;
&bak_scroll(1);
# if we're printing double-column characters, we have half as much
# space effectively - but don't forget the remainder, so we can push
# the characters by single-columns.
if ( defined($opt_c) ) {
&set_color(1);
printf "%s%dX", $CSI, $length if ($margins);
&clr_to_eol unless ($margins);
}
my $starts = &starts_of($number);
if ( defined($opt_w) ) {
printf " ", if ( ( $number % 2 ) != 0 );
$length = ( $length - ( ($number) % 2 ) ) / 2;
}
my $string = substr( $test_string, $starts );
while ( length($string) < $length ) {
$string = $string . $test_string;
}
$string = substr( $string, 0, $length );
if ( defined($opt_w) ) {
$string = &double_cells($string);
}
printf "%s", $string;
# now - within the line - modify it
if ($opt_x) {
&move_to( ( 4 * $test_width ) / 5 );
&insert_mode("XX");
&move_to( ( 3 * $test_width ) / 5 );
&delete_char;
&move_to( ( 2 * $test_width ) / 5 );
&insert_once('~');
&move_to( ( 1 * $test_width ) / 5 );
&write_chars('~');
&move_to(0);
}
&set_color(0);
}
sub show_pattern() {
&set_color(0);
&clear_screen;
for ( my $lineno = 0 ; $lineno < $term_height ; ++$lineno ) {
&show_line($lineno);
}
}
sub scroll_left($) {
my $value = shift;
printf "%s%d @", $CSI, $value;
}
sub scroll_right($) {
my $value = shift;
printf "%s%d A", $CSI, $value;
}
sub show_help() {
&finish_test;
&clear_screen;
printf <<EOF;
Key assignments:\r
\r
? shows this screen\r
l, backspace scrolls left\r
r, space scrolls right\r
^L resets the scrolling\r
q quits the demo\r
\r
Press any key to continue...\r
EOF
my $key = ReadKey 0;
&start_test;
&show_pattern;
}
sub start_test() {
&clear_screen;
printf "\x1b G" if ($opt_8);
if ($margins) {
printf "%s?6h", $CSI if ($opt_o);
printf "%s?69h", $CSI;
printf "%s%d;%ds", $CSI, $opt_l, $opt_r;
}
}
sub finish_test() {
printf "%s?6;69l", $CSI if ($margins);
printf "\x1b F" if ($opt_8);
&lower_left;
&clr_to_eol;
}
sub do_test() {
$test_state %= $test_width;
my $key = ReadKey 0;
&show_pattern;
&move_to( 0, $test_state );
my $result = 1;
if ( $key eq "q" or $key eq "\033" ) {
$result = 0;
}
elsif ( $key eq " " or $key eq "l" ) {
&set_color(1);
&scroll_left( ++$test_state );
}
elsif ( $key eq "\b" or $key eq "r" ) {
&set_color(1);
&scroll_right( ++$test_state );
}
elsif ( $key eq "?" ) {
&show_help;
}
elsif ( $key eq "\f" ) {
$test_state = 0;
}
return $result;
}
sub testit() {
ReadMode 'ultra-raw';
$test_state = 0;
&show_pattern;
do {
} while (&do_test);
ReadMode 'restore';
&set_color(0);
}
sub main::HELP_MESSAGE() {
printf STDERR <<EOF
Usage: $0 [options]
Options:
-8 use 8-bit C1 controls
-c use color
-l COL specify left margin
-r COL specify right margin
-o enable origin-mode with margins
-s slow down test-setup
-w write wide-characters
-x modify test-string with inserted/deleted cells
EOF
;
exit 1;
}
$Getopt::Std::STANDARD_HELP_VERSION = 1;
&getopts('8cl:or:swx') || &main::HELP_MESSAGE;
$term_height = &screen_height;
$term_width = &screen_width;
&main::HELP_MESSAGE if ( $opt_8 and $opt_w );
$CSI = "\x9b" if ($opt_8);
$margins = 1 if ( $opt_l or $opt_r );
$opt_l = 1 if ( $margins and not $opt_l );
$opt_r = $term_width if ( $margins and not $opt_l );
$test_width = $term_width;
$test_width = ( $opt_r - $opt_l + 1 ) if ($margins);
$test_string =
"0123456789 abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ";
binmode( STDOUT, ":utf8" ) unless ($opt_8);
&start_test;
&testit;
&finish_test;
1;
|