/* * This file is part of LanternServer, licensed under the MIT License (MIT). * * Copyright (c) LanternPowered <https://www.lanternpowered.org> * Copyright (c) SpongePowered <https://www.spongepowered.org> * Copyright (c) contributors * * 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 org.lanternpowered.server.item.firework; import com.google.common.base.MoreObjects; import com.google.common.collect.ImmutableList; import org.lanternpowered.server.data.util.DataQueries; import org.spongepowered.api.data.DataContainer; import org.spongepowered.api.data.MemoryDataContainer; import org.spongepowered.api.data.Queries; import org.spongepowered.api.item.FireworkEffect; import org.spongepowered.api.item.FireworkShape; import org.spongepowered.api.util.Color; import java.util.List; public class LanternFireworkEffect implements FireworkEffect { private final boolean flicker; private final boolean trails; private final ImmutableList<Color> colors; private final ImmutableList<Color> fades; private final FireworkShape shape; LanternFireworkEffect(boolean flicker, boolean trails, Iterable<Color> colors, Iterable<Color> fades, FireworkShape shape) { this.flicker = flicker; this.trails = trails; this.colors = ImmutableList.copyOf(colors); this.fades = ImmutableList.copyOf(fades); this.shape = shape; } @Override public boolean flickers() { return this.flicker; } @Override public boolean hasTrail() { return this.trails; } @Override public List<Color> getColors() { return this.colors; } @Override public List<Color> getFadeColors() { return this.fades; } @Override public FireworkShape getShape() { return this.shape; } @Override public int getContentVersion() { return 1; } @Override public DataContainer toContainer() { return new MemoryDataContainer() .set(Queries.CONTENT_VERSION, this.getContentVersion()) .set(DataQueries.FIREWORK_SHAPE, this.shape.getId()) .set(DataQueries.FIREWORK_COLORS, this.colors) .set(DataQueries.FIREWORK_FADE_COLORS, this.fades) .set(DataQueries.FIREWORK_TRAILS, this.trails) .set(DataQueries.FIREWORK_FLICKERS, this.flicker); } @Override public String toString() { return MoreObjects.toStringHelper(this) .add("shape", this.shape) .add("trails", this.trails) .add("flickers", this.flicker) .add("colors", this.colors) .add("fades", this.fades) .toString(); } }