using System;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace StardewModdingAPI
{
/// Encapsulates access and changes to dictionary content being read from a data file.
public interface IContentEventHelperForImage
{
/*********
** Accessors
*********/
/// The content's locale code, if the content is localised.
string Locale { get; }
/// The normalised asset name being read. The format may change between platforms; see to compare with a known path.
string AssetName { get; }
/// The content data being read.
Texture2D Data { get; }
/*********
** Public methods
*********/
/// Get whether the asset name being loaded matches a given name after normalisation.
/// The expected asset path, relative to the game's content folder and without the .xnb extension or locale suffix (like 'Data\ObjectInformation').
bool IsAssetName(string path);
/// Overwrite part of the image.
/// The image to patch into the content.
/// The part of the to copy (or null to take the whole texture). This must be within the bounds of the texture.
/// The part of the content to patch (or null to patch the whole texture). The original content within this area will be erased. This must be within the bounds of the existing spritesheet.
/// Indicates how an image should be patched.
/// One of the arguments is null.
/// The is outside the bounds of the spritesheet.
/// The content being read isn't an image.
void PatchImage(Texture2D source, Rectangle? sourceArea = null, Rectangle? targetArea = null, PatchMode patchMode = PatchMode.Replace);
/// Replace the entire content value with the given value. This is generally not recommended, since it may break compatibility with other mods or different versions of the game.
/// The new content value.
/// The is null.
void ReplaceWith(Texture2D value);
}
}