mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
cf4b3c91cb
- found situation where JsonNode parser won't report warning: comma after last element in arrays or objects. Fixed this in our config files but parser change is disabled for now due to huge number of warnings from mods.
54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
{
|
|
// Complete filesystem available after initialization
|
|
// All paths and names here are case-insensitive
|
|
// If same filename is found twice entry from latest source will be used
|
|
// NOTES:
|
|
// - this file must be available as "config/filesystem.json"
|
|
// - some locations are hardcoded (user config directory, cache/tmp directory, saved games location)
|
|
"filesystem":
|
|
{
|
|
"DATA/" :
|
|
[
|
|
{"type" : "lod", "path" : "Data/H3ab_bmp.lod"},
|
|
{"type" : "lod", "path" : "Data/H3bitmap.lod"},
|
|
{"type" : "dir", "path" : "Data"}
|
|
],
|
|
"SPRITES/":
|
|
[
|
|
{"type" : "lod", "path" : "Data/H3ab_spr.lod"},
|
|
{"type" : "lod", "path" : "Data/H3sprite.lod"},
|
|
{"type" : "dir", "path" : "Sprites"}
|
|
],
|
|
"SOUNDS/":
|
|
[
|
|
{"type" : "snd", "path" : "Data/H3ab_ahd.snd"},
|
|
{"type" : "snd", "path" : "Data/Heroes3-cd2.snd"},
|
|
{"type" : "snd", "path" : "Data/Heroes3.snd"},
|
|
//WoG have overriden sounds with .82m extension in Data
|
|
{"type" : "dir", "path" : "Data", "depth": 0}
|
|
],
|
|
"MUSIC/":
|
|
[
|
|
{"type" : "dir", "path" : "Mp3"}
|
|
],
|
|
"VIDEO/":
|
|
[
|
|
{"type" : "vid", "path" : "Data/H3ab_ahd.vid"},
|
|
{"type" : "vid", "path" : "Data/Heroes3.vid"},
|
|
{"type" : "vid", "path" : "Data/video.vid"}
|
|
],
|
|
"CONFIG/":
|
|
[
|
|
{"type" : "dir", "path" : "config"}
|
|
],
|
|
"MAPS/":
|
|
[
|
|
{"type" : "dir", "path" : "Maps"}
|
|
],
|
|
"MODS/":
|
|
[
|
|
{"type" : "dir", "path" : "Mods", "depth": 1}
|
|
]
|
|
}
|
|
}
|