Show / Hide Table of Contents

Class MapLinkPayload

An SeString Payload representing an interactable map position link.

Inheritance
System.Object
Payload
MapLinkPayload
Inherited Members
Payload.Dirty
Payload.DataResolver
Payload.Encode(Boolean)
Payload.Decode(BinaryReader, DataManager)
Payload.START_BYTE
Payload.END_BYTE
Payload.GetInteger(BinaryReader)
Payload.MakeInteger(UInt32)
Payload.GetPackedIntegers(BinaryReader)
Payload.MakePackedInteger(UInt32, UInt32)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Dalamud.Game.Text.SeStringHandling.Payloads
Assembly: Dalamud.dll
Syntax
public class MapLinkPayload : Payload

Constructors

| Improve this Doc View Source

MapLinkPayload(DataManager, UInt32, UInt32, Int32, Int32)

Creates an interactable MapLinkPayload from a raw position.

Declaration
public MapLinkPayload(DataManager data, uint territoryTypeId, uint mapId, int rawX, int rawY)
Parameters
Type Name Description
DataManager data

DataManager instance needed to resolve game data.

System.UInt32 territoryTypeId

The id of the TerritoryType entry for this link.

System.UInt32 mapId

The id of the Map entry for this link.

System.Int32 rawX

The internal raw x-coordinate for this link.

System.Int32 rawY

The internal raw y-coordinate for this link.

| Improve this Doc View Source

MapLinkPayload(DataManager, UInt32, UInt32, Single, Single, Single)

Creates an interactable MapLinkPayload from a human-readable position.

Declaration
public MapLinkPayload(DataManager data, uint territoryTypeId, uint mapId, float niceXCoord, float niceYCoord, float fudgeFactor = 0.05F)
Parameters
Type Name Description
DataManager data

DataManager instance needed to resolve game data.

System.UInt32 territoryTypeId

The id of the TerritoryType entry for this link.

System.UInt32 mapId

The id of the Map entry for this link.

System.Single niceXCoord

The human-readable x-coordinate for this link.

System.Single niceYCoord

The human-readable y-coordinate for this link.

System.Single fudgeFactor

An optional offset to account for rounding and truncation errors; it is best to leave this untouched in most cases.

Properties

| Improve this Doc View Source

CoordinateString

The printable map coordinates for this link. This value tries to match the in-game printable text as closely as possible but is an approximation and may be slightly off for some positions.

Declaration
[JsonIgnore]
public string CoordinateString { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

DataString

The data string for this map link, for use by internal game functions that take a string variant and not a binary payload.

Declaration
public string DataString { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Map

The Map specified for this map link.

Declaration
[JsonIgnore]
public Map Map { get; }
Property Value
Type Description
Lumina.Excel.GeneratedSheets.Map
Remarks

Value is evaluated lazily and cached.

| Improve this Doc View Source

PlaceName

The place name for this map link. This corresponds to the lower zone name found in the actual in-game map UI. eg, "Limsa Lominsa Upper Decks"

Declaration
[JsonIgnore]
public string PlaceName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

PlaceNameRegion

The region name for this map link. This corresponds to the upper zone name found in the actual in-game map UI. eg, "La Noscea"

Declaration
[JsonIgnore]
public string PlaceNameRegion { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

RawX

The internal x-coordinate for this map position.

Declaration
public int RawX { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

RawY

The internal y-coordinate for this map position.

Declaration
public int RawY { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

TerritoryType

The TerritoryType specified for this map link.

Declaration
[JsonIgnore]
public TerritoryType TerritoryType { get; }
Property Value
Type Description
Lumina.Excel.GeneratedSheets.TerritoryType
Remarks

Value is evaluated lazily and cached.

| Improve this Doc View Source

Type

Declaration
public override PayloadType Type { get; }
Property Value
Type Description
PayloadType
Overrides
Payload.Type
| Improve this Doc View Source

XCoord

The readable x-coordinate position for this map link. This value is approximate and unrounded.

Declaration
public float XCoord { get; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

YCoord

The readable y-coordinate position for this map link. This value is approximate and unrounded.

Declaration
[JsonIgnore]
public float YCoord { get; }
Property Value
Type Description
System.Single

Methods

| Improve this Doc View Source

DecodeImpl(BinaryReader, Int64)

Declaration
protected override void DecodeImpl(BinaryReader reader, long endOfStream)
Parameters
Type Name Description
System.IO.BinaryReader reader
System.Int64 endOfStream
Overrides
Payload.DecodeImpl(BinaryReader, Int64)
| Improve this Doc View Source

EncodeImpl()

Declaration
protected override byte[] EncodeImpl()
Returns
Type Description
System.Byte[]
Overrides
Payload.EncodeImpl()
| Improve this Doc View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX