1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00
Slimefun4/CONTRIBUTING.md
2020-10-07 18:25:33 +02:00

11 KiB

Contributing to Slimefun

This document outlines various ways how you can help contribute to Slimefun and make this a bigger and better project.
All contributions must be inline with our Code of Conduct and License. Please also follow the templates for Issues and Pull Requests we provide.

🪲 1. Issues: Bug Reports

One of the foundations for good software is reliability. To facilitate this reliability, our community must work together to crush bugs that arise. This of course requires good information and knowledge about ongoing bugs and issues though.

You can help this project by reporting a bug on our Issues Tracker.
Please adhere to the provided template and provide as much information as possible. For more info on how to make good and helpful bug reports, check out our article on How to report bugs.

If you encounter an issue which has already been reported, please don't open a new one.
It would be awesome though if you could post a comment on the existing issue which explains how you were able to reproduce this yourself. The more context and information we get, the easier we can fix it.

🛠️ 2. Pull Requests: Bug Fixes

Bugs that have been reported need to be fixed of course.
Any open Issue on our Issues Tracker is waiting to be fixed.

This is an Open-Source project and we love Pull Requests. So if you have an idea on how to approach a known issue, feel free to make a Pull Request which fixes this bug. You can also comment on the existing Issue, proposing your idea or communicating that you wanna work on this.

🔧 3. Pull Requests: Additions/Changes

Slimefun is an Open-Source project and anyone is allowed to make changes or add content to this plugin!

Please visit our Discord Server and share your ideas first, we hate to reject changes because the community disagrees.
So communicating your intended changes before-hand will ensure that you don't put too much work into something that might get rejected.

We also have a suggestions section in our Discord Server too. Suggestions can be placed in the #suggestions channel and community members can vote on a suggestion. Suggestions which gotten enough votes will be moved to #approved. Therefore our #approved is a great place to start looking for ideas on what to add or change, since it will definitely be something a large number of people agree with.

Also consider making an addon for your additions when they get too large, too abstract or too "niche". You can check out our Developer Guide for a guide on how to create a Slimefun addon..

🌍 4. Pull Requests: Translations

Another great way to contribute to Slimefun is by working on translations for the project. Slimefun's translation is available on gitlocalize.com. Just find a language you are fluent in and translate away. But make sure to submit a "Review Request" when you are done. One of our Language Moderators will review the changes and submit a Pull Request to the project for you.

Language Moderation

Very active community translators will have the option to become a "Language Moderator". Language Moderators are responsible for proof-reading any new translations for their designated language and correct it when they see a mistake.

For more info on how or what to translate, check out our article on How to translate Slimefun.

📜 5. Pull Requests: Wiki contributions

Slimefun is a very large project and might be quite intimidating for new players. That's why good documentation is always nice and helpful. If you have played with Slimefun for a while and gotten yourself familiar with how things work, please consider contributing your experiences and knowledge to others via the wiki! It would help out a lot ❤️

You can find a tutorial on how to contribute to our wiki right here:
https://github.com/Slimefun/Slimefun4/wiki/Expanding-the-Wiki

6. Pull Requests: Code Quality

Slimefun uses sonarcloud.io to monitor Code Quality.

We always welcome quality improvements to the code and the "Code Smells" section on sonarcloud.io is a great place to start. But please keep in mind that some design patterns may not be changed too abruptly if an addon depends on them. To prevent any accidents from happening, please contact us on our Discord Server before-hand and state your intended changes.

Documentation

Code documentation is also a great way to improve the maintainability of the project.

  1. Every class and every public method should have a Javadocs section assigned to it.
  2. Classes should also include an @author tag to indicate who worked on that class.
  3. Methods and parameters should be annotated with @Nullable or @Nonnull to indicate whether or not null values are accepted.

Feel free to visit our Javadocs

Unit Tests

Unit Tests help us test the project to work as intended in an automated manner.
More or better Unit Tests are always good to have, so feel free to submit a Test and place it in our src/test/java directory

We are using Junit 5 - Jupiter and MockBukkit as our testing environment.
Every new Unit Test should have a @DisplayName annotation with a plain text description on what the Unit Test tests.

🧰 How to compile Slimefun4

Slimefun is written in Java and uses Maven for compilation.
To compile Slimefun yourself, follow these steps:

  1. Clone the project via git
    $ git clone https://github.com/Slimefun/Slimefun4/
  2. Compile the project using Maven
    $ mvn clean package
  3. Extract the compiled Slimefun-v4.X-UNOFFICIAL.jar from your /target/ directory.

