-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.lua
176 lines (157 loc) · 7.37 KB
/
settings.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
dofile("data/scripts/lib/mod_settings.lua") -- see this file for documentation on some of the features.
-- This file can't access other files from this or other mods in all circumstances.
-- Settings will be automatically saved.
-- Settings don't have access unsafe lua APIs.
-- Use ModSettingGet() in the game to query settings.
-- For some settings (for example those that affect world generation) you might want to retain the current value until a certain point, even
-- if the player has changed the setting while playing.
-- To make it easy to define settings like that, each setting has a "scope" (e.g. MOD_SETTING_SCOPE_NEW_GAME) that will define when the changes
-- will actually become visible via ModSettingGet(). In the case of MOD_SETTING_SCOPE_NEW_GAME the value at the start of the run will be visible
-- until the player starts a new game.
-- ModSettingSetNextValue() will set the buffered value, that will later become visible via ModSettingGet(), unless the setting scope is MOD_SETTING_SCOPE_RUNTIME.
function mod_setting_bool_custom( mod_id, gui, in_main_menu, im_id, setting )
local value = ModSettingGetNextValue( mod_setting_get_id(mod_id,setting) )
local text = setting.ui_name .. " - " .. GameTextGet( value and "$option_on" or "$option_off" )
if GuiButton( gui, im_id, mod_setting_group_x_offset, 0, text ) then
ModSettingSetNextValue( mod_setting_get_id(mod_id,setting), not value, false )
end
mod_setting_tooltip( mod_id, gui, in_main_menu, setting )
end
function mod_setting_change_callback( mod_id, gui, in_main_menu, setting, old_value, new_value )
print( tostring(new_value) )
end
local mod_id = "dextrome_summon_spells" -- This should match the name of your mod's folder.
mod_settings_version = 1 -- This is a magic global that can be used to migrate settings to new mod versions. call mod_settings_get_version() before mod_settings_update() to get the old value.
mod_settings =
{
{
category_id = "group_of_settings",
ui_name = "SPELLS",
ui_description = "Toggle certain spells on/off",
settings = {
{
id = "summon_egg_frog_enabled",
ui_name = "Summon Frog Egg",
ui_description = "Summon Frog Egg",
value_default = true,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
{
id = "summon_egg_tappura_enabled",
ui_name = "Summon Tapura Egg",
ui_description = "Summon Tapura Egg",
value_default = true,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
{
id = "summon_egg_support_enabled",
ui_name = "Summon Support Egg",
ui_description = "Summon Support Egg",
value_default = true,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
{
id = "summon_egg_passive_enabled",
ui_name = "Summon Passive Egg",
ui_description = "Summon Passive Egg",
value_default = true,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
{
id = "summon_egg_hamis_enabled",
ui_name = "Summon Hamis Egg",
ui_description = "Summon Hamis Egg",
value_default = true,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
{
id = "summon_egg_bigslime_enabled",
ui_name = "Summon Big Slime Egg",
ui_description = "Summon Big Slime Egg",
value_default = true,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
{
id = "summon_egg_skull_enabled",
ui_name = "Summon Skull Egg (experimental)",
ui_description = "Summon Skull Egg",
value_default = false,
scope = MOD_SETTING_SCOPE_RUNTIME,
},
},
},
-- {
-- category_id = "group_of_settings2",
-- ui_name = "CHARM EFFECT",
-- ui_description = "Some settings for the charm effect graphics",
-- settings = {
-- {
-- id = "charm_effect_size",
-- ui_name = "Size",
-- ui_description = "Heart Size",
-- value_default = 75,
-- value_min = 25,
-- value_max = 100,
-- value_display_multiplier = 1,
-- value_display_formatting = " $0 %",
-- scope = MOD_SETTING_SCOPE_RUNTIME,
-- },
-- },
-- },
}
-- This function is called to ensure the correct setting values are visible to the game via ModSettingGet(). your mod's settings don't work if you don't have a function like this defined in settings.lua.
-- This function is called:
-- - when entering the mod settings menu (init_scope will be MOD_SETTINGS_SCOPE_ONLY_SET_DEFAULT)
-- - before mod initialization when starting a new game (init_scope will be MOD_SETTING_SCOPE_NEW_GAME)
-- - when entering the game after a restart (init_scope will be MOD_SETTING_SCOPE_RESTART)
-- - at the end of an update when mod settings have been changed via ModSettingsSetNextValue() and the game is unpaused (init_scope will be MOD_SETTINGS_SCOPE_RUNTIME)
function ModSettingsUpdate( init_scope )
local old_version = mod_settings_get_version( mod_id ) -- This can be used to migrate some settings between mod versions.
mod_settings_update( mod_id, mod_settings, init_scope )
end
-- This function should return the number of visible setting UI elements.
-- Your mod's settings wont be visible in the mod settings menu if this function isn't defined correctly.
-- If your mod changes the displayed settings dynamically, you might need to implement custom logic.
-- The value will be used to determine whether or not to display various UI elements that link to mod settings.
-- At the moment it is fine to simply return 0 or 1 in a custom implementation, but we don't guarantee that will be the case in the future.
-- This function is called every frame when in the settings menu.
function ModSettingsGuiCount()
return mod_settings_gui_count( mod_id, mod_settings )
end
-- This function is called to display the settings UI for this mod. Your mod's settings wont be visible in the mod settings menu if this function isn't defined correctly.
function ModSettingsGui( gui, in_main_menu )
mod_settings_gui( mod_id, mod_settings, gui, in_main_menu )
--example usage:
--[[
local im_id = 124662 -- NOTE: ids should not be reused like we do below
GuiLayoutBeginLayer( gui )
GuiLayoutBeginHorizontal( gui, 10, 50 )
GuiImage( gui, im_id + 12312535, 0, 0, "data/particles/shine_07.xml", 1, 1, 1, 0, GUI_RECT_ANIMATION_PLAYBACK.PlayToEndAndPause )
GuiImage( gui, im_id + 123125351, 0, 0, "data/particles/shine_04.xml", 1, 1, 1, 0, GUI_RECT_ANIMATION_PLAYBACK.PlayToEndAndPause )
GuiLayoutEnd( gui )
GuiBeginAutoBox( gui )
GuiZSet( gui, 10 )
GuiZSetForNextWidget( gui, 11 )
GuiText( gui, 50, 50, "Gui*AutoBox*")
GuiImage( gui, im_id, 50, 60, "data/ui_gfx/game_over_menu/game_over.png", 1, 1, 0 )
GuiZSetForNextWidget( gui, 13 )
GuiImage( gui, im_id, 60, 150, "data/ui_gfx/game_over_menu/game_over.png", 1, 1, 0 )
GuiZSetForNextWidget( gui, 12 )
GuiEndAutoBoxNinePiece( gui )
GuiZSetForNextWidget( gui, 11 )
GuiImageNinePiece( gui, 12368912341, 10, 10, 80, 20 )
GuiText( gui, 15, 15, "GuiImageNinePiece")
GuiBeginScrollContainer( gui, 1233451, 500, 100, 100, 100 )
GuiLayoutBeginVertical( gui, 0, 0 )
GuiText( gui, 10, 0, "GuiScrollContainer")
GuiImage( gui, im_id, 10, 0, "data/ui_gfx/game_over_menu/game_over.png", 1, 1, 0 )
GuiImage( gui, im_id, 10, 0, "data/ui_gfx/game_over_menu/game_over.png", 1, 1, 0 )
GuiImage( gui, im_id, 10, 0, "data/ui_gfx/game_over_menu/game_over.png", 1, 1, 0 )
GuiImage( gui, im_id, 10, 0, "data/ui_gfx/game_over_menu/game_over.png", 1, 1, 0 )
GuiLayoutEnd( gui )
GuiEndScrollContainer( gui )
local c,rc,hov,x,y,w,h = GuiGetPreviousWidgetInfo( gui )
print( tostring(c) .. " " .. tostring(rc) .." " .. tostring(hov) .." " .. tostring(x) .." " .. tostring(y) .." " .. tostring(w) .." ".. tostring(h) )
GuiLayoutEndLayer( gui )
]]--
end