2013-12-26 16:53:23 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-11-12 15:36:08 +00:00
|
|
|
|
using System;
|
2013-10-01 23:33:50 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-09-19 20:36:45 +00:00
|
|
|
|
|
2013-06-22 18:15:31 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2013-12-28 16:58:13 +00:00
|
|
|
|
public class Game : BaseItem, IHasSoundtracks, IHasTrailers, IHasThemeMedia, IHasTags, IHasScreenshots, IHasPreferredMetadataLanguage
|
2013-06-22 18:15:31 +00:00
|
|
|
|
{
|
2013-11-12 15:36:08 +00:00
|
|
|
|
public List<Guid> SoundtrackIds { get; set; }
|
2013-12-01 19:31:58 +00:00
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
public List<Guid> ThemeSongIds { get; set; }
|
|
|
|
|
public List<Guid> ThemeVideoIds { get; set; }
|
|
|
|
|
|
2013-12-27 00:23:58 +00:00
|
|
|
|
public string PreferredMetadataLanguage { get; set; }
|
|
|
|
|
|
2013-12-28 16:58:13 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the preferred metadata country code.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The preferred metadata country code.</value>
|
|
|
|
|
public string PreferredMetadataCountryCode { get; set; }
|
|
|
|
|
|
2013-09-19 20:36:45 +00:00
|
|
|
|
public Game()
|
|
|
|
|
{
|
|
|
|
|
MultiPartGameFiles = new List<string>();
|
2013-11-12 15:36:08 +00:00
|
|
|
|
SoundtrackIds = new List<Guid>();
|
2013-12-02 16:46:25 +00:00
|
|
|
|
RemoteTrailers = new List<MediaUrl>();
|
|
|
|
|
LocalTrailerIds = new List<Guid>();
|
2013-12-05 16:50:21 +00:00
|
|
|
|
ThemeSongIds = new List<Guid>();
|
|
|
|
|
ThemeVideoIds = new List<Guid>();
|
|
|
|
|
Tags = new List<string>();
|
|
|
|
|
ScreenshotImagePaths = new List<string>();
|
2013-09-19 20:36:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
public List<Guid> LocalTrailerIds { get; set; }
|
2013-12-05 16:50:21 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the screenshot image paths.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The screenshot image paths.</value>
|
|
|
|
|
public List<string> ScreenshotImagePaths { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the tags.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tags.</value>
|
|
|
|
|
public List<string> Tags { get; set; }
|
|
|
|
|
|
2013-12-02 16:46:25 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the remote trailers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The remote trailers.</value>
|
|
|
|
|
public List<MediaUrl> RemoteTrailers { get; set; }
|
2013-12-05 16:50:21 +00:00
|
|
|
|
|
2013-06-22 18:15:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the type of the media.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the media.</value>
|
|
|
|
|
public override string MediaType
|
|
|
|
|
{
|
|
|
|
|
get { return Model.Entities.MediaType.Game; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the players supported.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The players supported.</value>
|
|
|
|
|
public int? PlayersSupported { get; set; }
|
|
|
|
|
|
2013-09-22 22:42:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance is installed on client.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is installed on client; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool IsInstalledOnClient { get; set; }
|
|
|
|
|
|
2013-06-22 18:15:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the game system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The game system.</value>
|
|
|
|
|
public string GameSystem { get; set; }
|
2013-07-22 17:07:39 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public override string MetaLocation
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2013-08-15 19:09:52 +00:00
|
|
|
|
return System.IO.Path.GetDirectoryName(Path);
|
2013-07-22 17:07:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-19 20:36:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether this instance is multi part.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is multi part; otherwise, <c>false</c>.</value>
|
|
|
|
|
public bool IsMultiPart { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Holds the paths to the game files in the event this is a multipart game
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<string> MultiPartGameFiles { get; set; }
|
|
|
|
|
|
2013-07-22 17:07:39 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override bool UseParentPathToCreateResolveArgs
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !IsInMixedFolder;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-10-01 23:33:50 +00:00
|
|
|
|
|
|
|
|
|
public override string GetUserDataKey()
|
|
|
|
|
{
|
2013-10-05 00:44:43 +00:00
|
|
|
|
var id = this.GetProviderId(MetadataProviders.Gamesdb);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
|
|
{
|
|
|
|
|
return "Game-Gamesdb-" + id;
|
|
|
|
|
}
|
|
|
|
|
return base.GetUserDataKey();
|
2013-10-01 23:33:50 +00:00
|
|
|
|
}
|
2013-12-01 19:31:58 +00:00
|
|
|
|
|
|
|
|
|
public override IEnumerable<string> GetDeletePaths()
|
|
|
|
|
{
|
|
|
|
|
if (!IsInMixedFolder)
|
|
|
|
|
{
|
|
|
|
|
return new[] { System.IO.Path.GetDirectoryName(Path) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.GetDeletePaths();
|
|
|
|
|
}
|
2013-12-26 16:53:23 +00:00
|
|
|
|
|
|
|
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
return config.BlockUnratedGames;
|
|
|
|
|
}
|
2013-06-22 18:15:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|