summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandcustomtext.java
blob: 7e3acd643796f6f3641917e11e30b8b2ad014264 (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
package com.earth2me.essentials.commands;

import com.earth2me.essentials.CommandSource;
import com.earth2me.essentials.textreader.IText;
import com.earth2me.essentials.textreader.KeywordReplacer;
import com.earth2me.essentials.textreader.TextInput;
import com.earth2me.essentials.textreader.TextPager;
import com.earth2me.essentials.utils.NumberUtil;
import org.bukkit.Server;


public class Commandcustomtext extends EssentialsCommand
{
	public Commandcustomtext()
	{
		super("customtext");
	}

	@Override
	protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
	{
		final IText input = new TextInput(sender, "custom", true, ess);
		final IText output = new KeywordReplacer(input, sender, ess);
		final TextPager pager = new TextPager(output);
		String chapter = commandLabel;
		String page;

		if (commandLabel.equalsIgnoreCase("customtext") && args.length > 0 && !NumberUtil.isInt(commandLabel))
		{
			chapter = args[0];
			page = args.length > 1 ? args[1] : null;
		}
		else
		{
			page = args.length > 0 ? args[0] : null;
		}
		
		pager.showPage(chapter, page, null, sender);
	}
}