DosMike / TooMuchStock

Limit the economy on your server
1 stars 0 forks source link

Too Much Stock

This plugin aims to provide an API for dynamic pricing based on trade volume and popularity of items. In order to keep the Server economy within limits the following factors are put in place:

Every aspect can be tuned and disabled through a config file. Most configurations can be done per item through item type / meta or nbt filters.

Keep in mind that this plugin primarily tracks price increase, this means you can still make shops that sell items for more or less money (e.g. black markets) but the prices still scale with demand and supply!

Additional features:

Commands & Permissions

Example config

An example configuration with comments can be found here.

Pricing API

The interface can be obtained as Service using PriceCalculationService:

@Listener public void onChangeServiceProvider(ChangeServiceProviderEvent event) {
    if (event.getService().equals(PriceCalculationService.class)) {
        pricingService = (PriceCalculationService) event.getNewProvider();
    }
}

The API provides current prices with
pricingService.getCurrentPurchasePrice(ItemStackSnapshot item, int amount, BigDecimal staticPrice, @Nullable UUID shopID, @Nullable UUID playerID)

As soon as a player shows interest in items and due to the exponential nature of dynamic prices the next step would be to call
TransactionPreview preview = pricingService.getPurchaseInformation(ItemStackSnapshot item, int amount, BigDecimal staticPrice, Currency currency, @Nullable UUID shopID, @Nullable UUID playerID)
with the preview holding all price steps up to amount, and the amount of items the player can afford (to buy OR sell until they hit account limits).
The Transaction should be finished with a call to preview.confirm like
preview.confirm(preview.getAffordableAmount())
to actually update the prices within the trackers.

Once a price changes through a transaction, discrapency decay or reset a PriceChangeEvent will be emitted for plugins to update their dispalys.

Example Implementation

An example implementation of TooMuchStock as optional dependency is available in my plugin VillagerShops.

The abstraction is located in this package: https://github.com/DosMike/VillagerShops/tree/master/src/main/java/de/dosmike/sponge/vshop/integrations/toomuchstock

The dependency is initialized in GameInitializationEvent with PriceCalculator.get()

And it's used in the buy and sell methods here:
https://github.com/DosMike/VillagerShops/blob/master/src/main/java/de/dosmike/sponge/vshop/shops/Purchase.java#L90

Please Note: You will have write / copy the abstraction package in your plugin.

As Dependency

repositories {
    ...
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.DosMike:TooMuchStock:master-SNAPSHOT'
}

I'm always open for suggestions:

Join my Discord