Difference between revisions of "Game files"
Thinkofdeath (talk | contribs) m (→Assets) |
Thinkofdeath (talk | contribs) m (→Assets) |
||
Line 72: | Line 72: | ||
where index is currently '[https://s3.amazonaws.com/Minecraft.Download/indexes/legacy.json legacy]' but this is expected to change in the future. The client currently downloads all resources in the index and stores them in | where index is currently '[https://s3.amazonaws.com/Minecraft.Download/indexes/legacy.json legacy]' but this is expected to change in the future. The client currently downloads all resources in the index and stores them in | ||
.minecraft/assets/objects/<first 2 hex letters of hash>/<whole hash> | .minecraft/assets/objects/<first 2 hex letters of hash>/<whole hash> | ||
− | + | and a copy is stored in | |
+ | .minecraft/asserts/virtual/legacy/ | ||
+ | in the old format | ||
[[Category:Minecraft Modern]] | [[Category:Minecraft Modern]] |
Revision as of 16:01, 4 December 2013
Game
All available version of the game itself are listed on
http://s3.amazonaws.com/Minecraft.Download/versions/versions.json
The jar file for a specific version is located at
http://s3.amazonaws.com/Minecraft.Download/versions/<version>/<version>.jar
Some information on how to properly run said jar is available at
http://s3.amazonaws.com/Minecraft.Download/versions/<version>/<version>.json
Libraries
The libraries which can be used for all minecraft versions and are downloaded by the launcher are located at
https://libraries.minecraft.net/
The json file downloaded above is used in order to determine which libraries to download. Inside the file is a key, libraries
which contains information about each library required.
Example:
{
"name": "org.lwjgl.lwjgl:lwjgl-platform:2.9.1-nightly-20130708-debug3",
"natives": {
"linux": "natives-linux",
"windows": "natives-windows",
"osx": "natives-osx"
},
"extract": {
"exclude": [
"META-INF/"
]
},
"rules": [
{
"action": "allow",
"os": {
"name": "osx",
"version": "^10\\.5\\.\\d$"
}
}
]
}
The name
key is used to determine the url from which to download the library from. The format of this string is
<package>:<name>:<version>
The corresponding URL would look like this:
<package>/<name>/<version>/<name>-<version>.jar
where path
is the result of replacing all the periods in package
with slashes.
The natives
key provides a string for each specific platform to be inserted between the .jar and the <version> of the filename, resulting in a filename with the format:
<name>-<version>-<native-string>.jar
This is applied to any file with the natives
key.
The extract
key provides rules for the extraction of the file.
The rules
key is used to determine which platforms to download the file to. When the action
is allow
, the file will be downloaded to the platform stated in os
. When the action
is disallow
, the file will not be downloaded to the platform stated in os
. If there is no os
key, the rule is default for non-specified platforms.
In the example above, on an OS X platform, the full download path would be
https://libraries.minecraft.net/org/lwjgl/lwjgl/lwjgl-platform/2.9.1-nightly-20130708-debug3/lwjgl-platform-2.9.1-nightly-20130708-debug3-natives-osx.jar
The file would be extracted but the META-INF
file would not be. Additionally, the file would only be downloaded if the computer was running OS X 10.5.
Assets
The game itself downloads further resources from
http://resources.download.minecraft.net/
A list of all available resources is available as an XML file at the address above. These files do not have to be downloaded in order for the game to function properly.
An index is also available at
https://s3.amazonaws.com/Minecraft.Download/indexes/<index>.json
where index is currently 'legacy' but this is expected to change in the future. The client currently downloads all resources in the index and stores them in
.minecraft/assets/objects/<first 2 hex letters of hash>/<whole hash>
and a copy is stored in
.minecraft/asserts/virtual/legacy/
in the old format