Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into net9-rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Nov 16, 2024
2 parents e187749 + bf9a9a0 commit eabd4eb
Show file tree
Hide file tree
Showing 8 changed files with 127 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dalamud.CorePlugin/Dalamud.CorePlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Lumina" Version="5.2.1" />
<PackageReference Include="Lumina.Excel" Version="7.1.0" />
<PackageReference Include="Lumina" Version="5.3.0" />
<PackageReference Include="Lumina.Excel" Version="7.1.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.333">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions Dalamud/Dalamud.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
<PackageReference Include="goaaats.Reloaded.Hooks" Version="4.2.0-goat.4" />
<PackageReference Include="goaaats.Reloaded.Assembler" Version="1.0.14-goat.2" />
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" />
<PackageReference Include="Lumina" Version="5.2.1" />
<PackageReference Include="Lumina.Excel" Version="7.1.0" />
<PackageReference Include="Lumina" Version="5.3.0" />
<PackageReference Include="Lumina.Excel" Version="7.1.1" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="9.0.0-preview.1.24081.5" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.46-beta">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion Dalamud/Game/ClientState/JobGauge/JobGauges.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private JobGauges()
}

/// <inheritdoc/>
public unsafe IntPtr Address => (nint)(CSJobGaugeManager.Instance()->CurrentGauge);
public unsafe IntPtr Address => (nint)(&CSJobGaugeManager.Instance()->EmptyGauge);

/// <inheritdoc/>
public T Get<T>() where T : JobGaugeBase
Expand Down
42 changes: 42 additions & 0 deletions Dalamud/Game/Config/SystemConfigOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1436,4 +1436,46 @@ public enum SystemConfigOption
/// </summary>
[GameConfigOption("PadButton_R3", ConfigType.String)]
PadButton_R3,

/// <summary>
/// System option with the internal name ActiveInstanceGuid.
/// This option is a String.
/// </summary>
[GameConfigOption("ActiveInstanceGuid", ConfigType.String)]
ActiveInstanceGuid,

/// <summary>
/// System option with the internal name ActiveProductGuid.
/// This option is a String.
/// </summary>
[GameConfigOption("ActiveProductGuid", ConfigType.String)]
ActiveProductGuid,

/// <summary>
/// System option with the internal name MsqProgress.
/// This option is a UInt.
/// </summary>
[GameConfigOption("MsqProgress", ConfigType.UInt)]
MsqProgress,

/// <summary>
/// System option with the internal name PromptConfigUpdate.
/// This option is a UInt.
/// </summary>
[GameConfigOption("PromptConfigUpdate", ConfigType.UInt)]
PromptConfigUpdate,

/// <summary>
/// System option with the internal name TitleScreenType.
/// This option is a UInt.
/// </summary>
[GameConfigOption("TitleScreenType", ConfigType.UInt)]
TitleScreenType,

/// <summary>
/// System option with the internal name FirstConfigBackup.
/// This option is a UInt.
/// </summary>
[GameConfigOption("FirstConfigBackup", ConfigType.UInt)]
FirstConfigBackup,
}
22 changes: 22 additions & 0 deletions Dalamud/Game/Config/UiConfigOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ public enum UiConfigOption
/// System option with the internal name LockonDefaultZoom_179.
/// This option is a Float.
/// </summary>
[Obsolete("This option won't work. Use LockonDefaultZoom.")]
[GameConfigOption("LockonDefaultZoom_179", ConfigType.Float)]
LockonDefaultZoom_179,

Expand Down Expand Up @@ -3578,4 +3579,25 @@ public enum UiConfigOption
/// </summary>
[GameConfigOption("PadMode", ConfigType.UInt)]
PadMode,

/// <summary>
/// System option with the internal name EnableMoveTiltCharacter.
/// This option is a UInt.
/// </summary>
[GameConfigOption("EnableMoveTiltCharacter", ConfigType.UInt)]
EnableMoveTiltCharacter,

/// <summary>
/// System option with the internal name EnableMoveTiltMountGround.
/// This option is a UInt.
/// </summary>
[GameConfigOption("EnableMoveTiltMountGround", ConfigType.UInt)]
EnableMoveTiltMountGround,

/// <summary>
/// System option with the internal name EnableMoveTiltMountFly.
/// This option is a UInt.
/// </summary>
[GameConfigOption("EnableMoveTiltMountFly", ConfigType.UInt)]
EnableMoveTiltMountFly,
}
50 changes: 50 additions & 0 deletions Dalamud/Game/Text/SeIconChar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -766,4 +766,54 @@ public enum SeIconChar
/// The Japanese Eorzea time icon unicode character.
/// </summary>
EorzeaTimeJa = 0xE0DB,

/// <summary>
/// The boxed, outlined number 0 icon unicode character.
/// </summary>
BoxedOutlinedNumber0 = 0xE0E0,

/// <summary>
/// The boxed, outlined number 1 icon unicode character.
/// </summary>
BoxedOutlinedNumber1 = 0xE0E1,

