2014-02-06 22:10:13 -05:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 11:53:23 -05:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-11-12 10:36:08 -05:00
|
|
|
|
using System;
|
2013-10-01 19:33:50 -04:00
|
|
|
|
using System.Collections.Generic;
|
2017-02-18 03:32:17 -05:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-10-25 15:02:04 -04:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-09-19 16:36:45 -04:00
|
|
|
|
|
2013-06-22 14:15:31 -04:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
|
{
|
2016-10-09 03:18:43 -04:00
|
|
|
|
public class Game : BaseItem, IHasTrailers, IHasScreenshots, ISupportsPlaceHolders, IHasLookupInfo<GameInfo>
|
2013-06-22 14:15:31 -04:00
|
|
|
|
{
|
2013-09-19 16:36:45 -04:00
|
|
|
|
public Game()
|
|
|
|
|
|
{
|
2017-08-09 15:56:38 -04:00
|
|
|
|
MultiPartGameFiles = EmptyStringArray;
|
2017-08-10 14:01:31 -04:00
|
|
|
|
RemoteTrailers = EmptyMediaUrlArray;
|
|
|
|
|
|
LocalTrailerIds = EmptyGuidArray;
|
|
|
|
|
|
RemoteTrailerIds = EmptyGuidArray;
|
2013-09-19 16:36:45 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
2017-08-10 14:01:31 -04:00
|
|
|
|
public Guid[] LocalTrailerIds { get; set; }
|
|
|
|
|
|
public Guid[] RemoteTrailerIds { get; set; }
|
2013-12-05 11:50:21 -05:00
|
|
|
|
|
2015-02-06 00:39:07 -05:00
|
|
|
|
public override bool CanDownload()
|
|
|
|
|
|
{
|
|
|
|
|
|
var locationType = LocationType;
|
|
|
|
|
|
return locationType != LocationType.Remote &&
|
|
|
|
|
|
locationType != LocationType.Virtual;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-07-24 12:46:17 -04:00
|
|
|
|
[IgnoreDataMember]
|
2016-08-13 01:49:00 -04:00
|
|
|
|
public override bool EnableRefreshOnDateModifiedChange
|
2016-07-24 12:46:17 -04:00
|
|
|
|
{
|
|
|
|
|
|
get { return true; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-10-09 03:18:43 -04:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
|
public override bool SupportsThemeMedia
|
|
|
|
|
|
{
|
|
|
|
|
|
get { return true; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-12-02 11:46:25 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the remote trailers.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The remote trailers.</value>
|
2017-08-10 14:01:31 -04:00
|
|
|
|
public MediaUrl[] RemoteTrailers { get; set; }
|
2013-12-05 11:50:21 -05:00
|
|
|
|
|
2013-06-22 14:15:31 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the type of the media.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The type of the media.</value>
|
2016-07-24 12:46:17 -04:00
|
|
|
|
[IgnoreDataMember]
|
2013-06-22 14:15:31 -04:00
|
|
|
|
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 18:42:21 -04:00
|
|
|
|
/// <summary>
|
2014-03-03 00:11:03 -05:00
|
|
|
|
/// Gets a value indicating whether this instance is place holder.
|
2013-09-22 18:42:21 -04:00
|
|
|
|
/// </summary>
|
2014-03-03 00:11:03 -05:00
|
|
|
|
/// <value><c>true</c> if this instance is place holder; otherwise, <c>false</c>.</value>
|
|
|
|
|
|
public bool IsPlaceHolder { get; set; }
|
2013-09-22 18:42:21 -04:00
|
|
|
|
|
2013-06-22 14:15:31 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the game system.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The game system.</value>
|
|
|
|
|
|
public string GameSystem { get; set; }
|
2013-07-22 13:07:39 -04:00
|
|
|
|
|
2013-09-19 16:36:45 -04: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>
|
2017-08-09 15:56:38 -04:00
|
|
|
|
public string[] MultiPartGameFiles { get; set; }
|
2013-09-19 16:36:45 -04:00
|
|
|
|
|
2016-04-30 19:05:21 -04:00
|
|
|
|
public override List<string> GetUserDataKeys()
|
2013-10-01 19:33:50 -04:00
|
|
|
|
{
|
2016-04-30 19:05:21 -04:00
|
|
|
|
var list = base.GetUserDataKeys();
|
2013-10-04 20:44:43 -04:00
|
|
|
|
var id = this.GetProviderId(MetadataProviders.Gamesdb);
|
|
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(id))
|
|
|
|
|
|
{
|
2016-04-30 19:05:21 -04:00
|
|
|
|
list.Insert(0, "Game-Gamesdb-" + id);
|
2013-10-04 20:44:43 -04:00
|
|
|
|
}
|
2016-04-30 19:05:21 -04:00
|
|
|
|
return list;
|
2013-10-01 19:33:50 -04:00
|
|
|
|
}
|
2013-12-01 14:31:58 -05:00
|
|
|
|
|
2017-02-18 03:32:17 -05:00
|
|
|
|
public override IEnumerable<FileSystemMetadata> GetDeletePaths()
|
2013-12-01 14:31:58 -05:00
|
|
|
|
{
|
2017-07-31 01:16:22 -04:00
|
|
|
|
if (!IsInMixedFolder)
|
2013-12-01 14:31:58 -05:00
|
|
|
|
{
|
2017-02-18 03:32:17 -05:00
|
|
|
|
return new[] {
|
|
|
|
|
|
new FileSystemMetadata
|
|
|
|
|
|
{
|
2017-05-04 14:14:45 -04:00
|
|
|
|
FullName = FileSystem.GetDirectoryName(Path),
|
2017-02-18 03:32:17 -05:00
|
|
|
|
IsDirectory = true
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2013-12-01 14:31:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return base.GetDeletePaths();
|
|
|
|
|
|
}
|
2013-12-26 11:53:23 -05:00
|
|
|
|
|
2015-11-06 10:02:22 -05:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
2013-12-26 11:53:23 -05:00
|
|
|
|
{
|
2015-11-06 10:02:22 -05:00
|
|
|
|
return UnratedItem.Game;
|
2013-12-26 11:53:23 -05:00
|
|
|
|
}
|
2014-02-06 22:10:13 -05:00
|
|
|
|
|
|
|
|
|
|
public GameInfo GetLookupInfo()
|
|
|
|
|
|
{
|
|
|
|
|
|
var id = GetItemLookupInfo<GameInfo>();
|
|
|
|
|
|
|
|
|
|
|
|
id.GameSystem = GameSystem;
|
|
|
|
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
|
}
|
2013-06-22 14:15:31 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|