summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/settings/Economy.java
blob: b18f05b9650fa1fd0a6c32ddbb22e831dba5fe37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.earth2me.essentials.settings;

import com.earth2me.essentials.storage.Comment;
import com.earth2me.essentials.storage.MapType;
import com.earth2me.essentials.storage.StorageObject;
import java.util.HashMap;
import java.util.Map;
import lombok.Data;
import lombok.EqualsAndHashCode;


@Data
@EqualsAndHashCode(callSuper = false)
public class Economy extends StorageObject
{
	@Comment("Defines the balance with which new players begin. Defaults to 0.")
	private double startingBalance = 0.0;
	@MapType(Double.class)
	@Comment("Defines the cost to use the given commands PER USE")
	private Map<String, Double> commandCosts = new HashMap<String, Double>();
	@Comment("Set this to a currency symbol you want to use.")
	private String currencySymbol = "$";

	public String getCurrencySymbol()
	{
		return currencySymbol == null || currencySymbol.isEmpty() ? "$" : currencySymbol.substring(0, 1);
	}
	private final transient static double MAXMONEY = 10000000000000.0;
	@Comment(
	{
		"Set the maximum amount of money a player can have",
		"The amount is always limited to 10 trillions because of the limitations of a java double"
	})
	private double maxMoney = MAXMONEY;

	public double getMaxMoney()
	{
		return Math.abs(maxMoney) > MAXMONEY ? MAXMONEY : Math.abs(maxMoney);
	}
	@Comment("Enable this to log all interactions with trade/buy/sell signs and sell command")
	private boolean logEnabled = false;
}