Added IsInMixedFolder for game
This commit is contained in:
parent
89fa63d713
commit
cf953adcac
|
@ -23,5 +23,43 @@ namespace MediaBrowser.Controller.Entities
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The game system.</value>
|
/// <value>The game system.</value>
|
||||||
public string GameSystem { get; set; }
|
public string GameSystem { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns true if the game is combined with other games in the same folder
|
||||||
|
/// </summary>
|
||||||
|
public bool IsInMixedFolder { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public override string MetaLocation
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
var directoryName = System.IO.Path.GetDirectoryName(Path);
|
||||||
|
|
||||||
|
if (IsInMixedFolder)
|
||||||
|
{
|
||||||
|
// It's a file
|
||||||
|
var baseMetaPath = System.IO.Path.Combine(directoryName, "metadata");
|
||||||
|
var fileName = System.IO.Path.GetFileNameWithoutExtension(Path);
|
||||||
|
|
||||||
|
return fileName != null ? System.IO.Path.Combine(baseMetaPath, fileName) : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return directoryName;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
protected override bool UseParentPathToCreateResolveArgs
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return !IsInMixedFolder;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user