forked from emoose/MBINCompiler
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #614 from HolterPhylo/UpdateFor15243936
Update for 15243936
- Loading branch information
Showing
80 changed files
with
2,117 additions
and
2,044 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace libMBIN.NMS.GameComponents | ||
{ | ||
[NMS(GUID = 0x1194D977F83DE301, NameHash = 0xC7159317)] | ||
public class GcDiscoveryTrimGroup : NMSTemplate | ||
{ | ||
// size: 0x4 | ||
public enum DiscoveryTrimGroupEnum : uint { | ||
System, | ||
Planet, | ||
Interesting, | ||
Boring, | ||
} | ||
[NMS(Index = 0)] | ||
/* 0x0 */ public DiscoveryTrimGroupEnum DiscoveryTrimGroup; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
libMBIN/Source/NMS/GameComponents/GcDiscoveryTrimScoringCategory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace libMBIN.NMS.GameComponents | ||
{ | ||
[NMS(GUID = 0x7350418BFD74CCC9, NameHash = 0x4629DE2E)] | ||
public class GcDiscoveryTrimScoringCategory : NMSTemplate | ||
{ | ||
// size: 0x8 | ||
public enum DiscoveryTrimScoringCategoryEnum : uint { | ||
IsNamedSystem, | ||
RecentlyVisitedSystem, | ||
RecentDiscoveryInSystem, | ||
NumDiscoveredPlanetsInSystem, | ||
IsNamedPlanet, | ||
NumBasesOnPlanet, | ||
NumWondersOnPlanet, | ||
NumNamedDiscoveries, | ||
} | ||
[NMS(Index = 0)] | ||
/* 0x0 */ public DiscoveryTrimScoringCategoryEnum DiscoveryTrimScoringCategory; | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
libMBIN/Source/NMS/GameComponents/GcDiscoveryTrimScoringRules.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using libMBIN.NMS.Toolkit; | ||
|
||
namespace libMBIN.NMS.GameComponents | ||
{ | ||
[NMS(GUID = 0x728200688AF730A5, NameHash = 0xF52E26A7)] | ||
public class GcDiscoveryTrimScoringRules : NMSTemplate | ||
{ | ||
[NMS(Index = 1)] | ||
/* 0x0 */ public float MaxScoreValue; | ||
[NMS(Index = 0)] | ||
/* 0x4 */ public float MinScoreValue; | ||
[NMS(Index = 2)] | ||
/* 0x8 */ public TkCurveType Curve; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
libMBIN/Source/NMS/GameComponents/GcDiscoveryTrimSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using libMBIN.NMS.GameComponents; | ||
|
||
namespace libMBIN.NMS.GameComponents | ||
{ | ||
[NMS(GUID = 0x43FB38148FD8E0B8, NameHash = 0x5CDDC22A)] | ||
public class GcDiscoveryTrimSettings : NMSTemplate | ||
{ | ||
[NMS(Index = 1)] | ||
/* 0x000 */ public GcBaseSearchFilter BaseSearchFilter; | ||
[NMS(Index = 2, Size = 0x8, EnumType = typeof(GcDiscoveryTrimScoringCategory.DiscoveryTrimScoringCategoryEnum))] | ||
/* 0x098 */ public GcDiscoveryTrimScoringRules[] DiscoveryTrimScoringRules; | ||
[NMS(Index = 3, Size = 0x8, EnumType = typeof(GcDiscoveryTrimScoringCategory.DiscoveryTrimScoringCategoryEnum))] | ||
/* 0x0F8 */ public float[] DiscoveryTrimScoringWeights; | ||
[NMS(Index = 0, Size = 0x4, EnumType = typeof(GcDiscoveryTrimGroup.DiscoveryTrimGroupEnum))] | ||
/* 0x118 */ public int[] DiscoveryTrimGroupMaxCounts; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.