/src/Resident.java

https://github.com/Theino/Towny-Obsidian · Java · 104 lines · 83 code · 15 blank · 6 comment · 21 complexity · f074425a1fa20b64f51208577e9617eb MD5 · raw file

  1. import java.util.*;
  2. import java.util.logging.Logger;
  3. import java.text.SimpleDateFormat;
  4. public class Resident {
  5. protected static final Logger log = Logger.getLogger("Minecraft");
  6. // private final String newLine = System.getProperty("line.separator");
  7. public String name;
  8. public long lastLogin;
  9. public Town town;
  10. public boolean isMayor;
  11. public boolean isKing;
  12. public boolean isActive;
  13. public ArrayList<Resident> friends;
  14. public Resident(String name) {
  15. this(name, false);
  16. }
  17. public Resident(String name, boolean login) {
  18. this.name = name;
  19. if (login)
  20. lastLogin = System.currentTimeMillis();
  21. else
  22. lastLogin = 0;
  23. isMayor = false;
  24. isKing = false;
  25. isActive = false;
  26. friends = new ArrayList<Resident>();
  27. }
  28. public boolean addFriend(Resident resident) {
  29. if (!friends.contains(resident)) {
  30. friends.add(resident);
  31. return true;
  32. } else {
  33. return false;
  34. }
  35. }
  36. public boolean remFriend(Resident resident) {
  37. if (friends.contains(resident)) {
  38. friends.remove(resident);
  39. return true;
  40. } else {
  41. return false;
  42. }
  43. }
  44. public boolean remAllFriends() {
  45. friends.clear();
  46. if (friends.size() == 0)
  47. return true;
  48. else
  49. return false;
  50. }
  51. public String getLastLogin() {
  52. SimpleDateFormat sdf = new SimpleDateFormat("MMMMM dd");
  53. return sdf.format(lastLogin);
  54. }
  55. public String toString() {
  56. if (town != null && this == town.mayor) {
  57. if (town.nation != null && town == town.nation.capital)
  58. return TownyProperties.getKingPrefix(town.nation.activeResidents) + name;
  59. else
  60. return TownyProperties.getMayorPrefix(town.activeResidents) + name;
  61. } else {
  62. return name;
  63. }
  64. }
  65. public ArrayList<String> getStatus() {
  66. ArrayList<String> out = new ArrayList<String>();
  67. // ___[ King Harlus ]___
  68. out.add(ChatTools.formatTitle(toString()));
  69. // Last Online: March 7
  70. out.add(Colors.Green + "Last Online: " + Colors.LightGreen + getLastLogin());
  71. // Town: Camelot
  72. String line = Colors.Green + "Town: " + Colors.LightGreen;
  73. if (town == null) {
  74. line += "None";
  75. } else {
  76. line += town;
  77. }
  78. out.add(line);
  79. // Friends [12]:
  80. // James, Carry, Mason
  81. out.add(Colors.Green + "Friends " + Colors.LightGreen + "[" + friends.size() + "]" + Colors.Green + ":");
  82. out.addAll(ChatTools.list(friends.toArray()));
  83. return out;
  84. }
  85. public void leaveTown() {
  86. if (town != null)
  87. town.remResident(this);
  88. }
  89. }