Skip to content

Latest commit

 

History

History
59 lines (36 loc) · 3.67 KB

CONTRIBUTING.md

File metadata and controls

59 lines (36 loc) · 3.67 KB

How to contribute to jMonkeyEngine

First and foremost, you have to familiarize yourself with Git & GitHub. Dig through help.github.com, try.github.io and the gh cheat sheet if these are new topics for you. If you'd like to contribute with something other than code, just tell us about it on the forum.

Communication

Communication always comes first. All code changes and other contributions should start with the forum. Make a thread to explain your change and show us the important bits of your code. If the code is too long to be posted within the forum’s code tags, please paste your code in a Gist or pastebin and link to the submission in your thread. You are required to register on our website in order to create threads. (We do support login via GitHub though).

New Contributors

When you're ready to submit your code, just make a pull request.

  • Do not commit your code until you have received proper feedback.
  • In your commit log message, please refer back to the originating forum thread (example) for a ‘full circle’ reference. Also please reference related issues by typing the issue hashtag.
  • When committing, always be sure to run an update before you commit. If there is a conflict between the latest revision and your patch after the update, then it is your responsibility to track down the update that caused the conflict and determine the issue (and fix it). In the case where the breaking commit has no thread linked (and one cannot be found in the forum), then the contributor should contact an administrator and wait for feedback before committing.
  • If your code is committed and it introduces new functionality, please edit the wiki accordingly. We can easily roll back to previous revisions, so just do your best; point us to it and we’ll see if it sticks!

p.s. We will try hold ourselves to a certain standard when it comes to GitHub etiquette. If at any point we fail to uphold this standard, let us know.

Core Contributors

Developers in the Contributors team can push directly to Main instead of submitting pull requests, however for new features it is often a good idea to do a pull request as a means to get a last code review.

Building the engine

  1. Install Gradle
  2. Navigate to the project directory and run 'gradle build' from command line to build the engine.

Best Practices

Git essentials

Testing

general testing tips? WIP

Code Quality

We generally abide by the standard Java Code Conventions. Besides that, just make an effort to write elegant code:

  1. Handles errors gracefully
  2. Only reinvents the wheel when there is a measurable benefit in doing so.
  3. Has consistent naming conventions.
  4. Has comments around ugly code explaining why it is ugly.
  5. Compiles (or runs if interpreted) without warnings.

Reporting bugs

  1. Start by searching the forum and GH issue tracker for duplicates.
  2. Create a new issue, explaining the problem in proper detail (templates pending).

Documentation

  • How to edit the wiki - WIP
  • How to edit JavaDocs - WIP