/// <summary>
/// The boxed, outlined number 2 icon unicode character.
/// </summary>
BoxedOutlinedNumber2 = 0xE0E2,

/// <summary>
/// The boxed, outlined number 3 icon unicode character.
/// </summary>
BoxedOutlinedNumber3 = 0xE0E3,

/// <summary>
/// The boxed, outlined number 4 icon unicode character.
/// </summary>
BoxedOutlinedNumber4 = 0xE0E4,

/// <summary>
/// The boxed, outlined number 5 icon unicode character.
/// </summary>
BoxedOutlinedNumber5 = 0xE0E5,

/// <summary>
/// The boxed, outlined number 6 icon unicode character.
/// </summary>
BoxedOutlinedNumber6 = 0xE0E6,

/// <summary>
/// The boxed, outlined number 7 icon unicode character.
/// </summary>
BoxedOutlinedNumber7 = 0xE0E7,

/// <summary>
/// The boxed, outlined number 8 icon unicode character.
/// </summary>
BoxedOutlinedNumber8 = 0xE0E8,

/// <summary>
/// The boxed, outlined number 9 icon unicode character.
/// </summary>
BoxedOutlinedNumber9 = 0xE0E9,
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using Dalamud.Game.Text;
using ImGuiNET;

using System.Linq;

namespace Dalamud.Interface.Internal.Windows.Data.Widgets;

/// <summary>
Expand Down Expand Up @@ -28,8 +30,11 @@ public void Draw()
{
var specialChars = string.Empty;

for (var i = 0xE020; i <= 0xE0DB; i++)
specialChars += $"0x{i:X} - {(SeIconChar)i} - {(char)i}\n";
var min = (char)Enum.GetValues<SeIconChar>().Min();
var max = (char)Enum.GetValues<SeIconChar>().Max();

for (var i = min; i <= max; i++)
specialChars += $"0x{(int)i:X} - {(SeIconChar)i} - {i}\n";

ImGui.TextUnformatted(specialChars);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/FFXIVClientStructs
Submodule FFXIVClientStructs updated 31 files
+10 −10 CExporter/Program.cs
+5 −5 FFXIVClientStructs/FFXIV/Client/Game/Control/Control.cs
+10 −10 FFXIVClientStructs/FFXIV/Client/Game/InstanceContent/InstanceContentDeepDungeon.cs
+2 −2 FFXIVClientStructs/FFXIV/Client/Game/InstanceContent/InstanceContentDirector.cs
+21 −21 FFXIVClientStructs/FFXIV/Client/Game/InstanceContent/InstanceContentOceanFishing.cs
+12 −12 FFXIVClientStructs/FFXIV/Client/Game/InventoryManager.cs
+7 −8 FFXIVClientStructs/FFXIV/Client/Game/QuestManager.cs
+10 −10 FFXIVClientStructs/FFXIV/Client/Game/SatisfactionSupplyManager.cs
+10 −10 FFXIVClientStructs/FFXIV/Client/Game/UI/Map.cs
+2 −2 FFXIVClientStructs/FFXIV/Client/UI/AddonAdventureNoteBook.cs
+3 −3 FFXIVClientStructs/FFXIV/Client/UI/AddonCharacterRepute.cs
+1 −1 FFXIVClientStructs/FFXIV/Client/UI/AddonJobHudDRK.cs
+46 −45 FFXIVClientStructs/FFXIV/Client/UI/AddonPartyList.cs
+1 −0 FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentItemDetail.cs
+3 −3 FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentLobby.cs
+15 −13 FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentLookingForGroup.cs
+1 −1 FFXIVClientStructs/FFXIV/Client/UI/Agent/AgentMap.cs
+2 −2 FFXIVClientStructs/FFXIV/Client/UI/Info/InfoProxyCommonList.cs
+1 −1 FFXIVClientStructs/FFXIV/Client/UI/Info/InfoProxyInterface.cs
+815 −806 FFXIVClientStructs/FFXIV/Client/UI/Misc/ConfigOption.cs
+18 −14 FFXIVClientStructs/FFXIV/Client/UI/Misc/UserFileManager.cs
+1 −1 FFXIVClientStructs/FFXIV/Client/UI/RaptureAtkModule.cs
+1 −1 FFXIVClientStructs/FFXIV/Client/UI/UI3DModule.cs
+2 −2 FFXIVClientStructs/FFXIV/Client/UI/UIModule.cs
+1 −1 FFXIVClientStructs/FFXIV/Component/GUI/AtkComponentJournalCanvas.cs
+10 −10 FFXIVClientStructs/FFXIV/Component/GUI/AtkComponentList.cs
+3 −3 FFXIVClientStructs/FFXIV/Component/GUI/AtkComponentTreeList.cs
+1 −1 FFXIVClientStructs/FFXIV/Component/GUI/AtkEvent.cs
+1 −1 FFXIVClientStructs/FFXIV/Component/GUI/AtkUnitBase.cs
+4 −4 ida/data.yml
+12 −0 ida/ffxiv_structimporter.py

0 comments on commit eabd4eb

Please sign in to comment.