mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-28 03:10:24 -04:00
send targets are now by ID and Song has "Score" part, which is the notes for it. also, moved the model part separate of the actual gioui dependend stuff. sorry to my future self about the code bomb; ended up too far and did not find an easy way to rewrite the history to make the steps smaller, so in the end, just squashed everything.
73 lines
2.4 KiB
Go
73 lines
2.4 KiB
Go
package gioui
|
|
|
|
import (
|
|
"fmt"
|
|
"image"
|
|
"strings"
|
|
|
|
"gioui.org/f32"
|
|
"gioui.org/layout"
|
|
"gioui.org/op"
|
|
"gioui.org/op/clip"
|
|
"gioui.org/op/paint"
|
|
"gioui.org/widget"
|
|
"github.com/vsariola/sointu/tracker"
|
|
)
|
|
|
|
const rowMarkerWidth = 50
|
|
|
|
func (t *Tracker) layoutRowMarkers(gtx C) D {
|
|
gtx.Constraints.Min.X = rowMarkerWidth
|
|
paint.FillShape(gtx.Ops, rowMarkerSurfaceColor, clip.Rect{
|
|
Max: gtx.Constraints.Max,
|
|
}.Op())
|
|
defer op.Save(gtx.Ops).Load()
|
|
clip.Rect{Max: gtx.Constraints.Max}.Add(gtx.Ops)
|
|
op.Offset(f32.Pt(0, float32(gtx.Constraints.Max.Y-trackRowHeight)/2)).Add(gtx.Ops)
|
|
cursorSongRow := t.Cursor().Pattern*t.Song().Score.RowsPerPattern + t.Cursor().Row
|
|
playPos, playing := t.player.Position()
|
|
playSongRow := playPos.Pattern*t.Song().Score.RowsPerPattern + playPos.Row
|
|
op.Offset(f32.Pt(0, (-1*trackRowHeight)*float32(cursorSongRow))).Add(gtx.Ops)
|
|
beatMarkerDensity := t.Song().RowsPerBeat
|
|
for beatMarkerDensity <= 2 {
|
|
beatMarkerDensity *= 2
|
|
}
|
|
for i := 0; i < t.Song().Score.Length; i++ {
|
|
for j := 0; j < t.Song().Score.RowsPerPattern; j++ {
|
|
songRow := i*t.Song().Score.RowsPerPattern + j
|
|
if mod(songRow, beatMarkerDensity*2) == 0 {
|
|
paint.FillShape(gtx.Ops, twoBeatHighlight, clip.Rect{Max: image.Pt(gtx.Constraints.Max.X, trackRowHeight)}.Op())
|
|
} else if mod(songRow, beatMarkerDensity) == 0 {
|
|
paint.FillShape(gtx.Ops, oneBeatHighlight, clip.Rect{Max: image.Pt(gtx.Constraints.Max.X, trackRowHeight)}.Op())
|
|
}
|
|
if playing && songRow == playSongRow {
|
|
paint.FillShape(gtx.Ops, trackerPlayColor, clip.Rect{Max: image.Pt(gtx.Constraints.Max.X, trackRowHeight)}.Op())
|
|
}
|
|
if j == 0 {
|
|
paint.ColorOp{Color: rowMarkerPatternTextColor}.Add(gtx.Ops)
|
|
widget.Label{}.Layout(gtx, textShaper, trackerFont, trackerFontSize, strings.ToUpper(fmt.Sprintf("%02x", i)))
|
|
}
|
|
if t.EditMode() == tracker.EditTracks && songRow == cursorSongRow {
|
|
paint.ColorOp{Color: trackerActiveTextColor}.Add(gtx.Ops)
|
|
} else {
|
|
paint.ColorOp{Color: rowMarkerRowTextColor}.Add(gtx.Ops)
|
|
}
|
|
op.Offset(f32.Pt(rowMarkerWidth/2, 0)).Add(gtx.Ops)
|
|
widget.Label{}.Layout(gtx, textShaper, trackerFont, trackerFontSize, strings.ToUpper(fmt.Sprintf("%02x", j)))
|
|
op.Offset(f32.Pt(-rowMarkerWidth/2, trackRowHeight)).Add(gtx.Ops)
|
|
}
|
|
}
|
|
return layout.Dimensions{Size: image.Pt(rowMarkerWidth, gtx.Constraints.Max.Y)}
|
|
}
|
|
|
|
func mod(a, b int) int {
|
|
m := a % b
|
|
if a < 0 && b < 0 {
|
|
m -= b
|
|
}
|
|
if a < 0 && b > 0 {
|
|
m += b
|
|
}
|
|
return m
|
|
}
|