d5742209d3
Fixes #113 Signed-off-by: Marcos Lilljedahl <marcosnils@gmail.com>
101 lines
2.2 KiB
Go
101 lines
2.2 KiB
Go
// +build windows
|
|
|
|
package winterm
|
|
|
|
const (
|
|
Horizontal = iota
|
|
Vertical
|
|
)
|
|
|
|
func (h *WindowsAnsiEventHandler) getCursorWindow(info *CONSOLE_SCREEN_BUFFER_INFO) SMALL_RECT {
|
|
if h.originMode {
|
|
sr := h.effectiveSr(info.Window)
|
|
return SMALL_RECT{
|
|
Top: sr.top,
|
|
Bottom: sr.bottom,
|
|
Left: 0,
|
|
Right: info.Size.X - 1,
|
|
}
|
|
} else {
|
|
return SMALL_RECT{
|
|
Top: info.Window.Top,
|
|
Bottom: info.Window.Bottom,
|
|
Left: 0,
|
|
Right: info.Size.X - 1,
|
|
}
|
|
}
|
|
}
|
|
|
|
// setCursorPosition sets the cursor to the specified position, bounded to the screen size
|
|
func (h *WindowsAnsiEventHandler) setCursorPosition(position COORD, window SMALL_RECT) error {
|
|
position.X = ensureInRange(position.X, window.Left, window.Right)
|
|
position.Y = ensureInRange(position.Y, window.Top, window.Bottom)
|
|
err := SetConsoleCursorPosition(h.fd, position)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
logger.Infof("Cursor position set: (%d, %d)", position.X, position.Y)
|
|
return err
|
|
}
|
|
|
|
func (h *WindowsAnsiEventHandler) moveCursorVertical(param int) error {
|
|
return h.moveCursor(Vertical, param)
|
|
}
|
|
|
|
func (h *WindowsAnsiEventHandler) moveCursorHorizontal(param int) error {
|
|
return h.moveCursor(Horizontal, param)
|
|
}
|
|
|
|
func (h *WindowsAnsiEventHandler) moveCursor(moveMode int, param int) error {
|
|
info, err := GetConsoleScreenBufferInfo(h.fd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
position := info.CursorPosition
|
|
switch moveMode {
|
|
case Horizontal:
|
|
position.X += SHORT(param)
|
|
case Vertical:
|
|
position.Y += SHORT(param)
|
|
}
|
|
|
|
if err = h.setCursorPosition(position, h.getCursorWindow(info)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (h *WindowsAnsiEventHandler) moveCursorLine(param int) error {
|
|
info, err := GetConsoleScreenBufferInfo(h.fd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
position := info.CursorPosition
|
|
position.X = 0
|
|
position.Y += SHORT(param)
|
|
|
|
if err = h.setCursorPosition(position, h.getCursorWindow(info)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (h *WindowsAnsiEventHandler) moveCursorColumn(param int) error {
|
|
info, err := GetConsoleScreenBufferInfo(h.fd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
position := info.CursorPosition
|
|
position.X = SHORT(param) - 1
|
|
|
|
if err = h.setCursorPosition(position, h.getCursorWindow(info)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|