Fixed bug: UHCMatchState not initialized in config.
This commit is contained in:
parent
73bdb7e0bf
commit
b6ce31e547
6 changed files with 33 additions and 24 deletions
|
@ -0,0 +1 @@
|
||||||
|
UHCMatchState: "NULL"
|
|
@ -4,6 +4,7 @@ import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|
||||||
import alisolarflare.Module;
|
import alisolarflare.Module;
|
||||||
import alisolarflare.events.uhc.commands.AddToUHC;
|
import alisolarflare.events.uhc.commands.AddToUHC;
|
||||||
|
import alisolarflare.events.uhc.memory.MatchState;
|
||||||
import alisolarflare.events.uhc.memory.UHCMatch;
|
import alisolarflare.events.uhc.memory.UHCMatch;
|
||||||
import buttondevteam.lib.chat.TBMCChatAPI;
|
import buttondevteam.lib.chat.TBMCChatAPI;
|
||||||
|
|
||||||
|
@ -24,6 +25,10 @@ public class UHCModule extends Module {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void registerMemoryUnits(JavaPlugin plugin) {
|
private void registerMemoryUnits(JavaPlugin plugin) {
|
||||||
match = new UHCMatch(plugin.getConfig(), plugin.getConfig().getString("UHCMatchState"));
|
if (plugin.getConfig().contains("UHCMatchState")){
|
||||||
|
match = new UHCMatch(plugin.getConfig(), MatchState.valueOf(plugin.getConfig().getString("UHCMatchState")));
|
||||||
|
}else{
|
||||||
|
match = new UHCMatch(plugin.getConfig(), MatchState.IDLE);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,18 +15,33 @@ public class StartMatch extends TBMCCommandBase {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean OnCommand(CommandSender sender, String label, String[] args) {
|
public boolean OnCommand(CommandSender sender, String label, String[] args) {
|
||||||
if (match.getMatchState() == MatchState.NULL)
|
|
||||||
sender.sendMessage("There is no match to begin.");
|
if (!sender.hasPermission("moderator") && !(sender.getName() == ""))
|
||||||
else if (match.getMatchState() == MatchState.IDLE)
|
sender.sendMessage("You must be a moderator or Arsenalis to use this command! "
|
||||||
|
+ "Contact a TBMC dev if you think this is wrong");
|
||||||
|
|
||||||
|
//ACTIVATES MATCH
|
||||||
|
switch(match.getMatchState()){
|
||||||
|
case IDLE:
|
||||||
sender.sendMessage("There is currently a match ready... Activating...");
|
sender.sendMessage("There is currently a match ready... Activating...");
|
||||||
else if (match.getMatchState() == MatchState.WAITING)
|
break;
|
||||||
|
|
||||||
|
case WAITING:
|
||||||
sender.sendMessage("There currently a match planned for: TIME:TIME:TIME");
|
sender.sendMessage("There currently a match planned for: TIME:TIME:TIME");
|
||||||
else if (match.getMatchState() == MatchState.END)
|
break;
|
||||||
|
|
||||||
|
case END:
|
||||||
sender.sendMessage("The match has ended! Would you like to restart?");
|
sender.sendMessage("The match has ended! Would you like to restart?");
|
||||||
else
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
sender.sendMessage("You cannot start a match now, one is already in progress!");
|
sender.sendMessage("You cannot start a match now, one is already in progress!");
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
package alisolarflare.events.uhc.memory;
|
package alisolarflare.events.uhc.memory;
|
||||||
|
|
||||||
public enum MatchState {
|
public enum MatchState {
|
||||||
NULL, IDLE, WAITING, SETUP, INTRO, PEACE, TENSION, POWER, END
|
IDLE, WAITING, SETUP, INTRO, PEACE, TENSION, POWER, END
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,28 +5,21 @@ import java.util.List;
|
||||||
|
|
||||||
import org.bukkit.configuration.file.FileConfiguration;
|
import org.bukkit.configuration.file.FileConfiguration;
|
||||||
|
|
||||||
/**
|
|
||||||
* Class that contains the data for a single UltraHardcore Match,
|
|
||||||
* which represents a single game.
|
|
||||||
* @author Alisolarflare
|
|
||||||
*/
|
|
||||||
public class UHCMatch {
|
public class UHCMatch {
|
||||||
public List<String> playerList = new ArrayList<String>();
|
public List<String> playerList = new ArrayList<String>();
|
||||||
private MatchState matchState = MatchState.IDLE;
|
private MatchState matchState = MatchState.IDLE;
|
||||||
private FileConfiguration fileConfiguration;
|
private FileConfiguration fileConfiguration;
|
||||||
|
|
||||||
/**Class that fucks shit up*/
|
public UHCMatch(FileConfiguration fileConfiguration, MatchState state) {
|
||||||
public UHCMatch(FileConfiguration fileConfiguration, String stateName) {
|
|
||||||
this.fileConfiguration = fileConfiguration;
|
this.fileConfiguration = fileConfiguration;
|
||||||
this.matchState = MatchState.valueOf(stateName);
|
this.matchState = state;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**Other class that doesn't fuck shit up*/
|
|
||||||
public MatchState getMatchState(){
|
public MatchState getMatchState(){
|
||||||
return matchState;
|
return matchState;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**Other class that REALLY fucks shit up*/
|
|
||||||
public void setMatchState(MatchState newMS){
|
public void setMatchState(MatchState newMS){
|
||||||
matchState = newMS;
|
matchState = newMS;
|
||||||
fileConfiguration.set("UHCMatchState", newMS.toString());
|
fileConfiguration.set("UHCMatchState", newMS.toString());
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
package alisolarflare.minigames.freeforall;
|
|
||||||
|
|
||||||
public class StartMinigame {
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue