/src/Nation.java

https://github.com/Theino/Towny-Obsidian · Java · 191 lines · 157 code · 23 blank · 11 comment · 42 complexity · 230cb4a85fb9be4d6cce0324b4c5c59c MD5 · raw file

  1. import java.util.*;
  2. import java.util.logging.Logger;
  3. public class Nation implements Comparable<Nation> {
  4. protected static final Logger log = Logger.getLogger("Minecraft");
  5. //private final String newLine = System.getProperty("line.separator");
  6. public String name;
  7. public Town capital;
  8. public ArrayList<Resident> assistants;
  9. public ArrayList<Town> towns;
  10. public ArrayList<Nation> friends;
  11. public ArrayList<Nation> enemies;
  12. public int activeResidents;
  13. public Nation(String name) {
  14. this.name = name;
  15. assistants = new ArrayList<Resident>();
  16. towns = new ArrayList<Town>();
  17. friends = new ArrayList<Nation>();
  18. enemies = new ArrayList<Nation>();
  19. activeResidents = 0;
  20. }
  21. public synchronized boolean addTown(Town town) {
  22. if (!towns.contains(town)) {
  23. towns.add(town);
  24. town.nation = this;
  25. return true;
  26. } else {
  27. return false;
  28. }
  29. }
  30. public synchronized boolean remTown(Town town) {
  31. int index = towns.indexOf(town);
  32. if (index != -1) {
  33. towns.remove(index);
  34. town.nation = null;
  35. return true;
  36. } else {
  37. return false;
  38. }
  39. }
  40. public synchronized boolean addFriend(Nation nation) {
  41. if (!friends.contains(nation)) {
  42. friends.add(nation);
  43. return true;
  44. } else {
  45. return false;
  46. }
  47. }
  48. public synchronized boolean remFriend(Nation nation) {
  49. int index = friends.indexOf(nation);
  50. if (index != -1) {
  51. friends.remove(index);
  52. return true;
  53. } else {
  54. return false;
  55. }
  56. }
  57. public synchronized boolean addEnemy(Nation nation) {
  58. if (!enemies.contains(nation)) {
  59. enemies.add(nation);
  60. return true;
  61. } else {
  62. return false;
  63. }
  64. }
  65. public synchronized boolean remEnemy(Nation nation) {
  66. int index = enemies.indexOf(nation);
  67. if (index != -1) {
  68. enemies.remove(index);
  69. return true;
  70. } else {
  71. return false;
  72. }
  73. }
  74. public ArrayList<Player> getOnlinePlayers() {
  75. ArrayList<Player> out = new ArrayList<Player>();
  76. for (Town town : towns) {
  77. out.addAll(town.getOnlinePlayers());
  78. }
  79. return out;
  80. }
  81. public boolean setAliegeance(String type, Nation nation) {
  82. if (type.equalsIgnoreCase("friend")) {
  83. remEnemy(nation);
  84. addFriend(nation);
  85. if (!enemies.contains(nation) && friends.contains(nation))
  86. return true;
  87. } else if (type.equalsIgnoreCase("neutral")) {
  88. remEnemy(nation);
  89. remFriend(nation);
  90. if (!enemies.contains(nation) && !friends.contains(nation))
  91. return true;
  92. } else if (type.equalsIgnoreCase("enemy")) {
  93. remFriend(nation);
  94. addEnemy(nation);
  95. if (enemies.contains(nation) && !friends.contains(nation))
  96. return true;
  97. }
  98. return false;
  99. }
  100. public boolean remAll() {
  101. for (Town town : towns) {
  102. town.nation = null;
  103. }
  104. towns.clear();
  105. if (size() == 0)
  106. return true;
  107. else
  108. return false;
  109. }
  110. public void countActiveResidents() {
  111. activeResidents = 0;
  112. for (Town town : towns) {
  113. activeResidents += town.activeResidents;
  114. }
  115. }
  116. public void dertermineCapital() {
  117. if (size() > 0) {
  118. sortTownsBySize();
  119. if (capital != null)
  120. capital.isCapital = false;
  121. capital = null;
  122. capital = towns.get(0);
  123. capital.isCapital = true;
  124. if (capital.mayor != null)
  125. capital.mayor.isKing = true;
  126. }
  127. }
  128. public void sortTownsBySize() {
  129. Collections.sort(towns, new TownSortBySize());
  130. Collections.reverse(towns);
  131. }
  132. public int size() {
  133. return towns.size();
  134. }
  135. public ArrayList<String> getStatus() {
  136. ArrayList<String> out = new ArrayList<String>();
  137. // ___[ Azur Empire ]___
  138. out.add(ChatTools.formatTitle(toString()));
  139. // King: King Harlus
  140. if (size() > 0 && capital != null && capital.mayor != null)
  141. out.add(Colors.Green + "King: " + Colors.LightGreen + capital.mayor);
  142. // Assistants:
  143. // Mayor Rockefel, Sammy, Ginger
  144. if (assistants.size() > 0) {
  145. out.add(Colors.Green + "Assistants:");
  146. out.addAll(ChatTools.list(assistants.toArray()));
  147. }
  148. // Towns [44]:
  149. // James City, Carry Grove, Mason Town
  150. out.add(Colors.Green + "Towns " + Colors.LightGreen + "[" + size() + "]" + Colors.Green + ":");
  151. out.addAll(ChatTools.list(towns.toArray()));
  152. // Friendly towards [4]:
  153. // James Nation, Carry Territory, Mason Country
  154. out.add(Colors.Green + "Friendly towards " + Colors.LightGreen + "[" + friends.size() + "]" + Colors.Green + ":");
  155. out.addAll(ChatTools.list(friends.toArray()));
  156. // Enemies [4]:
  157. // James Nation, Carry Territory, Mason Country
  158. out.add(Colors.Green + "Enemies " + Colors.LightGreen + "[" + enemies.size() + "]" + Colors.Green + ":");
  159. out.addAll(ChatTools.list(enemies.toArray()));
  160. return out;
  161. }
  162. public String toString() {
  163. return name + TownyProperties.getNationPrefix(activeResidents);
  164. }
  165. public int compareTo(Nation o) {
  166. return this.size() - o.size() ;
  167. }
  168. }