Difference between revisions of "Mods repository"

From VCMI Project Wiki
Jump to: navigation, search
(Requirements)
Line 52: Line 52:
 
== Requirements ==
 
== Requirements ==
 
Right now main requirements for a mod to be accepted into VCMI repository are:
 
Right now main requirements for a mod to be accepted into VCMI repository are:
 +
* Mod identified must be lower case, only of English characters and dashes.
 
* Mod must be complete. For work-in-progress mods it is better to use other way of distribution.
 
* Mod must be complete. For work-in-progress mods it is better to use other way of distribution.
 
* Mod must met some basic quality requirements. Having high-quality content is always preferable.
 
* Mod must met some basic quality requirements. Having high-quality content is always preferable.

Revision as of 08:44, 21 February 2018

This article will introduce you to new VCMI mod repository system and explain how new mods can be added there.

How mod repository work

Where files are hosted

Mods list hosted under main VCMI organization: vcmi-mods-repository.

Each mod hosted in it's own repository under separate organization vcmi-mods. This way if engine become more popular in future we can create separate teams for each mod and accept as many people as needed.

Why Git / GitHub?

It's solve a lot of problems:

  • Engine developers get control over all mods and can easily update them without adding extra burden for modders / mod maintainers.
  • With tools such as GitHub Desktop it's easy for non-programmers to contribute.
  • Forward and backward compatibility. Stable releases of game use compatible version of mods while users of daily builds will be able to test mods supporting bleeding edge features.
  • Tracking of changes for repository and mods. It's not big deal now, but once we have scripting it's will be important to keep control over what code included in mods.
  • GitHub also create ZIP archives for us so mods will be stored uncompressed and version can be identified by commit hash.

On backward compatibility

Our mod list in vcmi-mods-repository had "develop" as primary branch. Daily builds of VCMI use mod list file from this branch.

Once VCMI get stable release there will be branching into "1.00", "1.01", etc. Launcher of released version will request mod list for particular version.

Same way we can also create special stable branch for every mod under "vcmi-mods" organization umbrella once new stable version is released. So this way it's will be easier to maintain two versions of same mod: for stable and latest version.

Redirect server

Launcher will request specific version of JSON mod list from our server:

https://mods.vcmi.download/repository/develop.json
https://mods.vcmi.download/repository/1.00.json

Our server redirect requests to github:

mods.vcmi.download/repository/develop.json -> raw.githubusercontent.com/vcmi/mods-repository/develop/repository.json
repository.vcmi.download/1.00.json -> raw.githubusercontent.com/vcmi/mods-repository/1.00/repository.json

Same happen when launcher will request mods:

mods.vcmi.download/archive/adventure-ai-trace/821190ef5396702bf763c764ed532781b1fc1ce6.zip -> github.com/vcmi-mods/adventure-ai-trace/archive/821190ef5396702bf763c764ed532781b1fc1ce6.zip

This way in case of any problems with GitHub we can easily change the way mods are delivered.

Getting mod into repository

Requirements

Right now main requirements for a mod to be accepted into VCMI repository are:

  • Mod identified must be lower case, only of English characters and dashes.
  • Mod must be complete. For work-in-progress mods it is better to use other way of distribution.
  • Mod must met some basic quality requirements. Having high-quality content is always preferable.
  • Mod must not contain any errors detectable by validation (console message you may see during loading)
  • Music files must be in Ogg/Vorbis format (*.ogg extension)

Getting into vcmi-mods organization

To get mod into repository you need to contact person with write access to it.

Submitting mods to repository

Once mod ready for general public maintainer to make PR to vcmi-mods-repository.

Rules of repository

  • Force pushing to branches is forbidden when it's touch commits that already submitted into mod list!