/* * 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.data.value.mutable; import static com.google.common.base.Preconditions.checkNotNull; import static com.google.common.base.Preconditions.checkState; import org.lanternpowered.server.data.value.immutable.ImmutableLanternBoundedValue; import org.spongepowered.api.data.key.Key; import org.spongepowered.api.data.value.BaseValue; import org.spongepowered.api.data.value.immutable.ImmutableBoundedValue; import org.spongepowered.api.data.value.mutable.MutableBoundedValue; import java.util.Comparator; import java.util.function.Function; public class LanternBoundedValue<E> extends LanternValue<E> implements MutableBoundedValue<E> { private final Comparator<E> comparator; private final E minimum; private final E maximum; public LanternBoundedValue(Key<? extends BaseValue<E>> key, E defaultValue, Comparator<E> comparator, E minimum, E maximum) { this(key, defaultValue, comparator, minimum, maximum, defaultValue); } public LanternBoundedValue(Key<? extends BaseValue<E>> key, E defaultValue, Comparator<E> comparator, E minimum, E maximum, E actualValue) { super(key, defaultValue, actualValue); this.comparator = checkNotNull(comparator); this.minimum = checkNotNull(minimum); this.maximum = checkNotNull(maximum); checkState(comparator.compare(maximum, minimum) >= 0); } @Override public E getMinValue() { return this.minimum; } @Override public E getMaxValue() { return this.maximum; } @Override public Comparator<E> getComparator() { return this.comparator; } @Override public MutableBoundedValue<E> set(E value) { if (this.comparator.compare(value, this.minimum) >= 0 && this.comparator.compare(value, this.maximum) <= 0) { this.actualValue = checkNotNull(value); } return this; } @Override public MutableBoundedValue<E> transform(Function<E, E> function) { return this.set(checkNotNull(checkNotNull(function).apply(this.get()))); } @Override public ImmutableBoundedValue<E> asImmutable() { return new ImmutableLanternBoundedValue<>(this.getKey(), this.actualValue, this.getDefault(), this.comparator, this.minimum, this.maximum); } }