summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/register/payment/methods/iCo4.java
blob: 52fb36e152978794f1332d8fc75136b5ebcab33d (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package com.earth2me.essentials.register.payment.methods;

import com.earth2me.essentials.register.payment.Method;
import com.nijiko.coelho.iConomy.iConomy;
import com.nijiko.coelho.iConomy.system.Account;
import org.bukkit.plugin.Plugin;


/**
 * iConomy 4 Implementation of Method
 *
 * @author Nijikokun <nijikokun@shortmail.com> (@nijikokun)
 * @copyright (c) 2011
 * @license AOL license <http://aol.nexua.org>
 */
public class iCo4 implements Method
{
	private iConomy iConomy;

	@Override
	public iConomy getPlugin()
	{
		return this.iConomy;
	}

	@Override
	public String getName()
	{
		return "iConomy";
	}

	@Override
	public String getVersion()
	{
		return "4";
	}

	@Override
	public int fractionalDigits()
	{
		return 2;
	}

	@Override
	public String format(double amount)
	{
		return com.nijiko.coelho.iConomy.iConomy.getBank().format(amount);
	}

	@Override
	public boolean hasBanks()
	{
		return false;
	}

	@Override
	public boolean hasBank(String bank)
	{
		return false;
	}

	@Override
	public boolean hasAccount(String name)
	{
		return com.nijiko.coelho.iConomy.iConomy.getBank().hasAccount(name);
	}

	@Override
	public boolean hasBankAccount(String bank, String name)
	{
		return false;
	}

	@Override
	public boolean createAccount(String name)
	{
		if (hasAccount(name))
		{
			return false;
		}

		try
		{
			com.nijiko.coelho.iConomy.iConomy.getBank().addAccount(name);
		}
		catch (Exception E)
		{
			return false;
		}

		return true;
	}

	@Override
	public boolean createAccount(String name, Double balance)
	{
		if (hasAccount(name))
		{
			return false;
		}

		try
		{
			com.nijiko.coelho.iConomy.iConomy.getBank().addAccount(name, balance);
		}
		catch (Exception E)
		{
			return false;
		}

		return true;
	}

	@Override
	public MethodAccount getAccount(String name)
	{
		return new iCoAccount(com.nijiko.coelho.iConomy.iConomy.getBank().getAccount(name));
	}

	@Override
	public MethodBankAccount getBankAccount(String bank, String name)
	{
		return null;
	}

	@Override
	public boolean isCompatible(Plugin plugin)
	{
		return plugin.getDescription().getName().equalsIgnoreCase("iconomy")
			   && plugin.getClass().getName().equals("com.nijiko.coelho.iConomy.iConomy")
			   && plugin instanceof iConomy;
	}

	@Override
	public void setPlugin(Plugin plugin)
	{
		iConomy = (iConomy)plugin;
	}


	public class iCoAccount implements MethodAccount
	{
		private Account account;

		public iCoAccount(Account account)
		{
			this.account = account;
		}

		public Account getiCoAccount()
		{
			return account;
		}

		@Override
		public double balance()
		{
			return this.account.getBalance();
		}

		@Override
		public boolean set(double amount)
		{
			if (this.account == null)
			{
				return false;
			}
			this.account.setBalance(amount);
			return true;
		}

		@Override
		public boolean add(double amount)
		{
			if (this.account == null)
			{
				return false;
			}
			this.account.add(amount);
			return true;
		}

		@Override
		public boolean subtract(double amount)
		{
			if (this.account == null)
			{
				return false;
			}
			this.account.subtract(amount);
			return true;
		}

		@Override
		public boolean multiply(double amount)
		{
			if (this.account == null)
			{
				return false;
			}
			this.account.multiply(amount);
			return true;
		}

		@Override
		public boolean divide(double amount)
		{
			if (this.account == null)
			{
				return false;
			}
			this.account.divide(amount);
			return true;
		}

		@Override
		public boolean hasEnough(double amount)
		{
			return this.account.hasEnough(amount);
		}

		@Override
		public boolean hasOver(double amount)
		{
			return this.account.hasOver(amount);
		}

		@Override
		public boolean hasUnder(double amount)
		{
			return (this.balance() < amount);
		}

		@Override
		public boolean isNegative()
		{
			return this.account.isNegative();
		}

		@Override
		public boolean remove()
		{
			if (this.account == null)
			{
				return false;
			}
			this.account.remove();
			return true;
		}
	}
}