2018-06-17 17:29:57 +00:00
|
|
|
package level
|
|
|
|
|
2018-06-17 17:40:41 +00:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2018-09-23 22:20:45 +00:00
|
|
|
|
2019-04-10 00:35:44 +00:00
|
|
|
"git.kirsle.net/apps/doodle/pkg/balance"
|
2019-07-03 23:22:30 +00:00
|
|
|
"git.kirsle.net/apps/doodle/pkg/drawtool"
|
2019-12-28 03:16:34 +00:00
|
|
|
"git.kirsle.net/go/render"
|
2018-06-17 17:40:41 +00:00
|
|
|
)
|
|
|
|
|
2018-10-28 05:22:13 +00:00
|
|
|
// Useful variables.
|
|
|
|
var (
|
|
|
|
DefaultWallpaper = "notebook.png"
|
|
|
|
)
|
|
|
|
|
2018-09-26 17:04:46 +00:00
|
|
|
// Base provides the common struct keys that are shared between Levels and
|
|
|
|
// Doodads.
|
|
|
|
type Base struct {
|
2019-05-05 21:03:20 +00:00
|
|
|
Version int `json:"version" msgpack:"0"` // File format version spec.
|
|
|
|
GameVersion string `json:"gameVersion" msgpack:"1"` // Game version that created the level.
|
|
|
|
Title string `json:"title" msgpack:"2"`
|
|
|
|
Author string `json:"author" msgpack:"3"`
|
2019-07-07 06:28:11 +00:00
|
|
|
Locked bool `json:"locked" msgpack:"4"`
|
2018-10-19 20:31:58 +00:00
|
|
|
|
|
|
|
// Every drawing type is able to embed other files inside of itself.
|
2019-07-07 06:28:11 +00:00
|
|
|
Files FileSystem `json:"files" msgpack:"5"`
|
2018-09-26 17:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Level is the container format for Doodle map drawings.
|
|
|
|
type Level struct {
|
|
|
|
Base
|
2019-05-05 21:03:20 +00:00
|
|
|
Password string `json:"passwd" msgpack:"10"`
|
2018-06-17 17:29:57 +00:00
|
|
|
|
2018-09-23 22:20:45 +00:00
|
|
|
// Chunked pixel data.
|
2019-05-05 21:03:20 +00:00
|
|
|
Chunker *Chunker `json:"chunks" msgpack:"12"`
|
2018-09-23 22:20:45 +00:00
|
|
|
|
2018-06-17 17:29:57 +00:00
|
|
|
// The Palette holds the unique "colors" used in this map file, and their
|
|
|
|
// properties (solid, fire, slippery, etc.)
|
2019-05-05 21:03:20 +00:00
|
|
|
Palette *Palette `json:"palette" msgpack:"13"`
|
2018-10-19 20:31:58 +00:00
|
|
|
|
2018-10-28 05:22:13 +00:00
|
|
|
// Page boundaries and wallpaper settings.
|
2019-05-05 21:03:20 +00:00
|
|
|
PageType PageType `json:"pageType" msgpack:"14"`
|
|
|
|
MaxWidth int64 `json:"boundedWidth" msgpack:"15"` // only if bounded or bordered
|
|
|
|
MaxHeight int64 `json:"boundedHeight" msgpack:"16"`
|
|
|
|
Wallpaper string `json:"wallpaper" msgpack:"17"`
|
2018-10-28 05:22:13 +00:00
|
|
|
|
2018-10-19 20:31:58 +00:00
|
|
|
// Actors keep a list of the doodad instances in this map.
|
2019-05-05 21:03:20 +00:00
|
|
|
Actors ActorMap `json:"actors" msgpack:"18"`
|
2019-07-03 23:22:30 +00:00
|
|
|
|
|
|
|
// Undo history, temporary live data not persisted to the level file.
|
|
|
|
UndoHistory *drawtool.History `json:"-" msgpack:"-"`
|
2018-08-11 00:19:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// New creates a blank level object with all its members initialized.
|
|
|
|
func New() *Level {
|
|
|
|
return &Level{
|
2018-09-26 17:04:46 +00:00
|
|
|
Base: Base{
|
|
|
|
Version: 1,
|
|
|
|
},
|
2018-09-23 22:20:45 +00:00
|
|
|
Chunker: NewChunker(balance.ChunkSize),
|
2018-08-11 00:19:47 +00:00
|
|
|
Palette: &Palette{},
|
2018-10-20 22:42:49 +00:00
|
|
|
Actors: ActorMap{},
|
2018-10-28 05:22:13 +00:00
|
|
|
|
|
|
|
PageType: NoNegativeSpace,
|
|
|
|
Wallpaper: DefaultWallpaper,
|
|
|
|
MaxWidth: 2550,
|
|
|
|
MaxHeight: 3300,
|
2019-07-03 23:22:30 +00:00
|
|
|
|
|
|
|
UndoHistory: drawtool.NewHistory(balance.UndoHistory),
|
2018-08-11 00:19:47 +00:00
|
|
|
}
|
2018-06-17 17:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pixel associates a coordinate with a palette index.
|
|
|
|
type Pixel struct {
|
2019-12-28 03:16:34 +00:00
|
|
|
X int `json:"x"`
|
|
|
|
Y int `json:"y"`
|
|
|
|
PaletteIndex int `json:"p"`
|
2018-08-11 00:19:47 +00:00
|
|
|
|
|
|
|
// Private runtime values.
|
2018-09-25 16:40:34 +00:00
|
|
|
Swatch *Swatch `json:"-"` // pointer to its swatch, for when rendered.
|
2018-08-11 00:19:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p Pixel) String() string {
|
|
|
|
return fmt.Sprintf("Pixel<%s '%s' (%d,%d)>", p.Swatch.Color, p.Swatch.Name, p.X, p.Y)
|
2018-06-17 17:29:57 +00:00
|
|
|
}
|
|
|
|
|
2018-09-23 22:20:45 +00:00
|
|
|
// Point returns the pixel's point.
|
|
|
|
func (p Pixel) Point() render.Point {
|
|
|
|
return render.Point{
|
|
|
|
X: p.X,
|
|
|
|
Y: p.Y,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-17 17:40:41 +00:00
|
|
|
// MarshalJSON serializes a Pixel compactly as a simple list.
|
|
|
|
func (p Pixel) MarshalJSON() ([]byte, error) {
|
|
|
|
return []byte(fmt.Sprintf(
|
|
|
|
`[%d, %d, %d]`,
|
2018-08-11 00:19:47 +00:00
|
|
|
p.X, p.Y, p.PaletteIndex,
|
2018-06-17 17:40:41 +00:00
|
|
|
)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalJSON loads a Pixel from JSON again.
|
|
|
|
func (p *Pixel) UnmarshalJSON(text []byte) error {
|
2019-12-28 03:16:34 +00:00
|
|
|
var triplet []int
|
2018-06-17 17:40:41 +00:00
|
|
|
err := json.Unmarshal(text, &triplet)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
p.X = triplet[0]
|
|
|
|
p.Y = triplet[1]
|
2018-08-11 00:19:47 +00:00
|
|
|
if len(triplet) > 2 {
|
|
|
|
p.PaletteIndex = triplet[2]
|
|
|
|
}
|
2018-06-17 17:40:41 +00:00
|
|
|
return nil
|
|
|
|
}
|