forked from Imulion/MHFZ_Overlay
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #246 from DorielRivalet/release
Release v0.33.0
- Loading branch information
Showing
19 changed files
with
2,151 additions
and
294 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// © 2023 The mhfz-overlay developers. | ||
// Use of this source code is governed by a MIT license that can be | ||
// found in the LICENSE file. | ||
|
||
namespace MHFZ_Overlay.Models; | ||
|
||
/// <summary> | ||
/// Commonly, the frames each monster 1 hp percent took for every quest objective. | ||
/// </summary> | ||
public sealed class QuestObjectiveSplit | ||
{ | ||
public int? ZeroPercentRemainingHPFrames { get; set; } | ||
|
||
public int? TwentyPercentRemainingHPFrames { get; set; } | ||
|
||
public int? FortyPercentRemainingHPFrames { get; set; } | ||
|
||
public int? Sum() => this.FortyPercentRemainingHPFrames + this.TwentyPercentRemainingHPFrames + this.ZeroPercentRemainingHPFrames; | ||
} |
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,24 @@ | ||
// © 2023 The mhfz-overlay developers. | ||
// Use of this source code is governed by a MIT license that can be | ||
// found in the LICENSE file. | ||
|
||
namespace MHFZ_Overlay.Models; | ||
|
||
using System.Collections.Generic; | ||
|
||
/// <summary> | ||
/// The pace of the quest. | ||
/// </summary> | ||
public sealed class QuestPace | ||
{ | ||
public long RunID { get; set; } | ||
|
||
public Dictionary<int, Dictionary<int, int>>? MonsterHPField { get; set; } | ||
|
||
public Dictionary<int, int>? MonsterHPFieldFlattened { get; set; } | ||
|
||
public QuestSplit? Splits { get; set; } | ||
|
||
public QuestObjectiveSplit? ObjectiveSplits { get; set; } | ||
|
||
} |
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,23 @@ | ||
// © 2023 The mhfz-overlay developers. | ||
// Use of this source code is governed by a MIT license that can be | ||
// found in the LICENSE file. | ||
|
||
namespace MHFZ_Overlay.Models; | ||
|
||
/// <summary> | ||
/// Commonly, the frames each monster 1 hp percent took for every 10% remaining hp. | ||
/// </summary> | ||
public sealed class QuestSplit | ||
{ | ||
public int? ZeroPercentRemainingHPFrames { get; set; } | ||
public int? TenPercentRemainingHPFrames { get; set; } | ||
public int? TwentyPercentRemainingHPFrames { get; set; } | ||
public int? ThirtyPercentRemainingHPFrames { get; set; } | ||
public int? FortyPercentRemainingHPFrames { get; set; } | ||
public int? FiftyPercentRemainingHPFrames { get; set; } | ||
public int? SixtyPercentRemainingHPFrames { get; set; } | ||
public int? SeventyPercentRemainingHPFrames { get; set; } | ||
public int? EightyPercentRemainingHPFrames { get; set; } | ||
public int? NinetyPercentRemainingHPFrames { get; set; } | ||
public int? Sum() => this.NinetyPercentRemainingHPFrames + this.EightyPercentRemainingHPFrames + this.SeventyPercentRemainingHPFrames + this.SixtyPercentRemainingHPFrames + this.FiftyPercentRemainingHPFrames + this.FortyPercentRemainingHPFrames + this.ThirtyPercentRemainingHPFrames + this.TwentyPercentRemainingHPFrames + this.TenPercentRemainingHPFrames + this.ZeroPercentRemainingHPFrames; | ||
} |
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.