playn.core.gl.GroupLayerGL Maven / Gradle / Ivy
/**
* Copyright 2010 The PlayN Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package playn.core.gl;
import playn.core.Asserts;
import playn.core.GroupLayer;
import playn.core.GroupLayerImpl;
import playn.core.InternalTransform;
import playn.core.Layer;
import playn.core.ParentLayer;
public class GroupLayerGL extends LayerGL implements GroupLayer, ParentLayer {
private GroupLayerImpl impl = new GroupLayerImpl();
public GroupLayerGL(GLContext ctx) {
super(ctx);
}
@Override
public Layer get(int index) {
return impl.children.get(index);
}
@Override
public void add(Layer layer) {
Asserts.checkArgument(layer instanceof LayerGL);
impl.add(this, (LayerGL) layer);
}
@Override @Deprecated
public void add(int index, Layer layer) {
Asserts.checkArgument(layer instanceof LayerGL);
impl.add(this, index, (LayerGL) layer);
}
@Override
public void remove(Layer layer) {
Asserts.checkArgument(layer instanceof LayerGL);
impl.remove(this, (LayerGL) layer);
}
@Override @Deprecated
public void remove(int index) {
impl.remove(this, index);
}
@Override
public void clear() {
impl.clear(this);
}
@Override
public int size() {
return impl.children.size();
}
@Override
public void destroy() {
super.destroy();
impl.destroy(this);
}
@Override
public void onAdd() {
super.onAdd();
impl.onAdd(this);
}
@Override
public void onRemove() {
super.onRemove();
impl.onRemove(this);
}
@Override
public void depthChanged(Layer layer, float oldDepth) {
impl.depthChanged(this, layer, oldDepth);
}
@Override
public void paint(InternalTransform parentTransform, float parentAlpha) {
if (!visible()) return;
for (LayerGL child : impl.children) {
child.paint(localTransform(parentTransform), parentAlpha * alpha);
}
}
}