Divergent/mods/Anomaly Magazines Redux/gamedata/scripts/ammo_check_mcm.script

321 lines
12 KiB
Plaintext
Raw Normal View History

2024-03-17 20:18:03 -04:00
-- AmmoCheck
-- Last modified: 2022.08.17
-- https://github.com/RAX-Anomaly/AmmoCheck
-- settings--
local use_clr = false
local hide_counter = true
local hide_ammo_icon = true
local busy_hands_fix = false
local mcm_key = DIK_keys.DIK_T
-- locals --
local clr00_Red = GetARGB(0xff, 0xff, 0x00, 0x00)
local clr01_RedOrange = GetARGB(0xff, 0xff, 0x40, 0x00)
local clr02_Orange = GetARGB(0xff, 0xff, 0x80, 0x00)
local clr03_Amber = GetARGB(0xff, 0xff, 0xc0, 0x00)
local clr04_LemonGlacier = GetARGB(0xff, 0xff, 0xff, 0x00)
local clr05_LaserLemon = GetARGB(0xff, 0xff, 0xff, 0x80)
local clr06_White = GetARGB(0xff, 0xff, 0xff, 0xff)
local clrEE_Purple = utils_xml.get_color("d_purple", true)
-- the misalignment of the colors and the text means 2x the info without 2x the text.
local messages = {
{ m = "st_ac_near_empty", c = clr00_Red }, -- <1/10
{ m = "st_ac_near_empty", c = clr01_RedOrange }, -- <2/10
{ m = "st_ac_less_half", c = clr01_RedOrange }, -- <3/10
{ m = "st_ac_less_half", c = clr02_Orange }, -- <4/10
{ m = "st_ac_about_half", c = clr02_Orange }, -- <5/10
{ m = "st_ac_about_half", c = clr03_Amber }, -- <6/10
{ m = "st_ac_more_half", c = clr03_Amber }, -- <7/10
{ m = "st_ac_more_half", c = clr04_LemonGlacier }, -- <8/10
{ m = "st_ac_nearly_full", c = clr04_LemonGlacier }, -- <9/10
{ m = "st_ac_nearly_full", c = clr05_LaserLemon }, -- <10/10
{ m = "st_ac_full", c = clr06_White } -- full
}
local dbg_log
function print_dbg(msg, ...)
if not mcm_log then
printf("![AC] " .. msg, ...)
elseif not ui_mcm.MCM_DEBUG then -- use MCM's debug log setting
return
else
if not dbg_log then
dbg_log = mcm_log.new("![AC]")
dbg_log.enabled = true
end
if dbg_log then dbg_log:log(msg, ...) end
end
end
function null_function()
return false
end
function get_mag_loaded_shim(id)
give_news("You are using an older version of MagsRedux. Update to Github version for best experience.")
local mag_data = get_data(id)
return (mag_data and mag_data.section ~= "no_mag") and mag_data or nil
end
local mcm_keybinds = ui_mcm and ui_mcm.key_hold
local modifier = 0
local mode = 0
local modes = {
[0] = { ["call"] = { "on_key_press", "on_key_hold" }, ["function"] = function(key) ui_mcm.simple_press("rax_ammo_check", key, check_Ammo) end },
[1] = { ["call"] = { "on_key_press", "on_key_hold" }, ["function"] = function(key) if ui_mcm.double_tap("rax_ammo_check", key) then check_Ammo() end end },
[2] = { ["call"] = { "on_key_hold", "on_key_press" }, ["function"] = function(key) if ui_mcm.key_hold("rax_ammo_check", key) then check_Ammo() end end }
}
local direction_keys = {
[key_bindings.kFWD] = true,
[key_bindings.kBACK] = true,
[key_bindings.kL_STRAFE] = true,
[key_bindings.kACCEL] = true,
[key_bindings.kR_STRAFE] = true
}
local weapon_hidden = false
function on_key_press(key)
-- do not interrupt if directional key pressed
local bind = dik_to_bind(key)
if weapon_hidden and not direction_keys[bind] then
weapon_hidden = false
end
if key ~= mcm_key then return end
if not mcm_keybinds then
check_Ammo()
return
end
if ui_mcm.get_mod_key(modifier) then
modes[mode]["function"](key)
end
end
function on_key_hold(key)
if key ~= mcm_key then return end
if ui_mcm.get_mod_key(modifier) then
modes[mode]["function"](key)
end
end
function l_round(value)
local min = math.floor(value + 0.5)
return min
end
function on_game_start()
-- aliases--
gc = game.translate_string
if magazine_binder then
get_data = magazine_binder.get_data
set_data = magazine_binder.set_data
get_mag_loaded = magazine_binder.get_mag_loaded or get_mag_loaded_shim -- get_mag_loaded does not exist in moddb version. MagsRedux needs update.
is_supported_weapon = magazine_binder.is_supported_weapon
is_jammed_weapon = magazines.is_jammed_weapon
get_sec_chambered = magazines.get_sec_chambered
print_dbg("MagsRedux installed. Working in integrated mode.")
else
get_data = null_function -- Should not be called, just in case.
set_data = null_function -- Should not be called, just in case.
is_supported_weapon = null_function -- Always returns false, meaning none of the weapons are supported, fall back on vanilla ammo handling.
get_mag_loaded = null_function -- There is never a loaded magazine in vanilla.
is_jammed_weapon = null_function -- Sadly, standalone mode does not report weapon jams for now.
get_sec_chambered = null_function -- No "one-in-the-chamber" feature in vanilla.
print_dbg("MagsRedux not found. Working in standalone mode.")
end
RegisterScriptCallback("actor_on_first_update", actor_on_first_update)
RegisterScriptCallback("on_option_change", on_option_change)
RegisterScriptCallback("on_option_change", on_option_change)
RegisterScriptCallback("on_key_press", on_key_press)
end
-- Script Callbacks --
function on_mcm_load()
ch_options = {
id = "rax_ammo_check",
sh = true,
gr = {
{ id = "ammo_check", type = "slide", link = "ui_options_slider_player", text = "ui_mm_title_rax_ammo_check", size = { 512, 50 }, spacing = 20 },
{ id = "usecolor", type = "check", val = 1, def = false },
{ id = "hidecounter", type = "check", val = 1, def = true },
{ id = "hideicon", type = "check", val = 1, def = true },
{ id = "busy_hands_fix", type = "check", val = 1, def = false },
{ id = "keybind", type = "key_bind", val = 2, def = DIK_keys.DIK_F },
{ id = "modifier", type = ui_mcm.kb_mod_radio, val = 2, def = 0, hint = "mcm_kb_modifier", content = { { 0, "mcm_kb_mod_none" }, { 1, "mcm_kb_mod_shift" }, { 3, "mcm_kb_mod_alt" } } }, --I removed control from the list, note the values of the other options were unchanged.
{ id = "mode", type = ui_mcm.kb_mod_radio, val = 2, def = 2, hint = "mcm_kb_mode", content = { { 0, "mcm_kb_mode_press" }, { 1, "mcm_kb_mode_dtap" }, { 2, "mcm_kb_mode_hold" } } },
{ id = "desc_mcm", type = "desc", text = "ui_mcm_rax_ammo_check_update_mcm", clr = { 255, 175, 0, 0 }, precondition = { function() return not mcm_keybinds end } },
}
}
return ch_options
end
function actor_on_first_update()
on_option_change()
end
function on_option_change()
if ui_mcm then
hide_counter = ui_mcm.get("rax_ammo_check/hidecounter")
use_clr = ui_mcm.get("rax_ammo_check/usecolor")
hide_ammo_icon = ui_mcm.get("rax_ammo_check/hideicon")
busy_hands_fix = ui_mcm.get("rax_ammo_check/busy_hands_fix")
if mcm_keybinds then
mcm_key = ui_mcm.get("rax_ammo_check/keybind")
mode = ui_mcm.get("rax_ammo_check/mode")
modifier = ui_mcm.get("rax_ammo_check/modifier")
RegisterScriptCallback(modes[mode]["call"][1], this[modes[mode]["call"][1]])
UnregisterScriptCallback(modes[mode]["call"][2], this[modes[mode]["call"][2]])
end
end
pos = ActorMenu.get_maingame().m_ui_hud_states.m_ui_weapon_cur_ammo:GetWndPos()
pos.x = ((hide_counter and pos.x > 0) or ((not hide_counter) and pos.x < 0)) and (-1 * pos.x) or pos.x
ActorMenu.get_maingame().m_ui_hud_states.m_ui_weapon_cur_ammo:SetWndPos(pos)
pos = ActorMenu.get_maingame().m_ui_hud_states.m_ui_weapon_icon:GetWndPos()
pos.x = ((hide_ammo_icon and pos.x > 0) or ((not hide_ammo_icon) and pos.x < 0)) and (-1 * pos.x) or pos.x
ActorMenu.get_maingame().m_ui_hud_states.m_ui_weapon_icon:SetWndPos(pos)
end
-- Main function --
function checkAmmo() end --crash prevention for dirty updates.
function check_Ammo()
local weapon = db.actor:active_item()
-- ends if no weapon is in hand etc.
if (weapon == nil or (not IsWeapon(weapon)) or IsItem("fake_ammo_wpn", nil, weapon)) then
return
end
local weaponId = weapon:id()
local message = ""
local clr = nil
local currentState = weapon:get_state()
if not (currentState == 0 or weapon:weapon_in_grenade_mode()) then
return
end
-- if magazine weapon
local currentAmmo = weapon:get_ammo_in_magazine()
if (currentAmmo == nil) then
return
end
local sec = weapon:section()
local mag_data = get_mag_loaded(weaponId)
-- empty/gl use cases
if (is_jammed_weapon(weapon)) then
message = gc("st_ac_jammed")
clr = use_clr and clr00_Red or nil
elseif weapon:weapon_in_grenade_mode() then
message = currentAmmo == 1 and gc("st_ac_grenade") or gc("st_ac_empty")
clr = use_clr and (currentAmmo == 1 and clr06_White or clr00_Red) -- grenade or no grenade that is the question
elseif currentAmmo == 0 then
if is_supported_weapon(sec) and not mag_data then
message = gc("st_ac_noMag")
clr = use_clr and clr00_Red or nil
else
message = gc("st_ac_empty")
clr = use_clr and clr00_Red or nil
end
else
local top_round = nil
local max_ammo = 0
if not mag_data and is_supported_weapon(sec) then
-- some random crap to force it to say oitc
currentAmmo = 1
max_ammo = 10
elseif is_supported_weapon(sec) then
print_dbg("checking for section %s", mag_data.section)
max_ammo = SYS_GetParam(2, mag_data.section, "max_mag_size")
top_round = magazines_mcm.get_config("retain_round") and mag_data.loaded[#mag_data.loaded - 1] or stack.peek(mag_data.loaded)
else
top_round = get_sec_chambered(weapon)
max_ammo = SYS_GetParam(2, sec, "ammo_mag_size")
end
local curAmmoPerc = currentAmmo / max_ammo
if currentAmmo == max_ammo + 1 then
message = gc("st_ac_plus1")
clr = use_clr and clr06_White -- fullest
elseif (curAmmoPerc > 1) then
message = gc("st_ac_overfull")
clr = clrEE_Purple -- always colored this is an error.
elseif (currentAmmo == 1 and SYS_GetParam(2, sec, "ammo_mag_size", 0) == 2) then
message = gc("st_ac_just_one")
clr = use_clr and clr03_Amber -- last shell in double-barreled shotty
elseif currentAmmo == 1 and not mag_data and is_supported_weapon(sec) then
message = gc("st_ac_oitc")
clr = use_clr and clr00_Red -- last round in the chamber with no maggie
else
idx = l_round((curAmmoPerc * 10) + .5) -- gives an integer value n for the decile of curAmmoPerc and 11 for full.
print_dbg("IDX is %s %s %s %s", idx, curAmmoPerc, currentAmmo, max_ammo)
message = messages[idx] and gc(messages[idx].m) or "Error!"
clr = use_clr and messages[idx] and messages[idx].c or nil
end
if curAmmoPerc > 0 and top_round then
message = message .. ", " .. gc(ui_item.get_sec_short_name(top_round))
end
end
disable_info("sleep_active")
if not busy_hands_fix then
local slot = db.actor:active_slot()
db.actor:activate_slot(0)
weapon_hidden = true
CreateTimeEvent("ammo_check", "restore Weapon", 0, function(slot)
if db.actor:active_item() then
return false
end
if not weapon_hidden then
db.actor:activate_slot(slot)
weapon_hidden = false
return true
end
actor_menu.set_msg(1, message, 2, clr)
db.actor:activate_slot(slot)
return true
end
, slot)
else
CreateTimeEvent("ammo_check", "message delay", 1.5, function()
actor_menu.set_msg(1, message, 2, clr)
return true
end)
end
end
local old_news = {}
function give_news(message)
if old_news[message] then return end
old_news[message] = true
print_dbg(message)
if db.actor then
db.actor:give_game_news("AmmoCheck", message, "ui_inGame2_D_Ohotnik_na_mutantov", 0, 5000, 0)
end
end