Files
test2/source/blender/editors/space_console/console_ops.cc
2024-04-20 13:46:14 +10:00

1474 lines
38 KiB
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup spconsole
*/
#include <cctype> /* #ispunct */
#include <cstdlib>
#include <cstring>
#include <sys/stat.h>
#include "MEM_guardedalloc.h"
#include "DNA_userdef_types.h"
#include "BLI_dynstr.h"
#include "BLI_listbase.h"
#include "BLI_string.h"
#include "BLI_string_cursor_utf8.h"
#include "BLI_string_utf8.h"
#include "BLI_utildefines.h"
#include "BKE_context.hh"
#include "BKE_report.hh"
#include "BKE_screen.hh"
#include "WM_api.hh"
#include "WM_types.hh"
#include "ED_screen.hh"
#include "UI_view2d.hh"
#include "RNA_access.hh"
#include "RNA_define.hh"
#include "console_intern.hh"
#define TAB_LENGTH 4
/* -------------------------------------------------------------------- */
/** \name Utilities
* \{ */
static char *console_select_to_buffer(SpaceConsole *sc)
{
if (sc->sel_start == sc->sel_end) {
return nullptr;
}
ConsoleLine cl_dummy = {nullptr};
console_scrollback_prompt_begin(sc, &cl_dummy);
int offset = 0;
LISTBASE_FOREACH (ConsoleLine *, cl, &sc->scrollback) {
offset += cl->len + 1;
}
char *buf_str = nullptr;
if (offset != 0) {
offset -= 1;
int sel[2] = {offset - sc->sel_end, offset - sc->sel_start};
DynStr *buf_dyn = BLI_dynstr_new();
LISTBASE_FOREACH (ConsoleLine *, cl, &sc->scrollback) {
if (sel[0] <= cl->len && sel[1] >= 0) {
int sta = max_ii(sel[0], 0);
int end = min_ii(sel[1], cl->len);
if (BLI_dynstr_get_len(buf_dyn)) {
BLI_dynstr_append(buf_dyn, "\n");
}
BLI_dynstr_nappend(buf_dyn, cl->line + sta, end - sta);
}
sel[0] -= cl->len + 1;
sel[1] -= cl->len + 1;
}
buf_str = BLI_dynstr_get_cstring(buf_dyn);
BLI_dynstr_free(buf_dyn);
}
console_scrollback_prompt_end(sc, &cl_dummy);
return buf_str;
}
static void console_select_update_primary_clipboard(SpaceConsole *sc)
{
if ((WM_capabilities_flag() & WM_CAPABILITY_PRIMARY_CLIPBOARD) == 0) {
return;
}
if (sc->sel_start == sc->sel_end) {
return;
}
char *buf = console_select_to_buffer(sc);
if (buf == nullptr) {
return;
}
WM_clipboard_text_set(buf, true);
MEM_freeN(buf);
}
/* Delete selected characters in the edit line. */
static int console_delete_editable_selection(SpaceConsole *sc)
{
if (sc->sel_start == sc->sel_end) {
return 0;
}
if (sc->sel_start < 0) {
sc->sel_start = 0;
}
ConsoleLine *cl = static_cast<ConsoleLine *>(sc->history.last);
if (!cl || sc->sel_start > cl->len) {
sc->sel_start = sc->sel_end;
return 0;
}
int del_start = sc->sel_start;
int del_end = sc->sel_end;
if (del_end > cl->len) {
/* Adjust range to only editable portion. */
del_end = cl->len;
}
const int len = del_end - del_start;
memmove(cl->line + cl->len - del_end, cl->line + cl->len - del_start, del_start);
cl->len -= len;
cl->line[cl->len] = 0;
cl->cursor = cl->len - del_start;
sc->sel_start = sc->sel_end = cl->cursor;
return len;
}
/** \} */
/* so when we type - the view scrolls to the bottom */
static void console_scroll_bottom(ARegion *region)
{
View2D *v2d = &region->v2d;
v2d->cur.ymin = 0.0;
v2d->cur.ymax = float(v2d->winy);
}
void console_textview_update_rect(SpaceConsole *sc, ARegion *region)
{
View2D *v2d = &region->v2d;
UI_view2d_totRect_set(v2d, region->winx - 1, console_textview_height(sc, region));
}
static void console_select_offset(SpaceConsole *sc, const int offset)
{
sc->sel_start += offset;
sc->sel_end += offset;
}
void console_history_free(SpaceConsole *sc, ConsoleLine *cl)
{
BLI_remlink(&sc->history, cl);
MEM_freeN(cl->line);
MEM_freeN(cl);
}
void console_scrollback_free(SpaceConsole *sc, ConsoleLine *cl)
{
BLI_remlink(&sc->scrollback, cl);
MEM_freeN(cl->line);
MEM_freeN(cl);
}
static void console_scrollback_limit(SpaceConsole *sc)
{
int tot;
for (tot = BLI_listbase_count(&sc->scrollback); tot > U.scrollback; tot--) {
console_scrollback_free(sc, static_cast<ConsoleLine *>(sc->scrollback.first));
}
}
/* return 0 if no change made, clamps the range */
static bool console_line_cursor_set(ConsoleLine *cl, int cursor)
{
int cursor_new;
if (cursor < 0) {
cursor_new = 0;
}
else if (cursor > cl->len) {
cursor_new = cl->len;
}
else {
cursor_new = cursor;
}
if (cursor_new == cl->cursor) {
return false;
}
cl->cursor = cursor_new;
return true;
}
#if 0 /* XXX unused */
static void console_lb_debug__internal(ListBase *lb)
{
ConsoleLine *cl;
printf("%d: ", BLI_listbase_count(lb));
for (cl = lb->first; cl; cl = cl->next) {
printf("<%s> ", cl->line);
}
printf("\n");
}
static void console_history_debug(const bContext *C)
{
SpaceConsole *sc = CTX_wm_space_console(C);
console_lb_debug__internal(&sc->history);
}
#endif
static ConsoleLine *console_lb_add__internal(ListBase *lb, ConsoleLine *from)
{
ConsoleLine *ci = static_cast<ConsoleLine *>(
MEM_callocN(sizeof(ConsoleLine), "ConsoleLine Add"));
if (from) {
BLI_assert(strlen(from->line) == from->len);
ci->line = BLI_strdupn(from->line, from->len);
ci->len = ci->len_alloc = from->len;
ci->cursor = from->cursor;
ci->type = from->type;
}
else {
ci->line = static_cast<char *>(MEM_callocN(64, "console-in-line"));
ci->len_alloc = 64;
ci->len = 0;
}
BLI_addtail(lb, ci);
return ci;
}
static ConsoleLine *console_history_add(SpaceConsole *sc, ConsoleLine *from)
{
return console_lb_add__internal(&sc->history, from);
}
#if 0 /* may use later ? */
static ConsoleLine *console_scrollback_add(const bContext *C, ConsoleLine *from)
{
SpaceConsole *sc = CTX_wm_space_console(C);
return console_lb_add__internal(&sc->scrollback, from);
}
#endif
static ConsoleLine *console_lb_add_str__internal(ListBase *lb, char *str, bool own)
{
ConsoleLine *ci = static_cast<ConsoleLine *>(
MEM_callocN(sizeof(ConsoleLine), "ConsoleLine Add"));
const int str_len = strlen(str);
if (own) {
ci->line = str;
}
else {
ci->line = BLI_strdupn(str, str_len);
}
ci->len = ci->len_alloc = str_len;
BLI_addtail(lb, ci);
return ci;
}
ConsoleLine *console_history_add_str(SpaceConsole *sc, char *str, bool own)
{
return console_lb_add_str__internal(&sc->history, str, own);
}
ConsoleLine *console_scrollback_add_str(SpaceConsole *sc, char *str, bool own)
{
ConsoleLine *ci = console_lb_add_str__internal(&sc->scrollback, str, own);
console_select_offset(sc, ci->len + 1);
return ci;
}
ConsoleLine *console_history_verify(const bContext *C)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = static_cast<ConsoleLine *>(sc->history.last);
if (ci == nullptr) {
ci = console_history_add(sc, nullptr);
}
return ci;
}
static void console_line_verify_length(ConsoleLine *ci, int len)
{
/* resize the buffer if needed */
if (len >= ci->len_alloc) {
/* new length */
#ifndef NDEBUG
int new_len = len + 1;
#else
int new_len = (len + 1) * 2;
#endif
ci->line = static_cast<char *>(MEM_recallocN_id(ci->line, new_len, "console line"));
ci->len_alloc = new_len;
}
}
static void console_line_insert(ConsoleLine *ci, const char *str, int len)
{
if (len == 0) {
return;
}
BLI_assert(len <= strlen(str));
/* The caller must delimit new-lines. */
BLI_assert(str[len - 1] != '\n');
console_line_verify_length(ci, len + ci->len);
memmove(ci->line + ci->cursor + len, ci->line + ci->cursor, (ci->len - ci->cursor) + 1);
memcpy(ci->line + ci->cursor, str, len);
ci->len += len;
ci->cursor += len;
}
/**
* Take an absolute index and give the line/column info.
*
* \note be sure to call console_scrollback_prompt_begin first
*/
static bool console_line_column_from_index(
SpaceConsole *sc, const int pos, ConsoleLine **r_cl, int *r_cl_offset, int *r_col)
{
ConsoleLine *cl;
int offset = 0;
for (cl = static_cast<ConsoleLine *>(sc->scrollback.last); cl; cl = cl->prev) {
offset += cl->len + 1;
if (offset > pos) {
break;
}
}
if (cl) {
offset -= 1;
*r_cl = cl;
*r_cl_offset = offset;
*r_col = offset - pos;
return true;
}
*r_cl = nullptr;
*r_cl_offset = -1;
*r_col = -1;
return false;
}
/* Static functions for text editing. */
/* similar to the text editor, with some not used. keep compatible */
static const EnumPropertyItem console_move_type_items[] = {
{LINE_BEGIN, "LINE_BEGIN", 0, "Line Begin", ""},
{LINE_END, "LINE_END", 0, "Line End", ""},
{PREV_CHAR, "PREVIOUS_CHARACTER", 0, "Previous Character", ""},
{NEXT_CHAR, "NEXT_CHARACTER", 0, "Next Character", ""},
{PREV_WORD, "PREVIOUS_WORD", 0, "Previous Word", ""},
{NEXT_WORD, "NEXT_WORD", 0, "Next Word", ""},
{0, nullptr, 0, nullptr, nullptr},
};
static int console_move_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = console_history_verify(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
int type = RNA_enum_get(op->ptr, "type");
bool select = RNA_boolean_get(op->ptr, "select");
bool done = false;
int old_pos = ci->cursor;
int pos = 0;
if (!select && sc->sel_start != sc->sel_end) {
/* Clear selection if we are not extending it. */
sc->sel_start = sc->sel_end;
}
switch (type) {
case LINE_BEGIN:
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line, ci->len, &pos, STRCUR_DIR_PREV, STRCUR_JUMP_ALL, true);
done = console_line_cursor_set(ci, pos);
break;
case LINE_END:
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line, ci->len, &pos, STRCUR_DIR_NEXT, STRCUR_JUMP_ALL, true);
done = console_line_cursor_set(ci, pos);
break;
case PREV_CHAR:
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line, ci->len, &pos, STRCUR_DIR_PREV, STRCUR_JUMP_NONE, true);
done = console_line_cursor_set(ci, pos);
break;
case NEXT_CHAR:
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line, ci->len, &pos, STRCUR_DIR_NEXT, STRCUR_JUMP_NONE, true);
done = console_line_cursor_set(ci, pos);
break;
/* - if the character is a delimiter then skip delimiters (including white space)
* - when jump over the word */
case PREV_WORD:
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line, ci->len, &pos, STRCUR_DIR_PREV, STRCUR_JUMP_DELIM, true);
done = console_line_cursor_set(ci, pos);
break;
case NEXT_WORD:
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line, ci->len, &pos, STRCUR_DIR_NEXT, STRCUR_JUMP_DELIM, true);
done = console_line_cursor_set(ci, pos);
break;
}
if (select) {
if (sc->sel_start == sc->sel_end || sc->sel_start > ci->len || sc->sel_end > ci->len) {
sc->sel_start = ci->len - old_pos;
sc->sel_end = sc->sel_start;
}
if (pos > old_pos) {
sc->sel_start = ci->len - pos;
}
else {
sc->sel_end = ci->len - pos;
}
}
if (done) {
ED_area_tag_redraw(area);
console_scroll_bottom(region);
}
return OPERATOR_FINISHED;
}
void CONSOLE_OT_move(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Move Cursor";
ot->description = "Move cursor position";
ot->idname = "CONSOLE_OT_move";
/* api callbacks */
ot->exec = console_move_exec;
ot->poll = ED_operator_console_active;
/* properties */
RNA_def_enum(
ot->srna, "type", console_move_type_items, LINE_BEGIN, "Type", "Where to move cursor to");
PropertyRNA *prop = RNA_def_boolean(
ot->srna, "select", false, "Select", "Whether to select while moving");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}
static int console_insert_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
ConsoleLine *ci = console_history_verify(C);
char *str = RNA_string_get_alloc(op->ptr, "text", nullptr, 0, nullptr);
int len = strlen(str);
/* Allow trailing newlines (but strip them). */
while (len > 0 && str[len - 1] == '\n') {
len--;
str[len] = '\0';
}
if (strchr(str, '\n')) {
BKE_report(op->reports, RPT_ERROR, "New lines unsupported, call this operator multiple times");
/* Force cancel. */
len = 0;
}
if (len != 0) {
console_delete_editable_selection(sc);
console_line_insert(ci, str, len);
}
MEM_freeN(str);
if (len == 0) {
return OPERATOR_CANCELLED;
}
console_select_offset(sc, len);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
static int console_insert_invoke(bContext *C, wmOperator *op, const wmEvent *event)
{
/* NOTE: the "text" property is always set from key-map,
* so we can't use #RNA_struct_property_is_set, check the length instead. */
if (!RNA_string_length(op->ptr, "text")) {
/* If alt/control/super are pressed pass through except for UTF8 character event
* (when input method are used for UTF8 inputs, the user may assign key event
* including alt/control/super like control-m to commit UTF8 string.
* in such case, the modifiers in the UTF8 character event make no sense.) */
if ((event->modifier & (KM_CTRL | KM_OSKEY)) && !event->utf8_buf[0]) {
return OPERATOR_PASS_THROUGH;
}
char str[BLI_UTF8_MAX + 1];
const size_t len = BLI_str_utf8_size_safe(event->utf8_buf);
memcpy(str, event->utf8_buf, len);
str[len] = '\0';
RNA_string_set(op->ptr, "text", str);
}
return console_insert_exec(C, op);
}
void CONSOLE_OT_insert(wmOperatorType *ot)
{
PropertyRNA *prop;
/* identifiers */
ot->name = "Insert";
ot->description = "Insert text at cursor position";
ot->idname = "CONSOLE_OT_insert";
/* api callbacks */
ot->exec = console_insert_exec;
ot->invoke = console_insert_invoke;
ot->poll = ED_operator_console_active;
/* properties */
prop = RNA_def_string(
ot->srna, "text", nullptr, 0, "Text", "Text to insert at the cursor position");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}
/* -------------------------------------------------------------------- */
/** \name Indent or Autocomplete Operator
* \{ */
static int console_indent_or_autocomplete_exec(bContext *C, wmOperator * /*op*/)
{
ConsoleLine *ci = console_history_verify(C);
bool text_before_cursor = false;
/* Check any text before cursor (not just the previous character) as is done for
* #TEXT_OT_indent_or_autocomplete because Python auto-complete operates on import
* statements such as completing possible sub-modules: `from bpy import `. */
for (int i = 0; i < ci->cursor; i += BLI_str_utf8_size_safe(&ci->line[i])) {
if (!ELEM(ci->line[i], ' ', '\t')) {
text_before_cursor = true;
break;
}
}
if (text_before_cursor) {
WM_operator_name_call(C, "CONSOLE_OT_autocomplete", WM_OP_INVOKE_DEFAULT, nullptr, nullptr);
}
else {
WM_operator_name_call(C, "CONSOLE_OT_indent", WM_OP_EXEC_DEFAULT, nullptr, nullptr);
}
return OPERATOR_FINISHED;
}
void CONSOLE_OT_indent_or_autocomplete(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Indent or Autocomplete";
ot->idname = "CONSOLE_OT_indent_or_autocomplete";
ot->description = "Indent selected text or autocomplete";
/* api callbacks */
ot->exec = console_indent_or_autocomplete_exec;
ot->poll = ED_operator_console_active;
/* flags */
ot->flag = 0;
}
/** \} */
/* -------------------------------------------------------------------- */
/** \name Indent Operator
* \{ */
static int console_indent_exec(bContext *C, wmOperator * /*op*/)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = console_history_verify(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
int spaces;
int len;
for (spaces = 0; spaces < ci->len; spaces++) {
if (ci->line[spaces] != ' ') {
break;
}
}
len = TAB_LENGTH - spaces % TAB_LENGTH;
console_line_verify_length(ci, ci->len + len);
memmove(ci->line + len, ci->line, ci->len + 1);
memset(ci->line, ' ', len);
ci->len += len;
BLI_assert(ci->len >= 0);
console_line_cursor_set(ci, ci->cursor + len);
console_select_offset(sc, len);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_indent(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Indent";
ot->description = "Add 4 spaces at line beginning";
ot->idname = "CONSOLE_OT_indent";
/* api callbacks */
ot->exec = console_indent_exec;
ot->poll = ED_operator_console_active;
}
/** \} */
static int console_unindent_exec(bContext *C, wmOperator * /*op*/)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = console_history_verify(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
int spaces;
int len;
for (spaces = 0; spaces < ci->len; spaces++) {
if (ci->line[spaces] != ' ') {
break;
}
}
if (spaces == 0) {
return OPERATOR_CANCELLED;
}
len = spaces % TAB_LENGTH;
if (len == 0) {
len = TAB_LENGTH;
}
console_line_verify_length(ci, ci->len - len);
memmove(ci->line, ci->line + len, (ci->len - len) + 1);
ci->len -= len;
BLI_assert(ci->len >= 0);
console_line_cursor_set(ci, ci->cursor - len);
console_select_offset(sc, -len);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_unindent(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Unindent";
ot->description = "Delete 4 spaces from line beginning";
ot->idname = "CONSOLE_OT_unindent";
/* api callbacks */
ot->exec = console_unindent_exec;
ot->poll = ED_operator_console_active;
}
static const EnumPropertyItem console_delete_type_items[] = {
{DEL_NEXT_CHAR, "NEXT_CHARACTER", 0, "Next Character", ""},
{DEL_PREV_CHAR, "PREVIOUS_CHARACTER", 0, "Previous Character", ""},
{DEL_NEXT_WORD, "NEXT_WORD", 0, "Next Word", ""},
{DEL_PREV_WORD, "PREVIOUS_WORD", 0, "Previous Word", ""},
{0, nullptr, 0, nullptr, nullptr},
};
static int console_delete_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = console_history_verify(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
int pos;
int stride;
const short type = RNA_enum_get(op->ptr, "type");
bool done = false;
if (ci->len == 0) {
return OPERATOR_CANCELLED;
}
/* If there is a selection just delete it and nothing else. */
if (sc->sel_start != sc->sel_end && console_delete_editable_selection(sc) > 0) {
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
switch (type) {
case DEL_NEXT_CHAR:
case DEL_NEXT_WORD:
if (ci->cursor < ci->len) {
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line,
ci->len,
&pos,
STRCUR_DIR_NEXT,
(type == DEL_NEXT_CHAR) ? STRCUR_JUMP_NONE : STRCUR_JUMP_DELIM,
true);
stride = pos - ci->cursor;
if (stride) {
memmove(ci->line + ci->cursor,
ci->line + ci->cursor + stride,
(ci->len - (ci->cursor + stride)) + 1);
ci->len -= stride;
BLI_assert(ci->len >= 0);
done = true;
}
}
break;
case DEL_PREV_CHAR:
case DEL_PREV_WORD:
if (ci->cursor > 0) {
pos = ci->cursor;
BLI_str_cursor_step_utf8(ci->line,
ci->len,
&pos,
STRCUR_DIR_PREV,
(type == DEL_PREV_CHAR) ? STRCUR_JUMP_NONE : STRCUR_JUMP_DELIM,
true);
stride = ci->cursor - pos;
if (stride) {
ci->cursor -= stride; /* same as above */
memmove(ci->line + ci->cursor,
ci->line + ci->cursor + stride,
(ci->len - (ci->cursor + stride)) + 1);
ci->len -= stride;
BLI_assert(ci->len >= 0);
done = true;
}
}
break;
}
if (!done) {
return OPERATOR_CANCELLED;
}
console_select_offset(sc, -stride);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_delete(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Delete";
ot->description = "Delete text by cursor position";
ot->idname = "CONSOLE_OT_delete";
/* api callbacks */
ot->exec = console_delete_exec;
ot->poll = ED_operator_console_active;
/* properties */
RNA_def_enum(ot->srna,
"type",
console_delete_type_items,
DEL_NEXT_CHAR,
"Type",
"Which part of the text to delete");
}
static int console_clear_line_exec(bContext *C, wmOperator * /*op*/)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = console_history_verify(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
if (ci->len == 0) {
return OPERATOR_CANCELLED;
}
console_history_add(sc, ci);
console_history_add(sc, nullptr);
console_select_offset(sc, -ci->len);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_clear_line(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Clear Line";
ot->description = "Clear the line and store in history";
ot->idname = "CONSOLE_OT_clear_line";
/* api callbacks */
ot->exec = console_clear_line_exec;
ot->poll = ED_operator_console_active;
}
/* the python exec operator uses this */
static int console_clear_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
const bool scrollback = RNA_boolean_get(op->ptr, "scrollback");
const bool history = RNA_boolean_get(op->ptr, "history");
/* ConsoleLine *ci = */ console_history_verify(C);
if (scrollback) { /* Last item in history. */
while (sc->scrollback.first) {
console_scrollback_free(sc, static_cast<ConsoleLine *>(sc->scrollback.first));
}
}
if (history) {
while (sc->history.first) {
console_history_free(sc, static_cast<ConsoleLine *>(sc->history.first));
}
console_history_verify(C);
}
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_clear(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Clear All";
ot->description = "Clear text by type";
ot->idname = "CONSOLE_OT_clear";
/* api callbacks */
ot->exec = console_clear_exec;
ot->poll = ED_operator_console_active;
/* properties */
RNA_def_boolean(ot->srna, "scrollback", true, "Scrollback", "Clear the scrollback history");
RNA_def_boolean(ot->srna, "history", false, "History", "Clear the command history");
}
/* the python exec operator uses this */
static int console_history_cycle_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
/* TODO: stupid, just prevents crashes when no command line. */
ConsoleLine *ci = console_history_verify(C);
const bool reverse = RNA_boolean_get(op->ptr, "reverse"); /* assumes down, reverse is up */
int prev_len = ci->len;
int old_index = sc->history_index;
int new_index;
if (reverse) {
if (old_index <= 0) {
new_index = 1;
}
else {
new_index = old_index + 1;
}
}
else {
if (old_index <= 0) { /* Down-arrow after exec. */
new_index = -old_index;
}
else {
new_index = old_index - 1;
}
}
/* Find the history item. */
ConsoleLine *ci_prev = ci;
if (old_index > 0) {
/* Skip a previous copy of history item. */
if (ci_prev->prev) {
ci_prev = ci_prev->prev;
}
else { /* Just in case the duplicate item got deleted. */
old_index = 0;
}
}
for (int i = 0; i < new_index; i++) {
if (!ci_prev->prev) {
new_index = i;
break;
}
ci_prev = ci_prev->prev;
}
sc->history_index = new_index;
if (old_index > 0) { /* Remove old copy. */
console_history_free(sc, ci);
ci = ci_prev;
}
if (new_index > 0) { /* Copy history item to the end. */
ci = console_history_add(sc, ci_prev);
}
console_select_offset(sc, ci->len - prev_len);
/* could be wrapped so update scroll rect */
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_history_cycle(wmOperatorType *ot)
{
/* identifiers */
ot->name = "History Cycle";
ot->description = "Cycle through history";
ot->idname = "CONSOLE_OT_history_cycle";
/* api callbacks */
ot->exec = console_history_cycle_exec;
ot->poll = ED_operator_console_active;
/* properties */
RNA_def_boolean(ot->srna, "reverse", false, "Reverse", "Reverse cycle history");
}
/* the python exec operator uses this */
static int console_history_append_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
ConsoleLine *ci = console_history_verify(C);
/* own this text in the new line, don't free */
char *str = RNA_string_get_alloc(op->ptr, "text", nullptr, 0, nullptr);
int cursor = RNA_int_get(op->ptr, "current_character");
const bool rem_dupes = RNA_boolean_get(op->ptr, "remove_duplicates");
int prev_len = ci->len;
if (sc->history_index > 0) {
/* Keep the copy of history item, remove the saved "history 0". */
ConsoleLine *cl = ci->prev;
if (cl) {
console_history_free(sc, cl);
}
/* Negative number makes down-arrow go to same item as before. */
sc->history_index = -sc->history_index;
}
if (rem_dupes) {
/* Remove a repeated command. */
ConsoleLine *cl = ci->prev;
if (cl && STREQ(cl->line, ci->line)) {
console_history_free(sc, cl);
}
/* Remove blank command. */
if (STREQ(str, ci->line)) {
MEM_freeN(str);
return OPERATOR_FINISHED;
}
}
ci = console_history_add_str(sc, str, true); /* own the string */
console_select_offset(sc, ci->len - prev_len);
console_line_cursor_set(ci, cursor);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_history_append(wmOperatorType *ot)
{
/* identifiers */
ot->name = "History Append";
ot->description = "Append history at cursor position";
ot->idname = "CONSOLE_OT_history_append";
/* api callbacks */
ot->exec = console_history_append_exec;
ot->poll = ED_operator_console_active;
/* properties */
RNA_def_string(ot->srna, "text", nullptr, 0, "Text", "Text to insert at the cursor position");
RNA_def_int(
ot->srna, "current_character", 0, 0, INT_MAX, "Cursor", "The index of the cursor", 0, 10000);
RNA_def_boolean(ot->srna,
"remove_duplicates",
false,
"Remove Duplicates",
"Remove duplicate items in the history");
}
/* the python exec operator uses this */
static int console_scrollback_append_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci;
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
/* own this text in the new line, don't free */
char *str = RNA_string_get_alloc(op->ptr, "text", nullptr, 0, nullptr);
int type = RNA_enum_get(op->ptr, "type");
console_history_verify(C);
ci = console_scrollback_add_str(sc, str, true); /* own the string */
ci->type = type;
console_scrollback_limit(sc);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_scrollback_append(wmOperatorType *ot)
{
/* defined in DNA_space_types.h */
static const EnumPropertyItem console_line_type_items[] = {
{CONSOLE_LINE_OUTPUT, "OUTPUT", 0, "Output", ""},
{CONSOLE_LINE_INPUT, "INPUT", 0, "Input", ""},
{CONSOLE_LINE_INFO, "INFO", 0, "Information", ""},
{CONSOLE_LINE_ERROR, "ERROR", 0, "Error", ""},
{0, nullptr, 0, nullptr, nullptr},
};
/* identifiers */
ot->name = "Scrollback Append";
ot->description = "Append scrollback text by type";
ot->idname = "CONSOLE_OT_scrollback_append";
/* api callbacks */
ot->exec = console_scrollback_append_exec;
ot->poll = ED_operator_console_active;
/* properties */
RNA_def_string(ot->srna, "text", nullptr, 0, "Text", "Text to insert at the cursor position");
RNA_def_enum(ot->srna,
"type",
console_line_type_items,
CONSOLE_LINE_OUTPUT,
"Type",
"Console output type");
}
static int console_copy_exec(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
char *buf = console_select_to_buffer(sc);
if (buf == nullptr) {
return OPERATOR_CANCELLED;
}
WM_clipboard_text_set(buf, false);
if (RNA_boolean_get(op->ptr, "delete")) {
console_delete_editable_selection(sc);
ED_area_tag_redraw(CTX_wm_area(C));
}
MEM_freeN(buf);
return OPERATOR_FINISHED;
}
static bool console_copy_poll(bContext *C)
{
SpaceConsole *sc = CTX_wm_space_console(C);
return ED_operator_console_active(C) && sc && (sc->sel_start != sc->sel_end);
}
void CONSOLE_OT_copy(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Copy to Clipboard";
ot->description = "Copy selected text to clipboard";
ot->idname = "CONSOLE_OT_copy";
/* api callbacks */
ot->poll = console_copy_poll;
ot->exec = console_copy_exec;
/* properties */
PropertyRNA *prop = RNA_def_boolean(ot->srna,
"delete",
false,
"Delete Selection",
"Whether to delete the selection after copying");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}
static int console_paste_exec(bContext *C, wmOperator *op)
{
const bool selection = RNA_boolean_get(op->ptr, "selection");
SpaceConsole *sc = CTX_wm_space_console(C);
ConsoleLine *ci = console_history_verify(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
int buf_str_len;
char *buf_str = WM_clipboard_text_get(selection, true, &buf_str_len);
if (buf_str == nullptr) {
return OPERATOR_CANCELLED;
}
if (*buf_str == '\0') {
MEM_freeN(buf_str);
return OPERATOR_CANCELLED;
}
const char *buf_step = buf_str;
do {
const char *buf = buf_step;
buf_step = (char *)BLI_strchr_or_end(buf, '\n');
const int buf_len = buf_step - buf;
if (buf != buf_str) {
WM_operator_name_call(C, "CONSOLE_OT_execute", WM_OP_EXEC_DEFAULT, nullptr, nullptr);
ci = console_history_verify(C);
}
console_delete_editable_selection(sc);
console_line_insert(ci, buf, buf_len);
console_select_offset(sc, buf_len);
} while (*buf_step ? ((void)buf_step++, true) : false);
MEM_freeN(buf_str);
console_textview_update_rect(sc, region);
ED_area_tag_redraw(area);
console_scroll_bottom(region);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_paste(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Paste from Clipboard";
ot->description = "Paste text from clipboard";
ot->idname = "CONSOLE_OT_paste";
/* api callbacks */
ot->poll = ED_operator_console_active;
ot->exec = console_paste_exec;
/* properties */
PropertyRNA *prop;
prop = RNA_def_boolean(ot->srna,
"selection",
false,
"Selection",
"Paste text selected elsewhere rather than copied (X11/Wayland only)");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}
struct SetConsoleCursor {
int sel_old[2];
int sel_init;
};
static void console_cursor_set_to_pos(SpaceConsole *sc,
ARegion *region,
SetConsoleCursor *scu,
const wmEvent *event)
{
int pos = console_char_pick(sc, region, event->mval);
bool dragging = event->type == MOUSEMOVE;
if (scu->sel_init == INT_MAX) {
scu->sel_init = pos;
sc->sel_start = sc->sel_end = pos;
return;
}
if (pos < scu->sel_init) {
sc->sel_start = pos;
sc->sel_end = scu->sel_init;
}
else if (pos > sc->sel_start) {
sc->sel_start = scu->sel_init;
sc->sel_end = pos;
}
else {
sc->sel_start = sc->sel_end = pos;
}
/* Move text cursor to the last selection point. */
ConsoleLine *cl = static_cast<ConsoleLine *>(sc->history.last);
if (cl != nullptr) {
if (dragging && sc->sel_end > cl->len && pos <= cl->len) {
/* Do not move cursor while dragging into the editable area. */
}
else if (pos <= cl->len) {
console_line_cursor_set(cl, cl->len - pos);
}
else if (pos > cl->len && sc->sel_start < cl->len) {
/* Dragging out of editable area, move cursor to start of selection. */
console_line_cursor_set(cl, cl->len - sc->sel_start);
}
}
}
static void console_modal_select_apply(bContext *C, wmOperator *op, const wmEvent *event)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
SetConsoleCursor *scu = static_cast<SetConsoleCursor *>(op->customdata);
const int sel_prev[2] = {sc->sel_start, sc->sel_end};
console_cursor_set_to_pos(sc, region, scu, event);
/* only redraw if the selection changed */
if (sel_prev[0] != sc->sel_start || sel_prev[1] != sc->sel_end) {
ED_area_tag_redraw(area);
}
}
static void console_cursor_set_exit(bContext *C, wmOperator *op)
{
SpaceConsole *sc = CTX_wm_space_console(C);
SetConsoleCursor *scu = static_cast<SetConsoleCursor *>(op->customdata);
console_select_update_primary_clipboard(sc);
MEM_freeN(scu);
}
static int console_modal_select_invoke(bContext *C, wmOperator *op, const wmEvent *event)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
SetConsoleCursor *scu;
ConsoleLine *cl = static_cast<ConsoleLine *>(sc->history.last);
if (cl != nullptr) {
const int pos = console_char_pick(sc, region, event->mval);
if (pos >= 0 && pos <= cl->len) {
/* Set text cursor immediately. */
console_line_cursor_set(cl, cl->len - pos);
}
}
op->customdata = MEM_callocN(sizeof(SetConsoleCursor), "SetConsoleCursor");
scu = static_cast<SetConsoleCursor *>(op->customdata);
scu->sel_old[0] = sc->sel_start;
scu->sel_old[1] = sc->sel_end;
scu->sel_init = INT_MAX;
WM_event_add_modal_handler(C, op);
console_modal_select_apply(C, op, event);
return OPERATOR_RUNNING_MODAL;
}
static int console_modal_select(bContext *C, wmOperator *op, const wmEvent *event)
{
/* Move text cursor to the last selection point. */
switch (event->type) {
case LEFTMOUSE:
case MIDDLEMOUSE:
case RIGHTMOUSE:
if (event->val == KM_PRESS) {
console_modal_select_apply(C, op, event);
break;
}
else if (event->val == KM_RELEASE) {
console_modal_select_apply(C, op, event);
ED_area_tag_redraw(CTX_wm_area(C));
console_cursor_set_exit(C, op);
return OPERATOR_FINISHED;
}
break;
case MOUSEMOVE:
console_modal_select_apply(C, op, event);
break;
}
return OPERATOR_RUNNING_MODAL;
}
static void console_modal_select_cancel(bContext *C, wmOperator *op)
{
console_cursor_set_exit(C, op);
}
void CONSOLE_OT_select_set(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Set Selection";
ot->idname = "CONSOLE_OT_select_set";
ot->description = "Set the console selection";
/* api callbacks */
ot->invoke = console_modal_select_invoke;
ot->modal = console_modal_select;
ot->cancel = console_modal_select_cancel;
ot->poll = ED_operator_console_active;
}
static int console_modal_select_all_invoke(bContext *C,
wmOperator * /* op */,
const wmEvent * /* event */)
{
ScrArea *area = CTX_wm_area(C);
SpaceConsole *sc = CTX_wm_space_console(C);
int offset = strlen(sc->prompt);
LISTBASE_FOREACH (ConsoleLine *, cl, &sc->scrollback) {
offset += cl->len + 1;
}
ConsoleLine *cl = static_cast<ConsoleLine *>(sc->history.last);
if (cl) {
offset += cl->len + 1;
}
sc->sel_start = 0;
sc->sel_end = offset;
ED_area_tag_redraw(area);
return OPERATOR_FINISHED;
}
void CONSOLE_OT_select_all(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Select All";
ot->idname = "CONSOLE_OT_select_all";
ot->description = "Select all the text";
/* api callbacks */
ot->invoke = console_modal_select_all_invoke;
ot->poll = ED_operator_console_active;
}
static int console_selectword_invoke(bContext *C, wmOperator * /*op*/, const wmEvent *event)
{
SpaceConsole *sc = CTX_wm_space_console(C);
ScrArea *area = CTX_wm_area(C);
ARegion *region = BKE_area_find_region_type(area, RGN_TYPE_WINDOW);
ConsoleLine cl_dummy = {nullptr};
ConsoleLine *cl;
int ret = OPERATOR_CANCELLED;
int pos, offset, n;
pos = console_char_pick(sc, region, event->mval);
console_scrollback_prompt_begin(sc, &cl_dummy);
if (console_line_column_from_index(sc, pos, &cl, &offset, &n)) {
int sel[2] = {n, n};
BLI_str_cursor_step_bounds_utf8(cl->line, cl->len, n, &sel[1], &sel[0]);
sel[0] = offset - sel[0];
sel[1] = offset - sel[1];
if ((sel[0] != sc->sel_start) || (sel[1] != sc->sel_end)) {
sc->sel_start = sel[0];
sc->sel_end = sel[1];
ED_area_tag_redraw(area);
ret = OPERATOR_FINISHED;
}
}
console_scrollback_prompt_end(sc, &cl_dummy);
ConsoleLine *ci = static_cast<ConsoleLine *>(sc->history.last);
if (ci && sc->sel_start <= ci->len) {
console_line_cursor_set(ci, ci->len - sc->sel_start);
}
if (ret & OPERATOR_FINISHED) {
console_select_update_primary_clipboard(sc);
}
return ret;
}
void CONSOLE_OT_select_word(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Select Word";
ot->description = "Select word at cursor position";
ot->idname = "CONSOLE_OT_select_word";
/* api callbacks */
ot->invoke = console_selectword_invoke;
ot->poll = ED_operator_console_active;
}