2018-09-23 22:20:45 +00:00
|
|
|
package level
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2022-04-30 03:34:59 +00:00
|
|
|
"sync"
|
2018-09-23 22:20:45 +00:00
|
|
|
|
2019-12-23 02:21:58 +00:00
|
|
|
"git.kirsle.net/go/render"
|
2018-09-23 22:20:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// MapAccessor implements a chunk accessor by using a map of points to their
|
|
|
|
// palette indexes. This is the simplest accessor and is best for sparse chunks.
|
2022-04-30 03:34:59 +00:00
|
|
|
type MapAccessor struct {
|
|
|
|
grid map[render.Point]*Swatch
|
|
|
|
mu sync.RWMutex
|
|
|
|
}
|
2018-09-23 22:20:45 +00:00
|
|
|
|
|
|
|
// NewMapAccessor initializes a MapAccessor.
|
2022-04-30 03:34:59 +00:00
|
|
|
func NewMapAccessor() *MapAccessor {
|
|
|
|
return &MapAccessor{
|
|
|
|
grid: map[render.Point]*Swatch{},
|
|
|
|
}
|
2018-09-23 22:20:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Inflate the sparse swatches from their palette indexes.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) Inflate(pal *Palette) error {
|
|
|
|
for point, swatch := range a.grid {
|
2018-09-23 22:20:45 +00:00
|
|
|
if swatch.IsSparse() {
|
|
|
|
// Replace this with the correct swatch from the palette.
|
2019-04-17 07:02:41 +00:00
|
|
|
if swatch.paletteIndex >= len(pal.Swatches) {
|
2018-09-23 22:20:45 +00:00
|
|
|
return fmt.Errorf("MapAccessor.Inflate: swatch for point %s has paletteIndex %d but palette has only %d colors",
|
|
|
|
point,
|
|
|
|
swatch.paletteIndex,
|
|
|
|
len(pal.Swatches),
|
|
|
|
)
|
|
|
|
}
|
2022-04-30 03:34:59 +00:00
|
|
|
|
|
|
|
a.mu.Lock()
|
|
|
|
a.grid[point] = pal.Swatches[swatch.paletteIndex] // <- concurrent write
|
|
|
|
a.mu.Unlock()
|
2018-09-23 22:20:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Len returns the current size of the map, or number of pixels registered.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) Len() int {
|
|
|
|
a.mu.RLock()
|
|
|
|
defer a.mu.RUnlock()
|
|
|
|
return len(a.grid)
|
2018-09-23 22:20:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IterViewport returns a channel to loop over pixels in the viewport.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) IterViewport(viewport render.Rect) <-chan Pixel {
|
2018-09-23 22:20:45 +00:00
|
|
|
pipe := make(chan Pixel)
|
|
|
|
go func() {
|
|
|
|
for px := range a.Iter() {
|
|
|
|
if px.Point().Inside(viewport) {
|
|
|
|
pipe <- px
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(pipe)
|
|
|
|
}()
|
|
|
|
return pipe
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iter returns a channel to loop over all points in this chunk.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) Iter() <-chan Pixel {
|
2018-09-23 22:20:45 +00:00
|
|
|
pipe := make(chan Pixel)
|
|
|
|
go func() {
|
2022-04-30 03:34:59 +00:00
|
|
|
a.mu.Lock()
|
|
|
|
for point, swatch := range a.grid {
|
2018-09-23 22:20:45 +00:00
|
|
|
pipe <- Pixel{
|
|
|
|
X: point.X,
|
|
|
|
Y: point.Y,
|
|
|
|
Swatch: swatch,
|
|
|
|
}
|
|
|
|
}
|
2022-04-30 03:34:59 +00:00
|
|
|
a.mu.Unlock()
|
2018-09-23 22:20:45 +00:00
|
|
|
close(pipe)
|
|
|
|
}()
|
|
|
|
return pipe
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a pixel from the map.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) Get(p render.Point) (*Swatch, error) {
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
|
|
|
|
pixel, ok := a.grid[p] // <- concurrent read and write
|
2018-09-23 22:20:45 +00:00
|
|
|
if !ok {
|
|
|
|
return nil, errors.New("no pixel")
|
|
|
|
}
|
|
|
|
return pixel, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set a pixel on the map.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) Set(p render.Point, sw *Swatch) error {
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
a.grid[p] = sw
|
2018-09-23 22:20:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete a pixel from the map.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) Delete(p render.Point) error {
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
|
|
|
|
if _, ok := a.grid[p]; ok {
|
|
|
|
delete(a.grid, p)
|
2018-09-23 22:20:45 +00:00
|
|
|
return nil
|
|
|
|
}
|
2022-04-30 03:34:59 +00:00
|
|
|
|
2018-09-23 22:20:45 +00:00
|
|
|
return errors.New("pixel was not there")
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalJSON to convert the chunk map to JSON.
|
|
|
|
//
|
|
|
|
// When serialized, the key is the "X,Y" coordinate and the value is the
|
|
|
|
// swatch index of the Palette, rather than redundantly serializing out the
|
|
|
|
// Swatch object for every pixel.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) MarshalJSON() ([]byte, error) {
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
|
2018-09-23 22:20:45 +00:00
|
|
|
dict := map[string]int{}
|
2022-04-30 03:34:59 +00:00
|
|
|
for point, sw := range a.grid {
|
2018-09-23 22:20:45 +00:00
|
|
|
dict[point.String()] = sw.Index()
|
|
|
|
}
|
|
|
|
|
|
|
|
out, err := json.Marshal(dict)
|
|
|
|
return out, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON to convert the chunk map back from JSON.
|
2022-04-30 03:34:59 +00:00
|
|
|
func (a *MapAccessor) UnmarshalJSON(b []byte) error {
|
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
|
|
|
|
2018-09-23 22:20:45 +00:00
|
|
|
var dict map[string]int
|
|
|
|
err := json.Unmarshal(b, &dict)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for coord, index := range dict {
|
|
|
|
point, err := render.ParsePoint(coord)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("MapAccessor.UnmarshalJSON: %s", err)
|
|
|
|
}
|
2022-04-30 03:34:59 +00:00
|
|
|
a.grid[point] = NewSparseSwatch(index)
|
2018-09-23 22:20:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|