]> git.defcon.no Git - YAVote/blob - src/no/defcon/yavote/Votemanager.java
2212b7a40f7c254324d65b3feecc98e994dc986e
[YAVote] / src / no / defcon / yavote / Votemanager.java
1 package no.defcon.yavote;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 import org.bukkit.World;
7 import org.bukkit.entity.Player;
8 import org.bukkit.plugin.java.JavaPlugin;
9
10 public class Votemanager {
11 private JavaPlugin plugin;
12 private boolean voteRunning;
13 private String voteType;
14 private int expireTask;
15 private List<String> yesVoters;
16 private List<String> noVoters;
17
18
19 public Votemanager(JavaPlugin plugin) {
20 super();
21 this.plugin = plugin;
22 this.voteRunning = false;
23 }
24
25 public boolean cancelVote( )
26 {
27 if ( voteRunning )
28 {
29 plugin.getServer().broadcastMessage("Currently running vote is being canceled.");
30 plugin.getServer().getScheduler().cancelTask(expireTask);
31 clearState();
32 return true;
33 }
34 return false;
35 }
36
37 public boolean startVote( String type, Player p )
38 {
39 if ( this.voteRunning )
40 return false;
41
42 if ( ! (type.equalsIgnoreCase("sun") ||
43 type.equalsIgnoreCase("rain") ||
44 type.equalsIgnoreCase("storm") ||
45 type.equalsIgnoreCase("day") ||
46 type.equalsIgnoreCase("night") ))
47 {
48 plugin.getLogger().info("Tried to start a vote of invalid type. Code error!");
49 return false;
50 }
51
52 voteType = type;
53 voteRunning = true;
54
55 if ( yesVoters == null )
56 yesVoters = new ArrayList<String>();
57 else
58 yesVoters.clear();
59
60 if ( noVoters == null )
61 noVoters = new ArrayList<String>();
62 else
63 noVoters.clear();
64
65 yesVoters.add(p.getName());
66
67 if ( checkRatio( ) )
68 {
69 applyVote( voteType );
70 return true;
71 }
72
73 expireTask = plugin.getServer().getScheduler().scheduleSyncDelayedTask(this.plugin, new Runnable(){
74 @Override
75 public void run()
76 {
77 if ( voteRunning )
78 {
79 plugin.getServer().broadcastMessage("Time expired for voting on " + ((voteType != null) ? voteType : " .. uhm *blush*"));
80 clearState();
81 }
82 else
83 {
84 plugin.getLogger().info("Timer expired but vote was not running :S");
85 clearState();
86 }
87 }
88 }, plugin.getConfig().getLong("vote.timeoutSeconds")*20L );
89
90 plugin.getServer().broadcastMessage("A vote has started for " + voteType.toLowerCase() );
91 return true;
92 }
93
94 public boolean isVoteRunning()
95 {
96 return voteRunning;
97 }
98
99 public String getVoteType ()
100 {
101 return voteType;
102 }
103
104 public boolean addVote(Player player, boolean yes)
105 {
106 if ( ! voteRunning || (voteType == null ) )
107 return false;
108
109 if( yesVoters.contains(player.getName()) || noVoters.contains(player.getName()) )
110 {
111 player.sendMessage("You have already cast your vote");
112 return true;
113 }
114 if (yes == true) yesVoters.add(player.getName());
115 else noVoters.add(player.getName());
116
117 if ( (yes == true) && checkRatio( ) )
118 {
119 applyVote( voteType );
120 return true;
121 }
122 else
123 {
124 if ( yesVoters.size() + noVoters.size() >= plugin.getServer().getOnlinePlayers().length )
125 {
126 plugin.getServer().broadcastMessage("Vote failed for " + voteType);
127 plugin.getServer().getScheduler().cancelTask(expireTask);
128 clearState();
129 return true;
130 }
131 player.sendMessage("Vote counted. Thank you.");
132 return true;
133 }
134 }
135
136 private void applyVote(String type)
137 {
138 plugin.getServer().getScheduler().cancelTask(expireTask);
139 if ( ! voteRunning || (voteType == null ) )
140 {
141 plugin.getLogger().info("No vote running, but I was told to apply one. ERRR");
142 return;
143 }
144
145 List<World> worlds = plugin.getServer().getWorlds();
146 for ( World w : worlds)
147 {
148 if ( voteType.equalsIgnoreCase("sun"))
149 w.setStorm(false);
150 else if ( voteType.equalsIgnoreCase("rain"))
151 w.setStorm(true);
152 else if ( voteType.equalsIgnoreCase("storm"))
153 w.setThundering(true);
154 else if ( voteType.equalsIgnoreCase("day"))
155 w.setTime( plugin.getConfig().getInt("vote.time.dayStart") );
156 else if ( voteType.equalsIgnoreCase("night"))
157 w.setTime( plugin.getConfig().getInt("vote.time.nightStart") );
158 }
159 plugin.getServer().broadcastMessage("Vote succeeded for " + ((voteType != null) ? voteType : " .. uhm *blush*"));
160 clearState();
161 }
162
163 private boolean checkRatio( )
164 {
165 float required = 0.5F;
166 if ( voteType.equalsIgnoreCase("sun") || voteType.equalsIgnoreCase("rain") || voteType.equalsIgnoreCase("storm") )
167 required = (float)plugin.getConfig().getInt("vote.weather.requiredPercent") / 100.0F;
168 else if ( voteType.equalsIgnoreCase("day") || voteType.equalsIgnoreCase("night") )
169 required = (float)plugin.getConfig().getInt("vote.time.requiredPercent") / 100.0F;
170
171 float ratio = (float) yesVoters.size() / (float) plugin.getServer().getOnlinePlayers().length;
172 if ( ratio > required ) return true;
173 return false;
174 }
175
176 private void clearState()
177 {
178 voteRunning = false;
179 voteType = null;
180 yesVoters.clear();
181 noVoters.clear();
182 }
183
184 }