/* * 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.effect.particle; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; import com.google.common.collect.ImmutableList; import org.lanternpowered.server.data.util.DataQueries; import org.spongepowered.api.data.DataSerializable; import org.spongepowered.api.data.DataView; import org.spongepowered.api.data.persistence.AbstractDataBuilder; import org.spongepowered.api.data.persistence.InvalidDataException; import org.spongepowered.api.effect.particle.ParticleEffect; import org.spongepowered.api.effect.particle.ParticleOption; import org.spongepowered.api.effect.particle.ParticleType; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; @SuppressWarnings("unchecked") public class LanternParticleEffectBuilder extends AbstractDataBuilder<ParticleEffect> implements ParticleEffect.Builder { private LanternParticleType type; private Map<ParticleOption<?>, Object> options; public LanternParticleEffectBuilder() { super(ParticleEffect.class, 1); this.reset(); } @Override protected Optional<ParticleEffect> buildContent(DataView container) throws InvalidDataException { if (!container.contains(DataQueries.PARTICLE_TYPE, DataQueries.PARTICLE_OPTIONS)) { return Optional.empty(); } ParticleType particleType = container.getCatalogType(DataQueries.PARTICLE_TYPE, ParticleType.class).get(); Map<ParticleOption<?>, Object> options = new HashMap<>(); container.getViewList(DataQueries.PARTICLE_OPTIONS).get().forEach(view -> { ParticleOption option = view.getCatalogType(DataQueries.PARTICLE_OPTION_KEY, ParticleOption.class).get(); Object value; if (option.getValueType().isAssignableFrom(DataSerializable.class)) { value = view.getSerializable(DataQueries.PARTICLE_OPTION_VALUE, option.getValueType()).get(); } else { value = view.getObject(DataQueries.PARTICLE_OPTION_VALUE, option.getValueType()).get(); } options.put(option, value); }); return Optional.of(new LanternParticleEffect((LanternParticleType) particleType, options)); } @Override public ParticleEffect.Builder from(ParticleEffect particleEffect) { this.type = (LanternParticleType) particleEffect.getType(); this.options = new HashMap<>(particleEffect.getOptions()); return this; } @Override public ParticleEffect.Builder type(ParticleType particleType) { this.type = (LanternParticleType) checkNotNull(particleType, "particleType"); return this; } @Override public ParticleEffect.Builder reset() { super.reset(); this.type = null; this.options = new HashMap<>(); return this; } @Override public <V> ParticleEffect.Builder option(ParticleOption<V> option, V value) throws IllegalArgumentException { checkNotNull(option, "option"); checkNotNull(value, "value"); IllegalArgumentException exception = ((LanternParticleOption<V>) option).validateValue(value); if (exception != null) { throw exception; } if (value instanceof List) { value = (V) ImmutableList.copyOf((List) value); } this.options.put(option, value); return this; } @Override public ParticleEffect build() { checkArgument(this.type != null, "ParticleType must be set"); return new LanternParticleEffect(this.type, this.options); } }