/[LeafOK_CVS]/lbbs/src/editor.c
ViewVC logotype

Diff of /lbbs/src/editor.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.7 by sysadm, Wed Jun 11 07:21:59 2025 UTC Revision 1.9 by sysadm, Wed Jun 11 10:44:33 2025 UTC
# Line 425  int editor_data_delete(EDITOR_DATA *p_ed Line 425  int editor_data_delete(EDITOR_DATA *p_ed
425          if (offset_data_line + str_len > len_data_line ||          if (offset_data_line + str_len > len_data_line ||
426                  (offset_data_line + str_len == len_data_line && p_data_line[offset_data_line] == '\n'))                  (offset_data_line + str_len == len_data_line && p_data_line[offset_data_line] == '\n'))
427          {          {
428                  log_error("Nothing to be delete\n");                  if (display_line + 1 >= p_editor_data->display_line_total) // No additional display line (data line)
429                  return 0;                  {
430          }                          log_common("Debug: No additional display line: %ld + 1 >= %ld\n", display_line, p_editor_data->display_line_total);
431                            return 0;
432                    }
433    
434                    len_data_line = 0; // Next data line
435                    last_display_line = p_editor_data->display_line_total - 1;
436                    for (i = display_line + 1; i < p_editor_data->display_line_total; i++)
437                    {
438                            len_data_line += p_editor_data->display_line_lengths[i];
439    
440                            if (p_editor_data->display_line_lengths[i] > 0 &&
441                                    p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of current data line
442                            {
443                                    last_display_line = i;
444                                    break;
445                            }
446                    }
447    
448          memmove(p_data_line + offset_data_line, p_data_line + offset_data_line + str_len, (size_t)(len_data_line - offset_data_line - str_len));                  if (offset_data_line + len_data_line + 1 > MAX_EDITOR_DATA_LINE_LENGTH) // No enough buffer to merge current data line with next data line
449          p_data_line[len_data_line - str_len] = '\0';                  {
450          len_data_line -= str_len;                          log_common("Debug: No enough buffer to merge with next data line: %ld > %ld\n",
451                                               offset_data_line + len_data_line + 1, MAX_EDITOR_DATA_LINE_LENGTH);
452                            return 0;
453                    }
454    
455                    // Append next data line to current one
456                    memcpy(p_data_line + offset_data_line, p_editor_data->p_display_lines[display_line + 1], (size_t)len_data_line);
457                    p_data_line[offset_data_line + len_data_line] = '\0';
458    
459                    // Recycle next data line
460                    // TODO: free(p_editor_data->p_display_lines[display_line + 1]);
461            }
462            else
463            {
464                    memmove(p_data_line + offset_data_line, p_data_line + offset_data_line + str_len, (size_t)(len_data_line - offset_data_line - str_len));
465                    p_data_line[len_data_line - str_len] = '\0';
466                    len_data_line -= str_len;
467            }
468    
469          // Set p_data_line to head of current display line          // Set p_data_line to head of current display line
470          p_data_line = p_editor_data->p_display_lines[display_line];          p_data_line = p_editor_data->p_display_lines[display_line];
# Line 472  int editor_data_delete(EDITOR_DATA *p_ed Line 505  int editor_data_delete(EDITOR_DATA *p_ed
505                  *p_last_updated_line = p_editor_data->display_line_total - 1;                  *p_last_updated_line = p_editor_data->display_line_total - 1;
506          }          }
507    
508          return 0;          return str_len;
509  }  }
510    
511  static int editor_display_key_handler(int *p_key, EDITOR_CTX *p_ctx)  static int editor_display_key_handler(int *p_key, EDITOR_CTX *p_ctx)
# Line 510  int editor_display(EDITOR_DATA *p_editor Line 543  int editor_display(EDITOR_DATA *p_editor
543          long display_line_out, offset_out;          long display_line_out, offset_out;
544          int scroll_rows;          int scroll_rows;
545          long last_updated_line = 0;          long last_updated_line = 0;
546          int insert = 1;          int key_insert = 1;
547          int i;          int i;
548    
549          screen_current_row = screen_begin_row;          screen_current_row = screen_begin_row;
# Line 531  int editor_display(EDITOR_DATA *p_editor Line 564  int editor_display(EDITOR_DATA *p_editor
564    
565                          snprintf(buffer, sizeof(buffer),                          snprintf(buffer, sizeof(buffer),
566                                           "\033[1;44;33m[\033[32m%ld\033[33m;\033[32m%ld\033[33m] "                                           "\033[1;44;33m[\033[32m%ld\033[33m;\033[32m%ld\033[33m] "
567                                           "第\033[32m%ld\033[33m/\033[32m%ld\033[33m行 "                                           "第\033[32m%ld\033[33m/\033[32m%ld\033[33m行 [\033[32m%s\033[33m] "
568                                           "%s",                                           "%s",
569                                           row_pos, col_pos,                                           row_pos, col_pos,
570                                           ctx.line_cursor, p_editor_data->display_line_total,                                           ctx.line_cursor, p_editor_data->display_line_total,
571                                             key_insert ? "插入" : "改写",
572                                           ctx.msg);                                           ctx.msg);
573    
574                          len = split_line(buffer, SCREEN_COLS, &eol, &display_len);                          len = split_line(buffer, SCREEN_COLS, &eol, &display_len);
# Line 587  int editor_display(EDITOR_DATA *p_editor Line 621  int editor_display(EDITOR_DATA *p_editor
621                                          display_line_out = display_line_in;                                          display_line_out = display_line_in;
622                                          offset_out = offset_in;                                          offset_out = offset_in;
623    
624                                            if (!key_insert) // overwrite
625                                            {
626                                                    if (editor_data_delete(p_editor_data, display_line_in, offset_in,
627                                                                                               &last_updated_line) < 0)
628                                                    {
629                                                            log_error("editor_data_delete() error\n");
630                                                    }
631                                            }
632    
633                                          if (editor_data_insert(p_editor_data, &display_line_out, &offset_out,                                          if (editor_data_insert(p_editor_data, &display_line_out, &offset_out,
634                                                                                     input_str, str_len, &last_updated_line) < 0)                                                                                     input_str, str_len, &last_updated_line) < 0)
635                                          {                                          {
# Line 629  int editor_display(EDITOR_DATA *p_editor Line 672  int editor_display(EDITOR_DATA *p_editor
672                                                  continue;                                                  continue;
673                                          }                                          }
674                                  }                                  }
675                                  else if (ch == KEY_DEL) // Del                                  else if (ch == KEY_DEL || ch == BACKSPACE) // Del
676                                  {                                  {
677                                          last_updated_line = line_current;                                          if (ch == BACKSPACE)
678                                            {
679                                                    col_pos--;
680                                                    if (col_pos < 1 && line_current - screen_current_row + row_pos >= 0)
681                                                    {
682                                                            row_pos--;
683                                                            col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]);
684                                                    }
685                                            }
686    
687                                          if (editor_data_delete(p_editor_data, line_current - screen_current_row + row_pos, col_pos - 1,                                          if ((str_len = editor_data_delete(p_editor_data, line_current - screen_current_row + row_pos, col_pos - 1,
688                                                                                     &last_updated_line) < 0)                                                                                                            &last_updated_line)) < 0)
689                                          {                                          {
690                                                  log_error("editor_data_delete() error\n");                                                  log_error("editor_data_delete() error\n");
691                                          }                                          }
692                                          else                                          else
693                                          {                                          {
694                                                    if (ch == BACKSPACE)
695                                                    {
696                                                            for (i = 1; i < str_len; i++)
697                                                            {
698                                                                    col_pos--;
699                                                                    if (col_pos < 1 && line_current - screen_current_row + row_pos >= 0)
700                                                                    {
701                                                                            row_pos--;
702                                                                            col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]);
703                                                                    }
704                                                            }
705                                                    }
706    
707                                                  screen_end_row = MIN(SCREEN_ROWS - 1, screen_current_row + (int)(last_updated_line - line_current));                                                  screen_end_row = MIN(SCREEN_ROWS - 1, screen_current_row + (int)(last_updated_line - line_current));
708                                                  line_current -= (screen_current_row - row_pos);                                                  line_current -= (screen_current_row - row_pos);
709                                                  screen_current_row = (int)row_pos;                                                  screen_current_row = (int)row_pos;
710    
711                                                    if (screen_current_row < screen_begin_row) // row_pos <= 0
712                                                    {
713                                                            screen_current_row = screen_begin_row;
714                                                            row_pos = screen_begin_row;
715                                                            screen_end_row = SCREEN_ROWS - 1;
716                                                    }
717                                          }                                          }
718    
719                                          continue;                                          continue;
# Line 671  int editor_display(EDITOR_DATA *p_editor Line 742  int editor_display(EDITOR_DATA *p_editor
742                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]));
743                                          break;                                          break;
744                                  case KEY_INS:                                  case KEY_INS:
745                                          insert = !insert;                                          key_insert = !key_insert;
746                                          break;                                          break;
747                                  case KEY_HOME:                                  case KEY_HOME:
748                                          row_pos = 1;                                          row_pos = 1;


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1