summaryrefslogtreecommitdiffstats
path: root/EssentialsiConomyBridge/src
diff options
context:
space:
mode:
authorsnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-02 18:22:17 +0000
committersnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-02 18:22:17 +0000
commit79c0ef69c40643c1cc89c5842a9d0706aeabb390 (patch)
tree4a5f60607e70e16802f273f73412834e0702b546 /EssentialsiConomyBridge/src
parent2af13fd06268842dd42ada707db0e79b67e644d6 (diff)
downloadEssentials-79c0ef69c40643c1cc89c5842a9d0706aeabb390.tar
Essentials-79c0ef69c40643c1cc89c5842a9d0706aeabb390.tar.gz
Essentials-79c0ef69c40643c1cc89c5842a9d0706aeabb390.tar.lz
Essentials-79c0ef69c40643c1cc89c5842a9d0706aeabb390.tar.xz
Essentials-79c0ef69c40643c1cc89c5842a9d0706aeabb390.zip
Cleanup of the iConomyBridge Code
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1321 e251c2fe-e539-e718-e476-b85c1f46cddb
Diffstat (limited to 'EssentialsiConomyBridge/src')
-rw-r--r--EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/existCheck.java22
-rw-r--r--EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/iConomy.java71
-rw-r--r--EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java66
-rw-r--r--EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java65
-rw-r--r--EssentialsiConomyBridge/src/plugin.yml5
5 files changed, 129 insertions, 100 deletions
diff --git a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/existCheck.java b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/existCheck.java
index e0966fa3f..f01e686bf 100644
--- a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/existCheck.java
+++ b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/existCheck.java
@@ -1,19 +1,25 @@
package com.nijiko.coelho.iConomy;
+import java.util.logging.Logger;
import org.bukkit.Bukkit;
-public class existCheck {
+public class existCheck
+{
+ private static final Logger logger = Logger.getLogger("Minecraft");
//We have to make sure the user exists!
-
- public static boolean exist(String name){
- if (name==null){
- System.out.println("Essentials iConpomy Bridge - Whatever plugin is calling for users that are null is BROKEN!");
+ public static boolean exist(String name)
+ {
+
+ if (name == null)
+ {
+ logger.info("Essentials iConomy Bridge - Whatever plugin is calling for users that are null is BROKEN!");
return false;
}
- if (Bukkit.getServer().getPlayer(name)!=null){
- return true;
- }
+ if (Bukkit.getServer().getPlayer(name) != null)
+ {
+ return true;
+ }
return false;
}
} \ No newline at end of file
diff --git a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/iConomy.java b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/iConomy.java
index 1690040b0..6cb2e7c3f 100644
--- a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/iConomy.java
+++ b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/iConomy.java
@@ -1,39 +1,58 @@
package com.nijiko.coelho.iConomy;
+import com.earth2me.essentials.Essentials;
import org.bukkit.plugin.java.JavaPlugin;
import com.nijiko.coelho.iConomy.system.Bank;
-
-//This is not iConomy and I take NO credit for iConomy!
-//This is FayConomy, a iConomy Essentials Eco bridge!
-//@author Xeology
-
-//Pretend we are iConomy
-
-public class iConomy extends JavaPlugin{
- public static Bank Bank=null;
-
- //This is for the Essentials to detect FayConomy!
-
- public static boolean isFay(){
- return true;
- }
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import org.bukkit.plugin.Plugin;
+import org.bukkit.plugin.PluginManager;
+
+/**
+ * This is not iConomy and I take NO credit for iConomy!
+ * This is FayConomy, a iConomy Essentials Eco bridge!
+ * @author Xeology
+ */
+
+public class iConomy extends JavaPlugin
+{
+ public static Bank Bank = null;
+ private static final Logger logger = Logger.getLogger("Minecraft");
@Override
- public void onDisable() {
+ public void onDisable()
+ {
}
@Override
- public void onEnable() {
- Bank=new Bank();
-
- //Can not announce my plugin.yml file, this is NOT iConomy!
+ public void onEnable()
+ {
+ PluginManager pm = this.getServer().getPluginManager();
+ Plugin p = pm.getPlugin("Essentials");
+ if (p != null)
+ {
+ if (!pm.isPluginEnabled(p))
+ {
+ pm.enablePlugin(p);
+ }
+ }
+
+ String version = this.getDescription().getDescription().replaceAll(".*: ", "");
+ if (!version.equals(Essentials.getStatic().getDescription().getVersion()))
+ {
+ logger.log(Level.WARNING, "Version mismatch! Please update all Essentials jars to the same version.");
+ }
+ Essentials.getStatic().setIConomyFallback(false);
+
+ Bank = new Bank();
- System.out.println("Essentials iConomy Bridge v1.0 iz in ur Bukkitz emulating ur iConomyz!");
+ logger.info("Loaded " + this.getDescription().getDescription() + " by " + Essentials.AUTHORS);
+ logger.info("Make sure you don't have iConomy installed, if you use this.");
}
-
+
//Fake bank
-
- public static Bank getBank() {
- return Bank;
- }
+ public static Bank getBank()
+ {
+ return Bank;
+ }
}
diff --git a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java
index 740b31f58..a4a48b2ca 100644
--- a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java
+++ b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Account.java
@@ -1,6 +1,6 @@
package com.nijiko.coelho.iConomy.system;
-import com.earth2me.essentials.EcoAPI;
+import com.earth2me.essentials.api.Economy;
import com.nijiko.coelho.iConomy.existCheck;
@@ -8,13 +8,15 @@ public class Account
{
private String name;
- //Fake getname
public String getName()
{
return name;
}
- //Essentials doesnt have hidden accounts so just say yeah whatever!
+ /**
+ * Essentials does not support hidden accounts.
+ * @return false
+ */
public boolean setHidden(boolean hidden)
{
return true;
@@ -26,122 +28,118 @@ public class Account
this.name = name;
}
- //Fake return balance
public double getBalance()
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- return EcoAPI.getMoney(name);
+ return Economy.getMoney(name);
}
return 0;
}
- return EcoAPI.getMoney(name);
+ return Economy.getMoney(name);
}
- //Fake Set balance
public void setBalance(double bal)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.setMoney(name, bal);
+ Economy.setMoney(name, bal);
}
return;
}
- EcoAPI.setMoney(name, bal);
+ Economy.setMoney(name, bal);
}
- //Fake add balance
public void add(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.add(name, money);
+ Economy.add(name, money);
}
return;
}
- EcoAPI.add(name, money);
+ Economy.add(name, money);
}
- //Fake divide balance
public void divide(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.divide(name, money);
+ Economy.divide(name, money);
}
return;
}
- EcoAPI.divide(name, money);
+ Economy.divide(name, money);
}
- //Fake multiply balance
public void multiply(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.multiply(name, money);
+ Economy.multiply(name, money);
}
return;
}
- EcoAPI.multiply(name, money);
+ Economy.multiply(name, money);
}
- //Fake subtract balance
public void subtract(double money)
{
if (!existCheck.exist(name))
{
- if (EcoAPI.accountExist(name))
+ if (Economy.accountExist(name))
{
- EcoAPI.subtract(name, money);
+ Economy.subtract(name, money);
}
return;
}
- EcoAPI.subtract(name, money);
+ Economy.subtract(name, money);
}
- //fake reset balance!
public void resetBalance()
{
this.setBalance(0);
}
- //fake bal check
public boolean hasEnough(double amount)
{
return amount <= this.getBalance();
}
- //fake another balance check
public boolean hasOver(double amount)
{
return amount < this.getBalance();
}
- //Again we dont have hidden accounts here!
+ /**
+ * Essentials does not support hidden accounts.
+ * @return false
+ */
public boolean isHidden()
{
return false;
}
- //Fake is negative check!
public boolean isNegative()
{
return this.getBalance() < 0.0;
}
- //Because some plugins like to use depricated methods I must save
- //admins' log from the overflow of dumb
+ /**
+ * Because some plugins like to use depricated methods I must save
+ * admins' log from the overflow of dumb
+ */
+ @Deprecated
public void save()
{
}
diff --git a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java
index b70803dda..54e8e6387 100644
--- a/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java
+++ b/EssentialsiConomyBridge/src/com/nijiko/coelho/iConomy/system/Bank.java
@@ -1,53 +1,56 @@
package com.nijiko.coelho.iConomy.system;
-import com.earth2me.essentials.EcoAPI;
+import com.earth2me.essentials.api.Economy;
import com.nijiko.coelho.iConomy.existCheck;
-public class Bank {
-
- //The fake formatter
-
- public String format(double amount) {
- return EcoAPI.format(amount);
- }
+public class Bank
+{
+ //The fake formatter
+ public String format(double amount)
+ {
+ return Economy.format(amount);
+ }
//Fake currency!
-
- public String getCurrency() {
- return EcoAPI.getCurrency();
- }
+ public String getCurrency()
+ {
+ return Economy.getCurrency();
+ }
//Fake "does player have an account?" but essentials eco doesnt need to make one, so TRUE, unless its an NPC.
-
- public boolean hasAccount(String account) {
- if (!existCheck.exist(account)){
- if (!EcoAPI.accountExist(account)){
- EcoAPI.newAccount(account);
- }
+ public boolean hasAccount(String account)
+ {
+ if (!existCheck.exist(account))
+ {
+ if (!Economy.accountExist(account))
+ {
+ Economy.newAccount(account);
+ }
}
return true;
}
-
+
//simply switches the name to an account type?
-
- public Account getAccount(String name){
- Account Account=null;
- Account=new Account(name);
+ public Account getAccount(String name)
+ {
+ Account Account = null;
+ Account = new Account(name);
hasAccount(name);
return Account;
}
-
+
//Fake remove account
-
- public void removeAccount(String name){
- if (!existCheck.exist(name)){
- if (EcoAPI.accountExist(name)){
- EcoAPI.removeAccount(name);
+ public void removeAccount(String name)
+ {
+ if (!existCheck.exist(name))
+ {
+ if (Economy.accountExist(name))
+ {
+ Economy.removeAccount(name);
}
return;
}
- EcoAPI.setMoney(name, 0);
+ Economy.setMoney(name, 0);
}
-
}
diff --git a/EssentialsiConomyBridge/src/plugin.yml b/EssentialsiConomyBridge/src/plugin.yml
index 4e4eb7d4d..9e088681b 100644
--- a/EssentialsiConomyBridge/src/plugin.yml
+++ b/EssentialsiConomyBridge/src/plugin.yml
@@ -1,3 +1,6 @@
name: iConomy
version: 4.65
-main: com.nijiko.coelho.iConomy.iConomy \ No newline at end of file
+main: com.nijiko.coelho.iConomy.iConomy
+website: http://www.earth2me.net:8001/
+description: "Essentials iConomy Bridge version: TeamCity"
+authors: [Zenexer, ementalo, Aelux, Brettflan, KimKandor, snowleo, ceulemans, Xeology]