2023-02-23 18:55:19 -07:00
|
|
|
package shapes
|
|
|
|
|
|
|
|
import "image"
|
2023-02-24 14:31:42 -07:00
|
|
|
import "image/color"
|
2023-02-23 18:55:19 -07:00
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/canvas"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/shatter"
|
|
|
|
|
2023-02-24 14:31:42 -07:00
|
|
|
// TODO: return updatedRegion for all routines in this package
|
|
|
|
|
2023-02-23 18:55:19 -07:00
|
|
|
func FillRectangle (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
source canvas.Canvas,
|
|
|
|
) (
|
|
|
|
updatedRegion image.Rectangle,
|
|
|
|
) {
|
|
|
|
dstData, dstStride := destination.Buffer()
|
|
|
|
srcData, srcStride := source.Buffer()
|
|
|
|
|
2023-02-26 12:27:38 -07:00
|
|
|
offset := source.Bounds().Min.Sub(destination.Bounds().Min)
|
|
|
|
bounds := source.Bounds().Sub(offset).Intersect(destination.Bounds())
|
|
|
|
if bounds.Empty() { return }
|
|
|
|
updatedRegion = bounds
|
2023-02-23 18:55:19 -07:00
|
|
|
|
2023-02-26 12:27:38 -07:00
|
|
|
point := image.Point { }
|
|
|
|
for point.Y = bounds.Min.Y; point.Y < bounds.Max.Y; point.Y ++ {
|
|
|
|
for point.X = bounds.Min.X; point.X < bounds.Max.X; point.X ++ {
|
|
|
|
offsetPoint := point.Add(offset)
|
|
|
|
dstIndex := point.X + point.Y * dstStride
|
|
|
|
srcIndex := offsetPoint.X + offsetPoint.Y * srcStride
|
|
|
|
dstData[dstIndex] = srcData[srcIndex]
|
2023-02-23 18:55:19 -07:00
|
|
|
}}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func StrokeRectangle (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
source canvas.Canvas,
|
|
|
|
weight int,
|
|
|
|
) {
|
2023-02-26 12:27:38 -07:00
|
|
|
bounds := destination.Bounds()
|
2023-02-23 18:55:19 -07:00
|
|
|
insetBounds := bounds.Inset(weight)
|
|
|
|
if insetBounds.Empty() {
|
2023-02-26 12:27:38 -07:00
|
|
|
FillRectangle(destination, source)
|
2023-02-23 18:55:19 -07:00
|
|
|
return
|
|
|
|
}
|
2023-02-26 12:27:38 -07:00
|
|
|
FillRectangleShatter(destination, source, insetBounds)
|
2023-02-23 18:55:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// FillRectangleShatter is like FillRectangle, but it does not draw in areas
|
|
|
|
// specified in "rocks".
|
|
|
|
func FillRectangleShatter (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
source canvas.Canvas,
|
2023-02-24 00:26:34 -07:00
|
|
|
rocks ...image.Rectangle,
|
2023-02-23 18:55:19 -07:00
|
|
|
) {
|
2023-02-26 12:27:38 -07:00
|
|
|
tiles := shatter.Shatter(destination.Bounds(), rocks...)
|
|
|
|
offset := source.Bounds().Min.Sub(destination.Bounds().Min)
|
2023-02-23 18:55:19 -07:00
|
|
|
for _, tile := range tiles {
|
2023-02-26 12:27:38 -07:00
|
|
|
FillRectangle (
|
|
|
|
canvas.Cut(destination, tile),
|
|
|
|
canvas.Cut(source, tile.Add(offset)))
|
2023-02-23 18:55:19 -07:00
|
|
|
}
|
|
|
|
}
|
2023-02-24 14:31:42 -07:00
|
|
|
|
|
|
|
// FillColorRectangle fills a rectangle within the destination canvas with a
|
|
|
|
// solid color.
|
|
|
|
func FillColorRectangle (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
color color.RGBA,
|
|
|
|
bounds image.Rectangle,
|
|
|
|
) (
|
|
|
|
updatedRegion image.Rectangle,
|
|
|
|
) {
|
|
|
|
dstData, dstStride := destination.Buffer()
|
|
|
|
bounds = bounds.Canon().Intersect(destination.Bounds())
|
|
|
|
if bounds.Empty() { return }
|
|
|
|
|
|
|
|
updatedRegion = bounds
|
|
|
|
for y := bounds.Min.Y; y < bounds.Max.Y; y ++ {
|
|
|
|
for x := bounds.Min.X; x < bounds.Max.X; x ++ {
|
|
|
|
dstData[x + y * dstStride] = color
|
|
|
|
}}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// FillColorRectangleShatter is like FillColorRectangle, but it does not draw in
|
|
|
|
// areas specified in "rocks".
|
|
|
|
func FillColorRectangleShatter (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
color color.RGBA,
|
|
|
|
bounds image.Rectangle,
|
|
|
|
rocks ...image.Rectangle,
|
|
|
|
) {
|
|
|
|
tiles := shatter.Shatter(bounds, rocks...)
|
|
|
|
for _, tile := range tiles {
|
|
|
|
FillColorRectangle(destination, color, tile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// StrokeColorRectangle is similar to FillColorRectangle, but it draws an inset
|
|
|
|
// outline of the given rectangle instead.
|
|
|
|
func StrokeColorRectangle (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
color color.RGBA,
|
|
|
|
bounds image.Rectangle,
|
|
|
|
weight int,
|
|
|
|
) {
|
|
|
|
insetBounds := bounds.Inset(weight)
|
|
|
|
if insetBounds.Empty() {
|
|
|
|
FillColorRectangle(destination, color, bounds)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
FillColorRectangleShatter(destination, color, bounds, insetBounds)
|
|
|
|
}
|