package display import ( "log" "strconv" "unicode/utf8" runewidth "github.com/mattn/go-runewidth" "github.com/zyedidia/micro/internal/buffer" "github.com/zyedidia/micro/internal/config" "github.com/zyedidia/micro/internal/screen" "github.com/zyedidia/micro/internal/util" "github.com/zyedidia/tcell" ) // The BufWindow provides a way of displaying a certain section // of a buffer type BufWindow struct { *View // Buffer being shown in this window Buf *buffer.Buffer active bool sline *StatusLine lineHeight []int hasCalcHeight bool gutterOffset int drawStatus bool } // NewBufWindow creates a new window at a location in the screen with a width and height func NewBufWindow(x, y, width, height int, buf *buffer.Buffer) *BufWindow { w := new(BufWindow) w.View = new(View) w.X, w.Y, w.Width, w.Height, w.Buf = x, y, width, height, buf w.lineHeight = make([]int, height) w.active = true w.sline = NewStatusLine(w) return w } func (w *BufWindow) SetBuffer(b *buffer.Buffer) { w.Buf = b } func (v *View) GetView() *View { return v } func (v *View) SetView(view *View) { v = view } func (w *BufWindow) Resize(width, height int) { w.Width, w.Height = width, height w.lineHeight = make([]int, height) w.hasCalcHeight = false // This recalculates lineHeight w.GetMouseLoc(buffer.Loc{width, height}) } func (w *BufWindow) SetActive(b bool) { w.active = b } func (w *BufWindow) getStartInfo(n, lineN int) ([]byte, int, int, *tcell.Style) { tabsize := util.IntOpt(w.Buf.Settings["tabsize"]) width := 0 bloc := buffer.Loc{0, lineN} b := w.Buf.LineBytes(lineN) curStyle := config.DefStyle var s *tcell.Style for len(b) > 0 { r, size := utf8.DecodeRune(b) curStyle, found := w.getStyle(curStyle, bloc, r) if found { s = &curStyle } w := 0 switch r { case '\t': ts := tabsize - (width % tabsize) w = ts default: w = runewidth.RuneWidth(r) } if width+w > n { return b, n - width, bloc.X, s } width += w b = b[size:] bloc.X++ } return b, n - width, bloc.X, s } // Clear resets all cells in this window to the default style func (w *BufWindow) Clear() { for y := 0; y < w.Height; y++ { for x := 0; x < w.Width; x++ { screen.Screen.SetContent(w.X+x, w.Y+y, ' ', nil, config.DefStyle) } } } // Bottomline returns the line number of the lowest line in the view // You might think that this is obviously just v.StartLine + v.Height // but if softwrap is enabled things get complicated since one buffer // line can take up multiple lines in the view func (w *BufWindow) Bottomline() int { // b := w.Buf // TODO: possible non-softwrap optimization // if !b.Settings["softwrap"].(bool) { // return w.StartLine + w.Height // } prev := 0 for _, l := range w.lineHeight { if l >= prev { prev = l } else { break } } return prev } // Relocate moves the view window so that the cursor is in view // This is useful if the user has scrolled far away, and then starts typing // Returns true if the window location is moved func (w *BufWindow) Relocate() bool { b := w.Buf // how many buffer lines are in the view height := w.Bottomline() + 1 - w.StartLine h := w.Height if w.drawStatus { h-- } if b.LinesNum() <= h || !w.hasCalcHeight { height = w.Height } ret := false activeC := w.Buf.GetActiveCursor() cy := activeC.Y log.Println("RELOCATE", w.StartLine, cy, height) scrollmargin := int(b.Settings["scrollmargin"].(float64)) if cy < w.StartLine+scrollmargin && cy > scrollmargin-1 { log.Println("a") w.StartLine = cy - scrollmargin ret = true } else if cy < w.StartLine { log.Println("b") w.StartLine = cy ret = true } if cy > w.StartLine+height-1-scrollmargin && cy < b.LinesNum()-scrollmargin { log.Println("c") w.StartLine = cy - height + 1 + scrollmargin ret = true } else if cy >= b.LinesNum()-scrollmargin && cy >= height { log.Println("d") w.StartLine = b.LinesNum() - height ret = true } log.Println("RELOCATE DONE", w.StartLine) // horizontal relocation (scrolling) if !b.Settings["softwrap"].(bool) { cx := activeC.GetVisualX() if cx < w.StartCol { w.StartCol = cx ret = true } if cx+w.gutterOffset+1 > w.StartCol+w.Width { w.StartCol = cx - w.Width + w.gutterOffset + 1 ret = true } } return ret } func (w *BufWindow) GetMouseLoc(svloc buffer.Loc) buffer.Loc { b := w.Buf // TODO: possible non-softwrap optimization // if !b.Settings["softwrap"].(bool) { // l := b.LineBytes(svloc.Y) // return buffer.Loc{b.GetActiveCursor().GetCharPosInLine(l, svloc.X), svloc.Y} // } hasMessage := len(b.Messages) > 0 bufHeight := w.Height if w.drawStatus { bufHeight-- } // We need to know the string length of the largest line number // so we can pad appropriately when displaying line numbers maxLineNumLength := len(strconv.Itoa(b.LinesNum())) tabsize := int(b.Settings["tabsize"].(float64)) softwrap := b.Settings["softwrap"].(bool) // this represents the current draw position // within the current window vloc := buffer.Loc{X: 0, Y: 0} // this represents the current draw position in the buffer (char positions) bloc := buffer.Loc{X: -1, Y: w.StartLine} for vloc.Y = 0; vloc.Y < bufHeight; vloc.Y++ { vloc.X = 0 if hasMessage { vloc.X += 2 } if b.Settings["ruler"].(bool) { vloc.X += maxLineNumLength + 1 } line := b.LineBytes(bloc.Y) line, nColsBeforeStart, bslice := util.SliceVisualEnd(line, w.StartCol, tabsize) bloc.X = bslice draw := func() { if nColsBeforeStart <= 0 { vloc.X++ } nColsBeforeStart-- } totalwidth := w.StartCol - nColsBeforeStart if svloc.X <= vloc.X+w.X && vloc.Y+w.Y == svloc.Y { return bloc } for len(line) > 0 { if vloc.X+w.X == svloc.X && vloc.Y+w.Y == svloc.Y { return bloc } r, size := utf8.DecodeRune(line) draw() width := 0 switch r { case '\t': ts := tabsize - (totalwidth % tabsize) width = ts default: width = runewidth.RuneWidth(r) } // Draw any extra characters either spaces for tabs or @ for incomplete wide runes if width > 1 { for i := 1; i < width; i++ { if vloc.X+w.X == svloc.X && vloc.Y+w.Y == svloc.Y { return bloc } draw() } } bloc.X++ line = line[size:] totalwidth += width // If we reach the end of the window then we either stop or we wrap for softwrap if vloc.X >= w.Width { if !softwrap { break } else { vloc.Y++ if vloc.Y >= bufHeight { break } vloc.X = 0 // This will draw an empty line number because the current line is wrapped vloc.X += maxLineNumLength + 1 } } } if vloc.Y+w.Y == svloc.Y { return bloc } bloc.X = w.StartCol bloc.Y++ if bloc.Y >= b.LinesNum() { break } } return buffer.Loc{} } func (w *BufWindow) drawGutter(vloc *buffer.Loc, bloc *buffer.Loc) { char := ' ' s := config.DefStyle for _, m := range w.Buf.Messages { if m.Start.Y == bloc.Y || m.End.Y == bloc.Y { s = m.Style() char = '>' break } } screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, char, nil, s) vloc.X++ screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, char, nil, s) vloc.X++ } func (w *BufWindow) drawLineNum(lineNumStyle tcell.Style, softwrapped bool, maxLineNumLength int, vloc *buffer.Loc, bloc *buffer.Loc) { lineNum := strconv.Itoa(bloc.Y + 1) // Write the spaces before the line number if necessary for i := 0; i < maxLineNumLength-len(lineNum); i++ { screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, ' ', nil, lineNumStyle) vloc.X++ } // Write the actual line number for _, ch := range lineNum { if softwrapped { screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, ' ', nil, lineNumStyle) } else { screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, ch, nil, lineNumStyle) } vloc.X++ } // Write the extra space screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, ' ', nil, lineNumStyle) vloc.X++ } // getStyle returns the highlight style for the given character position // If there is no change to the current highlight style it just returns that func (w *BufWindow) getStyle(style tcell.Style, bloc buffer.Loc, r rune) (tcell.Style, bool) { if group, ok := w.Buf.Match(bloc.Y)[bloc.X]; ok { s := config.GetColor(group.String()) return s, true } return style, false } func (w *BufWindow) showCursor(x, y int, main bool) { if w.active { if main { screen.Screen.ShowCursor(x, y) } else { r, _, _, _ := screen.Screen.GetContent(x, y) screen.Screen.SetContent(x, y, r, nil, config.DefStyle.Reverse(true)) } } } // displayBuffer draws the buffer being shown in this window on the screen.Screen func (w *BufWindow) displayBuffer() { log.Println("STARTLINE", w.StartLine) b := w.Buf hasMessage := len(b.Messages) > 0 bufHeight := w.Height if w.drawStatus { bufHeight-- } w.hasCalcHeight = true start := w.StartLine if b.Settings["syntax"].(bool) && b.SyntaxDef != nil { if start > 0 && b.Rehighlight(start-1) { b.Highlighter.ReHighlightLine(b, start-1) b.SetRehighlight(start-1, false) } b.Highlighter.ReHighlightStates(b, start) b.Highlighter.HighlightMatches(b, w.StartLine, w.StartLine+bufHeight) } lineNumStyle := config.DefStyle if style, ok := config.Colorscheme["line-number"]; ok { lineNumStyle = style } curNumStyle := config.DefStyle if style, ok := config.Colorscheme["current-line-number"]; ok { curNumStyle = style } // We need to know the string length of the largest line number // so we can pad appropriately when displaying line numbers maxLineNumLength := len(strconv.Itoa(b.LinesNum())) softwrap := b.Settings["softwrap"].(bool) tabsize := util.IntOpt(b.Settings["tabsize"]) colorcolumn := util.IntOpt(b.Settings["colorcolumn"]) // this represents the current draw position // within the current window vloc := buffer.Loc{X: 0, Y: 0} // this represents the current draw position in the buffer (char positions) bloc := buffer.Loc{X: -1, Y: w.StartLine} cursors := b.GetCursors() curStyle := config.DefStyle for vloc.Y = 0; vloc.Y < bufHeight; vloc.Y++ { vloc.X = 0 if hasMessage { w.drawGutter(&vloc, &bloc) } if b.Settings["ruler"].(bool) { s := lineNumStyle for _, c := range cursors { if bloc.Y == c.Y && w.active { s = curNumStyle break } } w.drawLineNum(s, false, maxLineNumLength, &vloc, &bloc) } w.gutterOffset = vloc.X line, nColsBeforeStart, bslice, startStyle := w.getStartInfo(w.StartCol, bloc.Y) if startStyle != nil { curStyle = *startStyle } bloc.X = bslice draw := func(r rune, style tcell.Style, showcursor bool) { if nColsBeforeStart <= 0 { for _, c := range cursors { if c.HasSelection() && (bloc.GreaterEqual(c.CurSelection[0]) && bloc.LessThan(c.CurSelection[1]) || bloc.LessThan(c.CurSelection[0]) && bloc.GreaterEqual(c.CurSelection[1])) { // The current character is selected style = config.DefStyle.Reverse(true) if s, ok := config.Colorscheme["selection"]; ok { style = s } } if b.Settings["cursorline"].(bool) && w.active && !c.HasSelection() && c.Y == bloc.Y { if s, ok := config.Colorscheme["cursor-line"]; ok { fg, _, _ := s.Decompose() style = style.Background(fg) } } } if r == '\t' { if s, ok := config.Colorscheme["indent-char"]; ok { style = s indentrunes := []rune(b.Settings["indentchar"].(string)) // if empty indentchar settings, use space if indentrunes == nil || len(indentrunes) == 0 { indentrunes = []rune{' '} } r = indentrunes[0] } } if s, ok := config.Colorscheme["color-column"]; ok { if colorcolumn != 0 && vloc.X-w.gutterOffset == colorcolumn { fg, _, _ := s.Decompose() style = style.Background(fg) } } screen.Screen.SetContent(w.X+vloc.X, w.Y+vloc.Y, r, nil, style) if showcursor { for _, c := range cursors { if c.X == bloc.X && c.Y == bloc.Y && !c.HasSelection() { w.showCursor(w.X+vloc.X, w.Y+vloc.Y, c.Num == 0) } } } vloc.X++ } nColsBeforeStart-- } w.lineHeight[vloc.Y] = bloc.Y totalwidth := w.StartCol - nColsBeforeStart for len(line) > 0 { r, size := utf8.DecodeRune(line) curStyle, _ = w.getStyle(curStyle, bloc, r) draw(r, curStyle, true) width := 0 char := ' ' switch r { case '\t': ts := tabsize - (totalwidth % tabsize) width = ts default: width = runewidth.RuneWidth(r) char = '@' } // Draw any extra characters either spaces for tabs or @ for incomplete wide runes if width > 1 { for i := 1; i < width; i++ { draw(char, curStyle, false) } } bloc.X++ line = line[size:] totalwidth += width // If we reach the end of the window then we either stop or we wrap for softwrap if vloc.X >= w.Width { if !softwrap { break } else { vloc.Y++ if vloc.Y >= bufHeight { break } vloc.X = 0 w.lineHeight[vloc.Y] = bloc.Y // This will draw an empty line number because the current line is wrapped w.drawLineNum(lineNumStyle, true, maxLineNumLength, &vloc, &bloc) } } } style := config.DefStyle for _, c := range cursors { if b.Settings["cursorline"].(bool) && w.active && !c.HasSelection() && c.Y == bloc.Y { if s, ok := config.Colorscheme["cursor-line"]; ok { fg, _, _ := s.Decompose() style = style.Background(fg) } } } for i := vloc.X; i < w.Width; i++ { curStyle := style if s, ok := config.Colorscheme["color-column"]; ok { if colorcolumn != 0 && i-w.gutterOffset == colorcolumn { fg, _, _ := s.Decompose() curStyle = style.Background(fg) } } screen.Screen.SetContent(i+w.X, vloc.Y+w.Y, ' ', nil, curStyle) } for _, c := range cursors { if c.X == bloc.X && c.Y == bloc.Y && !c.HasSelection() { w.showCursor(w.X+vloc.X, w.Y+vloc.Y, c.Num == 0) } } bloc.X = w.StartCol bloc.Y++ if bloc.Y >= b.LinesNum() { break } } } func (w *BufWindow) displayStatusLine() { _, h := screen.Screen.Size() infoY := h if config.GetGlobalOption("infobar").(bool) { infoY-- } if w.Buf.Settings["statusline"].(bool) { w.drawStatus = true w.sline.Display() } else if w.Y+w.Height != infoY { w.drawStatus = true for x := w.X; x < w.X+w.Width; x++ { screen.Screen.SetContent(x, w.Y+w.Height-1, '-', nil, config.DefStyle.Reverse(true)) } } else { w.drawStatus = false } } // Display displays the buffer and the statusline func (w *BufWindow) Display() { w.displayStatusLine() w.displayBuffer() }