Previously we have had a very much archaic and unstandardized approach to how we accept contributions to the LibreQuake project. This has had quite a few problems as a result, some examples being:
- A "dirty" git log, making tracking regressions or general progress difficult
- Lack of quality control (Does this change actually work? Does the project still build? Are the contribution detais easy to read and understand?)
- Overly or underly verbose commit messages
These problems became more exacerbated as more eyes and contributors have appeared. As a result, this contribution guide has been drafted to hopefully address all of these problems and make for a cleaner and easier to work on project.
We know people hate legalese, but this is important. This applies to everything which is submitted.
You must be careful when basing on existing graphics or sounds. Most Quake projects are lax on reusing intellectual property. There are many mods which contain modified Quake models, for example. However, due to the nature of this project, we do not have the same liberty to rip as we please.
The general rules go as follows:
You must have permission for everything you submit. If you make your own resources, do not base them on resources from Quake or any other restricted work. If you take work from other places, please make sure that the work is freely-licensed or that you obtain permission to include it in the LibreQuake project. They may not place additional restrictions compared to the normal LibreQuake license.
Do not try to emulate Quake resources exactly. Where possible, put effort to make new versions look visibly different from Quake. This is a tough call because our compatibility with Quake mods limits how far we can deviate, but it is feasible.
Be especially careful of “free textures” (or “free sounds” or “free graphics”) sites. Although these would appear at first to be okay to use, many are free for “non-commercial use only.” One of the things we want to be able to do is put this in GNU/Linux distributions (which can be sold or developed commercially).
Not all levels for LibreQuake must be vanilla-compatible Winquake/vanilla-compatible levels will have their own episode
It is sensible to also heed the following guidelines:
-
Make sure that skill levels are implemented, and that all multiplayer start points, both cooperative and deathmatch, are present.
-
Try to make levels appropriately difficult for their position within the progression of the game. Also bear in mind that not all players may be as skilled a player as you.
-
While unrestricted by limits, do not make excessively complicated scenes. It is desirable that LibreQuake levels should be playable on low-powered hardware, such as phones and old computers.
Please do not generalize branches. Use branches for specific features or concepts.
If you are a Collaborator (meaning, if you are added to the LibreQuake repository and have administrative control) it is required that your branch naming scheme is as follows:
{username}/{change-subject}
Shorthand is allowed for username. For instance, if your GitHub username is lavenderdotpet, using lav would be appropriate. However, these must be easily connected to your GitHub username to track who owns a branch.
The change-subject field should be a very brief issue or feature or similar concept.
An example branch name that fits this standard would be cypress/quakec-stringopts for a branch owned by CypressImplex that makes QuakeC related string optimizations.
External contributors (non-Collaborators) are not expected to follow this name convention, but should still refrain from using generalized branch names.
In general, this guide is a must-read when writing good commit messages to begin with: https://cbea.ms/git-commit/
Additionally, as this repository contains multiple diverse components, we ask that you prefix your commit message pertaining to the component you are modifying. Here are acceptable prefixes to use:
BUILD: Modification of our build scripts and/or tools.CI: Modification of the GitHub Actions Pipeline(s).GFX: Modification of game (not map) textures.GH: Modifiation of any repository-related elements (screenshots, readme, etc.)MAPS: Modification of.mapfiles.MODELS: Modification of models, both.blendand exported.mdlQC: Modification of QuakeC source code.AUDIO: Modification of game sound effects or music.WADS: Modification of map textures, to be packed into a.wadduring the build process.
Here is a good example for a commit subject line:
GFX: Fix colormap having incorrect fullbright count
When more detail about a change is necessary, please take the opportunity to write a more detailed description in the commit body.
If your commit addresses an open issue, be sure to include the issue in the commit message body.
If you are committing on behalf of someone, please use the Co-Author feature if they other author has a GitHub profile. If they do not, please credit them in the commit body at the very bottom of the message as to keep the flow of the commit organized. You may use any source platform of their choice to refer to them as long as it complies with GitHub's Terms of Service.
Please keep Pull Requests on-topic. The Pull Request title should follow the same naming convention as your commit messages for clarity.
It is required that you provide both a detailed desctription of your changes as well as visualization of your changes being functional in-game. The Pull Request template will guide you through this.
Be mindful that Pull Requests are scrutinized and reviewed carefully to mitigate any potential problems a Collaborator may discover. It is important for us to verify and test your changes independently as well. We will leave reviews and mark appropriately when we request changes and are happy to turn the request into a discussion.
Please do not have discussions about a Pull Request off-platform. We should preserve the history of the conversation in an easily accessible matter so that justifications can be tracked in the event of an overturning discussion.
When having discussions, please be mindful to use proper grammar and full sentences in the English language. We should be accessible to people who are English-Second-Language, and a big part of that is refraining from using acronyms or shorthand/slang.
If you are a Collaborator looking to merge a Pull Request, or are just curious about merge prerequisites, we will merge a Pull Request given the following are true:
- It has received 2 or more approvals.
- The Pull Request template has been followed.
- Commits follow our convention standards.
- If the user is a collaborator, the Branch name convention standards have been followed.
- Our CI passes without failure.
- 24 hours or more have passed since the PR has been marked ready for review.
If the change fixes a critical issue (such as a crash, broken animation, etc.) an exception should be made for the 48 hour rule, however all other prerequisites must be met!