2016-09-02 13:59:25 -07:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace SabreTools
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class RombaSharp
|
|
|
|
|
|
{
|
|
|
|
|
|
#region Init Methods
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap adding files to the depots
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="inputs"></param>
|
|
|
|
|
|
/// <param name="onlyNeeded"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitArchive(List<string> inputs, bool onlyNeeded)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: archive");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap building all files from a set of DATs
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="inputs"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitBuild(List<string> inputs)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: build");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap finding all files that are in both the database and a new Dat
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="newdat"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitDiffDat(string newdat)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: diffdat");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap creating a Dat from a directory
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="inputs"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitDir2Dat(List<string> inputs)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: dir2dat");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap creating a fixdat for each Dat
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="inputs"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitFixdat(List<string> inputs)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: fixdat");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap looking up if hashes exist in the database
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="inputs"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitLookup(List<string> inputs)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: lookup");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-09-02 14:08:34 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Wrap creating a havefile and a missfile for each Dat
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="inputs"></param>
|
2016-09-02 13:59:25 -07:00
|
|
|
|
private static void InitMiss(List<string> inputs)
|
|
|
|
|
|
{
|
|
|
|
|
|
_logger.User("This feature is not yet implemented: miss");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|