All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.spongepowered.api.item.merchant.TradeOffer Maven / Gradle / Ivy

The newest version!
/*
 * This file is part of SpongeAPI, licensed under the MIT License (MIT).
 *
 * Copyright (c) SpongePowered 
 * 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.spongepowered.api.item.merchant;

import org.spongepowered.api.Sponge;
import org.spongepowered.api.data.persistence.DataBuilder;
import org.spongepowered.api.data.persistence.DataSerializable;
import org.spongepowered.api.entity.living.Humanoid;
import org.spongepowered.api.item.inventory.ItemStack;
import org.spongepowered.api.item.inventory.ItemStackSnapshot;
import org.spongepowered.api.util.CopyableBuilder;

import java.util.Optional;

/**
 * 

Represents a trade offer that a {@link Merchant} may offer a * {@link Humanoid}.

* *

TradeOffers usually have a limited amount of times they can be used.

* *

Also, trade offers are not guaranteed to have two buying items.

*/ public interface TradeOffer extends DataSerializable { /** * Creates a new {@link Builder} to build a {@link TradeOffer}. * * @return The new builder */ static Builder builder() { return Sponge.game().builderProvider().provide(Builder.class); } /** * Gets the first buying item. *

The first buying item is an item that the customer is selling to the * merchant in exchange for {@link #sellingItem()}.

* * @return The first buying item */ ItemStackSnapshot firstBuyingItem(); /** * Returns whether this trade offer has a second item the merchant is buying * from the customer. * * @return True if there is a second buying item */ boolean hasSecondItem(); /** *

Gets the second buying item.

* *

The second buying item is an item that the customer is selling to the * merchant, along with the {@link #firstBuyingItem()}, in exchange for * {@link #sellingItem()}.

* * @return The second buying item, if available */ Optional secondBuyingItem(); /** * Gets the selling item the {@link Merchant} will give to the customer * often in exchange for a single item or sometimes, two items from the * following methods: {@link #firstBuyingItem()} and * {@link #secondBuyingItem}. * * @return The selling item */ ItemStackSnapshot sellingItem(); /** *

Gets the current uses of this offer.

* *

Usually, the uses of an offer are limited by the amount of * {@link #maxUses()}. Once the uses reaches the max uses, the offer may * temporarily become disabled.

* * @return The current uses of this trade offer */ int uses(); /** *

Gets the current maximum uses of this offer.

* *

Usually, the uses of an offer are limited by the amount of maximum * uses. Once the uses reaches the max uses, the offer may temporarily * become disabled.

* * @return The maximum uses of this trade offer */ int maxUses(); /** * Checks if this trade offer has indeed passed the time of which the uses * surpassed the maximum uses. * * @return True if the uses have surpassed the maximum uses */ boolean hasExpired(); /** * Gets whether this trade offer will grant experience to the customer upon * usage or not. * * @return True if using this trade offer will grant experience to the customer */ boolean doesGrantExperience(); /** * Gets the amount of experience granted to the merchant when this trade * offer is used. * * @return The experience to be granted to the merchant */ int experienceGrantedToMerchant(); /** * Gets the rate at which this trade offer's price will grow when demand for * an item increases. Every time a villager trades, this value is multiplied * by the current price of the offer and the demand bonus. * *

If this value is 0, demand will have no effect on this offer's * price.

* * @return the price growth multiplier * @see the * Minecraft Wiki for more detail on how the price growth multiplier applies * to trade offers */ double priceGrowthMultiplier(); /** * Gets the demand bonus for this trade offer. * * @return the demand bonus */ int demandBonus(); /** * Represents a builder to generate immutable {@link TradeOffer}s. */ interface Builder extends org.spongepowered.api.util.Builder, CopyableBuilder, DataBuilder { /** *

Sets the first selling item of the trade offer to be * generated.

* *

Trade offers require at least one item to be generated.

* * @param item The first item to buy * @return This builder */ Builder firstBuyingItem(ItemStack item); /** * Sets the second selling item of the trade offer to be generated. * * @param item The second item to buy * @return This builder */ Builder secondBuyingItem(ItemStack item); /** * Sets the selling item of the trade offer to be generated. * * @param item The item to sell * @return This builder */ Builder sellingItem(ItemStack item); /** * Sets the existing uses of the trade offer to be generated. A trade * offer will become unusable when the uses surpasses the max uses. * * @param uses The uses * @return This builder */ Builder uses(int uses); /** * Sets the maximum uses the generated trade offer will have. A trade * offer will become unusable when the uses surpasses the max uses. * * @param maxUses The maximum uses of the trade offer * @return This builder */ Builder maxUses(int maxUses); /** * Sets the trade offer to be generated to grant experience to * the customer upon use. * * @param experience Whether the offer will grant experience * @return This builder */ Builder canGrantExperience(boolean experience); /** * Sets how much experience the trade offer will grant to the merchant * upon use. * * @param experience The amount of experience. * @return This builder */ Builder merchantExperienceGranted(int experience); /** * Sets the rate at which the generated trade offer's price will grow * when demand for an item increases. Every time a villager trades, this * value is multiplied by the current price of the offer and the demand * bonus. * *

If this value is 0, trade demand will have no effect on this * offer's price.

* * @param priceGrowthMultiplier The offer's rate of price growth * @return This builder * @see the * Minecraft Wiki for more detail on how the price growth multiplier * applies to trade offers */ Builder priceGrowthMultiplier(double priceGrowthMultiplier); /** * Sets the demand bonus for this trade offer. * * @param bonus The offer's demand bonus * @return This builder */ Builder demandBonus(int bonus); /** * Creates a new TradeOffer instance with the current state of the * builder. * * @return A new trade offer instance * @throws IllegalStateException If the resulting trade offer would be * invalid */ @Override TradeOffer build() throws IllegalStateException; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy