2012-08-01 15:02:54 +03:00
|
|
|
{
|
|
|
|
// 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
|
2013-07-28 17:49:50 +03:00
|
|
|
// NOTES:
|
|
|
|
// - this file must be available as "config/filesystem.json"
|
|
|
|
// - some locations are hardcoded (user config directory, cache/tmp directory, saved games location)
|
2012-08-01 15:02:54 +03:00
|
|
|
"filesystem":
|
|
|
|
{
|
|
|
|
"DATA/" :
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "lod", "path" : "Data/H3ab_bmp.lod"},
|
|
|
|
{"type" : "lod", "path" : "Data/H3bitmap.lod"},
|
|
|
|
{"type" : "dir", "path" : "Data"}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
|
|
|
"SPRITES/":
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "lod", "path" : "Data/H3ab_spr.lod"},
|
|
|
|
{"type" : "lod", "path" : "Data/H3sprite.lod"},
|
|
|
|
{"type" : "dir", "path" : "Sprites"}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
|
|
|
"SOUNDS/":
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "snd", "path" : "Data/H3ab_ahd.snd"},
|
|
|
|
{"type" : "snd", "path" : "Data/Heroes3-cd2.snd"},
|
|
|
|
{"type" : "snd", "path" : "Data/Heroes3.snd"},
|
2012-08-01 15:02:54 +03:00
|
|
|
//WoG have overriden sounds with .82m extension in Data
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "dir", "path" : "Data", "depth": 0}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
|
|
|
"MUSIC/":
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "dir", "path" : "Mp3"}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
|
|
|
"VIDEO/":
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "vid", "path" : "Data/H3ab_ahd.vid"},
|
|
|
|
{"type" : "vid", "path" : "Data/Heroes3.vid"},
|
|
|
|
{"type" : "vid", "path" : "Data/video.vid"}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
|
|
|
"CONFIG/":
|
|
|
|
[
|
2013-08-20 22:32:21 +03:00
|
|
|
{"type" : "dir", "path" : "config"}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
|
|
|
"MAPS/":
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "dir", "path" : "Maps"}
|
2012-08-01 15:02:54 +03:00
|
|
|
],
|
2012-12-12 14:13:57 +03:00
|
|
|
"MODS/":
|
|
|
|
[
|
2013-07-28 17:49:50 +03:00
|
|
|
{"type" : "dir", "path" : "Mods", "depth": 1}
|
2012-08-01 15:02:54 +03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|