49#include <imgui_stdlib.h>
55using namespace std::literals;
79void ImGuiSettings::setStyle()
const
81 switch (selectedStyle) {
82 case 0: ImGui::StyleColorsDark();
break;
83 case 1: ImGui::StyleColorsLight();
break;
84 case 2: ImGui::StyleColorsClassic();
break;
93[[nodiscard]]
static ImGuiKeyChord getCurrentlyPressedKeyChord()
95 static constexpr auto mods = std::array{
96 ImGuiKey_LeftCtrl, ImGuiKey_LeftShift, ImGuiKey_LeftAlt, ImGuiKey_LeftSuper,
97 ImGuiKey_RightCtrl, ImGuiKey_RightShift, ImGuiKey_RightAlt, ImGuiKey_RightSuper,
98 ImGuiKey_ReservedForModCtrl, ImGuiKey_ReservedForModShift, ImGuiKey_ReservedForModAlt,
99 ImGuiKey_ReservedForModSuper, ImGuiKey_MouseLeft, ImGuiKey_MouseRight, ImGuiKey_MouseMiddle,
100 ImGuiKey_MouseX1, ImGuiKey_MouseX2, ImGuiKey_MouseWheelX, ImGuiKey_MouseWheelY,
102 for (
int key = ImGuiKey_NamedKey_BEGIN; key < ImGuiKey_NamedKey_END; ++key) {
105 if (ImGui::IsKeyPressed(
static_cast<ImGuiKey
>(key))) {
106 const ImGuiIO& io = ImGui::GetIO();
108 | (io.KeyCtrl ? ImGuiMod_Ctrl : 0)
109 | (io.KeyShift ? ImGuiMod_Shift : 0)
110 | (io.KeyAlt ? ImGuiMod_Alt : 0)
111 | (io.KeySuper ? ImGuiMod_Super : 0);
114 return ImGuiKey_None;
119 bool openConfirmPopup =
false;
124 auto& renderSettings = reactor.getDisplay().getRenderSettings();
125 const auto& settingsManager = reactor.getGlobalCommandController().getSettingsManager();
126 const auto& hotKey = reactor.getHotKey();
129 im::TreeNode(
"Look and feel", ImGuiTreeNodeFlags_DefaultOpen, [&]{
130 auto& scaler = renderSettings.getScaleAlgorithmSetting();
139 static constexpr std::array algoEnables = {
141 AlgoEnable{SIMPLE,
true,
true },
142 AlgoEnable{SCALE,
false,
false},
143 AlgoEnable{HQ,
false,
false},
144 AlgoEnable{RGBTRIPLET,
true,
true },
145 AlgoEnable{TV,
true,
false},
147 auto it =
ranges::find(algoEnables, scaler.getEnum(), &AlgoEnable::algo);
148 assert(it != algoEnables.end());
150 SliderInt(
"Scanline (%)", renderSettings.getScanlineSetting());
153 SliderInt(
"Blur (%)", renderSettings.getBlurSetting());
157 SliderInt(
"Scale factor", renderSettings.getScaleFactorSetting());
158 Checkbox(hotKey,
"Deinterlace", renderSettings.getDeinterlaceSetting());
159 Checkbox(hotKey,
"Deflicker", renderSettings.getDeflickerSetting());
161 im::TreeNode(
"Colors", ImGuiTreeNodeFlags_DefaultOpen, [&]{
162 SliderFloat(
"Noise (%)", renderSettings.getNoiseSetting());
163 SliderFloat(
"Brightness", renderSettings.getBrightnessSetting());
164 SliderFloat(
"Contrast", renderSettings.getContrastSetting());
165 SliderFloat(
"Gamma", renderSettings.getGammaSetting());
166 SliderInt(
"Glow (%)", renderSettings.getGlowSetting());
167 if (
auto* monitor =
dynamic_cast<Setting*
>(settingsManager.findSetting(
"monitor_type"))) {
168 ComboBox(
"Monitor type", *monitor, [](std::string s) {
174 im::TreeNode(
"Shape", ImGuiTreeNodeFlags_DefaultOpen, [&]{
175 SliderFloat(
"Horizontal stretch", renderSettings.getHorizontalStretchSetting(),
"%.0f");
176 ComboBox(
"Display deformation", renderSettings.getDisplayDeformSetting());
178 im::TreeNode(
"Misc", ImGuiTreeNodeFlags_DefaultOpen, [&]{
179 Checkbox(hotKey,
"Full screen", renderSettings.getFullScreenSetting());
183 Checkbox(hotKey,
"VSync", renderSettings.getVSyncSetting());
184 SliderInt(
"Minimum frame-skip", renderSettings.getMinFrameSkipSetting());
185 SliderInt(
"Maximum frame-skip", renderSettings.getMaxFrameSkipSetting());
188 Checkbox(hotKey,
"Enforce VDP sprites-per-line limit", renderSettings.getLimitSpritesSetting());
189 Checkbox(hotKey,
"Disable sprites", renderSettings.getDisableSpritesSetting());
190 ComboBox(
"Way to handle too fast VDP access", renderSettings.getTooFastAccessSetting());
191 ComboBox(
"Emulate VDP command timing", renderSettings.getCmdTimingSetting());
192 ComboBox(
"Rendering accuracy", renderSettings.getAccuracySetting());
196 auto& mixer = reactor.getMixer();
197 auto& muteSetting = mixer.getMuteSetting();
199 SliderInt(
"Master volume", mixer.getMasterVolume());
201 Checkbox(hotKey,
"Mute", muteSetting);
203 static constexpr std::array resamplerToolTips = {
205 EnumToolTip{
"blip",
"good speed/quality tradeoff"},
208 ComboBox(
"Resampler", globalSettings.getResampleSetting(), resamplerToolTips);
211 ImGui::MenuItem(
"Show sound chip settings",
nullptr, &
manager.
soundChip->showSoundChipSettings);
214 im::TreeNode(
"Emulation", ImGuiTreeNodeFlags_DefaultOpen, [&]{
216 HelpMarker(
"These control the speed of the whole MSX machine, "
217 "the running MSX software can't tell the difference.");
219 auto& speedManager = globalSettings.getSpeedManager();
220 auto& fwdSetting = speedManager.getFastForwardSetting();
221 int fastForward = fwdSetting.getBoolean() ? 1 : 0;
224 bool fwdChanged = ImGui::RadioButton(
"normal", &fastForward, 0);
226 fwdChanged |= ImGui::RadioButton(
"fast forward", &fastForward, 1);
228 !fastForwardShortCut.empty()) {
229 HelpMarker(
strCat(
"Use '", fastForwardShortCut ,
"' to quickly toggle between these two"));
232 fwdSetting.setBoolean(fastForward != 0);
236 SliderFloat(
"Speed (%)", speedManager.getSpeedSetting(),
"%.1f", ImGuiSliderFlags_Logarithmic);
239 SliderFloat(
"Fast forward speed (%)", speedManager.getFastForwardSpeedSetting(),
"%.1f", ImGuiSliderFlags_Logarithmic);
242 Checkbox(hotKey,
"Go full speed when loading", globalSettings.getThrottleManager().getFullSpeedLoadingSetting());
245 im::TreeNode(
"MSX devices", ImGuiTreeNodeFlags_DefaultOpen, [&]{
247 HelpMarker(
"These control the speed of the specific components in the MSX machine. "
248 "So the relative speed between components can change. "
249 "And this may lead the emulation problems.");
252 auto showFreqSettings = [&](std::string_view name,
auto* core) {
254 auto& locked = core->getFreqLockedSetting();
255 auto& value = core->getFreqValueSetting();
257 bool unlocked = !locked.getBoolean();
258 if (ImGui::Checkbox(
tmpStrCat(
"unlock custom ", name,
" frequency").c_str(), &unlocked)) {
259 locked.setBoolean(!unlocked);
264 float fval = float(value.getInt()) / 1.0e6f;
265 if (ImGui::InputFloat(
tmpStrCat(
"frequency (MHz)##", name).c_str(), &fval, 0.01f, 1.0f,
"%.2f")) {
266 value.setInt(
int(fval * 1.0e6f));
269 const char* F358 = name ==
"Z80" ?
"3.58 MHz (default)"
271 if (ImGui::Selectable(F358)) {
272 value.setInt(3'579'545);
274 if (ImGui::Selectable(
"5.37 MHz")) {
275 value.setInt(5'369'318);
277 const char* F716 = name ==
"R800" ?
"7.16 MHz (default)"
279 if (ImGui::Selectable(F716)) {
280 value.setInt(7'159'090);
284 HelpMarker(
"Right-click to select commonly used values");
288 showFreqSettings(
"Z80", cpu.
getZ80());
289 showFreqSettings(
"R800", cpu.
getR800());
294 static constexpr std::array kbdModeToolTips = {
295 EnumToolTip{
"CHARACTER",
"Tries to understand the character you are typing and then attempts to type that character using the current MSX keyboard. May not work very well when using a non-US host keyboard."},
296 EnumToolTip{
"KEY",
"Tries to map a key you press to the corresponding MSX key"},
297 EnumToolTip{
"POSITIONAL",
"Tries to map the keyboard key positions to the MSX keyboard key positions"},
301 if (
auto* turbo =
dynamic_cast<IntegerSetting*
>(controller.findSetting(
"renshaturbo"))) {
302 SliderInt(
"Ren Sha Turbo (%)", *turbo);
305 ComboBox(
"Keyboard mapping mode", *mappingModeSetting, kbdModeToolTips);
308 ImGui::MenuItem(
"Configure MSX joysticks...",
nullptr, &showConfigureJoystick);
311 auto getExistingLayouts = [] {
312 std::vector<std::string> names;
314 const auto& path : context.getPaths()) {
315 foreach_file(path, [&](
const std::string& fullName, std::string_view name) {
316 if (name.ends_with(
".ini")) {
317 names.emplace_back(fullName);
324 auto listExistingLayouts = [&](
const std::vector<std::string>& names) {
325 std::optional<std::pair<std::string, std::string>> selectedLayout;
327 for (
const auto& name : names) {
329 if (ImGui::Selectable(displayName.c_str())) {
330 selectedLayout = std::pair{name, displayName};
333 if (ImGui::MenuItem(
"delete")) {
334 confirmText =
strCat(
"Delete layout: ", displayName);
336 openConfirmPopup =
true;
341 return selectedLayout;
344 if (
auto names = getExistingLayouts(); !names.empty()) {
346 if (
auto selectedLayout = listExistingLayouts(names)) {
347 const auto& [name, displayName] = *selectedLayout;
348 saveLayoutName = displayName;
352 ImGui::InputText(
"##save-layout-name", &saveLayoutName);
355 if (ImGui::Button(
"Save as")) {
356 (void)reactor.getDisplay().getWindowPosition();
357 ImGui::CloseCurrentPopup();
359 auto filename = FileOperations::parseCommandFileArgument(
360 saveLayoutName,
"layouts",
"",
".ini");
361 if (FileOperations::exists(filename)) {
362 confirmText = strCat(
"Overwrite layout: ", saveLayoutName);
363 confirmAction = [filename]{
364 ImGui::SaveIniSettingsToDisk(filename.c_str());
366 openConfirmPopup = true;
368 ImGui::SaveIniSettingsToDisk(filename.c_str());
375 auto names = getExistingLayouts();
376 if (
auto selectedLayout = listExistingLayouts(names)) {
377 const auto& [name, displayName] = *selectedLayout;
379 ImGui::CloseCurrentPopup();
383 std::optional<int> newStyle;
384 static constexpr std::array names = {
"Dark",
"Light",
"Classic"};
385 for (
auto i :
xrange(narrow<int>(names.size()))) {
386 if (ImGui::Selectable(names[i], selectedStyle == i)) {
391 selectedStyle = *newStyle;
395 ImGui::MenuItem(
"Select font...",
nullptr, &showFont);
396 ImGui::MenuItem(
"Edit shortcuts...",
nullptr, &showShortcut);
399 ImGui::MenuItem(
"Configure OSD icons...",
nullptr, &
manager.
osdIcons->showConfigureIcons);
402 ImGui::MenuItem(
"Configure messages...",
nullptr, &
manager.
messages->configureWindow.open);
408 std::vector<Setting*> settings;
409 for (
auto*
setting : settingsManager.getAllSettings()) {
412 settings.push_back(checked_cast<Setting*>(
setting));
415 for (
auto*
setting : settings) {
439 const auto confirmTitle =
"Confirm##settings";
440 if (openConfirmPopup) {
441 ImGui::OpenPopup(confirmTitle);
443 im::PopupModal(confirmTitle,
nullptr, ImGuiWindowFlags_AlwaysAutoResize, [&]{
447 if (ImGui::Button(
"Ok")) {
452 close |= ImGui::Button(
"Cancel");
454 ImGui::CloseCurrentPopup();
463[[nodiscard]]
static std::string settingName(
unsigned joystick)
465 return (joystick < 2) ?
strCat(
"msxjoystick", joystick + 1,
"_config")
466 :
strCat(
"joymega", joystick - 1,
"_config");
470[[nodiscard]]
static std::string joystickToGuiString(
unsigned joystick)
472 return (joystick < 2) ?
strCat(
"MSX joystick ", joystick + 1)
473 :
strCat(
"JoyMega controller ", joystick - 1);
476[[nodiscard]]
static std::string toGuiString(
const BooleanInput& input,
const JoystickManager& joystickManager)
479 [](
const BooleanKeyboard& k) {
480 return strCat(
"keyboard key ", SDLKey::toString(k.getKeyCode()));
482 [](
const BooleanMouseButton& m) {
483 return strCat(
"mouse button ", m.getButton());
485 [&](
const BooleanJoystickButton& j) {
486 return strCat(joystickManager.getDisplayName(j.getJoystick()),
" button ", j.getButton());
488 [&](
const BooleanJoystickHat& h) {
489 return strCat(joystickManager.getDisplayName(h.getJoystick()),
" D-pad ", h.getHat(),
' ',
toString(h.getValue()));
491 [&](
const BooleanJoystickAxis& a) {
492 return strCat(joystickManager.getDisplayName(a.getJoystick()),
493 " stick axis ", a.getAxis(),
", ",
494 (a.getDirection() == BooleanJoystickAxis::Direction::POS ?
"positive" :
"negative"),
" direction");
499[[nodiscard]]
static bool insideCircle(
gl::vec2 mouse,
gl::vec2 center,
float radius)
501 auto delta = center - mouse;
502 return gl::sum(delta * delta) <= (radius * radius);
504[[nodiscard]]
static bool between(
float x,
float min,
float max)
506 return (min <= x) && (x <=
max);
515 return between(mouse.x, r.topLeft.x, r.bottomRight.x) &&
516 between(mouse.y, r.topLeft.y, r.bottomRight.y);
520static constexpr auto fractionDPad = 1.0f / 3.0f;
521static constexpr auto thickness = 3.0f;
523static void drawDPad(
gl::vec2 center,
float size, std::span<const uint8_t, 4> hovered,
int hoveredRow)
525 const auto F = fractionDPad;
526 std::array<std::array<ImVec2, 5 + 1>, 4> points = {
527 std::array<ImVec2, 5 + 1>{
535 std::array<ImVec2, 5 + 1>{
543 std::array<ImVec2, 5 + 1>{
551 std::array<ImVec2, 5 + 1>{
561 auto* drawList = ImGui::GetWindowDrawList();
562 auto hoverColor = ImGui::GetColorU32(ImGuiCol_ButtonHovered);
564 auto color =
getColor(imColor::TEXT);
565 for (
auto i :
xrange(4)) {
566 if (hovered[i] || (hoveredRow == i)) {
567 drawList->AddConvexPolyFilled(points[i].data(), 5, hoverColor);
569 drawList->AddPolyline(points[i].data(), 5 + 1, color, 0, thickness);
573static void drawFilledCircle(
gl::vec2 center,
float radius,
bool fill)
575 auto* drawList = ImGui::GetWindowDrawList();
577 auto hoverColor = ImGui::GetColorU32(ImGuiCol_ButtonHovered);
578 drawList->AddCircleFilled(center, radius, hoverColor);
580 auto color =
getColor(imColor::TEXT);
581 drawList->AddCircle(center, radius, color, 0, thickness);
583static void drawFilledRectangle(Rectangle r,
float corner,
bool fill)
585 auto* drawList = ImGui::GetWindowDrawList();
587 auto hoverColor = ImGui::GetColorU32(ImGuiCol_ButtonHovered);
588 drawList->AddRectFilled(r.topLeft, r.bottomRight, hoverColor, corner);
590 auto color =
getColor(imColor::TEXT);
591 drawList->AddRect(r.topLeft, r.bottomRight, color, corner, 0, thickness);
594static void drawLetterA(
gl::vec2 center)
596 auto* drawList = ImGui::GetWindowDrawList();
597 auto tr = [&](
gl::vec2 p) {
return center + p; };
598 const std::array<ImVec2, 3> lines = { tr({-6, 7}), tr({0, -7}), tr({6, 7}) };
599 auto color =
getColor(imColor::TEXT);
600 drawList->AddPolyline(lines.data(), lines.size(), color, 0, thickness);
601 drawList->AddLine(tr({-3, 1}), tr({3, 1}), color, thickness);
603static void drawLetterB(
gl::vec2 center)
605 auto* drawList = ImGui::GetWindowDrawList();
606 auto tr = [&](
gl::vec2 p) {
return center + p; };
607 const std::array<ImVec2, 4> lines = { tr({1, -7}), tr({-4, -7}), tr({-4, 7}), tr({2, 7}) };
608 auto color =
getColor(imColor::TEXT);
609 drawList->AddPolyline(lines.data(), lines.size(), color, 0, thickness);
610 drawList->AddLine(tr({-4, -1}), tr({2, -1}), color, thickness);
611 drawList->AddBezierQuadratic(tr({1, -7}), tr({4, -7}), tr({4, -4}), color, thickness);
612 drawList->AddBezierQuadratic(tr({4, -4}), tr({4, -1}), tr({1, -1}), color, thickness);
613 drawList->AddBezierQuadratic(tr({2, -1}), tr({6, -1}), tr({6, 3}), color, thickness);
614 drawList->AddBezierQuadratic(tr({6, 3}), tr({6, 7}), tr({2, 7}), color, thickness);
616static void drawLetterC(
gl::vec2 center)
618 auto* drawList = ImGui::GetWindowDrawList();
619 auto tr = [&](
gl::vec2 p) {
return center + p; };
620 auto color =
getColor(imColor::TEXT);
621 drawList->AddBezierCubic(tr({5, -5}), tr({-8, -16}), tr({-8, 16}), tr({5, 5}), color, thickness);
623static void drawLetterX(
gl::vec2 center)
625 auto* drawList = ImGui::GetWindowDrawList();
626 auto tr = [&](
gl::vec2 p) {
return center + p; };
627 auto color =
getColor(imColor::TEXT);
628 drawList->AddLine(tr({-4, -6}), tr({4, 6}), color, thickness);
629 drawList->AddLine(tr({-4, 6}), tr({4, -6}), color, thickness);
631static void drawLetterY(
gl::vec2 center)
633 auto* drawList = ImGui::GetWindowDrawList();
634 auto tr = [&](
gl::vec2 p) {
return center + p; };
635 auto color =
getColor(imColor::TEXT);
636 drawList->AddLine(tr({-4, -6}), tr({0, 0}), color, thickness);
637 drawList->AddLine(tr({-4, 6}), tr({4, -6}), color, thickness);
639static void drawLetterZ(
gl::vec2 center)
641 auto* drawList = ImGui::GetWindowDrawList();
642 auto tr = [&](
gl::vec2 p) {
return center + p; };
643 const std::array<ImVec2, 4> linesZ2 = { tr({-4, -6}), tr({4, -6}), tr({-4, 6}), tr({4, 6}) };
644 auto color =
getColor(imColor::TEXT);
645 drawList->AddPolyline(linesZ2.data(), 4, color, 0, thickness);
648namespace msxjoystick {
652static constexpr std::array<zstring_view, NUM_BUTTONS> buttonNames = {
653 "Up",
"Down",
"Left",
"Right",
"A",
"B"
655static constexpr std::array<zstring_view, NUM_BUTTONS> keyNames = {
656 "UP",
"DOWN",
"LEFT",
"RIGHT",
"A",
"B"
660static constexpr auto boundingBox =
gl::vec2{300.0f, 100.0f};
661static constexpr auto radius = 20.0f;
662static constexpr auto corner = 10.0f;
663static constexpr auto centerA =
gl::vec2{200.0f, 50.0f};
664static constexpr auto centerB =
gl::vec2{260.0f, 50.0f};
665static constexpr auto centerDPad =
gl::vec2{50.0f, 50.0f};
666static constexpr auto sizeDPad = 30.0f;
668[[nodiscard]]
static std::vector<uint8_t> buttonsHovered(
gl::vec2 mouse)
670 std::vector<uint8_t> result(NUM_BUTTONS);
671 auto mouseDPad = (mouse - centerDPad) * (1.0f / sizeDPad);
672 if (insideRectangle(mouseDPad, Rectangle{{-1, -1}, {1, 1}}) &&
673 (between(mouseDPad.x, -fractionDPad, fractionDPad) ||
674 between(mouseDPad.y, -fractionDPad, fractionDPad))) {
675 bool t1 = mouseDPad.x < mouseDPad.y;
676 bool t2 = mouseDPad.x < -mouseDPad.y;
677 result[
UP] = !t1 && t2;
678 result[
DOWN] = t1 && !t2;
679 result[
LEFT] = t1 && t2;
680 result[
RIGHT] = !t1 && !t2;
682 result[
TRIG_A] = insideCircle(mouse, centerA, radius);
683 result[
TRIG_B] = insideCircle(mouse, centerB, radius);
687static void draw(
gl::vec2 scrnPos, std::span<uint8_t> hovered,
int hoveredRow)
689 auto* drawList = ImGui::GetWindowDrawList();
691 auto color =
getColor(imColor::TEXT);
692 drawList->AddRect(scrnPos, scrnPos + boundingBox, color, corner, 0, thickness);
694 drawDPad(scrnPos + centerDPad, sizeDPad, subspan<4>(hovered), hoveredRow);
696 auto scrnCenterA = scrnPos + centerA;
697 drawFilledCircle(scrnCenterA, radius, hovered[TRIG_A] || (hoveredRow == TRIG_A));
698 drawLetterA(scrnCenterA);
700 auto scrnCenterB = scrnPos + centerB;
701 drawFilledCircle(scrnCenterB, radius, hovered[TRIG_B] || (hoveredRow == TRIG_B));
702 drawLetterB(scrnCenterB);
709enum {UP, DOWN, LEFT, RIGHT,
715static constexpr std::array<zstring_view, NUM_BUTTONS> buttonNames = {
716 "Up",
"Down",
"Left",
"Right",
721static constexpr std::array<zstring_view, NUM_BUTTONS> keyNames = {
722 "UP",
"DOWN",
"LEFT",
"RIGHT",
729static constexpr auto thickness = 3.0f;
730static constexpr auto boundingBox =
gl::vec2{300.0f, 158.0f};
731static constexpr auto centerA =
gl::vec2{205.0f, 109.9f};
732static constexpr auto centerB =
gl::vec2{235.9f, 93.5f};
733static constexpr auto centerC =
gl::vec2{269.7f, 83.9f};
734static constexpr auto centerX =
gl::vec2{194.8f, 75.2f};
735static constexpr auto centerY =
gl::vec2{223.0f, 61.3f};
736static constexpr auto centerZ =
gl::vec2{252.2f, 52.9f};
737static constexpr auto selectBox = Rectangle{
gl::vec2{130.0f, 60.0f},
gl::vec2{160.0f, 70.0f}};
738static constexpr auto startBox = Rectangle{
gl::vec2{130.0f, 86.0f},
gl::vec2{160.0f, 96.0f}};
739static constexpr auto radiusABC = 16.2f;
740static constexpr auto radiusXYZ = 12.2f;
741static constexpr auto centerDPad =
gl::vec2{65.6f, 82.7f};
742static constexpr auto sizeDPad = 34.0f;
743static constexpr auto fractionDPad = 1.0f / 3.0f;
745[[nodiscard]]
static std::vector<uint8_t> buttonsHovered(
gl::vec2 mouse)
747 std::vector<uint8_t> result(NUM_BUTTONS);
748 auto mouseDPad = (mouse - centerDPad) * (1.0f / sizeDPad);
749 if (insideRectangle(mouseDPad, Rectangle{{-1, -1}, {1, 1}}) &&
750 (between(mouseDPad.x, -fractionDPad, fractionDPad) ||
751 between(mouseDPad.y, -fractionDPad, fractionDPad))) {
752 bool t1 = mouseDPad.x < mouseDPad.y;
753 bool t2 = mouseDPad.x < -mouseDPad.y;
754 result[
UP] = !t1 && t2;
755 result[
DOWN] = t1 && !t2;
756 result[
LEFT] = t1 && t2;
757 result[
RIGHT] = !t1 && !t2;
759 result[
TRIG_A] = insideCircle(mouse, centerA, radiusABC);
760 result[
TRIG_B] = insideCircle(mouse, centerB, radiusABC);
761 result[
TRIG_C] = insideCircle(mouse, centerC, radiusABC);
762 result[
TRIG_X] = insideCircle(mouse, centerX, radiusXYZ);
763 result[
TRIG_Y] = insideCircle(mouse, centerY, radiusXYZ);
764 result[
TRIG_Z] = insideCircle(mouse, centerZ, radiusXYZ);
765 result[
TRIG_START] = insideRectangle(mouse, startBox);
766 result[
TRIG_SELECT] = insideRectangle(mouse, selectBox);
770static void draw(
gl::vec2 scrnPos, std::span<uint8_t> hovered,
int hoveredRow)
772 auto* drawList = ImGui::GetWindowDrawList();
773 auto tr = [&](
gl::vec2 p) {
return scrnPos + p; };
774 auto color =
getColor(imColor::TEXT);
776 auto drawBezierCurve = [&](std::span<const gl::vec2> points,
float thick = 1.0f) {
777 assert((points.size() % 2) == 0);
778 for (
size_t i = 0; i < points.size() - 2; i += 2) {
779 auto ap = points[i + 0];
780 auto ad = points[i + 1];
781 auto bp = points[i + 2];
782 auto bd = points[i + 3];
783 drawList->AddBezierCubic(tr(ap), tr(ap + ad), tr(bp - bd), tr(bp), color, thick);
787 std::array outLine = {
802 drawBezierCurve(outLine, thickness);
804 drawDPad(tr(centerDPad), sizeDPad, subspan<4>(hovered), hoveredRow);
805 drawList->AddCircle(tr(centerDPad), 43.0f, color);
806 std::array dPadCurve = {
811 drawBezierCurve(dPadCurve);
813 drawFilledCircle(tr(centerA), radiusABC, hovered[TRIG_A] || (hoveredRow == TRIG_A));
814 drawLetterA(tr(centerA));
815 drawFilledCircle(tr(centerB), radiusABC, hovered[TRIG_B] || (hoveredRow == TRIG_B));
816 drawLetterB(tr(centerB));
817 drawFilledCircle(tr(centerC), radiusABC, hovered[TRIG_C] || (hoveredRow == TRIG_C));
818 drawLetterC(tr(centerC));
819 drawFilledCircle(tr(centerX), radiusXYZ, hovered[TRIG_X] || (hoveredRow == TRIG_X));
820 drawLetterX(tr(centerX));
821 drawFilledCircle(tr(centerY), radiusXYZ, hovered[TRIG_Y] || (hoveredRow == TRIG_Y));
822 drawLetterY(tr(centerY));
823 drawFilledCircle(tr(centerZ), radiusXYZ, hovered[TRIG_Z] || (hoveredRow == TRIG_Z));
824 drawLetterZ(tr(centerZ));
825 std::array buttonCurve = {
830 drawBezierCurve(buttonCurve);
832 auto corner = (selectBox.bottomRight.y - selectBox.topLeft.y) * 0.5f;
833 auto trR = [&](Rectangle r) {
return Rectangle{tr(r.topLeft), tr(r.bottomRight)}; };
834 drawFilledRectangle(trR(selectBox), corner, hovered[TRIG_SELECT] || (hoveredRow == TRIG_SELECT));
835 drawList->AddText(ImGui::GetFont(), ImGui::GetFontSize(), tr({123.0f, 46.0f}), color,
"Select");
836 drawFilledRectangle(trR(startBox), corner, hovered[TRIG_START] || (hoveredRow == TRIG_START));
837 drawList->AddText(ImGui::GetFont(), ImGui::GetFontSize(), tr({128.0f, 97.0f}), color,
"Start");
842void ImGuiSettings::paintJoystick(MSXMotherBoard& motherBoard)
844 ImGui::SetNextWindowSize(
gl::vec2{316, 323}, ImGuiCond_FirstUseEver);
845 im::Window(
"Configure MSX joysticks", &showConfigureJoystick, [&]{
846 ImGui::SetNextItemWidth(13.0f * ImGui::GetFontSize());
847 im::Combo(
"Select joystick", joystickToGuiString(joystick).c_str(), [&]{
848 for (
const auto& j :
xrange(4)) {
849 if (ImGui::Selectable(joystickToGuiString(j).c_str())) {
855 const auto& joystickManager = manager.getReactor().getInputEventGenerator().getJoystickManager();
856 const auto& controller = motherBoard.getMSXCommandController();
857 auto*
setting =
dynamic_cast<StringSetting*
>(controller.findSetting(settingName(joystick)));
859 auto& interp =
setting->getInterpreter();
860 TclObject bindings =
setting->getValue();
862 gl::vec2 scrnPos = ImGui::GetCursorScreenPos();
866 bool msxOrMega = joystick < 2;
867 auto hovered = msxOrMega ? msxjoystick::buttonsHovered(mouse)
868 : joymega ::buttonsHovered(mouse);
869 const auto numButtons = hovered.size();
870 using SP = std::span<const zstring_view>;
871 auto keyNames = msxOrMega ?
SP{msxjoystick::keyNames}
872 :
SP{joymega ::keyNames};
873 auto buttonNames = msxOrMega ?
SP{msxjoystick::buttonNames}
874 :
SP{joymega ::buttonNames};
877 std::optional<int> addAction;
878 std::optional<int> removeAction;
879 if (ImGui::IsMouseReleased(ImGuiMouseButton_Left)) {
880 for (
auto i :
xrange(numButtons)) {
881 if (hovered[i]) addAction = narrow<int>(i);
885 ImGui::Dummy(msxOrMega ? msxjoystick::boundingBox : joymega::boundingBox);
889 const auto& style = ImGui::GetStyle();
890 auto textHeight = ImGui::GetTextLineHeight();
891 float rowHeight = 2.0f * style.FramePadding.y + textHeight;
892 float bottomHeight = style.ItemSpacing.y + 2.0f * style.FramePadding.y + textHeight;
893 im::Table(
"##joystick-table", 2, ImGuiTableFlags_SizingFixedFit | ImGuiTableFlags_ScrollX, {0.0f, -bottomHeight}, [&]{
895 TclObject key(keyNames[i]);
896 TclObject bindingList = bindings.getDictValue(interp, key);
897 if (ImGui::TableNextColumn()) {
898 auto pos = ImGui::GetCursorPos();
899 ImGui::Selectable(
"##row", hovered[i], ImGuiSelectableFlags_SpanAllColumns | ImGuiSelectableFlags_AllowOverlap, ImVec2(0, rowHeight));
900 if (ImGui::IsItemHovered()) {
904 ImGui::SetCursorPos(pos);
905 ImGui::AlignTextToFramePadding();
908 if (ImGui::TableNextColumn()) {
909 if (ImGui::Button(
"Add")) {
913 auto numBindings = bindingList.size();
915 if (ImGui::Button(
"Remove")) {
916 if (numBindings == 1) {
917 bindings.setDictValue(interp, key, TclObject{});
925 if (numBindings == 0) {
926 ImGui::TextDisabled(
"no bindings");
928 size_t lastBindingIndex = numBindings - 1;
929 size_t bindingIndex = 0;
930 for (
auto binding: bindingList) {
933 if (bindingIndex < lastBindingIndex) {
944 msxOrMega ? msxjoystick::draw(scrnPos, hovered, hoveredRow)
945 : joymega ::draw(scrnPos, hovered, hoveredRow);
947 if (ImGui::Button(
"Default bindings...")) {
948 ImGui::OpenPopup(
"bindings");
951 auto addOrSet = [&](
auto getBindings) {
952 if (ImGui::MenuItem(
"Add to current bindings")) {
954 auto newBindings = getBindings();
955 for (
auto k :
xrange(int(numButtons))) {
956 TclObject key(keyNames[k]);
957 TclObject dstList = bindings.getDictValue(interp, key);
958 TclObject srcList = newBindings.getDictValue(interp, key);
960 for (
auto b : srcList) {
962 dstList.addListElement(b);
965 bindings.setDictValue(interp, key, dstList);
969 if (ImGui::MenuItem(
"Replace current bindings")) {
970 setting->setValue(getBindings());
975 return TclObject(TclObject::MakeDictTag{},
984 for (
auto joyId : joystickManager.getConnectedJoysticks()) {
985 im::Menu(joystickManager.getDisplayName(joyId).c_str(), [&]{
988 ? MSXJoystick::getDefaultConfig(joyId, joystickManager)
989 : JoyMega::getDefaultConfig(joyId, joystickManager);
996 static constexpr auto addTitle =
"Waiting for input";
998 popupForKey = *addAction;
1001 ImGui::OpenPopup(addTitle);
1003 im::PopupModal(addTitle,
nullptr, ImGuiWindowFlags_NoSavedSettings, [&]{
1005 ImGui::CloseCurrentPopup();
1006 popupForKey = unsigned(-1);
1009 if (popupForKey >= numButtons) {
1014 ImGui::Text(
"Enter event for joystick button '%s'", buttonNames[popupForKey].c_str());
1015 ImGui::Text(
"Or press ESC to cancel. Timeout in %d seconds.",
int(popupTimeout));
1017 popupTimeout -= ImGui::GetIO().DeltaTime;
1018 if (popupTimeout <= 0.0f) {
1025 popupForKey = *removeAction;
1026 ImGui::OpenPopup(
"remove");
1030 ImGui::CloseCurrentPopup();
1031 popupForKey = unsigned(-1);
1033 if (popupForKey >= numButtons) {
1037 TclObject key(keyNames[popupForKey]);
1038 TclObject bindingList = bindings.getDictValue(interp, key);
1041 unsigned counter = 0;
1042 for (
const auto& b : bindingList) {
1043 if (ImGui::Selectable(b.c_str())) {
1049 if (remove !=
unsigned(-1)) {
1050 bindingList.removeListIndex(interp, remove);
1051 bindings.setDictValue(interp, key, bindingList);
1056 if (ImGui::Selectable(
"all bindings")) {
1057 bindings.setDictValue(interp, key, TclObject{});
1065void ImGuiSettings::paintFont()
1068 auto selectFilename = [&](FilenameSetting&
setting,
float width) {
1069 auto display = [](std::string_view name) {
1070 if (name.ends_with(
".gz" )) name.remove_suffix(3);
1071 if (name.ends_with(
".ttf")) name.remove_suffix(4);
1072 return std::string(name);
1074 auto current =
setting.getString();
1075 ImGui::SetNextItemWidth(width);
1077 for (
const auto& font : getAvailableFonts()) {
1078 if (ImGui::Selectable(display(font).c_str(), current == font)) {
1084 auto selectSize = [](IntegerSetting&
setting) {
1085 auto display = [](
int s) {
return strCat(s); };
1086 auto current =
setting.getInt();
1087 ImGui::SetNextItemWidth(4.0f * ImGui::GetFontSize());
1089 for (
int size : {9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 24, 26, 28, 30, 32}) {
1090 if (ImGui::Selectable(display(size).c_str(), current == size)) {
1098 auto width = 12.0f * ImGui::GetFontSize();
1100 ImGui::AlignTextToFramePadding();
1102 ImGui::SameLine(pos);
1103 selectFilename(manager.fontPropFilename, width);
1105 selectSize(manager.fontPropSize);
1106 HelpMarker(
"You can install more fonts by copying .ttf file(s) to your \"<openmsx>/share/skins\" directory.");
1108 ImGui::AlignTextToFramePadding();
1110 ImGui::SameLine(pos);
1112 selectFilename(manager.fontMonoFilename, width);
1115 selectSize(manager.fontMonoSize);
1116 HelpMarker(
"Some GUI elements (e.g. the console) require a monospaced font.");
1120[[nodiscard]]
static std::string formatShortcutWithAnnotations(
const Shortcuts::Shortcut& shortcut)
1124 if (shortcut.type == Shortcuts::Type::GLOBAL) result +=
", global";
1128[[nodiscard]]
static gl::vec2 buttonSize(std::string_view text,
float defaultSize_)
1130 const auto& style = ImGui::GetStyle();
1132 auto defaultSize = ImGui::GetFontSize() * defaultSize_;
1133 return {std::max(textSize, defaultSize), 0.0f};
1136void ImGuiSettings::paintEditShortcut()
1138 using enum Shortcuts::Type;
1140 bool editShortcutWindow = editShortcutId != Shortcuts::ID::INVALID;
1141 if (!editShortcutWindow)
return;
1143 im::Window(
"Edit shortcut", &editShortcutWindow, ImGuiWindowFlags_AlwaysAutoResize, [&]{
1144 auto& shortcuts = manager.getShortcuts();
1145 auto shortcut = shortcuts.getShortcut(editShortcutId);
1148 ImGui::TableSetupColumn(
"", ImGuiTableColumnFlags_WidthFixed);
1149 ImGui::TableSetupColumn(
"", ImGuiTableColumnFlags_WidthStretch);
1151 if (ImGui::TableNextColumn()) {
1152 ImGui::AlignTextToFramePadding();
1155 static constexpr auto waitKeyTitle =
"Waiting for key";
1156 if (ImGui::TableNextColumn()) {
1158 if (ImGui::Button(text.c_str(), buttonSize(text, 4.0f))) {
1159 popupTimeout = 10.0f;
1161 ImGui::OpenPopup(waitKeyTitle);
1165 im::PopupModal(waitKeyTitle, &isOpen, ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_AlwaysAutoResize, [&]{
1166 ImGui::Text(
"Enter key combination for shortcut '%s'",
1167 Shortcuts::getShortcutDescription(editShortcutId).c_str());
1168 ImGui::Text(
"Timeout in %d seconds.",
int(popupTimeout));
1170 popupTimeout -= ImGui::GetIO().DeltaTime;
1171 if (!isOpen || popupTimeout <= 0.0f) {
1172 ImGui::CloseCurrentPopup();
1174 if (
auto keyChord = getCurrentlyPressedKeyChord(); keyChord != ImGuiKey_None) {
1175 shortcut.keyChord = keyChord;
1176 shortcuts.setShortcut(editShortcutId, shortcut);
1177 editShortcutWindow =
false;
1178 ImGui::CloseCurrentPopup();
1182 if (shortcut.type ==
one_of(LOCAL, GLOBAL)) {
1183 if (ImGui::TableNextColumn()) {
1184 ImGui::AlignTextToFramePadding();
1187 if (ImGui::TableNextColumn()) {
1188 bool global = shortcut.type == GLOBAL;
1189 if (ImGui::Checkbox(
"##global", &global)) {
1190 shortcut.type = global ? GLOBAL : LOCAL;
1191 shortcuts.setShortcut(editShortcutId, shortcut);
1194 "Global shortcuts react when any GUI window has focus.\n"
1195 "Local shortcuts only react when the specific GUI window has focus.\n"sv);
1200 const auto& defaultShortcut = Shortcuts::getDefaultShortcut(editShortcutId);
1202 if (ImGui::Button(
"Restore default")) {
1203 shortcuts.setShortcut(editShortcutId, defaultShortcut);
1204 editShortcutWindow =
false;
1206 simpleToolTip([&]{
return formatShortcutWithAnnotations(defaultShortcut); });
1211 if (ImGui::Button(
"Set None")) {
1212 shortcuts.setShortcut(editShortcutId, Shortcuts::Shortcut{});
1213 editShortcutWindow =
false;
1218 if (!editShortcutWindow) editShortcutId = Shortcuts::ID::INVALID;
1221void ImGuiSettings::paintShortcut()
1223 im::Window(
"Edit shortcuts", &showShortcut, [&]{
1224 int flags = ImGuiTableFlags_Resizable
1225 | ImGuiTableFlags_RowBg
1226 | ImGuiTableFlags_NoBordersInBodyUntilResize
1227 | ImGuiTableFlags_SizingStretchProp;
1228 im::Table(
"table", 2, flags, {-FLT_MIN, 0.0f}, [&]{
1229 ImGui::TableSetupColumn(
"description");
1230 ImGui::TableSetupColumn(
"key");
1232 const auto& shortcuts = manager.getShortcuts();
1234 auto id =
static_cast<Shortcuts::ID
>(i);
1235 auto shortcut = shortcuts.getShortcut(
id);
1237 if (ImGui::TableNextColumn()) {
1238 ImGui::AlignTextToFramePadding();
1241 if (ImGui::TableNextColumn()) {
1242 auto text = formatShortcutWithAnnotations(shortcut);
1243 if (ImGui::Button(text.c_str(), buttonSize(text, 9.0f))) {
1244 editShortcutId =
id;
1251 paintEditShortcut();
1256 if (selectedStyle < 0) {
1261 if (motherBoard && showConfigureJoystick) paintJoystick(*motherBoard);
1262 if (showFont) paintFont();
1263 if (showShortcut) paintShortcut();
1266std::span<const std::string> ImGuiSettings::getAvailableFonts()
1268 if (availableFonts.empty()) {
1270 const auto& path : context.getPaths()) {
1271 foreach_file(FileOperations::join(path,
"skins"), [&](
const std::string& , std::string_view name) {
1272 if (name.ends_with(
".ttf.gz") || name.ends_with(
".ttf")) {
1273 availableFonts.emplace_back(name);
1281 return availableFonts;
1284bool ImGuiSettings::signalEvent(
const Event& event)
1286 bool msxOrMega = joystick < 2;
1287 using SP = std::span<const zstring_view>;
1288 auto keyNames = msxOrMega ?
SP{msxjoystick::keyNames}
1289 :
SP{joymega ::keyNames};
1290 if (
const auto numButtons = keyNames.size(); popupForKey >= numButtons) {
1295 bool escape =
false;
1296 if (
const auto* keyDown = get_event_if<KeyDownEvent>(event)) {
1297 escape = keyDown->getKeyCode() == SDLK_ESCAPE;
1300 auto getJoyDeadZone = [&](JoystickId joyId) {
1301 const auto& joyMan = manager.getReactor().getInputEventGenerator().getJoystickManager();
1302 const auto*
setting = joyMan.getJoyDeadZoneSetting(joyId);
1306 if (!b)
return true;
1309 auto* motherBoard = manager.getReactor().getMotherBoard();
1310 if (!motherBoard)
return true;
1311 const auto& controller = motherBoard->getMSXCommandController();
1312 auto*
setting =
dynamic_cast<StringSetting*
>(controller.findSetting(settingName(joystick)));
1314 auto& interp =
setting->getInterpreter();
1316 TclObject bindings =
setting->getValue();
1317 TclObject key(keyNames[popupForKey]);
1318 TclObject bindingList = bindings.getDictValue(interp, key);
1321 bindingList.addListElement(bs);
1322 bindings.setDictValue(interp, key, bindingList);
1327 popupForKey = unsigned(-1);
1331void ImGuiSettings::initListener()
1333 if (listening)
return;
1336 auto& distributor = manager.getReactor().getEventDistributor();
1341 distributor.registerEventListener(type, *
this);
1345void ImGuiSettings::deinitListener()
1347 if (!listening)
return;
1350 auto& distributor = manager.getReactor().getEventDistributor();
1354 distributor.unregisterEventListener(type, *
this);
const char * c_str() const
std::string_view getBaseName() const
A Setting with a floating point value.
std::unique_ptr< ImGuiSoundChip > soundChip
std::unique_ptr< ImGuiMessages > messages
std::unique_ptr< ImGuiOsdIcons > osdIcons
void save(ImGuiTextBuffer &buf) override
void showMenu(MSXMotherBoard *motherBoard) override
void loadLine(std::string_view name, zstring_view value) override
A Setting with an integer value.
VideoSourceSetting & getVideoSource()
MSXCommandController & getMSXCommandController()
GlobalSettings & getGlobalSettings()
ScaleAlgorithm
Scaler algorithm.
Like std::string_view, but with the extra guarantee that it refers to a zero-terminated string.
auto CalcTextSize(std::string_view str)
void TextUnformatted(const std::string &str)
constexpr T sum(const vecN< N, T > &x)
constexpr vecN< N, T > max(const vecN< N, T > &x, const vecN< N, T > &y)
void Table(const char *str_id, int column, ImGuiTableFlags flags, const ImVec2 &outer_size, float inner_width, std::invocable<> auto next)
void Window(const char *name, bool *p_open, ImGuiWindowFlags flags, std::invocable<> auto next)
void PopupContextItem(const char *str_id, ImGuiPopupFlags popup_flags, std::invocable<> auto next)
bool TreeNode(const char *label, ImGuiTreeNodeFlags flags, std::invocable<> auto next)
void Combo(const char *label, const char *preview_value, ImGuiComboFlags flags, std::invocable<> auto next)
void ListBox(const char *label, const ImVec2 &size, std::invocable<> auto next)
void PopupModal(const char *name, bool *p_open, ImGuiWindowFlags flags, std::invocable<> auto next)
bool Menu(const char *label, bool enabled, std::invocable<> auto next)
void Disabled(bool b, std::invocable<> auto next)
void Font(ImFont *font, std::invocable<> auto next)
void Indent(float indent_w, std::invocable<> auto next)
void Popup(const char *str_id, ImGuiWindowFlags flags, std::invocable<> auto next)
void ID_for_range(std::integral auto count, std::invocable< int > auto next)
string_view stripExtension(string_view path)
Returns the path without extension.
string_view getFilename(string_view path)
Returns the file portion of a path name.
int unlink(zstring_view path)
Call unlink() in a platform-independent manner.
This file implemented 3 utility functions:
const FileContext & systemFileContext()
std::optional< BooleanInput > captureBooleanInput(const Event &event, function_ref< int(JoystickId)> getJoyDeadZone)
bool Checkbox(const HotKey &hotKey, BooleanSetting &setting)
bool SliderFloat(FloatSetting &setting, const char *format, ImGuiSliderFlags flags)
void centerNextWindowOverCurrent()
bool SliderInt(IntegerSetting &setting, ImGuiSliderFlags flags)
void ComboBox(const char *label, Setting &setting, function_ref< std::string(const std::string &)> displayValue, EnumToolTips toolTips)
bool loadOnePersistent(std::string_view name, zstring_view value, C &c, const std::tuple< Elements... > &tup)
void simpleToolTip(std::string_view desc)
void savePersistent(ImGuiTextBuffer &buf, C &c, const std::tuple< Elements... > &tup)
std::string getShortCutForCommand(const HotKey &hotkey, std::string_view command)
void HelpMarker(std::string_view desc)
std::optional< BooleanInput > parseBooleanInput(std::string_view text)
bool InputText(Setting &setting)
ImU32 getColor(imColor col)
void setColors(int style)
std::string getKeyChordName(ImGuiKeyChord keyChord)
std::string toString(const BooleanInput &input)
bool foreach_file(std::string path, FileAction fileAction)
TclObject makeTclList(Args &&... args)
FileContext userDataFileContext(string_view subDir)
auto unique(ForwardRange &&range)
auto remove(ForwardRange &&range, const T &value)
auto find(InputRange &&range, const T &value)
constexpr void replace(ForwardRange &&range, const T &old_value, const T &new_value)
constexpr void sort(RandomAccessRange &&range)
size_t size(std::string_view utf8)
constexpr auto to_underlying(E e) noexcept
constexpr bool contains(ITER first, ITER last, const VAL &val)
Check if a range contains a given value, using linear search.
TemporaryString tmpStrCat(Ts &&... ts)
constexpr auto xrange(T e)
constexpr auto end(const zstring_view &x)