windows: Fix line wrapping behaviour on the REPL.

This enables going back to previous wrapped lines using backspace or left
arrow: instead of just sticking to the beginning of a line, the cursor will
move a line up.
pull/4815/head
stijn 2018-06-21 11:54:49 +02:00 zatwierdzone przez Damien George
rodzic 4f44778728
commit 2762f323bf
1 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

@ -106,12 +106,23 @@ void mp_hal_set_interrupt_char(char c) {
}
void mp_hal_move_cursor_back(uint pos) {
if (!pos) {
return;
}
assure_conout_handle();
CONSOLE_SCREEN_BUFFER_INFO info;
GetConsoleScreenBufferInfo(con_out, &info);
info.dwCursorPosition.X -= (short)pos;
if (info.dwCursorPosition.X < 0) {
// Move up a line if needed.
while (info.dwCursorPosition.X < 0) {
info.dwCursorPosition.X = info.dwSize.X + info.dwCursorPosition.X;
info.dwCursorPosition.Y -= 1;
}
// Caller requested to move out of the screen. That's not possible so just clip,
// it's the caller's responsibility to not let this happen.
if (info.dwCursorPosition.Y < 0) {
info.dwCursorPosition.X = 0;
info.dwCursorPosition.Y = 0;
}
SetConsoleCursorPosition(con_out, info.dwCursorPosition);
}