If you are already using an IDE, make sure to import the project via git and set it up as a Maven project. Then you should be able build it via Maven using the goals clean package.

If you have any further questions, then please join our Discord Support Server and ask your questions in the #programming-help channel.
Note that we will not accept any bug reports from custom-compiled versions of Slimefun.

✒️ Code Style guidelines

The general gist when it comes to code style: Try to be consistent!.
Try to stay inline with the code that surrounds you, having an entire package or even a single file that's filled with plenty of different and inconsistent code styles is just hard to read or maintain. That's why we wanna make sure everyone follows these simple principles:

1. Imports

  • Don't use wildcard (*) imports!
  • Don't import unused classes!
  • Don't use static imports!
  • Always use imports, even in javadocs, don't write out the full location of a class.

2. Annotations

  • Methods and parameters should be annotated with @Nullable (javax.annotation.Nullable) or @Nonnull(javax.annotation.Nonnull)!
  • Methods that override a method must be annotated with @Override!
  • Interfaces with only one method should be annotated using @FunctionalInterface!
  • If you deprecate a method, add an @deprecated section to the javadocs explaining why you did it.

3. Documentation

  • Every class and every public method should have a Javadocs section assigned to it.
  • New packages should have a package-info.java file with documentation about the package.
  • Classes should have an @author tag.
  • If there are any other relevant classes related to yours, add them using the @see tag.

4. Unit Tests

  • Try to write Unit Tests where possible.
  • Unit Test classes and methods should have no access modifier, not public, protected nor private.
  • Each Test should have a plain text @DisplayName annotation!

5. General best-practices

  • Do not use Collection#forEach(x -> ...), use a proper for (...) loop!
  • Do not create new Random objects, use ThreadLocalRandom.current() instead!
  • Always declare Maps or Collections using their base type! (e.g. List<String> list = new ArrayList<>();
  • When doing String operations like String#toUppercase(), always specify Locale.ROOT as an argument!
  • When reading or writing files, always specify the encoding using StandardCharsets.UTF_8!
  • Do not declare multiple fields/variables on the same line! (e.g. Don't do this: int x, y, z;)
  • Use a Logger, try to avoid System.out.println(...) and Throwable#printStacktrace(), use Logger#log instead!
  • Do not use Exceptions to validate data, empty catch blocks are a very bad practice, use other means like a regular expression to validate data.
  • If a parameter is annotated with @Nonnull, you should enforce this behaviour by doing Validate.notNull(variable, "..."); and give a meaningful message about what went wrong
  • Any switch/case should always have a default: case at the end.
  • If you are working with a resource that must be closed, use a try/with-resource, this will automatically close the resource at the end (e.g. try (InputStream stream = ...) {)
  • Array designators should be placed behind the type, not the variable name (e.g. int[] myArray)
  • Enums must be compared using ==, not with .equals()!
  • If you need both the key and the value from a Map, use Map#entrySet()!

6. Naming conventions

  • Classes should be in PascalCase (e.g. MyAwesomeClass)
  • Enum constants should be in SCREAMING_SNAKE_CASE (e.g. MY_ENUM_CONSTANT)
  • Constants (static final fields) should be in SCREAMING_SNAKE_CASE (e.g. MY_CONSTANT_FIELD)
  • Variables, parameters and fields should be in camelCase (e.g. myVariableOrField)
  • All methods should be in camelCase (e.g. myMethod)
  • Packages must be all lowercase, consecutive words should generally be avoided. (e.g. io.github.thebusybiscuit.slimefun4.core.something)

7. Style preferences

  • Use Spaces, not Tabs!
  • We do not enforce any particular width or column limit, but try to prevent your lines from becoming too long.
  • Annotations for methods or fields should never go on the same line, place them on the line above.
  • Comments should never go on the same line as code! Always above or below.
  • Empty blocks like constructors should not occupy more than one line. (e.g. private MyClass() {})
  • Modifiers for classes and fields must follow this order:
    (public/protected/private) (abstract) (static) (final)
  • if/else statements should always include a bracket, please avoid one-line statements (e.g. Avoid doing: if (x == 0) return;)
  • Slimefun follows the 1TBS / OTBS Bracket-Style standard (One true brace style):
private void example(int x) {
    if (x < 0) {
        // x < 0
    } else if (x > 0) {
        // x > 0
    } else {
        // x == 0
    }
}