/* * Copyright (c) 2019-2022 GeyserMC. http://geysermc.org * * 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. * * @author GeyserMC * @link https://github.com/GeyserMC/Geyser */ package org.geysermc.geyser.registry; import org.geysermc.geyser.registry.loader.RegistryLoader; import javax.annotation.Nullable; import java.util.Map; import java.util.OptionalInt; import java.util.function.ToIntFunction; /** * An abstract registry holding a map of various registrations as defined by {@link M}. * The M represents the map class, which can be anything that extends {@link Map}. The * {@link K} and {@link V} generics are the key and value respectively. * * @param the key * @param the value * @param the map */ public abstract class AbstractMappedRegistry> extends Registry { protected AbstractMappedRegistry(I input, RegistryLoader registryLoader) { super(input, registryLoader); } /** * Returns the value registered by the given key. * * @param key the key * @return the value registered by the given key. */ @Nullable public V get(K key) { return this.mappings.get(key); } /** * Returns and maps the value by the given key if present. * * @param key the key * @param mapper the mapper * @return the mapped value from the given key if present */ public OptionalInt map(K key, ToIntFunction mapper) { V value = this.get(key); if (value == null) { return OptionalInt.empty(); } else { return OptionalInt.of(mapper.applyAsInt(value)); } } /** * Returns the value registered by the given key or the default value * specified if null. * * @param key the key * @param defaultValue the default value * @return the value registered by the given key or the default value * specified if null. */ public V getOrDefault(K key, V defaultValue) { return this.mappings.getOrDefault(key, defaultValue); } /** * Registers a new value into this registry with the given key. * * @param key the key * @param value the value * @return a new value into this registry with the given key. */ public V register(K key, V value) { return this.mappings.put(key, value); } }