mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 16:36:27 +00:00
96 lines
3.1 KiB
C#
96 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using OMI.Formats.Languages;
|
|
using OMI.Formats.Pck;
|
|
using OMI.Workers;
|
|
using PckStudio.Core.Skin;
|
|
|
|
namespace PckStudio.Core.Extensions
|
|
{
|
|
public static class PckFileExtensions
|
|
{
|
|
public static PckAsset AddTexture(this PckFile pck, string assetPath, Image texture)
|
|
{
|
|
PckAsset asset = new PckAsset(assetPath, PckAssetType.TextureFile);
|
|
asset.SetTexture(texture);
|
|
pck.AddAsset(asset);
|
|
return asset;
|
|
}
|
|
|
|
public static PckAsset AddSkin(this PckFile pck, string assetPathPrefix, Skin.Skin skin, LOCFile localisation)
|
|
{
|
|
string skinId = skin.Identifier.ToString("d08");
|
|
|
|
PckAsset asset = new PckAsset(Path.Combine(assetPathPrefix, $"dlcskin{skinId}.png"), PckAssetType.SkinFile);
|
|
|
|
asset.SetTexture(skin.Texture);
|
|
|
|
asset.AddProperty("DISPLAYNAME", skin.MetaData.Name);
|
|
|
|
bool canLocalize = localisation is not null;
|
|
if (canLocalize)
|
|
{
|
|
string skinLocKey = $"IDS_dlcskin{skinId}_DISPLAYNAME";
|
|
asset.AddProperty("DISPLAYNAMEID", skinLocKey);
|
|
localisation.SetLocEntry(skinLocKey, skin.MetaData.Name);
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(skin.MetaData.Theme))
|
|
{
|
|
asset.AddProperty("THEMENAME", skin.MetaData.Theme);
|
|
|
|
if (canLocalize)
|
|
{
|
|
string skinThemeLocKey = $"IDS_dlcskin{skinId}_THEMENAME";
|
|
asset.AddProperty("THEMENAMEID", skinThemeLocKey);
|
|
localisation.SetLocEntry(skinThemeLocKey, skin.MetaData.Theme);
|
|
}
|
|
}
|
|
|
|
if (skin.HasCape)
|
|
{
|
|
asset.AddProperty("CAPEPATH", $"dlccape{skinId}.png");
|
|
}
|
|
|
|
asset.AddProperty("ANIM", skin.Anim);
|
|
asset.AddProperty("GAME_FLAGS", "0x18");
|
|
asset.AddProperty("FREE", "1");
|
|
|
|
foreach (SkinBOX box in skin.Model.AdditionalBoxes)
|
|
{
|
|
asset.AddProperty(box.ToProperty());
|
|
}
|
|
foreach (SkinPartOffset offset in skin.Model.PartOffsets)
|
|
{
|
|
asset.AddProperty(offset.ToProperty());
|
|
}
|
|
|
|
pck.AddAsset(asset);
|
|
return asset;
|
|
}
|
|
|
|
public static PckAsset CreateNewAssetIf(this PckFile pck, bool condition, string filename, PckAssetType filetype, IDataFormatWriter writer)
|
|
{
|
|
if (condition)
|
|
{
|
|
return pck.CreateNewAsset(filename, filetype, writer);
|
|
}
|
|
return default;
|
|
}
|
|
|
|
public static PckAsset CreateNewAsset(this PckFile pck, string filename, PckAssetType filetype, IDataFormatWriter writer)
|
|
{
|
|
PckAsset asset = pck.CreateNewAsset(filename, filetype);
|
|
asset.SetData(writer);
|
|
return asset;
|
|
}
|
|
|
|
}
|
|
}
|