Skip to content

Commit

Permalink
Update the labels of flag checkboxes to hex values (#869)
Browse files Browse the repository at this point in the history
* label weekeventreg by hex mask instead of index

* update other flagArrays

* consistency

* display hex and dec

* capitals

* oops

* oops 2
  • Loading branch information
balloondude2 authored Nov 22, 2024
1 parent ce4bf1f commit 8c8b9ad
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
30 changes: 27 additions & 3 deletions mm/2s2h/BenGui/UIWidgets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include <unordered_map>
#include <libultraship/libultra/types.h>
#include "2s2h/ShipUtils.h"
#include <spdlog/fmt/fmt.h>

namespace UIWidgets {
// Automatically adds newlines to break up text longer than a specified number of characters
Expand Down Expand Up @@ -534,7 +535,7 @@ void DrawFlagArray32(const std::string& name, uint32_t& flags) {
ImGui::PushID(flagIndex);
uint32_t bitMask = 1 << flagIndex;
bool flag = (flags & bitMask) != 0;
std::string label = std::to_string(flagIndex);
std::string label = fmt::format("0x{:02X} ({})", flagIndex, flagIndex);
if (UIWidgets::Checkbox(label.c_str(), &flag,
{ .tooltip = label.c_str(), .labelPosition = LabelPosition::None })) {
if (flag) {
Expand All @@ -557,7 +558,7 @@ void DrawFlagArray16(const std::string& name, uint16_t& flags) {
ImGui::PushID(flagIndex);
uint16_t bitMask = 1 << flagIndex;
bool flag = (flags & bitMask) != 0;
std::string label = std::to_string(flagIndex);
std::string label = fmt::format("0x{:02X} ({})", flagIndex, flagIndex);
if (UIWidgets::Checkbox(label.c_str(), &flag,
{ .tooltip = label.c_str(), .labelPosition = LabelPosition::None })) {
if (flag) {
Expand All @@ -580,7 +581,30 @@ void DrawFlagArray8(const std::string& name, uint8_t& flags) {
ImGui::PushID(flagIndex);
uint8_t bitMask = 1 << flagIndex;
bool flag = (flags & bitMask) != 0;
std::string label = std::to_string(flagIndex);
std::string label = fmt::format("0x{:02X} ({})", flagIndex, flagIndex);
if (UIWidgets::Checkbox(label.c_str(), &flag,
{ .tooltip = label.c_str(), .labelPosition = LabelPosition::None })) {
if (flag) {
flags |= bitMask;
} else {
flags &= ~bitMask;
}
}
ImGui::PopID();
}
ImGui::PopID();
}

void DrawFlagArray8Mask(const std::string& name, uint8_t& flags) {
ImGui::PushID(name.c_str());
for (int8_t flagIndex = 0; flagIndex < 8; flagIndex++) {
if ((flagIndex % 8) != 0) {
ImGui::SameLine();
}
ImGui::PushID(flagIndex);
uint8_t bitMask = 1 << flagIndex;
bool flag = (flags & bitMask) != 0;
std::string label = fmt::format("0x{:02X} ({})", bitMask, flagIndex);
if (UIWidgets::Checkbox(label.c_str(), &flag,
{ .tooltip = label.c_str(), .labelPosition = LabelPosition::None })) {
if (flag) {
Expand Down
1 change: 1 addition & 0 deletions mm/2s2h/BenGui/UIWidgets.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ namespace UIWidgets {
void DrawFlagArray32(const std::string& name, uint32_t& flags);
void DrawFlagArray16(const std::string& name, uint16_t& flags);
void DrawFlagArray8(const std::string& name, uint8_t& flags);
void DrawFlagArray8Mask(const std::string& name, uint8_t& flags);
}

#endif /* UIWidgets_hpp */
2 changes: 1 addition & 1 deletion mm/2s2h/DeveloperTools/SaveEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1722,7 +1722,7 @@ void DrawFlagsTab() {
ImGui::PushID(i);
ImGui::Text("%02d", i);
ImGui::SameLine();
UIWidgets::DrawFlagArray8("##", gSaveContext.save.saveInfo.weekEventReg[i]);
UIWidgets::DrawFlagArray8Mask("##", gSaveContext.save.saveInfo.weekEventReg[i]);
ImGui::PopID();
}
break;
Expand Down

0 comments on commit 8c8b9ad

Please sign in to comment.