mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-12-22 16:18:50 -05:00
Toggle Strength
This commit is contained in:
parent
cff2e37287
commit
03ea465251
@ -604,6 +604,12 @@ void DrawEnhancementsMenu() {
|
|||||||
UIWidgets::Tooltip("Prevent bombchus from forcing the camera into first-person mode when released.");
|
UIWidgets::Tooltip("Prevent bombchus from forcing the camera into first-person mode when released.");
|
||||||
UIWidgets::PaddedEnhancementCheckbox("Aiming reticle for the bow/slingshot", "gBowReticle", true, false);
|
UIWidgets::PaddedEnhancementCheckbox("Aiming reticle for the bow/slingshot", "gBowReticle", true, false);
|
||||||
UIWidgets::Tooltip("Aiming with a bow or slingshot will display a reticle as with the hookshot when the projectile is ready to fire.");
|
UIWidgets::Tooltip("Aiming with a bow or slingshot will display a reticle as with the hookshot when the projectile is ready to fire.");
|
||||||
|
if (UIWidgets::PaddedEnhancementCheckbox("Allow strength equipment to be toggled", "gToggleStrength", true, false)) {
|
||||||
|
if (!CVarGetInteger("gToggleStrength", 0)) {
|
||||||
|
CVarSetInteger("gStrengthDisabled", 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
UIWidgets::Tooltip("Allows strength to be toggled on and off by pressing A on the strength upgrade in the equipment subscreen of the pause menu");
|
||||||
ImGui::EndMenu();
|
ImGui::EndMenu();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -509,6 +509,10 @@ s32 Player_IsBurningStickInRange(PlayState* play, Vec3f* pos, f32 xzRange, f32 y
|
|||||||
s32 Player_GetStrength(void) {
|
s32 Player_GetStrength(void) {
|
||||||
s32 strengthUpgrade = CUR_UPG_VALUE(UPG_STRENGTH);
|
s32 strengthUpgrade = CUR_UPG_VALUE(UPG_STRENGTH);
|
||||||
|
|
||||||
|
if (CVarGetInteger("gToggleStrength", 0) && CVarGetInteger("gStrengthDisabled", 0)) {
|
||||||
|
return PLAYER_STR_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
if (CVarGetInteger("gTimelessEquipment", 0) || LINK_IS_ADULT) {
|
if (CVarGetInteger("gTimelessEquipment", 0) || LINK_IS_ADULT) {
|
||||||
return strengthUpgrade;
|
return strengthUpgrade;
|
||||||
} else if (strengthUpgrade != 0) {
|
} else if (strengthUpgrade != 0) {
|
||||||
|
@ -488,6 +488,12 @@ void KaleidoScope_DrawEquipment(PlayState* play) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Grey Out Strength Upgrade Name when Disabled
|
||||||
|
if ((pauseCtx->cursorX[PAUSE_EQUIP] == 0) && (pauseCtx->cursorY[PAUSE_EQUIP] == 2) &&
|
||||||
|
CVarGetInteger("gToggleStrength", 0) && CVarGetInteger("gStrengthDisabled", 0)) {
|
||||||
|
pauseCtx->nameColorSet = 1;
|
||||||
|
}
|
||||||
|
|
||||||
if ((pauseCtx->cursorX[PAUSE_EQUIP] == 0) && (pauseCtx->cursorY[PAUSE_EQUIP] == 0)) {
|
if ((pauseCtx->cursorX[PAUSE_EQUIP] == 0) && (pauseCtx->cursorY[PAUSE_EQUIP] == 0)) {
|
||||||
if (LINK_AGE_IN_YEARS != YEARS_CHILD) {
|
if (LINK_AGE_IN_YEARS != YEARS_CHILD) {
|
||||||
if ((cursorItem >= ITEM_BULLET_BAG_30) && (cursorItem <= ITEM_BULLET_BAG_50)) {
|
if ((cursorItem >= ITEM_BULLET_BAG_30) && (cursorItem <= ITEM_BULLET_BAG_50)) {
|
||||||
@ -507,6 +513,13 @@ void KaleidoScope_DrawEquipment(PlayState* play) {
|
|||||||
buttonsToCheck |= BTN_DUP | BTN_DDOWN | BTN_DLEFT | BTN_DRIGHT;
|
buttonsToCheck |= BTN_DUP | BTN_DDOWN | BTN_DLEFT | BTN_DRIGHT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Allow Toggling of Strength when Pressing A on Strength Upgrade Slot
|
||||||
|
if ((pauseCtx->cursorSpecialPos == 0) && (pauseCtx->state == 6) &&
|
||||||
|
(pauseCtx->unk_1E4 == 0) && CHECK_BTN_ALL(input->press.button, BTN_A) &&
|
||||||
|
(pauseCtx->cursorX[PAUSE_EQUIP] == 0) && (pauseCtx->cursorY[PAUSE_EQUIP] == 2) && CVarGetInteger("gToggleStrength", 0)) {
|
||||||
|
CVarSetInteger("gStrengthDisabled", !CVarGetInteger("gStrengthDisabled", 0));
|
||||||
|
}
|
||||||
|
|
||||||
if ((pauseCtx->cursorSpecialPos == 0) && (cursorItem != PAUSE_ITEM_NONE) && (pauseCtx->state == 6) &&
|
if ((pauseCtx->cursorSpecialPos == 0) && (cursorItem != PAUSE_ITEM_NONE) && (pauseCtx->state == 6) &&
|
||||||
(pauseCtx->unk_1E4 == 0) && CHECK_BTN_ANY(input->press.button, buttonsToCheck) &&
|
(pauseCtx->unk_1E4 == 0) && CHECK_BTN_ANY(input->press.button, buttonsToCheck) &&
|
||||||
(pauseCtx->cursorX[PAUSE_EQUIP] != 0)) {
|
(pauseCtx->cursorX[PAUSE_EQUIP] != 0)) {
|
||||||
@ -659,6 +672,22 @@ void KaleidoScope_DrawEquipment(PlayState* play) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add zoom effect to strength item if cursor is hovering over it and strength is not disabled when the toggle is on
|
||||||
|
if ((pauseCtx->cursorX[PAUSE_EQUIP] == 0) && (pauseCtx->cursorY[PAUSE_EQUIP] == 2) &&
|
||||||
|
CVarGetInteger("gToggleStrength", 0) && !CVarGetInteger("gStrengthDisabled", 0)) {
|
||||||
|
i = 2; // row
|
||||||
|
k = 0; // column
|
||||||
|
j = 16 * i + 4 * k; // vtx index
|
||||||
|
pauseCtx->equipVtx[j].v.ob[0] = pauseCtx->equipVtx[j + 2].v.ob[0] =
|
||||||
|
pauseCtx->equipVtx[j].v.ob[0] - 2;
|
||||||
|
pauseCtx->equipVtx[j + 1].v.ob[0] = pauseCtx->equipVtx[j + 3].v.ob[0] =
|
||||||
|
pauseCtx->equipVtx[j + 1].v.ob[0] + 4;
|
||||||
|
pauseCtx->equipVtx[j].v.ob[1] = pauseCtx->equipVtx[j + 1].v.ob[1] =
|
||||||
|
pauseCtx->equipVtx[j].v.ob[1] + 2;
|
||||||
|
pauseCtx->equipVtx[j + 2].v.ob[1] = pauseCtx->equipVtx[j + 3].v.ob[1] =
|
||||||
|
pauseCtx->equipVtx[j + 2].v.ob[1] - 4;
|
||||||
|
}
|
||||||
|
|
||||||
Gfx_SetupDL_42Opa(play->state.gfxCtx);
|
Gfx_SetupDL_42Opa(play->state.gfxCtx);
|
||||||
|
|
||||||
gDPSetCombineMode(POLY_KAL_DISP++, G_CC_MODULATEIA_PRIM, G_CC_MODULATEIA_PRIM);
|
gDPSetCombineMode(POLY_KAL_DISP++, G_CC_MODULATEIA_PRIM, G_CC_MODULATEIA_PRIM);
|
||||||
@ -670,9 +699,12 @@ void KaleidoScope_DrawEquipment(PlayState* play) {
|
|||||||
if (LINK_AGE_IN_YEARS == YEARS_CHILD) {
|
if (LINK_AGE_IN_YEARS == YEARS_CHILD) {
|
||||||
point = CUR_UPG_VALUE(sChildUpgrades[i]);
|
point = CUR_UPG_VALUE(sChildUpgrades[i]);
|
||||||
if ((point != 0) && (CUR_UPG_VALUE(sChildUpgrades[i]) != 0)) {
|
if ((point != 0) && (CUR_UPG_VALUE(sChildUpgrades[i]) != 0)) {
|
||||||
if (drawGreyItems &&
|
// Grey Out the Gauntlets as Child
|
||||||
|
// Grey Out Strength Upgrades when Disabled and the Toggle Option is on
|
||||||
|
if ((drawGreyItems &&
|
||||||
((sChildUpgradeItemBases[i] + CUR_UPG_VALUE(sChildUpgrades[i]) - 1) == ITEM_GAUNTLETS_SILVER ||
|
((sChildUpgradeItemBases[i] + CUR_UPG_VALUE(sChildUpgrades[i]) - 1) == ITEM_GAUNTLETS_SILVER ||
|
||||||
(sChildUpgradeItemBases[i] + CUR_UPG_VALUE(sChildUpgrades[i]) - 1) == ITEM_GAUNTLETS_GOLD)) { // Grey Out the Gauntlets
|
(sChildUpgradeItemBases[i] + CUR_UPG_VALUE(sChildUpgrades[i]) - 1) == ITEM_GAUNTLETS_GOLD)) ||
|
||||||
|
(CVarGetInteger("gToggleStrength", 0) && CVarGetInteger("gStrengthDisabled", 0) && sChildUpgrades[i] == UPG_STRENGTH)) {
|
||||||
gDPSetGrayscaleColor(POLY_KAL_DISP++, 109, 109, 109, 255);
|
gDPSetGrayscaleColor(POLY_KAL_DISP++, 109, 109, 109, 255);
|
||||||
gSPGrayscale(POLY_KAL_DISP++, true);
|
gSPGrayscale(POLY_KAL_DISP++, true);
|
||||||
}
|
}
|
||||||
@ -688,9 +720,12 @@ void KaleidoScope_DrawEquipment(PlayState* play) {
|
|||||||
KaleidoScope_DrawQuadTextureRGBA32(play->state.gfxCtx, gItemIcons[sChildUpgradeItemBases[i] + CUR_UPG_VALUE(sChildUpgrades[i]) - 1], 32, 32, 0);
|
KaleidoScope_DrawQuadTextureRGBA32(play->state.gfxCtx, gItemIcons[sChildUpgradeItemBases[i] + CUR_UPG_VALUE(sChildUpgrades[i]) - 1], 32, 32, 0);
|
||||||
gSPGrayscale(POLY_KAL_DISP++, false);
|
gSPGrayscale(POLY_KAL_DISP++, false);
|
||||||
} else if (CUR_UPG_VALUE(sAdultUpgrades[i]) != 0) {
|
} else if (CUR_UPG_VALUE(sAdultUpgrades[i]) != 0) {
|
||||||
if (drawGreyItems &&
|
// Grey Out the Goron Bracelet when Not Randomized
|
||||||
((sAdultUpgradeItemBases[i] + CUR_UPG_VALUE(sAdultUpgrades[i]) - 1) == ITEM_BRACELET &&
|
// Grey Out Strength Upgrades when Disabled and the Toggle Option is on
|
||||||
!(IS_RANDO))) { // Grey Out the Goron Bracelet when Not Randomized
|
if ((drawGreyItems &&
|
||||||
|
(((sAdultUpgradeItemBases[i] + CUR_UPG_VALUE(sAdultUpgrades[i]) - 1) == ITEM_BRACELET &&
|
||||||
|
!(IS_RANDO)))) ||
|
||||||
|
(CVarGetInteger("gToggleStrength", 0) && CVarGetInteger("gStrengthDisabled", 0) && sAdultUpgrades[i] == UPG_STRENGTH)) {
|
||||||
gDPSetGrayscaleColor(POLY_KAL_DISP++, 109, 109, 109, 255);
|
gDPSetGrayscaleColor(POLY_KAL_DISP++, 109, 109, 109, 255);
|
||||||
gSPGrayscale(POLY_KAL_DISP++, true);
|
gSPGrayscale(POLY_KAL_DISP++, true);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user