forked from SilverStudioGames/WTS
Mods loader
* Simplified and improved mods loading process by utilising the newly added include_module method * Added sanity checks for mods toggles * Added scripts list to mods list dict * Added ToggleMod action * Require restart to load mods * Fixed mods not loading at certain times
This commit is contained in:
parent
c03a75eb4b
commit
7819207253
@ -9,12 +9,15 @@ screen mods():
|
|||||||
default selection = next(iter(mods_list.keys()))
|
default selection = next(iter(mods_list.keys()))
|
||||||
default checkbox_enabled = gui.theme("check_true")
|
default checkbox_enabled = gui.theme("check_true")
|
||||||
default checkbox_disabled = gui.theme("check_false")
|
default checkbox_disabled = gui.theme("check_false")
|
||||||
|
default mods_enabled_now = set(persistent.mods_enabled)
|
||||||
|
$ awaits_restart = bool(mods_enabled_now != persistent.mods_enabled)
|
||||||
|
|
||||||
fixed:
|
fixed:
|
||||||
|
|
||||||
## The grid of file slots.
|
## The grid of file slots.
|
||||||
hbox:
|
hbox:
|
||||||
spacing 5
|
spacing 5
|
||||||
|
|
||||||
vpgrid:
|
vpgrid:
|
||||||
cols 1
|
cols 1
|
||||||
scrollbars "vertical"
|
scrollbars "vertical"
|
||||||
@ -37,8 +40,9 @@ screen mods():
|
|||||||
$ enabled = bool(name in persistent.mods_enabled)
|
$ enabled = bool(name in persistent.mods_enabled)
|
||||||
$ selected = (name == selection)
|
$ selected = (name == selection)
|
||||||
|
|
||||||
|
|
||||||
if selected:
|
if selected:
|
||||||
$ action = Function(toggle_mod, name)
|
$ action = ToggleMod(name)
|
||||||
else:
|
else:
|
||||||
$ action = SetScreenVariable("selection", name)
|
$ action = SetScreenVariable("selection", name)
|
||||||
|
|
||||||
@ -70,6 +74,8 @@ screen mods():
|
|||||||
else:
|
else:
|
||||||
add checkbox_disabled align (0.95, 0.5)
|
add checkbox_disabled align (0.95, 0.5)
|
||||||
|
|
||||||
|
if awaits_restart:
|
||||||
|
text "Awaiting game restart to apply changes..."
|
||||||
|
|
||||||
frame:
|
frame:
|
||||||
style gui.theme("frame")
|
style gui.theme("frame")
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user