package com.gmail.nossr50.datatypes; import java.util.ArrayList; import com.gmail.nossr50.datatypes.PlayerStat; public class Tree { private TreeNode root = null; public Tree(){} /** * Add a node to this tree. * * @param p Player name * @param in Stat value */ public void add(String p, int in) { if (root == null) { root = new TreeNode(p, in); } else { root.add(p, in); } } /** * Retrieve an array of PlayerStats from the Tree. * * @return the player stats of this tree, in order */ public PlayerStat[] inOrder() { if (root != null) { ArrayList order = root.inOrder(new ArrayList()); return order.toArray(new PlayerStat[order.size()]); } else { /* Throw some dummy info in case the users file is empty. * It's not a good fix but its better than rewriting the whole system. */ ArrayList x = new ArrayList(); PlayerStat y = new PlayerStat(); y.name = "$mcMMO_DummyInfo"; y.statVal = 0; x.add(y); return x.toArray(new PlayerStat[x.size()]); } } }