Mojang.Api.Skins 1.0.2

dotnet add package Mojang.Api.Skins --version 1.0.2
NuGet\Install-Package Mojang.Api.Skins -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Mojang.Api.Skins" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mojang.Api.Skins --version 1.0.2
#r "nuget: Mojang.Api.Skins, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Mojang.Api.Skins as a Cake Addin
#addin nuget:?package=Mojang.Api.Skins&version=1.0.2

// Install Mojang.Api.Skins as a Cake Tool
#tool nuget:?package=Mojang.Api.Skins&version=1.0.2

Mojang.Api.Skins

<img width="160" height="auto" src="https://github.com/CwistSilver/Mojang.Api.Skins/raw/main/icon.png">

Mojang.Api.Skins NuGet

Overview

Mojang.Api.Skins is a .NET library designed to interact with the Mojang API and provides an efficient way to retrieve Minecraft skin and cape textures. It supports retrieving textures by player name or UUID and includes functionality for handling local and remote texture data.

Features

  • Fetch Minecraft Skins and Capes: Retrieve textures for Minecraft player skins and capes using names or UUIDs.
  • Legacy Skin Conversion: Automatically converts legacy Minecraft skins (64x32 format) to the modern format (64x64). For more detailed information on skins, visit the Minecraft Wiki.
  • Automatic cape identification: Automatic name identification of official Minecraft Capes.
  • Caching: Includes a default caching mechanism and supports custom cache implementations.
  • Smart Texture Storage: The default cache identifies and stores unique textures only once, even when multiple players share the same texture, saving significant storage space.
  • Texture Processing: Extract and combine specific parts of skins and capes, enabling detailed texture manipulation.
  • 'Dependency Injection Support': Easily integrate 'Mojang.Api.Skins' with .NET Dependency Injection systems, allowing for streamlined management and usage within your projects.

Godot Showcase

Experience 'Mojang.Api.Skins' in action with the Godot Showcase. This demonstration project, named 'Mojang.Api.Skins.Demo.Godot', illustrates the practical application of our .NET library in a Godot environment. It demonstrates real-time rendering of Minecraft skins and capes on 3D models, offering an interactive experience for users. This showcase highlights the versatility and user-friendly nature of our library. For a hands-on experience and to learn more, visit the 'Mojang.Api.Skins.Demo.Godot' repository.

Caching

Mojang.Api.Skins includes a versatile caching system, enhancing performance by reducing API calls and storing data locally.

Using the Default Cache

The library utilizes 'LiteDBCache' by default, for efficient caching:

Efficient Texture Management
  • Recognizes duplicate textures across different players and stores a single instance, reducing storage requirements.
  • Suitable for scenarios where multiple players might share the same skin or cape texture.

Custom Cache Implementation

Implement the 'ICache' interface to create and use a custom cache:

public class YourCustomCache : ICache
{
    // Custom cache implementation
}

var client = new SkinsClient();
client.Options.Cache = new YourCustomCache();

Direct API Interaction (No Caching)

To interact directly with the Mojang API without caching:

var client = new SkinsClient();
client.Options.Cache = null; // Disables caching

Legacy Skin Conversion

Mojang.Api.Skins automatically detects and converts legacy Minecraft skins (64x32 format) to the modern format (64x64). This feature ensures compatibility with older skins like Notch's original skin.

Enabling/Disabling Legacy Conversion

Legacy skin conversion is enabled by default but can be toggled off if needed:

var client = new SkinsClient();
client.Options.ConvertLegacySkin = false; // Disables legacy skin conversion

Usage

'Mojang.Api.Skins' enables you to retrieve player data in multiple ways. The returned 'PlayerData' instance varies based on the method used. Here are some usage examples:

Fetch Player Data by UUID

To obtain player data using a UUID:

Guid playerUUID = Guid.NewGuid(); // Replace this with a real UUID
var client = new SkinsClient();
var playerData = await client.GetAsync(playerUUID);

Fetch Player Data by Name

You can also retrieve player data based on the player's name:

var client = new SkinsClient();
var playerData = await client.GetAsync("Notch");

Get Local Player Skin Without Cape

To load a local player skin without a cape:

var client = new SkinsClient();
var skinBytes = File.ReadAllBytes(@"c:\players\notch.png");
var playerData = client.GetLocal(skinBytes);
// playerData will have skin data, but no name or UUID.

Get Local Player Skin With Cape

And to load a local player skin with a cape:

var client = new SkinsClient();
var skinBytes = File.ReadAllBytes(@"c:\players\notch.png");
var capeBytes = File.ReadAllBytes(@"c:\players\notch-cape.png");
var playerData = client.GetLocal(skinBytes, capeBytes);
// playerData will have both skin and cape data, but no name or UUID.

Integration with Dependency Injection

'Mojang.Api.Skins' is designed for use with the .NET Dependency Injection (DI) system. To register the library in your DI container, use 'AddMinecraftApiSkins':

ServiceCollection serviceCollection = new ServiceCollection();
serviceCollection.AddMinecraftApiSkins();

var serviceProvider = serviceCollection.BuildServiceProvider();
var client = serviceProvider.GetRequiredService<ISkinsClient>();

Texture Handling

'Mojang.Api.Skins' offers advanced texture processing capabilities, allowing developers to extract specific parts of skins and capes and combine them.

Extracting Specific Texture Parts

You can selectively extract individual texture parts from the skin or cape. For example, to get the front image of the head and its accessory:

var client = new SkinsClient();
var playerData = await client.GetAsync("Notch");

var headImage = playerData.Skin.GetSkinPart(SkinPart.Head_FrontSide);
var headAccessoryImage = playerData.Skin.GetSkinPart(SkinPart.HeadAccessory_FrontSide);

Combining Textures

Extracted textures can then be combined to create a complete image:

var fullHeadImage = headImage.Combine(headAccessoryImage);

Handling Cape Textures

Similarly, you can extract and process parts of capes:

var capeFrontImage = playerData.Cape.GetCapePart(CapePart.FrontSide);
var elytraFrontImage = playerData.Cape.GetCapePart(CapePart.Elytra_FrontSide);

These features enable flexible and precise handling of Minecraft textures, particularly useful when you need to manipulate or display specific texture elements.

Contributing

Contributions to Mojang.Api.Skins are welcome. Follow these steps to contribute:

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/YourFeature)
  3. Commit your Changes (git commit -m 'Add YourFeature')
  4. Push to the Branch (git push origin feature/YourFeature)
  5. Open a Pull Request

Licence

'Mojang.Api.Skins' is licenced under the MIT licence.

Dependencies

'Mojang.Api.Skins' utilizes the following packages, which need to be included as dependencies in your project:

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 102 3/4/2024
1.0.1 123 1/16/2024