Support insert mode and erase character

This commit is contained in:
Keith Winstein
2011-02-01 02:11:46 -05:00
parent f2d4f1d227
commit 39dfccf450
4 changed files with 56 additions and 1 deletions
+6
View File
@@ -68,6 +68,12 @@ void Emulator::print( Parser::Print *act )
fb.move_rows_autoscroll( 1 );
}
if ( fb.ds.insert_mode ) {
for ( int i = 0; i < chwidth; i++ ) {
fb.insert_cell( fb.ds.get_cursor_row(), fb.ds.get_cursor_col() );
}
}
this_cell = fb.get_cell();
this_cell->reset();
+2 -1
View File
@@ -46,7 +46,8 @@ DrawState::DrawState( int s_width, int s_height )
combining_char_col( 0 ), combining_char_row( 0 ), tabs( s_width ),
scrolling_region_top_row( 0 ), scrolling_region_bottom_row( height - 1 ),
renditions(), save(),
next_print_will_wrap( false ), origin_mode( false ), auto_wrap_mode( true )
next_print_will_wrap( false ), origin_mode( false ), auto_wrap_mode( true ),
insert_mode( false )
{
for ( int i = 0; i < width; i++ ) {
tabs[ i ] = ( (i % 8) == 0 );
+1
View File
@@ -66,6 +66,7 @@ namespace Terminal {
bool next_print_will_wrap;
bool origin_mode;
bool auto_wrap_mode;
bool insert_mode;
/* bold, etc. */
+47
View File
@@ -249,6 +249,39 @@ void CSI_DECRM( Framebuffer *fb, Dispatcher *dispatch )
static Function func_CSI_DECSM( CSI, "?h", CSI_DECSM );
static Function func_CSI_DECRM( CSI, "?l", CSI_DECRM );
static bool *get_ANSI_mode( int param, Framebuffer *fb ) {
switch ( param ) {
case 4: /* insert/replace mode */
return &(fb->ds.insert_mode);
}
return NULL;
}
/* set mode */
void CSI_SM( Framebuffer *fb, Dispatcher *dispatch )
{
for ( int i = 0; i < dispatch->param_count(); i++ ) {
bool *mode = get_ANSI_mode( dispatch->getparam( i, 0 ), fb );
if ( mode ) {
*mode = true;
}
}
}
/* clear mode */
void CSI_RM( Framebuffer *fb, Dispatcher *dispatch )
{
for ( int i = 0; i < dispatch->param_count(); i++ ) {
bool *mode = get_ANSI_mode( dispatch->getparam( i, 0 ), fb );
if ( mode ) {
*mode = false;
}
}
}
static Function func_CSI_SM( CSI, "h", CSI_SM );
static Function func_CSI_RM( CSI, "l", CSI_RM );
/* set top and bottom margins */
void CSI_DECSTBM( Framebuffer *fb, Dispatcher *dispatch )
{
@@ -392,3 +425,17 @@ void CSI_HPA( Framebuffer *fb, Dispatcher *dispatch )
static Function func_CSI_CHA( CSI, "G", CSI_HPA ); /* ECMA-48 name: CHA */
static Function func_CSI_HPA( CSI, "\x60", CSI_HPA ); /* ECMA-48 name: HPA */
/* erase character */
void CSI_ECH( Framebuffer *fb, Dispatcher *dispatch )
{
int num = dispatch->getparam( 0, 1 );
int limit = fb->ds.get_cursor_col() + num;
if ( limit >= fb->ds.get_width() ) {
limit = fb->ds.get_width() - 1;
}
clearline( fb, -1, fb->ds.get_cursor_col(), limit );
}
static Function func_CSI_ECH( CSI, "X", CSI_ECH );