blob: 0b637baff181246b41a7e71a9259d8b2b7f5186f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#nullable disable
using Microsoft.Xna.Framework;
using xTile;
namespace StardewModdingAPI
{
/// <summary>Encapsulates access and changes to map content being read from a data file.</summary>
public interface IAssetDataForMap : IAssetData<Map>
{
/*********
** Public methods
*********/
/// <summary>Copy layers, tiles, and tilesheets from another map onto the asset.</summary>
/// <param name="source">The map from which to copy.</param>
/// <param name="sourceArea">The tile area within the source map to copy, or <c>null</c> for the entire source map size. This must be within the bounds of the <paramref name="source"/> map.</param>
/// <param name="targetArea">The tile area within the target map to overwrite, or <c>null</c> to patch the whole map. The original content within this area will be erased. This must be within the bounds of the existing map.</param>
/// <param name="patchMode">Indicates how the map should be patched.</param>
void PatchMap(Map source, Rectangle? sourceArea = null, Rectangle? targetArea = null, PatchMapMode patchMode = PatchMapMode.Overlay);
/// <summary>Extend the map if needed to fit the given size. Note that this is an expensive operation and resizes the map in-place.</summary>
/// <param name="map">The map to resize.</param>
/// <param name="minWidth">The minimum map width in tiles.</param>
/// <param name="minHeight">The minimum map height in tiles.</param>
/// <returns>Whether the map was resized.</returns>
bool ExtendMap(Map map, int minWidth, int minHeight);
}
}
|