This tool can generate the boilerplate code for your next Spigot plugin.
It can also generate code for several things like commands, listeners, custom events, etc.
To install this tool you need Node.js version 4.2.3
minimum.
Then you can run:
$ [sudo] npm install -g spigot-redstone
Once installed you wil have access to the redstone
command.
$ redstone [command] [args]
# Display help:
$ redstone
To create a new plugin you have to use the new
command:
$ redstone plugin:new MyAwesomePlugin
The tool will ask you several questions and will create a directory containing code ready to be imported in your IDE.
The project generated uses Maven as the dependency manager so you don't have to add any Spigot or Craftbukkit jar to start coding.
Using this tool, you can generate boilerplate code for several things.
Don't add /
to the command, the tool will do it for you.
$ redstone make:command <command>
This will create a class to handle the command and add it to plugin.yml
.
You will have to add a line in your onEnable
method to register the command, but the
tool will give you the line to add.
$ redstone make:listener <name>
If you don't add it, Listener
will be added at the end of the name (Example
becomes ExampleListener
).
$ redstone make:event <name>
If you don't add it, Event
will be added at the end of the name (Example
becomes ExampleEvent
).
To trigger your custom event, you have to do:
Bukkit.getServer().getPluginManager().callEvent(new ExampleEvent(/* args */));
$ redstone make:model <name>
The tool can show you some infos about your plugin. You juste have to be inside the plugin's root directory and do:
$ redstone plugin:info
You can list Spigot versions (and know which is the last stable) by doing:
$ redstone spigot:info
You can configure the tool using the tool itself.
# list all config values
$ redstone config
# show a config value
$ redstone config author.name
# set a config value
$ redstone config author.name John Smith
Currently, you can configure author.name
and author.website
which are used when you create a new plugin.
MIT License
Copyright (c) 2016 Nathan Boiron
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.