Files
Aaru/DiscImageChef.Decoders/Xbox/DMI.cs

203 lines
6.5 KiB
C#
Raw Normal View History

2015-12-03 08:02:12 +00:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : DMI.cs
// Version : 1.0
// Author(s) : Natalia Portillo
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
//
// --[ Description ] ----------------------------------------------------------
//
// Description
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// ****************************************************************************/
// //$Id$
using System;
using System.Text;
namespace DiscImageChef.Decoders.Xbox
{
public static class DMI
{
public static bool IsXbox(byte[] dmi)
{
2016-04-19 02:11:47 +01:00
if(dmi == null)
2015-12-03 08:02:12 +00:00
return false;
2016-04-19 02:11:47 +01:00
if(dmi.Length != 2052)
2015-12-03 08:02:12 +00:00
return false;
// TODO: Need to implement it
return false;
}
public static bool IsXbox360(byte[] dmi)
{
2016-04-19 02:11:47 +01:00
if(dmi == null)
2015-12-03 08:02:12 +00:00
return false;
2016-04-19 02:11:47 +01:00
if(dmi.Length != 2052)
2015-12-03 08:02:12 +00:00
return false;
uint signature = BitConverter.ToUInt32(dmi, 0x7EC);
// "XBOX" swapped as .NET is little endian
return signature == 0x584F4258;
}
public struct Xbox360DMI
{
/// <summary>
/// Bytes 0 to 1
/// Data length
/// </summary>
public ushort DataLength;
/// <summary>
/// Byte 2
/// Reserved
/// </summary>
public byte Reserved1;
/// <summary>
/// Byte 3
/// Reserved
/// </summary>
public byte Reserved2;
/// <summary>
/// Bytes 4 to 7
/// 0x02 in XGD2 and XGD3
/// </summary>
public UInt32 Version;
/// <summary>
/// Bytes 20 to 27
/// DMI timestamp
/// </summary>
public Int64 Timestamp;
/// <summary>
/// Bytes 36 to 51
/// Media ID in hex XXXXXXXXXXXX-XXXXXXXX
/// </summary>
public byte[] MediaID;
/// <summary>
/// Bytes 68 to 83
/// Catalogue number in XX-XXXX-XX-XXY-XXX, Y not always exists
/// </summary>
public string CatalogNumber;
}
public static Xbox360DMI? DecodeXbox360(byte[] response)
{
bool isX360 = IsXbox360(response);
2016-04-19 02:11:47 +01:00
if(!isX360)
2015-12-03 08:02:12 +00:00
return null;
Xbox360DMI dmi = new Xbox360DMI();
dmi.DataLength = (ushort)((response[0] << 8) + response[1]);
dmi.Reserved1 = response[2];
dmi.Reserved2 = response[3];
dmi.Version = BitConverter.ToUInt32(response, 4);
dmi.Timestamp = BitConverter.ToInt64(response, 20);
dmi.MediaID = new byte[16];
Array.Copy(response, 36, dmi.MediaID, 0, 16);
byte[] tmp = new byte[16];
Array.Copy(response, 68, tmp, 0, 16);
dmi.CatalogNumber = StringHandlers.CToString(tmp);
2016-04-19 02:11:47 +01:00
if(dmi.CatalogNumber == null || dmi.CatalogNumber.Length < 13)
2015-12-03 08:02:12 +00:00
return null;
return dmi;
}
public static string PrettifyXbox360(Xbox360DMI? dmi)
{
2016-04-19 02:11:47 +01:00
if(dmi == null)
2015-12-03 08:02:12 +00:00
return null;
Xbox360DMI decoded = dmi.Value;
StringBuilder sb = new StringBuilder();
sb.Append("Catalogue number: ");
2016-04-19 02:11:47 +01:00
for(int i = 0; i < 2; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
sb.Append("-");
2016-04-19 02:11:47 +01:00
for(int i = 2; i < 6; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
sb.Append("-");
2016-04-19 02:11:47 +01:00
for(int i = 6; i < 8; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
sb.Append("-");
if(decoded.CatalogNumber.Length == 13)
{
2016-04-19 02:11:47 +01:00
for(int i = 8; i < 10; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
sb.Append("-");
2016-04-19 02:11:47 +01:00
for(int i = 10; i < 13; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
}
else if(decoded.CatalogNumber.Length == 14)
{
2016-04-19 02:11:47 +01:00
for(int i = 8; i < 11; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
sb.Append("-");
2016-04-19 02:11:47 +01:00
for(int i = 11; i < 14; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
}
else
{
2016-04-19 02:11:47 +01:00
for(int i = 8; i < decoded.CatalogNumber.Length - 3; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
sb.Append("-");
2016-04-19 02:11:47 +01:00
for(int i = decoded.CatalogNumber.Length - 3; i < decoded.CatalogNumber.Length; i++)
2015-12-03 08:02:12 +00:00
sb.AppendFormat("{0}", decoded.CatalogNumber[i]);
}
sb.AppendLine();
sb.Append("Media ID: ");
for(int i = 0; i < 12; i++)
sb.AppendFormat("{0:X2}", decoded.MediaID[i]);
sb.Append("-");
for(int i = 12; i < 16; i++)
sb.AppendFormat("{0:X2}", decoded.MediaID[i]);
sb.AppendLine();
sb.AppendFormat("Timestamp: {0}", DateTime.FromFileTimeUtc(decoded.Timestamp)).AppendLine();
return sb.ToString();
}
public static string PrettifyXbox360(byte[] response)
{
return PrettifyXbox360(DecodeXbox360(response));
}
}
}