aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/Danker/commands/DisplayCommand.java
blob: d20491be914c1a48f1f578b387b60533711e10d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package me.Danker.commands;

import me.Danker.DankersSkyblockMod;
import me.Danker.handlers.ConfigHandler;
import net.minecraft.command.CommandBase;
import net.minecraft.command.CommandException;
import net.minecraft.command.ICommandSender;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.BlockPos;
import net.minecraft.util.ChatComponentText;

import java.util.List;

public class DisplayCommand extends CommandBase {
	public static String display;
	public static boolean auto;

	@Override
	public String getCommandName() {
		return "display";
	}

	@Override
	public String getCommandUsage(ICommandSender arg0) {
		return "/" + getCommandName() + " <zombie/spider/wolf/fishing/catacombs/mythological/auto/off> [winter/festival/spooky/session/f(1-7)]";
	}

	@Override
	public int getRequiredPermissionLevel() {
		return 0;
	}
	
	@Override
	public List<String> addTabCompletionOptions(ICommandSender sender, String[] args, BlockPos pos) {
		if (args.length == 1) {
			return getListOfStringsMatchingLastWord(args, "wolf", "spider", "zombie", "fishing", "catacombs", "mythological", "auto", "off");
		} else if (args.length == 2 && args[0].equalsIgnoreCase("fishing")) {
			return getListOfStringsMatchingLastWord(args, "winter", "festival", "spooky", "session");
		} else if (args.length == 2 && args[0].equalsIgnoreCase("catacombs")) {
			return getListOfStringsMatchingLastWord(args, "f1", "floor1", "f2", "floor2", "f3", "floor3", "f4", "floor4", "f5", "floor5", "f6", "floor6", "f7", "floor7");
		} else if (args.length > 1) {
			return getListOfStringsMatchingLastWord(args, "session");
		}
		return null;
	}
	
	@Override
	public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
		final EntityPlayer player = (EntityPlayer) arg0;
		
		if (arg1.length == 0) {
			player.addChatMessage(new ChatComponentText(DankersSkyblockMod.ERROR_COLOUR + "Usage: " + getCommandUsage(arg0)));
			return;
		}
		
		boolean showSession = false;
		
		if (arg1[arg1.length - 1].equalsIgnoreCase("session")) showSession = true;
		
		switch (arg1[0].toLowerCase()) {
		case "wolf":
			if (showSession) {
				display = "wolf_session";
			} else {
				display = "wolf";
			}
			break;
		case "spider":
			if (showSession) {
				display = "spider_session";
			} else {
				display = "spider";
			}
			break;
		case "zombie":
			if (showSession) {
				display = "zombie_session";
			} else {
				display = "zombie";
			}
			break;
		case "fishing":
			if (arg1.length > 1) {
				switch (arg1[1].toLowerCase()) {
					case "winter":
						if (showSession) {
							display = "fishing_winter_session";
						} else {
							display = "fishing_winter";
						}
						break;
					case "festival":
						if (showSession) {
							display = "fishing_festival_session";
						} else {
							display = "fishing_festival";
						}
						break;
					case "spooky":
						if (showSession) {
							display = "fishing_spooky_session";
						} else {
							display = "fishing_spooky";
						}
						break;
					default:
						if (showSession) {
							display = "fishing_session";
						} else {
							display = "fishing";
						}
				}
			} else {
				if (showSession) {
					display = "fishing_session";
				} else {
					display = "fishing";
				}
			}
			break;
		case "mythological":
			if (showSession) {
				display = "mythological_session";
			} else {
				display = "mythological";
			}
			break;
		case "catacombs":
			if (arg1.length == 1) {
				player.addChatMessage(new ChatComponentText(DankersSkyblockMod.ERROR_COLOUR + "Usage: /display catacombs <f1/f2/f3/f4f5/f6/f7>"));
				return;
			}
			
			switch (arg1[1].toLowerCase()) {
				case "f1":
				case "floor1":
					if (showSession) {
						display = "catacombs_floor_one_session";
					} else {
						display = "catacombs_floor_one";
					}
					break;
				case "f2":
				case "floor2":
					if (showSession) {
						display = "catacombs_floor_two_session";
					} else {
						display = "catacombs_floor_two";
					}
					break;
				case "f3":
				case "floor3":
					if (showSession) {
						display = "catacombs_floor_three_session";
					} else {
						display = "catacombs_floor_three";
					}
					break;
				case "f4":
				case "floor4":
					if (showSession) {
						display = "catacombs_floor_four_session";
					} else {
						display = "catacombs_floor_four";
					}
					break;
				case "f5":
				case "floor5":
					if (showSession) {
						display = "catacombs_floor_five_session";
					} else {
						display = "catacombs_floor_five";
					}
					break;
				case "f6":
				case "floor6":
					if (showSession) {
						display = "catacombs_floor_six_session";
					} else {
						display = "catacombs_floor_six";
					}
					break;
				case "f7":
				case "floor7":
					if (showSession) {
						display = "catacombs_floor_seven_session";
					} else {
						display = "catacombs_floor_seven";
					}
					break;
				default:
					player.addChatMessage(new ChatComponentText(DankersSkyblockMod.ERROR_COLOUR + "Usage: /display catacombs <f1/f2/f3/f4/f5/f6/f7>"));
					return;
			}
			break;
		case "auto":
			auto = true;
			player.addChatMessage(new ChatComponentText(DankersSkyblockMod.MAIN_COLOUR + "Display set to " + DankersSkyblockMod.SECONDARY_COLOUR + "auto" + DankersSkyblockMod.MAIN_COLOUR + "."));
			ConfigHandler.writeBooleanConfig("misc", "autoDisplay", true);
			return;
		case "off":
			display = "off";
			break;
		default:
			player.addChatMessage(new ChatComponentText(DankersSkyblockMod.ERROR_COLOUR + "Usage: " + getCommandUsage(arg0)));
			return;
		}
		
		auto = false;
		player.addChatMessage(new ChatComponentText(DankersSkyblockMod.MAIN_COLOUR + "Display set to " + DankersSkyblockMod.SECONDARY_COLOUR + display + DankersSkyblockMod.MAIN_COLOUR + "."));
		ConfigHandler.writeBooleanConfig("misc", "autoDisplay", false);
		ConfigHandler.writeStringConfig("misc", "display", display);
	}

}