stevenh
4c7d1459d2
Reworked command registration so that aliases are secondary to the primary command label requested
...
Updated docs to reflect what the code really does
This adds a few new methods to Command including:-
* A full constructor that takes descriptio, usageMassage and aliases for convenience
* getLabel() which returns the active label for a command, which is derived from the Command name or subsiquent call to setLabel(..)
* A number of registration functions for use in the CommandMap implementer
Also of note is Command.getAliases() no returns the "active" aliases
2011-05-22 20:42:26 +01:00
Celtic Minstrel
238eabc084
Fixed command aliases priorities.
...
Command aliases are now given lower weight than the "official" name of the command; this allows you to define aliases without worrying about them overriding someone else's command.
2011-05-16 00:41:51 -04:00
EvilSeph
12578557ad
Made disabled plugins show up in red in the plugins list. Thanks Yetanotherx!
2011-05-15 20:07:53 -04:00
Erik Broes
992f1f2bf3
Whitespace + general cleanup
2011-05-15 14:06:02 +02:00
EvilSeph
cc3f7710ef
Fixed AIOOBE when entering a space into console and hitting enter.
2011-04-24 21:49:45 -04:00
Dinnerbone
7867b27965
All previous deprecated methods removed (OH GOD EVERYTHING BROKEN)
2011-03-14 15:05:46 +00:00
stevenh
c47efb4986
Corrected description of CommandSender.getServer()
2011-03-12 17:55:55 +00:00
stevenh
e4a1008f8a
Removed unneeded string constant concat
...
Note: editor removed spaces on otherwise empty lines
2011-03-12 17:51:57 +00:00
Erik Broes
6da67f1ea6
Compensate for sendMessage losing its 'unintended splitting on existing newlines'-feature
2011-03-12 17:01:56 +01:00
Dinnerbone
0b35cd8127
Don't throw commands if the plugin is disabled
2011-03-07 16:41:50 +00:00
Erik Broes
c383d1f385
Java 1.5 compat.
2011-03-02 15:23:15 +01:00
Dinnerbone
0f95f3063a
command.set/getDescription replaces a now deprecated set/getTooltip + javadocs
2011-02-28 11:42:09 +00:00
Dinnerbone
2ca3d148cc
PluginCommand getExecutor + javadocs
2011-02-28 10:35:58 +00:00
Dinnerbone
2b1dc975f1
Added JavaPlugin.getCommand
2011-02-28 01:35:03 +00:00
Dinnerbone
a27b2703dd
Case-insensitive commands
2011-02-28 00:52:43 +00:00
Dinnerbone
95d92e406e
Tweaks to command system to allow setting executors via plugins (no more ambiguous onCommand in plugins)
2011-02-28 00:30:59 +00:00
Dinnerbone
fb30fd5fad
Changed ConsoleCommandSender to use stripColor instead of hardcoded
2011-02-23 11:44:12 +00:00
Dinnerbone
86aa75c3b5
ConsoleCommandSender no longer has a default constructor, use ConsoleCommandSender(server). Added entity.getServer
2011-02-23 11:33:03 +00:00
EvilSeph
a748069eb3
We need to set cmdSuccess accordingly.
2011-02-18 21:30:19 -05:00
Dinnerbone
2188275a00
Exception handling in commands
2011-02-18 16:25:06 +00:00
sk89q
42def68966
Fixed alias parsing for commands. object.toString().split(",") is NOT how you parse a YAML list!
2011-02-16 21:47:05 -08:00
EvilSeph
0731a0a00c
Commands should not be case-sensitive.
2011-02-06 21:56:38 -05:00
EvilSeph
d167abe6d7
Moved the plugin list display out of the version command and into the plugins command.
...
Version should not display a list of plugins as a server running many
plugins will no longer be able to see the version output.
2011-02-05 04:30:18 -05:00
Dinnerbone
1a2c220ac3
Revert "fallback code for command lookup"
...
This reverts commit 74a549c74bcabdb094c5c46f919ed98288631352.
2011-02-02 09:20:16 +00:00
tahg
00d4e1a2e0
fallback code for command lookup
2011-02-01 21:56:16 -08:00
Erik Broes
01988e8f6b
General cleanup (deprecated+whitespace)
2011-02-02 00:28:41 +01:00
Dinnerbone
ebf854c93e
Strip colours for console output
2011-02-01 18:26:31 +00:00
Dinnerbone
02d1de8c3c
Don't delete the first char of the command passed
2011-02-01 18:12:46 +00:00
Dinnerbone
61f6259762
Deprecated CommandSender.isPlayer (instanceof!) and added ConsoleCommandSender
2011-02-01 16:45:29 +00:00
stevenh
47af4404bf
Renamed IExecutor -> CommandExecutor and fixed SERVER_COMMAND doc
2011-01-29 21:17:36 +00:00
stevenh
a984e73ac1
Finalising merge with head
2011-01-29 17:28:31 +00:00
stevenh
39c4a5a2e9
merge with head
2011-01-29 17:18:32 +00:00
stevenh
a89a96416b
Refactored event calling so its front loading avoiding the lookup for each event call.
...
This now uses an annoymous class implementing IExecutor that facilitates direct event method handler calling
Changed commands from being executed exclusively by a player to by a CommandSender to facilitate external command callers such as rcon
Fixed CustomEventListener
Merged in additional events
Added getFullName to PluginDescriptionFile which returns the combination of Name and Version
There's also a few bits of reformatting as it seems someones been editing with either tabs or dos eol :(
2011-01-29 16:23:56 +00:00
Dinnerbone
c565b51d20
Fixed only being able to use /reload once
2011-01-28 14:24:54 +00:00
Dinnerbone
99549ef8cc
clearPlugins() and clearCommands() for PluginManager and CommandMap respectively
2011-01-28 14:18:24 +00:00
Dinnerbone
228e150cfa
Fully implemented /version
2011-01-20 16:26:57 +00:00
Dinnerbone
5f63f77bf1
Added /version and /reload commands
2011-01-20 03:53:27 +00:00
Dinnerbone
eee866bf25
Fixed empty check in PluginCommand
2011-01-20 03:08:15 +00:00
VictorD
6f07a1bbb2
Fixed minor bug with alias registration and removed debug output
2011-01-18 01:54:48 +01:00
VictorD
0951ed5de8
Updated commands to have optional aliases, and to fallback to /pluginName:cmdName on name conflict.
2011-01-18 01:12:50 +01:00