Migrated test elements
This commit is contained in:
parent
77e1151bd8
commit
ca27a810c7
@ -5,11 +5,11 @@ import "time"
|
|||||||
import "image"
|
import "image"
|
||||||
import "image/color"
|
import "image/color"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo"
|
import "git.tebibyte.media/sashakoshka/tomo"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/canvas"
|
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/shatter"
|
import "git.tebibyte.media/sashakoshka/tomo/shatter"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/textdraw"
|
import "git.tebibyte.media/sashakoshka/tomo/textdraw"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/artist/shapes"
|
import "git.tebibyte.media/sashakoshka/tomo/artist/shapes"
|
||||||
|
import "git.tebibyte.media/sashakoshka/tomo/artist/artutil"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/artist/patterns"
|
import "git.tebibyte.media/sashakoshka/tomo/artist/patterns"
|
||||||
import defaultfont "git.tebibyte.media/sashakoshka/tomo/default/font"
|
import defaultfont "git.tebibyte.media/sashakoshka/tomo/default/font"
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ type Artist struct {
|
|||||||
// NewArtist creates a new artist test element.
|
// NewArtist creates a new artist test element.
|
||||||
func NewArtist () (element *Artist) {
|
func NewArtist () (element *Artist) {
|
||||||
element = &Artist { }
|
element = &Artist { }
|
||||||
element.entity = tomo.NewEntity(element)
|
element.entity = tomo.GetBackend().NewEntity(element)
|
||||||
element.entity.SetMinimumSize(240, 240)
|
element.entity.SetMinimumSize(240, 240)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -31,7 +31,7 @@ func (element *Artist) Entity () tomo.Entity {
|
|||||||
return element.entity
|
return element.entity
|
||||||
}
|
}
|
||||||
|
|
||||||
func (element *Artist) Draw (destination canvas.Canvas) {
|
func (element *Artist) Draw (destination artist.Canvas) {
|
||||||
bounds := element.entity.Bounds()
|
bounds := element.entity.Bounds()
|
||||||
patterns.Uhex(0x000000FF).Draw(destination, bounds)
|
patterns.Uhex(0x000000FF).Draw(destination, bounds)
|
||||||
|
|
||||||
@ -44,28 +44,28 @@ func (element *Artist) Draw (destination canvas.Canvas) {
|
|||||||
|
|
||||||
// 4, 0
|
// 4, 0
|
||||||
c40 := element.cellAt(destination, 4, 0)
|
c40 := element.cellAt(destination, 4, 0)
|
||||||
shapes.StrokeColorRectangle(c40, artist.Hex(0x888888FF), c40.Bounds(), 1)
|
shapes.StrokeColorRectangle(c40, artutil.Hex(0x888888FF), c40.Bounds(), 1)
|
||||||
shapes.ColorLine (
|
shapes.ColorLine (
|
||||||
c40, artist.Hex(0xFF0000FF), 1,
|
c40, artutil.Hex(0xFF0000FF), 1,
|
||||||
c40.Bounds().Min, c40.Bounds().Max)
|
c40.Bounds().Min, c40.Bounds().Max)
|
||||||
|
|
||||||
// 0, 1
|
// 0, 1
|
||||||
c01 := element.cellAt(destination, 0, 1)
|
c01 := element.cellAt(destination, 0, 1)
|
||||||
shapes.StrokeColorRectangle(c01, artist.Hex(0x888888FF), c01.Bounds(), 1)
|
shapes.StrokeColorRectangle(c01, artutil.Hex(0x888888FF), c01.Bounds(), 1)
|
||||||
shapes.FillColorEllipse(destination, artist.Hex(0x00FF00FF), c01.Bounds())
|
shapes.FillColorEllipse(destination, artutil.Hex(0x00FF00FF), c01.Bounds())
|
||||||
|
|
||||||
// 1, 1 - 3, 1
|
// 1, 1 - 3, 1
|
||||||
for x := 1; x < 4; x ++ {
|
for x := 1; x < 4; x ++ {
|
||||||
c := element.cellAt(destination, x, 1)
|
c := element.cellAt(destination, x, 1)
|
||||||
shapes.StrokeColorRectangle (
|
shapes.StrokeColorRectangle (
|
||||||
destination, artist.Hex(0x888888FF),
|
destination, artutil.Hex(0x888888FF),
|
||||||
c.Bounds(), 1)
|
c.Bounds(), 1)
|
||||||
shapes.StrokeColorEllipse (
|
shapes.StrokeColorEllipse (
|
||||||
destination,
|
destination,
|
||||||
[]color.RGBA {
|
[]color.RGBA {
|
||||||
artist.Hex(0xFF0000FF),
|
artutil.Hex(0xFF0000FF),
|
||||||
artist.Hex(0x00FF00FF),
|
artutil.Hex(0x00FF00FF),
|
||||||
artist.Hex(0xFF00FFFF),
|
artutil.Hex(0xFF00FFFF),
|
||||||
} [x - 1],
|
} [x - 1],
|
||||||
c.Bounds(), x)
|
c.Bounds(), x)
|
||||||
}
|
}
|
||||||
@ -93,12 +93,12 @@ func (element *Artist) Draw (destination canvas.Canvas) {
|
|||||||
|
|
||||||
// 0, 2
|
// 0, 2
|
||||||
c02 := element.cellAt(destination, 0, 2)
|
c02 := element.cellAt(destination, 0, 2)
|
||||||
shapes.StrokeColorRectangle(c02, artist.Hex(0x888888FF), c02.Bounds(), 1)
|
shapes.StrokeColorRectangle(c02, artutil.Hex(0x888888FF), c02.Bounds(), 1)
|
||||||
shapes.FillEllipse(c02, c41, c02.Bounds())
|
shapes.FillEllipse(c02, c41, c02.Bounds())
|
||||||
|
|
||||||
// 1, 2
|
// 1, 2
|
||||||
c12 := element.cellAt(destination, 1, 2)
|
c12 := element.cellAt(destination, 1, 2)
|
||||||
shapes.StrokeColorRectangle(c12, artist.Hex(0x888888FF), c12.Bounds(), 1)
|
shapes.StrokeColorRectangle(c12, artutil.Hex(0x888888FF), c12.Bounds(), 1)
|
||||||
shapes.StrokeEllipse(c12, c41, c12.Bounds(), 5)
|
shapes.StrokeEllipse(c12, c41, c12.Bounds(), 5)
|
||||||
|
|
||||||
// 2, 2
|
// 2, 2
|
||||||
@ -135,7 +135,7 @@ func (element *Artist) Draw (destination canvas.Canvas) {
|
|||||||
patterns.Border {
|
patterns.Border {
|
||||||
Canvas: element.thingy(c42),
|
Canvas: element.thingy(c42),
|
||||||
Inset: artist.Inset { 8, 8, 8, 8 },
|
Inset: artist.Inset { 8, 8, 8, 8 },
|
||||||
}.Draw(canvas.Cut(c23, c23.Bounds().Inset(16)), c23.Bounds())
|
}.Draw(artist.Cut(c23, c23.Bounds().Inset(16)), c23.Bounds())
|
||||||
|
|
||||||
// how long did that take to render?
|
// how long did that take to render?
|
||||||
drawTime := time.Since(drawStart)
|
drawTime := time.Since(drawStart)
|
||||||
@ -146,13 +146,13 @@ func (element *Artist) Draw (destination canvas.Canvas) {
|
|||||||
drawTime.Milliseconds(),
|
drawTime.Milliseconds(),
|
||||||
drawTime.Microseconds())))
|
drawTime.Microseconds())))
|
||||||
textDrawer.Draw (
|
textDrawer.Draw (
|
||||||
destination, artist.Hex(0xFFFFFFFF),
|
destination, artutil.Hex(0xFFFFFFFF),
|
||||||
image.Pt(bounds.Min.X + 8, bounds.Max.Y - 24))
|
image.Pt(bounds.Min.X + 8, bounds.Max.Y - 24))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (element *Artist) colorLines (destination canvas.Canvas, weight int, bounds image.Rectangle) {
|
func (element *Artist) colorLines (destination artist.Canvas, weight int, bounds image.Rectangle) {
|
||||||
bounds = bounds.Inset(4)
|
bounds = bounds.Inset(4)
|
||||||
c := artist.Hex(0xFFFFFFFF)
|
c := artutil.Hex(0xFFFFFFFF)
|
||||||
shapes.ColorLine(destination, c, weight, bounds.Min, bounds.Max)
|
shapes.ColorLine(destination, c, weight, bounds.Min, bounds.Max)
|
||||||
shapes.ColorLine (
|
shapes.ColorLine (
|
||||||
destination, c, weight,
|
destination, c, weight,
|
||||||
@ -184,24 +184,24 @@ func (element *Artist) colorLines (destination canvas.Canvas, weight int, bounds
|
|||||||
image.Pt(bounds.Min.X + bounds.Dx() / 2, bounds.Max.Y))
|
image.Pt(bounds.Min.X + bounds.Dx() / 2, bounds.Max.Y))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (element *Artist) cellAt (destination canvas.Canvas, x, y int) (canvas.Canvas) {
|
func (element *Artist) cellAt (destination artist.Canvas, x, y int) (artist.Canvas) {
|
||||||
bounds := element.entity.Bounds()
|
bounds := element.entity.Bounds()
|
||||||
cellBounds := image.Rectangle { }
|
cellBounds := image.Rectangle { }
|
||||||
cellBounds.Min = bounds.Min
|
cellBounds.Min = bounds.Min
|
||||||
cellBounds.Max.X = bounds.Min.X + bounds.Dx() / 5
|
cellBounds.Max.X = bounds.Min.X + bounds.Dx() / 5
|
||||||
cellBounds.Max.Y = bounds.Min.Y + (bounds.Dy() - 48) / 4
|
cellBounds.Max.Y = bounds.Min.Y + (bounds.Dy() - 48) / 4
|
||||||
return canvas.Cut (destination, cellBounds.Add (image.Pt (
|
return artist.Cut (destination, cellBounds.Add (image.Pt (
|
||||||
x * cellBounds.Dx(),
|
x * cellBounds.Dx(),
|
||||||
y * cellBounds.Dy())))
|
y * cellBounds.Dy())))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (element *Artist) thingy (destination canvas.Canvas) (result canvas.Canvas) {
|
func (element *Artist) thingy (destination artist.Canvas) (result artist.Canvas) {
|
||||||
bounds := destination.Bounds()
|
bounds := destination.Bounds()
|
||||||
bounds = image.Rect(0, 0, 32, 32).Add(bounds.Min)
|
bounds = image.Rect(0, 0, 32, 32).Add(bounds.Min)
|
||||||
shapes.FillColorRectangle(destination, artist.Hex(0x440000FF), bounds)
|
shapes.FillColorRectangle(destination, artutil.Hex(0x440000FF), bounds)
|
||||||
shapes.StrokeColorRectangle(destination, artist.Hex(0xFF0000FF), bounds, 1)
|
shapes.StrokeColorRectangle(destination, artutil.Hex(0xFF0000FF), bounds, 1)
|
||||||
shapes.StrokeColorRectangle(destination, artist.Hex(0x004400FF), bounds.Inset(4), 1)
|
shapes.StrokeColorRectangle(destination, artutil.Hex(0x004400FF), bounds.Inset(4), 1)
|
||||||
shapes.FillColorRectangle(destination, artist.Hex(0x004444FF), bounds.Inset(12))
|
shapes.FillColorRectangle(destination, artutil.Hex(0x004444FF), bounds.Inset(12))
|
||||||
shapes.StrokeColorRectangle(destination, artist.Hex(0x888888FF), bounds.Inset(8), 1)
|
shapes.StrokeColorRectangle(destination, artutil.Hex(0x888888FF), bounds.Inset(8), 1)
|
||||||
return canvas.Cut(destination, bounds)
|
return artist.Cut(destination, bounds)
|
||||||
}
|
}
|
||||||
|
@ -4,27 +4,24 @@ import "image"
|
|||||||
import "git.tebibyte.media/sashakoshka/tomo"
|
import "git.tebibyte.media/sashakoshka/tomo"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/input"
|
import "git.tebibyte.media/sashakoshka/tomo/input"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/canvas"
|
import "git.tebibyte.media/sashakoshka/tomo/ability"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/artist/shapes"
|
import "git.tebibyte.media/sashakoshka/tomo/artist/shapes"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/default/theme"
|
import "git.tebibyte.media/sashakoshka/tomo/artist/artutil"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/default/config"
|
|
||||||
|
var mouseCase = tomo.C("tomo", "mouse")
|
||||||
|
|
||||||
// Mouse is an element capable of testing mouse input. When the mouse is clicked
|
// Mouse is an element capable of testing mouse input. When the mouse is clicked
|
||||||
// and dragged on it, it draws a trail.
|
// and dragged on it, it draws a trail.
|
||||||
type Mouse struct {
|
type Mouse struct {
|
||||||
entity tomo.Entity
|
entity ability.ThemeableEntity
|
||||||
pressed bool
|
pressed bool
|
||||||
lastMousePos image.Point
|
lastMousePos image.Point
|
||||||
|
|
||||||
config config.Wrapped
|
|
||||||
theme theme.Wrapped
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewMouse creates a new mouse test element.
|
// NewMouse creates a new mouse test element.
|
||||||
func NewMouse () (element *Mouse) {
|
func NewMouse () (element *Mouse) {
|
||||||
element = &Mouse { }
|
element = &Mouse { }
|
||||||
element.theme.Case = tomo.C("tomo", "mouse")
|
element.entity = tomo.GetBackend().NewEntity(element).(ability.ThemeableEntity)
|
||||||
element.entity = tomo.NewEntity(element)
|
|
||||||
element.entity.SetMinimumSize(32, 32)
|
element.entity.SetMinimumSize(32, 32)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -33,41 +30,34 @@ func (element *Mouse) Entity () tomo.Entity {
|
|||||||
return element.entity
|
return element.entity
|
||||||
}
|
}
|
||||||
|
|
||||||
func (element *Mouse) Draw (destination canvas.Canvas) {
|
func (element *Mouse) Draw (destination artist.Canvas) {
|
||||||
bounds := element.entity.Bounds()
|
bounds := element.entity.Bounds()
|
||||||
accent := element.theme.Color (
|
accent := element.entity.Theme().Color (
|
||||||
tomo.ColorAccent,
|
tomo.ColorAccent,
|
||||||
tomo.State { })
|
tomo.State { },
|
||||||
|
mouseCase)
|
||||||
shapes.FillColorRectangle(destination, accent, bounds)
|
shapes.FillColorRectangle(destination, accent, bounds)
|
||||||
shapes.StrokeColorRectangle (
|
shapes.StrokeColorRectangle (
|
||||||
destination,
|
destination,
|
||||||
artist.Hex(0x000000FF),
|
artutil.Hex(0x000000FF),
|
||||||
bounds, 1)
|
bounds, 1)
|
||||||
shapes.ColorLine (
|
shapes.ColorLine (
|
||||||
destination, artist.Hex(0xFFFFFFFF), 1,
|
destination, artutil.Hex(0xFFFFFFFF), 1,
|
||||||
bounds.Min.Add(image.Pt(1, 1)),
|
bounds.Min.Add(image.Pt(1, 1)),
|
||||||
bounds.Min.Add(image.Pt(bounds.Dx() - 2, bounds.Dy() - 2)))
|
bounds.Min.Add(image.Pt(bounds.Dx() - 2, bounds.Dy() - 2)))
|
||||||
shapes.ColorLine (
|
shapes.ColorLine (
|
||||||
destination, artist.Hex(0xFFFFFFFF), 1,
|
destination, artutil.Hex(0xFFFFFFFF), 1,
|
||||||
bounds.Min.Add(image.Pt(1, bounds.Dy() - 2)),
|
bounds.Min.Add(image.Pt(1, bounds.Dy() - 2)),
|
||||||
bounds.Min.Add(image.Pt(bounds.Dx() - 2, 1)))
|
bounds.Min.Add(image.Pt(bounds.Dx() - 2, 1)))
|
||||||
if element.pressed {
|
if element.pressed {
|
||||||
midpoint := bounds.Min.Add(bounds.Max.Sub(bounds.Min).Div(2))
|
midpoint := bounds.Min.Add(bounds.Max.Sub(bounds.Min).Div(2))
|
||||||
shapes.ColorLine (
|
shapes.ColorLine (
|
||||||
destination, artist.Hex(0x000000FF), 1,
|
destination, artutil.Hex(0x000000FF), 1,
|
||||||
midpoint, element.lastMousePos)
|
midpoint, element.lastMousePos)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetTheme sets the element's theme.
|
func (element *Mouse) HandleThemeChange (new tomo.Theme) {
|
||||||
func (element *Mouse) SetTheme (new tomo.Theme) {
|
|
||||||
element.theme.Theme = new
|
|
||||||
element.entity.Invalidate()
|
|
||||||
}
|
|
||||||
|
|
||||||
// SetConfig sets the element's configuration.
|
|
||||||
func (element *Mouse) SetConfig (new tomo.Config) {
|
|
||||||
element.config.Config = new
|
|
||||||
element.entity.Invalidate()
|
element.entity.Invalidate()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -292,3 +292,15 @@ func (entity *entity) NotifyScrollBoundsChange () {
|
|||||||
entity.element.(ability.Scrollable))
|
entity.element.(ability.Scrollable))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ----------- ThemeableEntity ----------- //
|
||||||
|
|
||||||
|
func (entity *entity) Theme () tomo.Theme {
|
||||||
|
return entity.window.theme
|
||||||
|
}
|
||||||
|
|
||||||
|
// ----------- ConfigurableEntity ----------- //
|
||||||
|
|
||||||
|
func (entity *entity) Config () tomo.Config {
|
||||||
|
return entity.window.config
|
||||||
|
}
|
||||||
|
@ -5,7 +5,7 @@ import "unicode"
|
|||||||
import "image/draw"
|
import "image/draw"
|
||||||
import "image/color"
|
import "image/color"
|
||||||
import "golang.org/x/image/math/fixed"
|
import "golang.org/x/image/math/fixed"
|
||||||
import "git.tebibyte.media/sashakoshka/tomo/canvas"
|
import "git.tebibyte.media/sashakoshka/tomo/artist"
|
||||||
|
|
||||||
// Drawer is an extended TypeSetter that is able to draw text. Much like
|
// Drawer is an extended TypeSetter that is able to draw text. Much like
|
||||||
// TypeSetter, It has no constructor and its zero value can be used safely.
|
// TypeSetter, It has no constructor and its zero value can be used safely.
|
||||||
@ -13,7 +13,7 @@ type Drawer struct { TypeSetter }
|
|||||||
|
|
||||||
// Draw draws the drawer's text onto the specified canvas at the given offset.
|
// Draw draws the drawer's text onto the specified canvas at the given offset.
|
||||||
func (drawer Drawer) Draw (
|
func (drawer Drawer) Draw (
|
||||||
destination canvas.Canvas,
|
destination artist.Canvas,
|
||||||
color color.RGBA,
|
color color.RGBA,
|
||||||
offset image.Point,
|
offset image.Point,
|
||||||
) (
|
) (
|
||||||
|
Reference in New Issue
Block a user