mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
80 lines
2.0 KiB
C#
80 lines
2.0 KiB
C#
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
|
|
|
|
/// <summary>
|
|
/// Wrap adding files to the depots
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
/// <param name="onlyNeeded"></param>
|
|
private static void InitArchive(List<string> inputs, bool onlyNeeded)
|
|
{
|
|
_logger.User("This feature is not yet implemented: archive");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Wrap building all files from a set of DATs
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
private static void InitBuild(List<string> inputs)
|
|
{
|
|
_logger.User("This feature is not yet implemented: build");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Wrap finding all files that are in both the database and a new Dat
|
|
/// </summary>
|
|
/// <param name="newdat"></param>
|
|
private static void InitDiffDat(string newdat)
|
|
{
|
|
_logger.User("This feature is not yet implemented: diffdat");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Wrap creating a Dat from a directory
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
private static void InitDir2Dat(List<string> inputs)
|
|
{
|
|
_logger.User("This feature is not yet implemented: dir2dat");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Wrap creating a fixdat for each Dat
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
private static void InitFixdat(List<string> inputs)
|
|
{
|
|
_logger.User("This feature is not yet implemented: fixdat");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Wrap looking up if hashes exist in the database
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
private static void InitLookup(List<string> inputs)
|
|
{
|
|
_logger.User("This feature is not yet implemented: lookup");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Wrap creating a havefile and a missfile for each Dat
|
|
/// </summary>
|
|
/// <param name="inputs"></param>
|
|
private static void InitMiss(List<string> inputs)
|
|
{
|
|
_logger.User("This feature is not yet implemented: miss");
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|