Documentation ¶
Overview ¶
Package render provides structures for organizing graphics to draw to a window and essential graphical primitives.
Index ¶
- Constants
- Variables
- func BatchLoad(baseFolder string) error
- func BlankBatchLoad(baseFolder string, maxFileSize int64) error
- func DrawCircle(rgba *image.RGBA, c color.Color, radius, thickness float64, offsets ...float64)
- func DrawCurve(rgba *image.RGBA, c color.Color, ...)
- func DrawGradientLine(rgba *image.RGBA, x1, y1, x2, y2 int, c1, c2 color.Color, thickness int)
- func DrawImage(buff draw.Image, img image.Image, x, y int)
- func DrawLine(rgba *image.RGBA, x1, y1, x2, y2 int, c color.Color)
- func DrawLineColored(rgba *image.RGBA, x1, y1, x2, y2, thickness int, colorer Colorer)
- func DrawThickLine(rgba *image.RGBA, x1, y1, x2, y2 int, c color.Color, thickness int)
- func FontColor(s string) (image.Image, error)
- func GetFont(file string) (*truetype.Font, error)
- func GradientColorAt(c1, c2 color.Color, progress float64) color.RGBA64
- func LoadFont(file string) (*truetype.Font, error)
- func OverwriteImage(buff draw.Image, img image.Image, x, y int)
- func RegisterCfgDecoder(ext string, decoder CfgDecoder) error
- func RegisterDecoder(ext string, decoder Decoder) error
- func SetDrawStack(stackLayers ...Stackable)
- func Tween(start image.Image, end image.Image, frames int) []*image.RGBA
- type Cache
- func (c *Cache) Clear(key string)
- func (c *Cache) ClearAll()
- func (c *Cache) GetFont(file string) (*truetype.Font, error)
- func (c *Cache) GetSheet(fileName string) (*Sheet, error)
- func (c *Cache) GetSprite(file string) (*Sprite, error)
- func (c *Cache) LoadFont(file string) (*truetype.Font, error)
- func (c *Cache) LoadSheet(file string, cellSize intgeom.Point2) (*Sheet, error)
- func (c *Cache) LoadSprite(file string) (*Sprite, error)
- type CanPause
- type CfgDecoder
- type ColorBoxR
- type Colorer
- type CompositeM
- func (cs *CompositeM) AddOffset(i int, p floatgeom.Point2)
- func (cs *CompositeM) Append(r Modifiable)
- func (cs *CompositeM) AppendOffset(r Modifiable, p floatgeom.Point2)
- func (cs *CompositeM) Copy() Modifiable
- func (cs *CompositeM) Draw(buff draw.Image, xOff, yOff float64)
- func (cs *CompositeM) Filter(fs ...mod.Filter)
- func (cs *CompositeM) Get(i int) Modifiable
- func (cs *CompositeM) GetRGBA() *image.RGBA
- func (cs *CompositeM) Len() int
- func (cs *CompositeM) Modify(ms ...mod.Mod) Modifiable
- func (cs *CompositeM) Prepend(r Modifiable)
- func (cs *CompositeM) SetIndex(i int, r Modifiable)
- func (cs *CompositeM) SetOffsets(vs ...floatgeom.Point2)
- func (cs *CompositeM) Slice(start, end int) *CompositeM
- func (cs *CompositeM) ToSprite() *Sprite
- func (cs *CompositeM) Undraw()
- type CompositeR
- func (cs *CompositeR) Add(r Renderable, _ ...int) Renderable
- func (cs *CompositeR) AddOffset(i int, p floatgeom.Point2)
- func (cs *CompositeR) Append(r Renderable)
- func (cs *CompositeR) AppendOffset(r Renderable, p floatgeom.Point2)
- func (cs *CompositeR) Clear()
- func (cs *CompositeR) Copy() Stackable
- func (cs *CompositeR) Draw(buff draw.Image, xOff, yOff float64)
- func (cs *CompositeR) DrawToScreen(world draw.Image, viewPos *intgeom.Point2, screenW, screenH int)
- func (cs *CompositeR) Get(i int) Renderable
- func (cs *CompositeR) GetRGBA() *image.RGBA
- func (cs *CompositeR) Len() int
- func (cs *CompositeR) PreDraw()
- func (cs *CompositeR) Prepend(r Renderable)
- func (cs *CompositeR) Replace(old, new Renderable, i int)
- func (cs *CompositeR) SetIndex(i int, r Renderable)
- func (cs *CompositeR) SetOffsets(ps ...floatgeom.Point2)
- func (cs *CompositeR) ToSprite() *Sprite
- func (cs *CompositeR) Undraw()
- type Decoder
- type DrawFPS
- type DrawStack
- func (ds *DrawStack) Clear()
- func (ds *DrawStack) Copy() *DrawStack
- func (ds *DrawStack) Draw(r Renderable, layers ...int) (Renderable, error)
- func (ds *DrawStack) DrawToScreen(world draw.Image, view *intgeom.Point2, w, h int)
- func (ds *DrawStack) Pop()
- func (ds *DrawStack) PreDraw()
- func (ds *DrawStack) Push(a Stackable)
- type Font
- func (f *Font) Copy() *Font
- func (f *Font) Height() float64
- func (f *Font) MeasureString(s string) fixed.Int26_6
- func (f *Font) NewIntText(str *int, x, y float64) *Text
- func (f *Font) NewStrPtrText(str *string, x, y float64) *Text
- func (f *Font) NewStringerText(str fmt.Stringer, x, y float64) *Text
- func (f *Font) NewText(str string, x, y float64) *Text
- func (f *Font) RegenerateWith(fgFunc func(FontGenerator) FontGenerator) (*Font, error)
- type FontGenerator
- type FontOptions
- type InterruptBool
- type Layer
- type Layered
- type LayeredPoint
- type LogicFPS
- type Modifiable
- type NonInterruptable
- type NonStatic
- type NoopStackable
- func (ns NoopStackable) Add(r Renderable, _ ...int) Renderable
- func (ns NoopStackable) Clear()
- func (ns NoopStackable) Copy() Stackable
- func (ns NoopStackable) DrawToScreen(draw.Image, *intgeom.Point2, int, int)
- func (ns NoopStackable) PreDraw()
- func (ns NoopStackable) Replace(Renderable, Renderable, int)
- type Polygon
- func (pg *Polygon) Fill(c color.Color)
- func (pg *Polygon) FillInverse(c color.Color)
- func (pg *Polygon) GetColoredOutline(colorer Colorer, thickness int) *CompositeM
- func (pg *Polygon) GetGradientOutline(c1, c2 color.Color, thickness int) *CompositeM
- func (pg *Polygon) GetOutline(c color.Color) *CompositeM
- func (pg *Polygon) GetThickOutline(c color.Color, thickness int) *CompositeM
- type Positional
- type Renderable
- type RenderableHeap
- func (rh *RenderableHeap) Add(r Renderable, layers ...int) Renderable
- func (rh *RenderableHeap) Clear()
- func (rh *RenderableHeap) Copy() Stackable
- func (rh *RenderableHeap) DrawToScreen(world draw.Image, viewPos *intgeom.Point2, screenW, screenH int)
- func (rh *RenderableHeap) PreDraw()
- func (rh *RenderableHeap) Replace(old, new Renderable, layer int)
- type Reverting
- func (rv *Reverting) Copy() Modifiable
- func (rv *Reverting) Filter(ms ...mod.Filter)
- func (rv *Reverting) Get() string
- func (rv *Reverting) IsInterruptable() bool
- func (rv *Reverting) IsStatic() bool
- func (rv *Reverting) Modify(ms ...mod.Mod) Modifiable
- func (rv *Reverting) Pause()
- func (rv *Reverting) Revert(n int)
- func (rv *Reverting) RevertAll()
- func (rv *Reverting) RevertAndFilter(n int, fs ...mod.Filter) Modifiable
- func (rv *Reverting) RevertAndModify(n int, ms ...mod.Mod) Modifiable
- func (rv *Reverting) Set(k string) error
- func (rv *Reverting) SetTriggerID(cid event.CallerID)
- func (rv *Reverting) Unpause()
- type Sequence
- func (sq *Sequence) Copy() Modifiable
- func (sq *Sequence) Draw(buff draw.Image, xOff, yOff float64)
- func (sq *Sequence) Filter(fs ...mod.Filter)
- func (sq *Sequence) Get(i int) Modifiable
- func (sq *Sequence) GetDims() (int, int)
- func (sq *Sequence) GetRGBA() *image.RGBA
- func (sq *Sequence) IsStatic() bool
- func (sq *Sequence) Modify(ms ...mod.Mod) Modifiable
- func (p *Sequence) Pause()
- func (sq *Sequence) SetFPS(fps float64)
- func (sq *Sequence) SetTriggerID(id event.CallerID)
- func (p *Sequence) Unpause()
- type Sheet
- type Sprite
- func BezierLine(b shape.Bezier, c color.Color) *Sprite
- func BezierThickLine(b shape.Bezier, c color.Color, thickness int) *Sprite
- func GetSprite(file string) (*Sprite, error)
- func LoadSprite(file string) (*Sprite, error)
- func NewCircle(c color.Color, radius, thickness float64, offsets ...float64) *Sprite
- func NewCircularGradientBox(w, h int, startColor, endColor color.Color) *Sprite
- func NewColorBox(w, h int, c color.Color) *Sprite
- func NewColorBoxM(w, h int, c color.Color) *Sprite
- func NewColoredLine(x1, y1, x2, y2 float64, colorer Colorer, thickness int) *Sprite
- func NewEmptySprite(x, y float64, w, h int) *Sprite
- func NewGradientBox(w, h int, startColor, endColor color.Color, pFunction progressFunction) *Sprite
- func NewGradientLine(x1, y1, x2, y2 float64, c1, c2 color.Color, thickness int) *Sprite
- func NewHorizontalGradientBox(w, h int, startColor, endColor color.Color) *Sprite
- func NewLine(x1, y1, x2, y2 float64, c color.Color) *Sprite
- func NewSprite(x, y float64, r *image.RGBA) *Sprite
- func NewThickLine(x1, y1, x2, y2 float64, c color.Color, thickness int) *Sprite
- func NewVerticalGradientBox(w, h int, startColor, endColor color.Color) *Sprite
- func OverlaySprites(sps []*Sprite) *Sprite
- func (s *Sprite) At(x, y int) color.Color
- func (s *Sprite) Bounds() image.Rectangle
- func (s *Sprite) ColorModel() color.Model
- func (s *Sprite) Copy() Modifiable
- func (s *Sprite) Draw(buff draw.Image, xOff, yOff float64)
- func (s *Sprite) Filter(fs ...mod.Filter)
- func (s *Sprite) GetDims() (int, int)
- func (s *Sprite) GetRGBA() *image.RGBA
- func (s *Sprite) Modify(ms ...mod.Mod) Modifiable
- func (s *Sprite) Set(x, y int, c color.Color)
- func (s *Sprite) SetRGBA(r *image.RGBA)
- type Stackable
- type Switch
- func (c *Switch) Add(k string, v Modifiable) (err error)
- func (c *Switch) Copy() Modifiable
- func (c *Switch) Draw(buff draw.Image, xOff float64, yOff float64)
- func (c *Switch) Filter(fs ...mod.Filter)
- func (c *Switch) Get() string
- func (c *Switch) GetDims() (int, int)
- func (c *Switch) GetRGBA() *image.RGBA
- func (c *Switch) GetSub(s string) Modifiable
- func (c *Switch) IsInterruptable() bool
- func (c *Switch) IsStatic() bool
- func (c *Switch) Modify(ms ...mod.Mod) Modifiable
- func (c *Switch) Pause()
- func (c *Switch) Revert(mod int)
- func (c *Switch) RevertAll()
- func (c *Switch) Set(k string) error
- func (c *Switch) SetOffsets(k string, offsets physics.Vector)
- func (c *Switch) SetTriggerID(cid event.CallerID)
- func (c *Switch) ShiftPos(x, y float64)
- func (c *Switch) Unpause()
- type Text
- func (t *Text) Center()
- func (t *Text) Draw(buff draw.Image, xOff, yOff float64)
- func (t *Text) GetDims() (int, int)
- func (t *Text) SetFont(f *Font)
- func (t *Text) SetInt(i int)
- func (t *Text) SetIntPtr(i *int)
- func (t *Text) SetString(str string)
- func (t *Text) SetStringPtr(str *string)
- func (t *Text) SetStringer(s fmt.Stringer)
- func (t *Text) StringLiteral() string
- func (t *Text) ToSprite() *Sprite
- func (t *Text) Wrap(charLimit int, vertInc float64) []*Text
- type Triggerable
Examples ¶
Constants ¶
const ( // Undraw is a layer representing elements that should be undrawn, or removed // from the draw stack. This is exported in the rare case that there is // a need to use the default value for something else. Undraw = -1000 )
Variables ¶
var ( // DefFontGenerator is a default font generator, using an internally // compiled font colored white by default. // // Deprecated: use DefaultFontGenerator instead DefFontGenerator = FontGenerator{ Color: image.White, RawFile: luxisrTTF, } // DefaultFontGenerator is a default font generator, using an internally // compiled font colored white by default. DefaultFontGenerator = DefFontGenerator )
var ( //HorizontalProgress measures progress as x / w HorizontalProgress = func(x, y, w, h int) float64 { return float64(x) / float64(w) } //VerticalProgress measures progress as y / h VerticalProgress = func(x, y, w, h int) float64 { return float64(y) / float64(h) } //CircularProgress measures progress as distance from the center of a circle. CircularProgress = func(x, y, w, h int) float64 { xRadius := float64(w) / 2 yRadius := float64(h) / 2 dX := math.Abs(float64(x) - xRadius) dY := math.Abs(float64(y) - yRadius) progress := math.Pow(dX/xRadius, 2) + math.Pow(dY/yRadius, 2) if progress > 1 { progress = 1 } return progress } )
Progress functions
var AnimationEnd = event.RegisterEvent[struct{}]()
var DefaultCache = NewCache()
DefaultCache is the receiver for package level sprites, sheets, and font loading operations.
var ( // GlobalDrawStack is the stack that all draw calls are sent through. GlobalDrawStack = NewDrawStack(NewDynamicHeap()) )
Functions ¶
func BatchLoad ¶
BatchLoad loads subdirectories from the given base folder and imports all files, using alias rules to automatically determine the size of sprites and sheets in subfolders.
func BlankBatchLoad ¶
BlankBatchLoad acts like BatchLoad, but will not load and instead return a blank image of the appropriate dimensions for anything above maxFileSize.
func DrawCircle ¶
DrawCircle draws a circle on the input rgba, of color c.
func DrawCurve ¶
func DrawCurve(rgba *image.RGBA, c color.Color, radius, thickness, initialAngle, circlePercentage float64, offsets ...float64)
DrawCurve draws a curve inward on the input rgba, of color c.
func DrawGradientLine ¶
DrawGradientLine acts like DrawThickLine but also applies a gradient to the line
func DrawImage ¶
DrawImage performs a draw operation at -x, -y, because shiny/screen represents quadrant 4 as negative in both axes. draw.Over will merge two pixels at a given position based on their alpha channel.
func DrawLineColored ¶
DrawLineColored acts like DrawThickLine, but takes in a custom colorer function for how it draws its line.
func DrawThickLine ¶
DrawThickLine acts like DrawlineOnto, but takes in thickness of the given line
func FontColor ¶
FontColor returns an image.Image color matching the SVG 1.1 spec. If the string does not align to a color in the spec, it will error.
func GradientColorAt ¶
GradientColorAt returns a new color via a gradient between two colors and the progress between them
func OverwriteImage ¶
OverwriteImage is equivalent to ShinyDraw, but uses draw.Src draw.Src will overwrite pixels beneath the given image regardless of the new image's alpha.
func RegisterCfgDecoder ¶
func RegisterCfgDecoder(ext string, decoder CfgDecoder) error
RegisterCfgDecoder acts like RegisterDecoder for CfgDecoders
func RegisterDecoder ¶
RegisterDecoder adds a decoder to the set of image decoders for file loading. If the extension string is already set, the existing decoder will not be overwritten.
func SetDrawStack ¶
func SetDrawStack(stackLayers ...Stackable)
SetDrawStack takes in a set of Stackables which act as the Drawstack available and resets how calls to Draw will act. If this is called mid scene, all elements on the existing draw stack will be lost.
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
Cache is a simple image data cache
func (*Cache) GetSheet ¶
GetSheet tries to find the given file in the set of loaded sheets. If SheetIsLoaded(filename) is not true, this returns an error. Otherwise it will return the sheet as a 2d array of sprites
func (*Cache) GetSprite ¶
GetSprite tries to find the given file in a private set of loaded sprites. If that file isn't cached, it will return an error.
func (*Cache) LoadFont ¶
LoadFont loads the given font file, parses it, and caches it under its full path and its final path element.
type CanPause ¶
type CanPause interface { Pause() Unpause() }
CanPause types have pause functions to start and stop animation
type CfgDecoder ¶
CfgDecoder is an equivalent to Decoder that just exports the color model and dimensions of the image.
type ColorBoxR ¶
type ColorBoxR struct { LayeredPoint Dims intgeom.Point2 Color *image.Uniform }
ColorBoxR is a renderable color box. It is a smaller structure and should render faster than a ColorBoxM.
func NewColorBoxR ¶
NewColorBoxR creates a color box. Colorboxes made without using this constructor may not function.
type Colorer ¶
A Colorer takes some notion of linear progress and returns a color
func IdentityColorer ¶
IdentityColorer returns the same color it was given at initialization, regardless of progress.
type CompositeM ¶
type CompositeM struct { LayeredPoint // contains filtered or unexported fields }
CompositeM Types display all of their parts at the same time, and respect the positions of their parts as relative to the position of the composite itself
func NewCompositeM ¶
func NewCompositeM(sl ...Modifiable) *CompositeM
NewCompositeM creates a CompositeM
func (*CompositeM) AddOffset ¶
func (cs *CompositeM) AddOffset(i int, p floatgeom.Point2)
AddOffset offsets all renderables in the CompositeM by a vector
func (*CompositeM) Append ¶
func (cs *CompositeM) Append(r Modifiable)
Append adds a renderable as is to the CompositeM
func (*CompositeM) AppendOffset ¶
func (cs *CompositeM) AppendOffset(r Modifiable, p floatgeom.Point2)
AppendOffset adds a new offset modifiable to the CompositeM
func (*CompositeM) Copy ¶
func (cs *CompositeM) Copy() Modifiable
Copy makes a new CompositeM with the same renderables
func (*CompositeM) Draw ¶
func (cs *CompositeM) Draw(buff draw.Image, xOff, yOff float64)
Draw draws the CompositeM with some offset from its logical position (and therefore sub renderables logical positions).
func (*CompositeM) Filter ¶
func (cs *CompositeM) Filter(fs ...mod.Filter)
Filter filters each component part of this CompositeM by all of the inputs.
func (*CompositeM) Get ¶
func (cs *CompositeM) Get(i int) Modifiable
Get returns a renderable at the given index within the CompositeM
func (*CompositeM) GetRGBA ¶
func (cs *CompositeM) GetRGBA() *image.RGBA
GetRGBA always returns nil from Composites
func (*CompositeM) Len ¶
func (cs *CompositeM) Len() int
Len returns the number of renderables in this CompositeM.
func (*CompositeM) Modify ¶
func (cs *CompositeM) Modify(ms ...mod.Mod) Modifiable
Modify applies mods to the CompositeM
func (*CompositeM) Prepend ¶
func (cs *CompositeM) Prepend(r Modifiable)
Prepend adds a new renderable to the front of the CompositeMR.
func (*CompositeM) SetIndex ¶
func (cs *CompositeM) SetIndex(i int, r Modifiable)
SetIndex places a renderable at a certain point in the CompositeMs renderable slice
func (*CompositeM) SetOffsets ¶
func (cs *CompositeM) SetOffsets(vs ...floatgeom.Point2)
SetOffsets applies the initial offsets to the entire CompositeM
func (*CompositeM) Slice ¶
func (cs *CompositeM) Slice(start, end int) *CompositeM
Slice creates a new CompositeM as a subslice of the existing CompositeM. No Modifiables will be copied, and the original will not be modified.
func (*CompositeM) ToSprite ¶
func (cs *CompositeM) ToSprite() *Sprite
ToSprite converts the composite into a sprite by drawing each layer in order and overwriting lower layered pixels
func (*CompositeM) Undraw ¶
func (cs *CompositeM) Undraw()
Undraw stops the CompositeM from being drawn
type CompositeR ¶
type CompositeR struct { LayeredPoint // contains filtered or unexported fields }
A CompositeR is equivalent to a CompositeM for Renderables instead of Modifiables. CompositeRs also implements Stackable.
func NewCompositeR ¶
func NewCompositeR(sl ...Renderable) *CompositeR
NewCompositeR creates a new CompositeR from a slice of renderables
func (*CompositeR) Add ¶
func (cs *CompositeR) Add(r Renderable, _ ...int) Renderable
Add stages a renderable to be added to the Composite at the next PreDraw
func (*CompositeR) AddOffset ¶
func (cs *CompositeR) AddOffset(i int, p floatgeom.Point2)
AddOffset adds an offset to a given renderable of the slice
func (*CompositeR) Append ¶
func (cs *CompositeR) Append(r Renderable)
Append adds a new renderable to the end of the CompositeR.
func (*CompositeR) AppendOffset ¶
func (cs *CompositeR) AppendOffset(r Renderable, p floatgeom.Point2)
AppendOffset adds a new renderable to CompositeR with an offset
func (*CompositeR) Copy ¶
func (cs *CompositeR) Copy() Stackable
Copy returns a new composite with the same length slice of renderables but no actual renderables... CompositeRs cannot have their internal elements copied, as renderables cannot be copied.
func (*CompositeR) Draw ¶
func (cs *CompositeR) Draw(buff draw.Image, xOff, yOff float64)
Draw Draws the CompositeR with an offset from its logical location.
func (*CompositeR) DrawToScreen ¶
DrawToScreen draws the elements in this composite to the given screen image.
func (*CompositeR) Get ¶
func (cs *CompositeR) Get(i int) Renderable
Get returns renderable from a given index in CompositeR
func (*CompositeR) GetRGBA ¶
func (cs *CompositeR) GetRGBA() *image.RGBA
GetRGBA always returns nil from Composites
func (*CompositeR) Len ¶
func (cs *CompositeR) Len() int
Len returns the number of renderables in this composite.
func (*CompositeR) PreDraw ¶
func (cs *CompositeR) PreDraw()
PreDraw updates the CompositeR with the new renderables to add. This helps keep consistency and mitigates the threat of unsafe operations.
func (*CompositeR) Prepend ¶
func (cs *CompositeR) Prepend(r Renderable)
Prepend adds a new renderable to the front of the CompositeR.
func (*CompositeR) Replace ¶
func (cs *CompositeR) Replace(old, new Renderable, i int)
Replace updates a renderable in the CompositeR to the new Renderable
func (*CompositeR) SetIndex ¶
func (cs *CompositeR) SetIndex(i int, r Renderable)
SetIndex places a renderable at a certain point in the composites renderable slice
func (*CompositeR) SetOffsets ¶
func (cs *CompositeR) SetOffsets(ps ...floatgeom.Point2)
SetOffsets sets all renderables in CompositeR to the passed in Vector positions positions
func (*CompositeR) ToSprite ¶
func (cs *CompositeR) ToSprite() *Sprite
ToSprite converts the composite into a sprite by drawing each layer in order and overwriting lower layered pixels
func (*CompositeR) Undraw ¶
func (cs *CompositeR) Undraw()
Undraw undraws the CompositeR and its consituent renderables
type Decoder ¶
Decoder functions convert arbitrary readers to images. The input of a decoder in oak's loader will generally be an image file.
type DrawFPS ¶
DrawFPS is a Renderable that will display how fast it is rendered. If it is a part of a dynamically ordered stackable, like a Heap, how fast it will be rendered can change in each iteration of the stackable's draw. For this reason, its recommended to isolate a DrawFPS to its own stack layer or layer within a heap.
func NewDrawFPS ¶
NewDrawFPS returns a DrawFPS, which will render a counter of how fast it is being drawn. If font is not provided, DefaultFont is used. If smoothing is 0, a reasonable default will be used.
type DrawStack ¶
type DrawStack struct {
// contains filtered or unexported fields
}
The DrawStack is a stack with a safe adding mechanism that creates isolation between draw steps via predraw
func NewDrawStack ¶
NewDrawStack creates a DrawStack with the given stackable items, drawn in descending index order.
func (*DrawStack) Clear ¶
func (ds *DrawStack) Clear()
Clear clears all stackables in a draw stack. This should revert the stack to contain no renderable components.
func (*DrawStack) Draw ¶
func (ds *DrawStack) Draw(r Renderable, layers ...int) (Renderable, error)
Draw adds the given renderable to the draw stack at the appropriate position based on the input layers. See render.Draw.
func (*DrawStack) DrawToScreen ¶
DrawToScreen on a stack will render its contents to the input buffer, for a screen of w,h dimensions, from a view point of view.
func (*DrawStack) Pop ¶
func (ds *DrawStack) Pop()
Pop pops an element from the stack at the next PreDraw call.
type Font ¶
type Font struct { font.Drawer Unsafe bool Fallbacks []*Font // contains filtered or unexported fields }
A Font can create text renderables. It should be constructed from FontGenerator.Generate().
func (*Font) MeasureString ¶
MeasureString calculates the width of a rendered text this font would draw from the given input string.
func (*Font) NewIntText ¶
NewIntText wraps the given int pointer in a stringer interface
func (*Font) NewStrPtrText ¶
NewStrPtrText creates a renderable text component with a body matching and updating to match the content behind the provided string pointer
func (*Font) NewStringerText ¶
NewStringerText creates a renderable text component that will draw the string provided by the given stringer each frame.
func (*Font) RegenerateWith ¶
func (f *Font) RegenerateWith(fgFunc func(FontGenerator) FontGenerator) (*Font, error)
RegenerateWith creates a new font based on this font after changing its generation settings.
type FontGenerator ¶
type FontGenerator struct { Cache *Cache File string RawFile []byte Color image.Image // FontOptions holds all optional font components. Reasonable defaults // will be used if these are not provided. FontOptions }
A FontGenerator stores information that can be used to create a font
func (*FontGenerator) Generate ¶
func (fg *FontGenerator) Generate() (*Font, error)
Generate generates a font. File or RawFile and Color must be provided. If Cache and File are provided, the generated font will be stored in the provided cache. If Cache is not provided, it will default to DefaultCache.
func (FontGenerator) RegenerateWith ¶
func (fg FontGenerator) RegenerateWith(fgFunc func(FontGenerator) FontGenerator) (*Font, error)
RegenerateWith creates a new font off of this generator after changing its generation settings.
type FontOptions ¶
FontOptions are optional options used in font generation.
type InterruptBool ¶
type InterruptBool struct {
Interruptable bool
}
InterruptBool is a composable struct for NonInterruptable support
func (InterruptBool) IsInterruptable ¶
func (ib InterruptBool) IsInterruptable() bool
IsInterruptable returns whether this can be interrupted.
type Layer ¶
type Layer struct {
// contains filtered or unexported fields
}
A Layer object has a draw layer
type Layered ¶
Layered types know the order they should be drawn in relative to other layered types. Higher layers are drawn after lower layers, and so will appear on top of them. Drawn layers are anticipated to be all positive.
Basic Implementing struct: Layer
type LayeredPoint ¶
A LayeredPoint is an object with a position Vector and a layer
func NewLayeredPoint ¶
func NewLayeredPoint(x, y float64, l int) LayeredPoint
NewLayeredPoint creates a new LayeredPoint at a given location and layer
func (*LayeredPoint) Copy ¶
func (ldp *LayeredPoint) Copy() LayeredPoint
Copy deep copies the LayeredPoint
func (*LayeredPoint) GetDims ¶
func (ldp *LayeredPoint) GetDims() (int, int)
GetDims returns the dimensions of this object. As a single point, LayeredPoint returns (1,1).
func (*LayeredPoint) GetLayer ¶
func (ldp *LayeredPoint) GetLayer() int
GetLayer returns the layer of this point. If this is nil, it will return Undraw
func (*LayeredPoint) SetPos ¶
func (ldp *LayeredPoint) SetPos(x, y float64)
SetPos sets the LayeredPoint's position to the given x, y
func (*LayeredPoint) ShiftX ¶
func (ldp *LayeredPoint) ShiftX(x float64)
ShiftX moves the LayeredPoint by the given x
func (*LayeredPoint) ShiftY ¶
func (ldp *LayeredPoint) ShiftY(y float64)
ShiftY moves the LayeredPoint by the given y
type LogicFPS ¶
type LogicFPS struct { event.CallerID *Text Smoothing float64 // contains filtered or unexported fields }
LogicFPS is a Stackable that will draw the logical fps onto the screen when a part of the draw stack.
func NewLogicFPS ¶
NewLogicFPS returns a LogicFPS, which will render a counter of how fast it receives event.Enter events. If font is not provided, DefaultFont is used. If smoothing is 0, a reasonable default is used.
type Modifiable ¶
type Modifiable interface { Renderable GetRGBA() *image.RGBA Modify(...mod.Mod) Modifiable Filter(...mod.Filter) Copy() Modifiable }
A Modifiable is a Renderable that has functions to change its underlying image.
func EmptyRenderable ¶
func EmptyRenderable() Modifiable
EmptyRenderable returns a minimal, 1-width and height pseudo-nil Renderable
type NonInterruptable ¶
type NonInterruptable interface {
IsInterruptable() bool
}
NonInterruptable types are not always interruptable. If something is not NonInterruptable, it is equivalent to having IsInterruptable always return true.
The intended use of the Interruptable datatypes is entirely external-- oak does not use them internally. The use case is for an entity that has a set of potential animations, and attempts to switch from one animation to another. The Interuptable boolean should represent whether that animation should be able to be switched out of before it ends.
Because this use case is minor, this is a candidate for removal from render and moving into an auxiliary package.
Unless otherwise noted, all NonInterruptable types are interruptable when they are initialized and need to be switched (if the type supports it) to be non interruptable.
type NonStatic ¶
type NonStatic interface {
IsStatic() bool
}
NonStatic types are not always static. If something is not NonStatic, it is equivalent to having IsStatic always return true.
type NoopStackable ¶
type NoopStackable struct{}
NoopStackable is a Stackable element where all methods are no-ops. Use for tests to disable rendering.
func (NoopStackable) Add ¶
func (ns NoopStackable) Add(r Renderable, _ ...int) Renderable
Add on a NoopStackable does nothing. The input Renderable is still returned.
func (NoopStackable) Copy ¶
func (ns NoopStackable) Copy() Stackable
Copy on a NoopStackable returns itself.
func (NoopStackable) DrawToScreen ¶
DrawToScreen on a NoopStackable does nothing.
func (NoopStackable) PreDraw ¶
func (ns NoopStackable) PreDraw()
PreDraw on a NoopStackable does nothing.
func (NoopStackable) Replace ¶
func (ns NoopStackable) Replace(Renderable, Renderable, int)
Replace on a NoopStackable does nothing.
type Polygon ¶
A Polygon is a renderable that is represented by a set of in order points on a plane.
func NewPointsPolygon ¶
NewPointsPolygon is a helper function for `NewPolygon(floatgeom.NewPolygon2(p1, p2, p3, pn...))`
func NewPolygon ¶
NewPolygon constructs a renderable polygon. It will display nothing until Fill or FillInverse is called on it.
func (*Polygon) FillInverse ¶
FillInverse colors this polygon's exterior the given color
func (*Polygon) GetColoredOutline ¶
func (pg *Polygon) GetColoredOutline(colorer Colorer, thickness int) *CompositeM
GetColoredOutline returns a set of lines of the given color along this polygon's outline
func (*Polygon) GetGradientOutline ¶
func (pg *Polygon) GetGradientOutline(c1, c2 color.Color, thickness int) *CompositeM
GetGradientOutline returns a set of lines of the given color along this polygon's outline, at the given thickness, ranging from c1 to c2 in color
func (*Polygon) GetOutline ¶
func (pg *Polygon) GetOutline(c color.Color) *CompositeM
GetOutline returns a set of lines of the given color along this polygon's outline
func (*Polygon) GetThickOutline ¶
func (pg *Polygon) GetThickOutline(c color.Color, thickness int) *CompositeM
GetThickOutline returns a set of lines of the given color along this polygon's outline, at the given thickness
type Positional ¶
type Positional interface { X() float64 Y() float64 ShiftX(x float64) ShiftY(y float64) SetPos(x, y float64) }
Positional types have 2D positions on a screen and can be manipulated to be in a certain position on that screen.
Basic Implementing struct: physics.Vector
type Renderable ¶
type Renderable interface { Draw(buff draw.Image, xOff, yOff float64) GetDims() (width int, height int) Positional Layered physics.Attachable }
A Renderable is anything which can be drawn at a given draw layer, undrawn, and set in a particular position.
Basic Implementing struct: Sprite
func Draw ¶
func Draw(r Renderable, layers ...int) (Renderable, error)
Draw adds the given renderable to the global draw stack.
If the draw stack has only one stackable, the item will be added to that stackable with the input layers as its argument. Otherwise, the item will be added to the layers[0]th stackable, with remaining layers supplied to the stackable as arguments.
If zero layers are provided, it will add to the zeroth stack layer and give nothing to the stackable's argument.
Example ¶
// We haven't modified the draw stack, so it contains a single draw heap. // Draw a Color Box Draw(NewColorBox(10, 10, color.RGBA{255, 255, 255, 255}), 3) // Draw a Gradient Box above that color box Draw(NewHorizontalGradientBox(5, 5, color.RGBA{255, 0, 0, 255}, color.RGBA{0, 255, 0, 255}), 4)
Output:
type RenderableHeap ¶
type RenderableHeap struct {
// contains filtered or unexported fields
}
A RenderableHeap manages a set of renderables to be drawn in explicit layered order, using an internal heap to manage that order. It implements Stackable.
func NewDynamicHeap ¶
func NewDynamicHeap() *RenderableHeap
NewDynamicHeap creates a renderable heap for drawing renderables by layer where the position of the viewport is taken into account to produce the drawn location of the renderable.
Example: If drawing a Sprite at (100,100) with the viewport at (50,0), the sprite will appear at (50, 100).
func NewStaticHeap ¶
func NewStaticHeap() *RenderableHeap
NewStaticHeap creates a renderable heap for drawing renderables by layer where the position of renderable is absolute with regards to the viewport.
Example: If drawing a Sprite at (100,100) with the viewport at (50,0), the sprite will appear at (100, 100).
func (*RenderableHeap) Add ¶
func (rh *RenderableHeap) Add(r Renderable, layers ...int) Renderable
Add stages a new Renderable to add to the heap
func (*RenderableHeap) Copy ¶
func (rh *RenderableHeap) Copy() Stackable
Copy on a renderableHeap does not include any of its elements, as renderables cannot be copied.
func (*RenderableHeap) DrawToScreen ¶
func (rh *RenderableHeap) DrawToScreen(world draw.Image, viewPos *intgeom.Point2, screenW, screenH int)
DrawToScreen draws all elements in the heap to the screen.
func (*RenderableHeap) PreDraw ¶
func (rh *RenderableHeap) PreDraw()
PreDraw parses through renderables to be pushed and adds them to the drawheap.
func (*RenderableHeap) Replace ¶
func (rh *RenderableHeap) Replace(old, new Renderable, layer int)
Replace adds a Renderable and removes an old one
type Reverting ¶
type Reverting struct { Modifiable // contains filtered or unexported fields }
The Reverting structure lets modifications be made to a Modifiable and then reverted, up to arbitrary history limits.
func NewReverting ¶
func NewReverting(m Modifiable) *Reverting
NewReverting returns a Reverting type wrapped around the given modifiable
func (*Reverting) Copy ¶
func (rv *Reverting) Copy() Modifiable
Copy returns a copy of this Reverting
func (*Reverting) Filter ¶
Filter alters this reverting by the given filters, appending the new modified renderable to it's list of modified versions and displaying it.
func (*Reverting) Get ¶
Get calls Get on the active renderable below this Reverting. If nothing has a Get method, it returns the empty string.
func (*Reverting) IsInterruptable ¶
IsInterruptable returns if whatever this reverting is currently dispalying is interruptable.
func (*Reverting) IsStatic ¶
IsStatic returns if whatever this reverting is currently displaying is static.
func (*Reverting) Modify ¶
func (rv *Reverting) Modify(ms ...mod.Mod) Modifiable
Modify alters this reverting by the given modifications, appending the new modified renderable to it's list of modified versions and displaying it.
func (*Reverting) Pause ¶
func (rv *Reverting) Pause()
Pause ceases animating any renderable types that animate underneath this
func (*Reverting) Revert ¶
Revert goes back n steps in this Reverting's history and displays that Modifiable
func (*Reverting) RevertAll ¶
func (rv *Reverting) RevertAll()
RevertAll resets this reverting to its original Modifiable
func (*Reverting) RevertAndFilter ¶
func (rv *Reverting) RevertAndFilter(n int, fs ...mod.Filter) Modifiable
RevertAndFilter acts as RevertAndModify, but with Filters.
func (*Reverting) RevertAndModify ¶
func (rv *Reverting) RevertAndModify(n int, ms ...mod.Mod) Modifiable
RevertAndModify reverts n steps and then modifies this reverting. This is a separate function from Revert followed by Modify to prevent skipped draw frames.
func (*Reverting) Set ¶
Set calls Set on underlying types below this Reverting that can be Set Todo: if Set becomes used by more types, this should use an interface like CanPause
func (*Reverting) SetTriggerID ¶
SetTriggerID sets the ID AnimationEnd will trigger on for animating subtypes.
type Sequence ¶
type Sequence struct { LayeredPoint InterruptBool event.CallerID // contains filtered or unexported fields }
A Sequence is a series of modifiables drawn as an animation. It is more primitive than animation, but less efficient.
func NewSequence ¶
func NewSequence(fps float64, mods ...Modifiable) *Sequence
NewSequence returns a new sequence from the input modifiables, playing at the given fps rate.
func NewSheetSequence ¶
NewSheetSequence creates a Sequence from a sheet and a list of x,y frame coordinates. A sequence will be created by getting the sheet's [i][i+1]th elements incrementally from the input frames. If the number of input frames is uneven, an error is returned.
func TweenSequence ¶
TweenSequence returns a sequence that is the tweening between the input images at the given frame rate over the given frame count.
func (*Sequence) Copy ¶
func (sq *Sequence) Copy() Modifiable
Copy copies each modifiable inside this sequence in order to produce a new copied sequence
func (*Sequence) Get ¶
func (sq *Sequence) Get(i int) Modifiable
Get returns the Modifiable stored at this sequence's ith index. If the sequence does not have an ith index this returns nil
func (*Sequence) GetDims ¶
GetDims of a Sequence returns the dims of the current Renderable for the sequence
func (*Sequence) Modify ¶
func (sq *Sequence) Modify(ms ...mod.Mod) Modifiable
Modify alters each renderable in this sequence by the given modifications
func (*Sequence) SetFPS ¶
SetFPS sets the number of frames that should advance per second to be the input fps
func (*Sequence) SetTriggerID ¶
SetTriggerID sets the ID that AnimationEnd will be triggered on when this sequence loops over from its last frame to its first
type Sheet ¶
Sheet is a 2D array of image rgbas
type Sprite ¶
type Sprite struct { LayeredPoint // contains filtered or unexported fields }
A Sprite is a basic wrapper around image data and a point. The most basic Renderable.
func BezierLine ¶
BezierLine converts a bezier into a line sprite.
func BezierThickLine ¶
BezierThickLine draws a BezierLine wrapping each colored pixel in a square of width and height = thickness
func LoadSprite ¶
LoadSprite calls LoadSprite on the Default Cache.
func NewCircularGradientBox ¶
NewCircularGradientBox returns a gradient box where the center will be startColor and the gradient will radiate as a circle out from the center.
func NewColorBox ¶
NewColorBox returns a Sprite full of a given color with the given dimensions Deprecated: Use NewColorboxM (for a Modifiable) or NewColorBoxR.
func NewColorBoxM ¶
NewColorBoxM returns a modifiable Color Box (as a Sprite)
func NewColoredLine ¶
NewColoredLine returns a line with a custom function for how each pixel in that line should be colored.
func NewEmptySprite ¶
NewEmptySprite returns a sprite of the given dimensions with a blank RGBA
func NewGradientBox ¶
NewGradientBox returns a gradient box defined on the two input colors and the given progress function
func NewGradientLine ¶
NewGradientLine returns a Line that has some value of thickness along with a start and end color
func NewHorizontalGradientBox ¶
NewHorizontalGradientBox returns a gradient box with a horizontal gradient from the start to end color, left to right.
func NewThickLine ¶
NewThickLine returns a Line that has some value of thickness
func NewVerticalGradientBox ¶
NewVerticalGradientBox returns a gradient box with a vertical gradient from the start to end color, top to bottom.
func OverlaySprites ¶
OverlaySprites combines sprites together through masking to form a single sprite
func (*Sprite) Bounds ¶
Bounds is an alternative to GetDims that alows a sprite to satisfy draw.Image.
func (*Sprite) ColorModel ¶
ColorModel allows sprites to satisfy draw.Image. Returns color.RGBAModel.
func (*Sprite) GetDims ¶
GetDims returns the dimensions of this sprite, or if this sprite has no defined RGBA returns default values.
func (*Sprite) Modify ¶
func (s *Sprite) Modify(ms ...mod.Mod) Modifiable
Modify takes in modifications (modify.go) and alters this sprite accordingly
type Stackable ¶
type Stackable interface { PreDraw() Add(Renderable, ...int) Renderable Replace(Renderable, Renderable, int) Copy() Stackable DrawToScreen(draw.Image, *intgeom.Point2, int, int) Clear() }
A Stackable can be put onto a draw stack. It usually manages how a subset of renderables are drawn.
type Switch ¶
type Switch struct { LayeredPoint // contains filtered or unexported fields }
The Switch type is intended for use to easily swap between multiple renderables that are drawn at the same position on the same layer. A common use case for this would be a character entitiy who switches their animation based on how they are moving or what they are doing, or a button that has changes state when selected or hovered over.
func NewSwitch ¶
func NewSwitch(start string, m map[string]Modifiable) *Switch
NewSwitch creates a new Switch from a map of names to modifiables
func (*Switch) Add ¶
func (c *Switch) Add(k string, v Modifiable) (err error)
Add makes a new entry in the Switch's map. If the key already existed, it will be overwritten and an error will be returned.
func (*Switch) GetSub ¶
func (c *Switch) GetSub(s string) Modifiable
GetSub returns a keyed Modifiable from this Switch's map
func (*Switch) IsInterruptable ¶
IsInterruptable returns whether the current renderable is interruptable
func (*Switch) Modify ¶
func (c *Switch) Modify(ms ...mod.Mod) Modifiable
Modify performs the input modifications on all elements of the Switch
func (*Switch) RevertAll ¶
func (c *Switch) RevertAll()
RevertAll will revert all parts of this Switch that can be reverted, back to their original state.
func (*Switch) SetOffsets ¶
SetOffsets sets the logical offset for the specified key
func (*Switch) SetTriggerID ¶
SetTriggerID sets the ID AnimationEnd will trigger on for animating subtypes. Todo: standardize this with the other interface Set functions so that it also only acts on the current subRenderable, or the other way around, or somehow offer both options
type Text ¶
type Text struct { LayeredPoint // contains filtered or unexported fields }
A Text is a renderable that represents some text to print on screen
func NewIntText ¶
NewIntText wraps the given int pointer in a stringer interface and creates a text renderable that will diplay the underlying int value.
func NewStrPtrText ¶
NewStrPtrText is a helper to take in a string pointer for NewText
func NewStringerText ¶
NewStringerText creates a text element using the default font and a stringer.
func (*Text) Center ¶
func (t *Text) Center()
Center will shift the text so that the existing leftmost point where the text sits becomes the center of the new text.
func (*Text) SetIntPtr ¶
SetIntPtr takes in an integer pointer that will draw the integer behind the pointer, in base 10, each frame
func (*Text) SetStringPtr ¶
SetStringPtr accepts a string pointer as the stringer to be written
func (*Text) SetStringer ¶
SetStringer accepts an fmt.Stringer to write
func (*Text) StringLiteral ¶
StringLiteral returns what text is currently rendering.
type Triggerable ¶
Triggerable types can have an ID set so when their animations finish, they trigger AnimationEnd on that ID.
Source Files ¶
- batchload.go
- bezier.go
- cache.go
- colorbox.go
- colorer.go
- compositeM.go
- compositeR.go
- curve.go
- decoder.go
- default_decoders.go
- default_font.go
- doc.go
- draw.go
- drawHeap.go
- drawStack.go
- font.go
- fps.go
- gradientbox.go
- gradients.go
- interfaceFeatures.go
- interruptable.go
- layered.go
- line.go
- loadsheet.go
- loadsprite.go
- logicfps.go
- modifiable.go
- noopStackable.go
- pausing.go
- polygon.go
- renderable.go
- reverting.go
- sequence.go
- sheet.go
- shiny.go
- sprite.go
- switch.go
- text.go
- tween.go
Directories ¶
Path | Synopsis |
---|---|
Package mod stores modification functions for images.
|
Package mod stores modification functions for images. |
Package particle provides options for generating renderable particle sources.
|
Package particle provides options for generating renderable particle sources. |