76 lines
2.2 KiB
Lua
76 lines
2.2 KiB
Lua
require 'cartomancer.init'
|
|
|
|
Cartomancer.path = assert(
|
|
Cartomancer.find_self('cartomancer.lua'),
|
|
"Failed to find mod folder. Make sure that `Cartomancer` folder has `cartomancer.lua` file!"
|
|
)
|
|
|
|
Cartomancer.load_mod_file('internal/config.lua', 'internal.config')
|
|
Cartomancer.load_mod_file('internal/atlas.lua', 'internal.atlas')
|
|
Cartomancer.load_mod_file('internal/ui.lua', 'internal.ui')
|
|
Cartomancer.load_mod_file('internal/keybinds.lua', 'internal.keybinds')
|
|
|
|
Cartomancer.load_mod_file('core/view-deck.lua', 'core.view-deck')
|
|
Cartomancer.load_mod_file('core/flames.lua', 'core.flames')
|
|
Cartomancer.load_mod_file('core/optimizations.lua', 'core.optimizations')
|
|
Cartomancer.load_mod_file('core/jokers.lua', 'core.jokers')
|
|
Cartomancer.load_mod_file('core/hand.lua', 'core.hand')
|
|
|
|
Cartomancer.load_config()
|
|
|
|
Cartomancer.INTERNAL_jokers_menu = false
|
|
|
|
-- TODO dedicated keybinds file? keybinds need to load after config
|
|
Cartomancer.register_keybind {
|
|
name = 'hide_joker',
|
|
func = function (controller)
|
|
Cartomancer.hide_hovered_joker(controller)
|
|
end
|
|
}
|
|
|
|
Cartomancer.register_keybind {
|
|
name = 'toggle_tags',
|
|
func = function (controller)
|
|
Cartomancer.SETTINGS.hide_tags = not Cartomancer.SETTINGS.hide_tags
|
|
Cartomancer.update_tags_visibility()
|
|
end
|
|
}
|
|
|
|
Cartomancer.register_keybind {
|
|
name = 'toggle_consumables',
|
|
func = function (controller)
|
|
Cartomancer.SETTINGS.hide_consumables = not Cartomancer.SETTINGS.hide_consumables
|
|
end
|
|
}
|
|
|
|
Cartomancer.register_keybind {
|
|
name = 'toggle_deck',
|
|
func = function (controller)
|
|
Cartomancer.SETTINGS.hide_deck = not Cartomancer.SETTINGS.hide_deck
|
|
end
|
|
}
|
|
|
|
Cartomancer.register_keybind {
|
|
name = 'toggle_jokers',
|
|
func = function (controller)
|
|
if not (G and G.jokers) then
|
|
return
|
|
end
|
|
G.jokers.cart_hide_all = not G.jokers.cart_hide_all
|
|
|
|
if G.jokers.cart_hide_all then
|
|
Cartomancer.hide_all_jokers()
|
|
else
|
|
Cartomancer.show_all_jokers()
|
|
end
|
|
Cartomancer.align_G_jokers()
|
|
end
|
|
}
|
|
|
|
Cartomancer.register_keybind {
|
|
name = 'toggle_jokers_buttons',
|
|
func = function (controller)
|
|
Cartomancer.SETTINGS.jokers_controls_buttons = not Cartomancer.SETTINGS.jokers_controls_buttons
|
|
end
|
|
}
|