-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
tmx_group.go
95 lines (82 loc) · 3.16 KB
/
tmx_group.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
Copyright (c) 2020 Lauris Bukšis-Haberkorns <lauris@nix.lv>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package tiled
import (
"encoding/xml"
)
// Group is a group layer, used to organize the layers of the map in a hierarchy.
type Group struct {
// Unique ID of the layer.
// Each layer that added to a map gets a unique id. Even if a layer is deleted,
// no layer ever gets the same ID. Can not be changed in Tiled. (since Tiled 1.2)
ID uint32 `xml:"id,attr"`
// The name of the group layer.
Name string `xml:"name,attr"`
// The class of the group layer (since 1.9, defaults to "").
Class string `xml:"class,attr"`
// Rendering offset of the image layer in pixels. Defaults to 0. (since 0.15)
OffsetX int `xml:"offsetx,attr"`
// Rendering offset of the image layer in pixels. Defaults to 0. (since 0.15)
OffsetY int `xml:"offsety,attr"`
// The opacity of the layer as a value from 0 to 1. Defaults to 1.
Opacity float32 `xml:"opacity,attr"`
// Whether the layer is shown (1) or hidden (0). Defaults to 1.
Visible bool `xml:"visible,attr"`
// The parallax x factor of the layer 0 - 1.0
ParallaxX float32 `xml:"parallaxx,attr"`
// The parallax y factor of the layer 0 - 1.0
ParallaxY float32 `xml:"parallaxy,attr"`
// Custom properties
Properties Properties `xml:"properties>property"`
// Map layers
Layers []*Layer `xml:"layer"`
// Map object groups
ObjectGroups []*ObjectGroup `xml:"objectgroup"`
// Image layers
ImageLayers []*ImageLayer `xml:"imagelayer"`
// Group layers
Groups []*Group `xml:"group"`
}
// UnmarshalXML decodes a single XML element beginning with the given start element.
func (g *Group) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
item := aliasGroup{}
item.SetDefaults()
if err := d.DecodeElement(&item, &start); err != nil {
return err
}
*g = (Group)(item)
return nil
}
// DecodeGroup decodes Group data. This includes all subgroups and the Layer
// data for each.
func (g *Group) DecodeGroup(m *Map) error {
for i := 0; i < len(g.Groups); i++ {
g := g.Groups[i]
if err := g.DecodeGroup(m); err != nil {
return err
}
}
for i := 0; i < len(g.Layers); i++ {
l := g.Layers[i]
if err := l.DecodeLayer(m); err != nil {
return err
}
}
return nil
}