From cf953adcaca45b575bc6009275d3f71c65bb1468 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 22 Jul 2013 13:07:39 -0400 Subject: [PATCH] Added IsInMixedFolder for game --- MediaBrowser.Controller/Entities/Game.cs | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/MediaBrowser.Controller/Entities/Game.cs b/MediaBrowser.Controller/Entities/Game.cs index b62a71bd6d..63a04e5207 100644 --- a/MediaBrowser.Controller/Entities/Game.cs +++ b/MediaBrowser.Controller/Entities/Game.cs @@ -23,5 +23,43 @@ namespace MediaBrowser.Controller.Entities /// /// The game system. public string GameSystem { get; set; } + + /// + /// Returns true if the game is combined with other games in the same folder + /// + public bool IsInMixedFolder { get; set; } + + /// + /// + /// + 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; + } + } + + /// + /// + /// + protected override bool UseParentPathToCreateResolveArgs + { + get + { + return !IsInMixedFolder; + } + } } }