2018-08-09 02:26:43 +02:00
|
|
|
local Gui = require 'utils.gui'
|
|
|
|
local Global = require 'utils.global'
|
|
|
|
local Event = require 'utils.event'
|
2019-01-30 05:52:43 +02:00
|
|
|
local Donator = require 'features.donator'
|
|
|
|
local Rank = require 'features.rank_system'
|
2018-09-23 00:25:13 +02:00
|
|
|
local Game = require 'utils.game'
|
2018-12-19 15:56:02 +02:00
|
|
|
local PlayerRewards = require 'utils.player_rewards'
|
2019-01-04 15:45:37 +02:00
|
|
|
local Server = require 'features.server'
|
|
|
|
local Token = require 'utils.token'
|
2019-01-30 05:52:43 +02:00
|
|
|
local Color = require 'resources.color_presets'
|
2019-01-25 18:32:49 +02:00
|
|
|
|
2018-12-19 15:56:02 +02:00
|
|
|
local format = string.format
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
local config = global.config
|
|
|
|
local config_mapinfo = config.map_info
|
|
|
|
local config_prewards = config.player_rewards
|
|
|
|
|
2018-12-29 19:39:20 +02:00
|
|
|
local normal_color = Color.white
|
|
|
|
local focus_color = Color.dark_orange
|
2019-02-27 23:16:46 +02:00
|
|
|
local unfocus_color = Color.black
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-12-19 15:56:02 +02:00
|
|
|
local reward_amount = 2
|
|
|
|
local reward_plural_indicator = reward_amount > 1 and 's' or ''
|
|
|
|
local reward_token = PlayerRewards.get_reward()
|
|
|
|
local info_tab_flags = {
|
|
|
|
0x1, -- welcome
|
|
|
|
0x2, -- rules
|
|
|
|
0x4, -- map_info
|
|
|
|
0x8, -- scenario_mods
|
2019-01-24 23:32:40 +02:00
|
|
|
0x10 -- whats_new
|
2018-12-19 15:56:02 +02:00
|
|
|
}
|
|
|
|
local flags_sum = 0
|
|
|
|
for _, v in pairs(info_tab_flags) do
|
|
|
|
flags_sum = flags_sum + v
|
|
|
|
end
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
local map_name_key = 1
|
|
|
|
local map_description_key = 2
|
|
|
|
local map_extra_info_key = 3
|
|
|
|
local new_info_key = 4
|
|
|
|
|
2018-12-19 15:56:02 +02:00
|
|
|
local rewarded_players = {}
|
2019-01-25 18:45:58 +02:00
|
|
|
local primitives = {
|
|
|
|
map_extra_info_lock = nil,
|
|
|
|
info_edited = nil
|
|
|
|
}
|
2018-11-13 01:30:30 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
local editable_info = {
|
2019-01-25 18:32:49 +02:00
|
|
|
[map_name_key] = config_mapinfo.map_name_key,
|
|
|
|
[map_description_key] = config_mapinfo.map_description_key,
|
|
|
|
[map_extra_info_key] = config_mapinfo.map_extra_info_key,
|
|
|
|
[new_info_key] = config_mapinfo.new_info_key
|
2018-08-10 22:30:55 +02:00
|
|
|
}
|
2018-08-09 02:26:43 +02:00
|
|
|
|
|
|
|
Global.register(
|
2018-08-10 22:30:55 +02:00
|
|
|
{
|
2018-12-19 15:56:02 +02:00
|
|
|
rewarded_players = rewarded_players,
|
|
|
|
editable_info = editable_info,
|
2019-02-13 01:45:27 +02:00
|
|
|
primitives = primitives
|
2018-08-10 22:30:55 +02:00
|
|
|
},
|
2018-08-09 02:26:43 +02:00
|
|
|
function(tbl)
|
2018-12-19 15:56:02 +02:00
|
|
|
rewarded_players = tbl.rewarded_players
|
2018-08-12 22:03:50 +02:00
|
|
|
editable_info = tbl.editable_info
|
2019-01-25 18:45:58 +02:00
|
|
|
primitives = tbl.primitives
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
)
|
|
|
|
|
2019-01-24 23:32:40 +02:00
|
|
|
--- Sets the "new info" according to the changelog located on the server
|
2019-01-25 18:23:06 +02:00
|
|
|
local function process_changelog(data)
|
|
|
|
local key = data.key
|
|
|
|
if key ~= 'changelog' then
|
|
|
|
return
|
2019-01-24 23:32:40 +02:00
|
|
|
end
|
2019-01-25 18:23:06 +02:00
|
|
|
|
|
|
|
local value = data.value -- will be nil if no data
|
|
|
|
if value then
|
|
|
|
editable_info[new_info_key] = value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local changelog_callback = Token.register(process_changelog)
|
2019-01-24 23:32:40 +02:00
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
local function prepare_title()
|
2019-02-27 17:57:17 +02:00
|
|
|
local welcome_title =
|
|
|
|
[[
|
2018-08-09 02:26:43 +02:00
|
|
|
111111 1111111 111111 111 111 1111111 11 11
|
|
|
|
11 11 11 11 11 1111 1111 11 11 11
|
|
|
|
111111 11111 11 11 11 1111 11 11111 11 1 11
|
|
|
|
11 11 11 11 11 11 11 11 11 11 111 11
|
|
|
|
11 11 1111111 111111 11 11 1111111 111 111
|
|
|
|
]]
|
|
|
|
|
|
|
|
local row = {}
|
|
|
|
local welcome_title2 = {row}
|
|
|
|
local row_index = 1
|
|
|
|
local column_index = 1
|
|
|
|
|
|
|
|
local max = 0
|
|
|
|
for i = 1, #welcome_title do
|
|
|
|
local char = welcome_title:sub(i, i)
|
|
|
|
if char == '\n' then
|
|
|
|
row_index = row_index + 1
|
|
|
|
row = {}
|
|
|
|
welcome_title2[row_index] = row
|
|
|
|
|
|
|
|
max = math.max(max, column_index - 1)
|
|
|
|
|
|
|
|
column_index = 1
|
|
|
|
elseif char == '1' then
|
|
|
|
row[column_index] = true
|
|
|
|
column_index = column_index + 1
|
|
|
|
elseif char == ' ' then
|
|
|
|
row[column_index] = false
|
|
|
|
column_index = column_index + 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return welcome_title2, max
|
2017-06-13 13:16:07 +02:00
|
|
|
end
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
local title, title_max = prepare_title()
|
|
|
|
|
|
|
|
local main_button_name = Gui.uid_name()
|
|
|
|
local main_frame_name = Gui.uid_name()
|
|
|
|
local tab_button_name = Gui.uid_name()
|
2018-08-10 22:30:55 +02:00
|
|
|
local editable_textbox_name = Gui.uid_name()
|
2018-08-09 02:26:43 +02:00
|
|
|
|
|
|
|
local function line_bar(parent)
|
|
|
|
local bar = parent.add {type = 'progressbar', value = 1}
|
|
|
|
local style = bar.style
|
|
|
|
style.color = normal_color
|
|
|
|
style.horizontally_stretchable = true
|
|
|
|
end
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
local function centered_label(parent, string)
|
|
|
|
local flow = parent.add {type = 'flow'}
|
|
|
|
local flow_style = flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
flow_style.horizontal_align = 'center'
|
2018-08-12 22:03:50 +02:00
|
|
|
flow_style.horizontally_stretchable = true
|
|
|
|
|
|
|
|
local label = flow.add {type = 'label', caption = string}
|
|
|
|
local label_style = label.style
|
2019-02-27 17:57:17 +02:00
|
|
|
label_style.horizontal_align = 'center'
|
2018-08-12 22:03:50 +02:00
|
|
|
label_style.single_line = false
|
|
|
|
|
|
|
|
return label
|
|
|
|
end
|
|
|
|
|
|
|
|
local function header_label(parent, string)
|
|
|
|
local flow = parent.add {type = 'flow'}
|
|
|
|
local flow_style = flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
flow_style.horizontal_align = 'center'
|
2018-08-12 22:03:50 +02:00
|
|
|
flow_style.horizontally_stretchable = true
|
|
|
|
|
|
|
|
local label = flow.add {type = 'label', caption = string}
|
|
|
|
local label_style = label.style
|
2019-02-27 17:57:17 +02:00
|
|
|
label_style.horizontal_align = 'center'
|
2018-08-12 22:03:50 +02:00
|
|
|
label_style.single_line = false
|
2019-02-26 19:36:20 +02:00
|
|
|
label_style.font = 'default-dialog-button'
|
2018-08-12 22:03:50 +02:00
|
|
|
|
|
|
|
return label
|
|
|
|
end
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
local pages = {
|
|
|
|
{
|
2018-12-19 15:56:02 +02:00
|
|
|
tab_button = function(parent)
|
2018-08-09 02:26:43 +02:00
|
|
|
local button = parent.add {type = 'button', name = tab_button_name, caption = 'Welcome'}
|
|
|
|
return button
|
|
|
|
end,
|
2018-12-19 15:56:02 +02:00
|
|
|
content = function(parent)
|
2018-08-12 22:03:50 +02:00
|
|
|
local parent_style = parent.style
|
2019-02-27 17:57:17 +02:00
|
|
|
parent_style.right_padding = 0
|
|
|
|
parent_style.left_padding = 0
|
|
|
|
parent_style.top_padding = 1
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
parent =
|
2018-08-09 02:26:43 +02:00
|
|
|
parent.add {
|
2018-08-12 22:03:50 +02:00
|
|
|
type = 'scroll-pane',
|
|
|
|
vertical_scroll_policy = 'auto-and-reserve-space',
|
|
|
|
horizontal_scroll_policy = 'never'
|
2018-08-09 02:26:43 +02:00
|
|
|
}
|
2018-08-12 22:03:50 +02:00
|
|
|
parent_style = parent.style
|
2019-02-27 17:57:17 +02:00
|
|
|
parent_style.vertically_stretchable = false
|
2018-08-12 22:03:50 +02:00
|
|
|
|
2019-02-28 00:44:00 +02:00
|
|
|
header_label(parent, 'Welcome to Redmew!')
|
2018-08-12 22:03:50 +02:00
|
|
|
centered_label(
|
|
|
|
parent,
|
|
|
|
[[
|
2018-12-19 15:56:02 +02:00
|
|
|
Redmew is a community for players of all skill levels committed to pushing the limits of Factorio Multiplayer through custom scripts and crazy map designs.
|
2018-08-12 22:03:50 +02:00
|
|
|
|
2018-11-17 13:59:51 +02:00
|
|
|
We are a friendly bunch, our objective is to have as much fun as possible and we hope you will too.
|
|
|
|
]]
|
2018-08-12 22:03:50 +02:00
|
|
|
)
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-11-17 13:59:51 +02:00
|
|
|
header_label(parent, 'How To Chat')
|
2019-02-27 17:57:17 +02:00
|
|
|
centered_label(
|
|
|
|
parent,
|
|
|
|
[[
|
2018-11-17 13:59:51 +02:00
|
|
|
To chat with other players, press the "grave" key on your keyboard.
|
|
|
|
It is below the ESC key on English keyboards and looks like ~ or `
|
|
|
|
This can be changed in options -> controls -> "toggle lua console".
|
2019-02-27 17:57:17 +02:00
|
|
|
]]
|
|
|
|
)
|
2018-11-17 13:59:51 +02:00
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
if config_prewards.enabled and config_prewards.info_player_reward then
|
2019-02-27 17:57:17 +02:00
|
|
|
local string =
|
|
|
|
format(
|
|
|
|
'You have been given %s %s%s for looking at the welcome tab.\nChecking each tab will reward you %s more %s%s.\n',
|
|
|
|
reward_amount,
|
|
|
|
reward_token,
|
|
|
|
reward_plural_indicator,
|
|
|
|
reward_amount,
|
|
|
|
reward_token,
|
|
|
|
reward_plural_indicator
|
|
|
|
)
|
2018-12-19 15:56:02 +02:00
|
|
|
header_label(parent, 'Free Coins')
|
2019-01-25 18:24:13 +02:00
|
|
|
centered_label(parent, string)
|
2018-12-19 15:56:02 +02:00
|
|
|
end
|
2018-11-17 13:59:51 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
header_label(parent, 'Useful Links')
|
2018-11-17 13:59:51 +02:00
|
|
|
centered_label(parent, [[Check out our discord for new map info and to suggest new maps / ideas.]])
|
2018-08-09 02:26:43 +02:00
|
|
|
local discord_textbox_flow = parent.add {type = 'flow'}
|
|
|
|
local discord_textbox_flow_style = discord_textbox_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
discord_textbox_flow_style.horizontal_align = 'center'
|
2018-08-09 02:26:43 +02:00
|
|
|
discord_textbox_flow_style.horizontally_stretchable = true
|
2018-08-12 23:26:30 +02:00
|
|
|
discord_textbox_flow.add({type = 'label', caption = 'Discord: '}).style.font = 'default-bold'
|
2019-02-28 16:05:30 +02:00
|
|
|
local discord_textbox =
|
|
|
|
discord_textbox_flow.add {type = 'text-box', text = 'https://www.redmew.com/discord '}
|
2018-08-09 02:26:43 +02:00
|
|
|
discord_textbox.read_only = true
|
2019-02-28 16:05:30 +02:00
|
|
|
discord_textbox.style.width = 235
|
2019-02-27 17:57:17 +02:00
|
|
|
discord_textbox.style.height = 28
|
2018-08-12 23:26:30 +02:00
|
|
|
centered_label(parent, 'Contribute to our Patreon to receive special perks and help maintain our servers.')
|
2018-08-12 22:03:50 +02:00
|
|
|
local patreon_flow = parent.add {type = 'flow', direction = 'horizontal'}
|
|
|
|
local patreon_flow_style = patreon_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
patreon_flow_style.horizontal_align = 'center'
|
2018-08-12 22:03:50 +02:00
|
|
|
patreon_flow_style.horizontally_stretchable = true
|
2018-08-12 23:26:30 +02:00
|
|
|
patreon_flow.add({type = 'label', caption = 'Patreon:'}).style.font = 'default-bold'
|
2019-02-28 16:05:30 +02:00
|
|
|
local patreon_textbox = patreon_flow.add {type = 'text-box', text = 'https://www.patreon.com/redmew '}
|
2018-08-12 22:03:50 +02:00
|
|
|
patreon_textbox.read_only = true
|
2019-02-28 16:05:30 +02:00
|
|
|
patreon_textbox.style.width = 235
|
2019-02-27 17:57:17 +02:00
|
|
|
patreon_textbox.style.height = 28
|
2018-08-12 23:26:30 +02:00
|
|
|
centered_label(parent, 'Download our maps, start and finish state, from our website.')
|
|
|
|
local save_textbox_flow = parent.add {type = 'flow'}
|
|
|
|
local save_textbox_flow_style = save_textbox_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
save_textbox_flow_style.horizontal_align = 'center'
|
2018-08-12 23:26:30 +02:00
|
|
|
save_textbox_flow_style.horizontally_stretchable = true
|
|
|
|
save_textbox_flow.add({type = 'label', caption = 'Saves: '}).style.font = 'default-bold'
|
|
|
|
local save_textbox = save_textbox_flow.add {type = 'text-box', text = 'http://www.redmew.com/saves/ '}
|
|
|
|
save_textbox.read_only = true
|
2019-02-28 16:05:30 +02:00
|
|
|
save_textbox.style.width = 235
|
2019-02-27 17:57:17 +02:00
|
|
|
save_textbox.style.height = 28
|
2018-08-25 13:54:33 +02:00
|
|
|
centered_label(parent, 'View our past maps as a Google Map.')
|
|
|
|
local maps_textbox_flow = parent.add {type = 'flow'}
|
|
|
|
local maps_textbox_flow_style = maps_textbox_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
maps_textbox_flow_style.horizontal_align = 'center'
|
2018-08-25 13:54:33 +02:00
|
|
|
maps_textbox_flow_style.horizontally_stretchable = true
|
|
|
|
maps_textbox_flow.add({type = 'label', caption = 'Maps: '}).style.font = 'default-bold'
|
2019-02-27 17:57:17 +02:00
|
|
|
local maps_textbox =
|
|
|
|
maps_textbox_flow.add {type = 'text-box', text = 'https://factoriomaps.com/browse/redmew.html '}
|
2018-08-25 13:54:33 +02:00
|
|
|
maps_textbox.read_only = true
|
2019-02-28 16:05:30 +02:00
|
|
|
maps_textbox.style.width = 315
|
2019-02-27 17:57:17 +02:00
|
|
|
maps_textbox.style.height = 28
|
2018-08-25 13:54:33 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
parent.add({type = 'flow'}).style.height = 24
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
},
|
|
|
|
{
|
2018-12-19 15:56:02 +02:00
|
|
|
tab_button = function(parent)
|
2018-08-09 02:26:43 +02:00
|
|
|
local button = parent.add {type = 'button', name = tab_button_name, caption = 'Rules'}
|
|
|
|
return button
|
|
|
|
end,
|
2018-12-19 15:56:02 +02:00
|
|
|
content = function(parent)
|
2019-02-28 16:05:30 +02:00
|
|
|
local parent_style = parent.style
|
|
|
|
parent_style.right_padding = 0
|
|
|
|
parent_style.left_padding = 0
|
|
|
|
parent_style.top_padding = 1
|
|
|
|
|
|
|
|
parent =
|
|
|
|
parent.add {
|
|
|
|
type = 'flow',
|
|
|
|
direction = 'vertical'
|
|
|
|
}
|
|
|
|
parent_style = parent.style
|
|
|
|
parent_style.vertically_stretchable = false
|
|
|
|
parent_style.width = 600
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
header_label(parent, 'Rules')
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
centered_label(
|
|
|
|
parent,
|
|
|
|
[[
|
2018-08-12 23:26:30 +02:00
|
|
|
Have fun and play nice. Remember we are all just here to have fun so let’s keep it that way.
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-08-12 23:26:30 +02:00
|
|
|
No hateful content or personal attacks.
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-11-17 13:59:51 +02:00
|
|
|
If you suspect someone is griefing, notify the admin team by using /report or by clicking the report button next to the player in the player list.
|
|
|
|
]]
|
2018-08-12 22:03:50 +02:00
|
|
|
)
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
},
|
2018-11-17 13:59:51 +02:00
|
|
|
{
|
2018-12-19 15:56:02 +02:00
|
|
|
tab_button = function(parent)
|
2018-11-17 13:59:51 +02:00
|
|
|
local button = parent.add {type = 'button', name = tab_button_name, caption = 'Map Info'}
|
|
|
|
return button
|
|
|
|
end,
|
|
|
|
content = function(parent, player)
|
|
|
|
local read_only = not player.admin
|
2019-02-27 23:16:46 +02:00
|
|
|
local text_width = 490
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
local top_flow = parent.add {type = 'flow'}
|
|
|
|
local top_flow_style = top_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
top_flow_style.horizontal_align = 'center'
|
2018-11-17 13:59:51 +02:00
|
|
|
top_flow_style.horizontally_stretchable = true
|
|
|
|
|
2019-02-28 00:44:00 +02:00
|
|
|
local top_label = top_flow.add {type = 'label', caption = 'Map Information'}
|
2018-11-17 13:59:51 +02:00
|
|
|
local top_label_style = top_label.style
|
2019-02-26 19:36:20 +02:00
|
|
|
top_label_style.font = 'default-dialog-button'
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
local grid = parent.add {type = 'table', column_count = 2}
|
|
|
|
local grid_style = grid.style
|
|
|
|
grid_style.horizontally_stretchable = true
|
|
|
|
|
|
|
|
grid.add {type = 'label', caption = 'Map name: '}
|
|
|
|
local map_name_textbox =
|
|
|
|
grid.add({type = 'flow'}).add {
|
|
|
|
type = 'text-box',
|
|
|
|
name = editable_textbox_name,
|
|
|
|
text = editable_info[map_name_key]
|
|
|
|
}
|
|
|
|
map_name_textbox.read_only = read_only
|
2019-02-27 23:16:46 +02:00
|
|
|
--map_name_textbox.word_wrap = true
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
local map_name_textbox_style = map_name_textbox.style
|
|
|
|
map_name_textbox_style.width = text_width
|
2019-02-27 23:16:46 +02:00
|
|
|
map_name_textbox_style.maximal_height = 30
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
Gui.set_data(map_name_textbox, map_name_key)
|
|
|
|
|
|
|
|
grid.add {type = 'label', caption = 'Map description: '}
|
|
|
|
local map_description_textbox =
|
|
|
|
grid.add({type = 'flow'}).add {
|
|
|
|
type = 'text-box',
|
|
|
|
name = editable_textbox_name,
|
|
|
|
text = editable_info[map_description_key]
|
|
|
|
}
|
|
|
|
map_description_textbox.read_only = read_only
|
2019-02-28 00:44:00 +02:00
|
|
|
--map_description_textbox.word_wrap = true
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
local map_description_textbox_style = map_description_textbox.style
|
|
|
|
map_description_textbox_style.width = text_width
|
2019-02-28 16:05:30 +02:00
|
|
|
map_description_textbox_style.minimal_height = 80
|
|
|
|
map_description_textbox_style.vertically_stretchable = true
|
|
|
|
map_description_textbox_style.maximal_height = 100
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
Gui.set_data(map_description_textbox, map_description_key)
|
|
|
|
|
|
|
|
grid.add {type = 'label', caption = 'Extra Info: '}
|
|
|
|
local map_extra_info_textbox =
|
|
|
|
grid.add({type = 'flow'}).add {
|
|
|
|
type = 'text-box',
|
|
|
|
name = editable_textbox_name,
|
|
|
|
text = editable_info[map_extra_info_key]
|
|
|
|
}
|
|
|
|
map_extra_info_textbox.read_only = read_only
|
2019-02-28 00:44:00 +02:00
|
|
|
--map_extra_info_textbox.word_wrap = true
|
2018-11-17 13:59:51 +02:00
|
|
|
|
|
|
|
local map_extra_info_textbox_style = map_extra_info_textbox.style
|
|
|
|
map_extra_info_textbox_style.width = text_width
|
|
|
|
map_extra_info_textbox_style.height = 210
|
|
|
|
|
|
|
|
Gui.set_data(map_extra_info_textbox, map_extra_info_key)
|
|
|
|
end
|
|
|
|
},
|
2018-08-09 02:26:43 +02:00
|
|
|
{
|
2018-12-19 15:56:02 +02:00
|
|
|
tab_button = function(parent)
|
2018-08-09 02:26:43 +02:00
|
|
|
local button = parent.add {type = 'button', name = tab_button_name, caption = 'Scenario Mods'}
|
|
|
|
return button
|
|
|
|
end,
|
|
|
|
content = function(parent, player)
|
2018-08-10 22:30:55 +02:00
|
|
|
local parent_style = parent.style
|
2019-02-27 17:57:17 +02:00
|
|
|
parent_style.right_padding = 0
|
|
|
|
parent_style.left_padding = 0
|
|
|
|
parent_style.top_padding = 1
|
2018-08-10 22:30:55 +02:00
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
parent =
|
|
|
|
parent.add {
|
|
|
|
type = 'scroll-pane',
|
|
|
|
vertical_scroll_policy = 'auto-and-reserve-space',
|
|
|
|
horizontal_scroll_policy = 'never'
|
|
|
|
}
|
2018-08-10 22:30:55 +02:00
|
|
|
parent_style = parent.style
|
2018-08-09 02:26:43 +02:00
|
|
|
parent_style.vertically_stretchable = true
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
header_label(parent, 'Soft Mods and Server Plugins')
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
local grid = parent.add {type = 'table', column_count = 3}
|
|
|
|
local grid_style = grid.style
|
|
|
|
grid_style.vertical_spacing = 24
|
|
|
|
grid_style.horizontal_spacing = 8
|
|
|
|
grid_style.top_padding = 8
|
|
|
|
grid_style.bottom_padding = 16
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
grid.add {type = 'label'}
|
|
|
|
local ranks = grid.add {type = 'label', caption = 'Ranks'}
|
2018-08-09 02:26:43 +02:00
|
|
|
ranks.style.font = 'default-listbox'
|
2018-08-12 22:03:50 +02:00
|
|
|
local ranks_flow = grid.add {type = 'flow', direction = 'vertical'}
|
2018-08-09 02:26:43 +02:00
|
|
|
local ranks_label =
|
|
|
|
ranks_flow.add {
|
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 22:03:50 +02:00
|
|
|
We have a basic rank system to prevent griefing. You can't use nukes or the
|
|
|
|
deconstruction planner if you are a guest. If you play for a couple of hours an
|
2018-08-12 23:26:30 +02:00
|
|
|
admin will promote you to regular. You may also ask an admin for a promotion if
|
|
|
|
you're working on a project which requires it.]]
|
2018-08-09 02:26:43 +02:00
|
|
|
}
|
|
|
|
local ranks_label_style = ranks_label.style
|
|
|
|
ranks_label_style.single_line = false
|
2018-08-12 22:03:50 +02:00
|
|
|
local player_rank_flow = ranks_flow.add {type = 'flow', direction = 'horizontal'}
|
|
|
|
player_rank_flow.add {type = 'label', caption = 'Your rank is:'}
|
2019-01-30 05:52:43 +02:00
|
|
|
local player_name = player.name
|
|
|
|
|
2019-02-13 01:45:27 +02:00
|
|
|
local rank_label = player_rank_flow.add {type = 'label', caption = Rank.get_player_rank_name(player_name)}
|
|
|
|
rank_label.style.font_color = Rank.get_player_rank_color(player_name)
|
|
|
|
|
2019-01-30 05:52:43 +02:00
|
|
|
if Donator.is_donator(player_name) then
|
2019-02-13 01:45:27 +02:00
|
|
|
local donator_label = player_rank_flow.add {type = 'label', caption = {'ranks.donator'}}
|
|
|
|
donator_label.style.font_color = Color.donator
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'entity/market'}
|
|
|
|
local market = grid.add {type = 'label', caption = 'Market'}
|
|
|
|
market.style.font = 'default-listbox'
|
|
|
|
local market_label =
|
|
|
|
grid.add {
|
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
|
|
|
On most maps you will find a market near spawn where you can use coins to
|
|
|
|
make purchases. Coins are acquired by chopping trees, hand crafting items and
|
|
|
|
destroying biter nests. Most items in the market are constant but some are
|
|
|
|
map-specific (usually landfill) and will rotate in and out from time to time.]]
|
|
|
|
}
|
|
|
|
market_label.style.single_line = false
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2018-11-17 13:59:51 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'item/small-plane'}
|
|
|
|
local train_savior = grid.add {type = 'label', caption = 'Train\nsavior'}
|
|
|
|
local train_savior_style = train_savior.style
|
|
|
|
train_savior_style.font = 'default-listbox'
|
|
|
|
train_savior_style.single_line = false
|
|
|
|
local train_savior_label =
|
|
|
|
grid.add {
|
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
|
|
|
Trains are a factorio players' worst enemy. If you have at least one small plane
|
|
|
|
in your inventory and would be killed by a train, your life will be spared
|
|
|
|
but you will lose a small plane. You can get planes from the market.
|
|
|
|
]]
|
|
|
|
}
|
|
|
|
train_savior_label.style.single_line = false
|
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
if config.player_list.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'entity/player'}
|
|
|
|
local player_list = grid.add {type = 'label', caption = 'Player\nlist'}
|
|
|
|
player_list.style.font = 'default-listbox'
|
|
|
|
player_list.style.single_line = false
|
|
|
|
local player_list_label =
|
2019-01-25 18:24:13 +02:00
|
|
|
grid.add {
|
2018-12-06 13:18:52 +02:00
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 23:26:30 +02:00
|
|
|
Lists all players on the server and shows some stats. You can sort the list by
|
|
|
|
clicking on the column headers. You can also poke people, which throws a random
|
|
|
|
noun in the chat.]]
|
2018-12-06 13:18:52 +02:00
|
|
|
}
|
|
|
|
player_list_label.style.single_line = false
|
|
|
|
end
|
2019-01-25 18:32:49 +02:00
|
|
|
if config.poll.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'item/programmable-speaker'}
|
|
|
|
local poll = grid.add {type = 'label', caption = 'Polls'}
|
|
|
|
poll.style.font = 'default-listbox'
|
|
|
|
local poll_label =
|
2019-01-25 18:24:13 +02:00
|
|
|
grid.add {
|
2018-12-06 13:18:52 +02:00
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 23:26:30 +02:00
|
|
|
Polls help players get consensus for major actions. Want to improve an important
|
|
|
|
build? Make a poll to check everyone is ok with that. You need to be a regular
|
|
|
|
to make new polls.]]
|
2018-12-06 13:18:52 +02:00
|
|
|
}
|
|
|
|
poll_label.style.single_line = false
|
|
|
|
end
|
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
if config.tag_group.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
local tag_button = grid.add {type = 'label', caption = 'tag'}
|
|
|
|
local tag_button_style = tag_button.style
|
|
|
|
tag_button_style.font = 'default-listbox'
|
2018-12-29 19:39:20 +02:00
|
|
|
tag_button_style.font_color = Color.black
|
2018-12-06 13:18:52 +02:00
|
|
|
local tag = grid.add {type = 'label', caption = 'Tags'}
|
|
|
|
tag.style.font = 'default-listbox'
|
|
|
|
local tag_label =
|
2019-01-25 18:24:13 +02:00
|
|
|
grid.add {
|
2018-12-06 13:18:52 +02:00
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 22:03:50 +02:00
|
|
|
You can assign yourself a role with tags to let other players know what you are
|
|
|
|
doing. Or just use the tag as decoration. Regulars can create new custom tags,
|
|
|
|
be sure to show off your creatively.]]
|
2018-12-06 13:18:52 +02:00
|
|
|
}
|
|
|
|
tag_label.style.single_line = false
|
|
|
|
end
|
2018-08-09 02:26:43 +02:00
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
if config.tasklist.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'item/repair-pack'}
|
|
|
|
local task = grid.add {type = 'label', caption = 'Tasks'}
|
|
|
|
task.style.font = 'default-listbox'
|
|
|
|
local task_label =
|
2019-01-25 18:24:13 +02:00
|
|
|
grid.add {
|
2018-12-06 13:18:52 +02:00
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 22:03:50 +02:00
|
|
|
Not sure what you should be working on, why not look at the tasks and see what
|
|
|
|
needs doing. Regulars can add new tasks.]]
|
2018-12-06 13:18:52 +02:00
|
|
|
}
|
|
|
|
task_label.style.single_line = false
|
|
|
|
end
|
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
if config.blueprint_helper.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'item/blueprint'}
|
|
|
|
local blueprint = grid.add {type = 'label', caption = 'BP\nhelper'}
|
|
|
|
local blueprint_style = blueprint.style
|
|
|
|
blueprint_style.font = 'default-listbox'
|
|
|
|
blueprint_style.single_line = false
|
|
|
|
blueprint_style.width = 55
|
|
|
|
local blueprint_label =
|
2019-01-25 18:24:13 +02:00
|
|
|
grid.add {
|
2018-12-06 13:18:52 +02:00
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 22:03:50 +02:00
|
|
|
The Blueprint helper™ lets you flip blueprints horizontally or vertically and lets you
|
|
|
|
converter the entities used in the blueprint e.g. turn yellow belts into red belts.]]
|
2018-12-06 13:18:52 +02:00
|
|
|
}
|
|
|
|
blueprint_label.style.single_line = false
|
|
|
|
end
|
2018-08-10 22:30:55 +02:00
|
|
|
|
2019-01-25 18:32:49 +02:00
|
|
|
if config.score.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
grid.add {type = 'sprite', sprite = 'item/rocket-silo'}
|
|
|
|
local score = grid.add {type = 'label', caption = 'Score'}
|
|
|
|
score.style.font = 'default-listbox'
|
|
|
|
local score_label =
|
2019-01-25 18:24:13 +02:00
|
|
|
grid.add {
|
2018-12-06 13:18:52 +02:00
|
|
|
type = 'label',
|
|
|
|
caption = [[
|
2018-08-12 22:03:50 +02:00
|
|
|
Shows number of rockets launched and biters liberated.]]
|
2018-12-06 13:18:52 +02:00
|
|
|
}
|
|
|
|
score_label.style.single_line = false
|
|
|
|
end
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
},
|
|
|
|
{
|
2018-12-06 13:18:52 +02:00
|
|
|
tab_button = function(parent)
|
2018-08-12 22:03:50 +02:00
|
|
|
local button = parent.add {type = 'button', name = tab_button_name, caption = "What's New"}
|
2018-08-09 02:26:43 +02:00
|
|
|
return button
|
|
|
|
end,
|
|
|
|
content = function(parent, player)
|
2018-08-12 22:03:50 +02:00
|
|
|
local read_only = not player.admin
|
2018-08-10 22:30:55 +02:00
|
|
|
|
2018-11-17 13:59:51 +02:00
|
|
|
header_label(parent, 'New Features')
|
2018-08-10 22:30:55 +02:00
|
|
|
|
2019-02-28 16:05:30 +02:00
|
|
|
local new_info_flow = parent.add {name = 'whatsNew_new_info_flow', type = 'flow'}
|
2019-02-27 17:57:17 +02:00
|
|
|
new_info_flow.style.horizontal_align = 'center'
|
2018-08-10 22:30:55 +02:00
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
local new_info_textbox =
|
|
|
|
new_info_flow.add {
|
|
|
|
type = 'text-box',
|
|
|
|
name = editable_textbox_name,
|
|
|
|
text = editable_info[new_info_key]
|
|
|
|
}
|
|
|
|
new_info_textbox.read_only = read_only
|
|
|
|
|
|
|
|
local new_info_textbox_style = new_info_textbox.style
|
2019-02-28 16:05:30 +02:00
|
|
|
new_info_textbox_style.width = 600
|
2019-02-28 18:36:28 +02:00
|
|
|
new_info_textbox_style.height = 360
|
2019-02-28 16:05:30 +02:00
|
|
|
new_info_textbox_style.left_margin = 2
|
2018-08-12 22:03:50 +02:00
|
|
|
|
|
|
|
Gui.set_data(new_info_textbox, new_info_key)
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local function draw_main_frame(center, player)
|
|
|
|
local frame = center.add {type = 'frame', name = main_frame_name, direction = 'vertical'}
|
|
|
|
local frame_style = frame.style
|
|
|
|
frame_style.height = 600
|
2018-08-12 22:03:50 +02:00
|
|
|
frame_style.width = 650
|
2018-08-09 02:26:43 +02:00
|
|
|
frame_style.left_padding = 16
|
|
|
|
frame_style.right_padding = 16
|
|
|
|
frame_style.top_padding = 16
|
|
|
|
|
|
|
|
local top_flow = frame.add {type = 'flow'}
|
|
|
|
local top_flow_style = top_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
top_flow_style.horizontal_align = 'center'
|
2018-08-09 02:26:43 +02:00
|
|
|
top_flow_style.top_padding = 8
|
|
|
|
top_flow_style.horizontally_stretchable = true
|
|
|
|
|
|
|
|
local title_grid = top_flow.add {type = 'table', column_count = title_max}
|
|
|
|
for _, row in ipairs(title) do
|
|
|
|
for _, char in ipairs(row) do
|
|
|
|
local ele
|
|
|
|
if char then
|
|
|
|
ele = title_grid.add {type = 'sprite', sprite = 'virtual-signal/signal-red'}
|
2019-02-27 17:57:17 +02:00
|
|
|
ele.style.stretch_image_to_widget_size = true
|
2018-08-09 02:26:43 +02:00
|
|
|
else
|
|
|
|
ele = title_grid.add {type = 'label', caption = ' '}
|
|
|
|
end
|
|
|
|
|
|
|
|
local ele_style = ele.style
|
|
|
|
ele_style.height = 10
|
|
|
|
ele_style.width = 10
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local title_grid_style = title_grid.style
|
|
|
|
title_grid_style.vertical_spacing = 0
|
|
|
|
title_grid_style.horizontal_spacing = 0
|
|
|
|
title_grid_style.bottom_padding = 8
|
|
|
|
|
|
|
|
line_bar(frame)
|
|
|
|
|
|
|
|
local tab_buttons = {}
|
|
|
|
local active_tab = 1
|
|
|
|
local data = {
|
|
|
|
tab_buttons = tab_buttons,
|
|
|
|
active_tab = active_tab
|
|
|
|
}
|
|
|
|
|
|
|
|
local tab_flow = frame.add {type = 'flow', direction = 'horizontal'}
|
|
|
|
local tab_flow_style = tab_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
tab_flow_style.horizontal_align = 'center'
|
2018-08-09 02:26:43 +02:00
|
|
|
tab_flow_style.horizontally_stretchable = true
|
|
|
|
|
|
|
|
for index, page in ipairs(pages) do
|
|
|
|
local button_flow = tab_flow.add {type = 'flow'}
|
2018-08-10 22:30:55 +02:00
|
|
|
local button = page.tab_button(button_flow, player)
|
2018-08-14 12:36:55 +02:00
|
|
|
|
|
|
|
local button_style = button.style
|
|
|
|
button_style.left_padding = 3
|
|
|
|
button_style.right_padding = 3
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
Gui.set_data(button, {index = index, data = data})
|
|
|
|
|
|
|
|
tab_buttons[index] = button
|
|
|
|
end
|
|
|
|
|
|
|
|
tab_buttons[active_tab].style.font_color = focus_color
|
|
|
|
|
|
|
|
line_bar(frame)
|
|
|
|
|
|
|
|
local content = frame.add {type = 'frame', direction = 'vertical', style = 'image_frame'}
|
|
|
|
local content_style = content.style
|
|
|
|
content_style.horizontally_stretchable = true
|
|
|
|
content_style.vertically_stretchable = true
|
|
|
|
content_style.left_padding = 8
|
|
|
|
content_style.right_padding = 8
|
|
|
|
content_style.top_padding = 4
|
|
|
|
|
|
|
|
pages[active_tab].content(content, player)
|
|
|
|
|
|
|
|
data.content = content
|
|
|
|
|
|
|
|
local bottom_flow = frame.add {type = 'flow'}
|
|
|
|
local bottom_flow_style = bottom_flow.style
|
2019-02-27 17:57:17 +02:00
|
|
|
bottom_flow_style.horizontal_align = 'center'
|
2018-08-09 02:26:43 +02:00
|
|
|
bottom_flow_style.top_padding = 8
|
|
|
|
bottom_flow_style.horizontally_stretchable = true
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
bottom_flow.add {type = 'button', name = main_button_name, caption = 'Close'}
|
2018-08-09 02:26:43 +02:00
|
|
|
|
|
|
|
player.opened = frame
|
|
|
|
end
|
|
|
|
|
2018-12-19 15:56:02 +02:00
|
|
|
local function reward_player(player, index, message)
|
2019-01-25 18:32:49 +02:00
|
|
|
if not config_prewards.enabled or not config_prewards.info_player_reward then
|
2018-12-19 15:56:02 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local player_index = player.index
|
|
|
|
if not rewarded_players[player_index] then
|
|
|
|
error('Player with no entry in rewarded_players table')
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
local tab_flag = info_tab_flags[index]
|
|
|
|
|
|
|
|
if bit32.band(rewarded_players[player_index], tab_flag) == tab_flag then
|
|
|
|
return
|
|
|
|
else
|
|
|
|
PlayerRewards.give_reward(player, reward_amount, message)
|
|
|
|
rewarded_players[player_index] = rewarded_players[player_index] + tab_flag
|
|
|
|
if rewarded_players[player_index] == flags_sum then
|
|
|
|
rewarded_players[player_index] = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-24 23:32:40 +02:00
|
|
|
--- Uploads the contents of new info tab to the server.
|
|
|
|
-- Is triggered on closing the info window by clicking the close button or by pressing escape.
|
|
|
|
local function upload_changelog(event)
|
|
|
|
local player = event.player
|
|
|
|
if not player or not player.valid or not player.admin then
|
|
|
|
return
|
|
|
|
end
|
2019-01-25 18:32:49 +02:00
|
|
|
|
2019-01-25 18:45:58 +02:00
|
|
|
if editable_info[new_info_key] ~= config_mapinfo.new_info_key and primitives.info_edited then
|
2019-01-25 18:32:49 +02:00
|
|
|
Server.set_data('misc', 'changelog', editable_info[new_info_key])
|
2019-01-25 18:45:58 +02:00
|
|
|
primitives.info_edited = nil
|
2019-01-25 18:32:49 +02:00
|
|
|
end
|
2019-01-24 23:32:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Tries to download the latest changelog
|
|
|
|
local function download_changelog()
|
|
|
|
Server.try_get_data('misc', 'changelog', changelog_callback)
|
|
|
|
end
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
local function toggle(event)
|
|
|
|
local player = event.player
|
|
|
|
local center = player.gui.center
|
|
|
|
local main_frame = center[main_frame_name]
|
|
|
|
|
|
|
|
if main_frame then
|
2019-01-25 18:38:58 +02:00
|
|
|
upload_changelog(event)
|
2018-08-09 02:26:43 +02:00
|
|
|
Gui.destroy(main_frame)
|
|
|
|
else
|
|
|
|
draw_main_frame(center, player)
|
|
|
|
end
|
2017-06-13 13:16:07 +02:00
|
|
|
end
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
local function player_created(event)
|
2018-09-23 12:46:58 +02:00
|
|
|
local player = Game.get_player_by_index(event.player_index)
|
2018-08-09 02:26:43 +02:00
|
|
|
if not player or not player.valid then
|
|
|
|
return
|
|
|
|
end
|
2017-07-09 02:28:01 +02:00
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
local gui = player.gui
|
2018-08-12 22:03:50 +02:00
|
|
|
gui.top.add {type = 'sprite-button', name = main_button_name, sprite = 'utility/questionmark'}
|
2017-07-09 02:28:01 +02:00
|
|
|
|
2018-12-19 15:56:02 +02:00
|
|
|
rewarded_players[player.index] = 0
|
|
|
|
reward_player(player, info_tab_flags[1])
|
2017-06-13 13:16:07 +02:00
|
|
|
end
|
|
|
|
|
2018-12-29 03:19:55 +02:00
|
|
|
--- Sets editable_info[map_extra_info_key] outright or adds info to it.
|
|
|
|
-- Forbids map_extra_info being explicitly set twice
|
|
|
|
local function create_map_extra_info(value, set)
|
2019-01-25 18:45:58 +02:00
|
|
|
if primitives.map_extra_info_lock and set then
|
2018-12-29 03:19:55 +02:00
|
|
|
error('Cannot set extra info twice, use add instead')
|
|
|
|
return
|
2019-01-25 18:45:58 +02:00
|
|
|
elseif primitives.map_extra_info_lock then
|
2018-12-29 03:19:55 +02:00
|
|
|
return
|
|
|
|
elseif set then
|
|
|
|
editable_info[map_extra_info_key] = value
|
2019-01-25 18:45:58 +02:00
|
|
|
primitives.map_extra_info_lock = true
|
2019-01-25 18:32:49 +02:00
|
|
|
elseif editable_info[map_extra_info_key] == config_mapinfo.map_extra_info_key then
|
2018-12-29 03:19:55 +02:00
|
|
|
editable_info[map_extra_info_key] = value
|
|
|
|
else
|
2019-01-25 18:32:49 +02:00
|
|
|
editable_info[map_extra_info_key] = format('%s\n%s', editable_info[map_extra_info_key], value)
|
2018-12-29 03:19:55 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
Event.add(defines.events.on_player_created, player_created)
|
|
|
|
|
2019-01-24 23:32:40 +02:00
|
|
|
Event.add(Server.events.on_server_started, download_changelog)
|
|
|
|
|
2019-01-25 18:23:06 +02:00
|
|
|
Server.on_data_set_changed('misc', process_changelog)
|
2019-01-04 15:45:37 +02:00
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
Gui.on_click(main_button_name, toggle)
|
|
|
|
|
|
|
|
Gui.on_click(
|
|
|
|
tab_button_name,
|
|
|
|
function(event)
|
|
|
|
local button = event.element
|
|
|
|
local player = event.player
|
|
|
|
|
|
|
|
local button_data = Gui.get_data(button)
|
|
|
|
local index = button_data.index
|
|
|
|
local data = button_data.data
|
|
|
|
local active_tab = data.active_tab
|
|
|
|
|
|
|
|
if active_tab == index then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local tab_buttons = data.tab_buttons
|
|
|
|
local old_button = tab_buttons[active_tab]
|
|
|
|
|
2019-02-27 23:16:46 +02:00
|
|
|
old_button.style.font_color = unfocus_color
|
2018-08-09 02:26:43 +02:00
|
|
|
button.style.font_color = focus_color
|
|
|
|
|
|
|
|
data.active_tab = index
|
|
|
|
|
|
|
|
local content = data.content
|
|
|
|
Gui.clear(content)
|
|
|
|
|
|
|
|
pages[index].content(content, player)
|
2019-02-27 17:57:17 +02:00
|
|
|
local string =
|
|
|
|
format(
|
|
|
|
'%s %s%s awarded for reading a tab on the info screen.',
|
|
|
|
reward_amount,
|
|
|
|
reward_token,
|
|
|
|
reward_plural_indicator
|
|
|
|
)
|
2018-12-19 15:56:02 +02:00
|
|
|
if rewarded_players[player.index] then
|
|
|
|
reward_player(player, index, string)
|
|
|
|
end
|
2018-08-09 02:26:43 +02:00
|
|
|
end
|
|
|
|
)
|
2017-06-13 13:16:07 +02:00
|
|
|
|
2018-08-10 22:30:55 +02:00
|
|
|
Gui.on_text_changed(
|
|
|
|
editable_textbox_name,
|
|
|
|
function(event)
|
|
|
|
local textbox = event.element
|
|
|
|
local key = Gui.get_data(textbox)
|
|
|
|
|
2018-08-12 22:03:50 +02:00
|
|
|
editable_info[key] = textbox.text
|
2019-01-25 18:45:58 +02:00
|
|
|
primitives.info_edited = true
|
2018-08-10 22:30:55 +02:00
|
|
|
end
|
|
|
|
)
|
|
|
|
|
2018-08-09 02:26:43 +02:00
|
|
|
Gui.on_custom_close(
|
|
|
|
main_frame_name,
|
|
|
|
function(event)
|
2019-01-24 23:32:40 +02:00
|
|
|
upload_changelog(event)
|
2018-08-09 02:26:43 +02:00
|
|
|
Gui.destroy(event.element)
|
|
|
|
end
|
|
|
|
)
|
2018-09-11 16:55:20 +02:00
|
|
|
|
2018-12-16 03:28:00 +02:00
|
|
|
Gui.allow_player_to_toggle_top_element_visibility(main_button_name)
|
|
|
|
|
2018-09-11 16:55:20 +02:00
|
|
|
local Public = {}
|
|
|
|
|
2018-11-15 21:04:03 +02:00
|
|
|
function Public.show_info(player)
|
2019-01-11 20:25:54 +02:00
|
|
|
toggle({player = player})
|
2018-11-15 21:04:03 +02:00
|
|
|
end
|
|
|
|
|
2018-10-07 16:49:12 +02:00
|
|
|
function Public.get_map_name()
|
2018-09-11 16:55:20 +02:00
|
|
|
return editable_info[map_name_key]
|
|
|
|
end
|
|
|
|
|
|
|
|
function Public.set_map_name(value)
|
|
|
|
editable_info[map_name_key] = value
|
|
|
|
end
|
|
|
|
|
2018-10-07 16:49:12 +02:00
|
|
|
function Public.get_map_description()
|
2018-09-11 16:55:20 +02:00
|
|
|
return editable_info[map_description_key]
|
|
|
|
end
|
|
|
|
|
|
|
|
function Public.set_map_description(value)
|
|
|
|
editable_info[map_description_key] = value
|
|
|
|
end
|
|
|
|
|
2018-10-07 16:49:12 +02:00
|
|
|
function Public.get_map_extra_info()
|
2018-09-11 16:55:20 +02:00
|
|
|
return editable_info[map_extra_info_key]
|
|
|
|
end
|
|
|
|
|
2018-12-22 01:38:47 +02:00
|
|
|
--- Adds to existing map_extra_info. Removes default text if it is the only text in place.
|
|
|
|
function Public.add_map_extra_info(value)
|
2018-12-29 03:19:55 +02:00
|
|
|
create_map_extra_info(value, false)
|
|
|
|
end
|
|
|
|
|
2019-02-04 21:39:36 +02:00
|
|
|
--- Overrides all info added via add_map_extra_info.
|
2018-12-29 03:19:55 +02:00
|
|
|
-- This should only be used in maps, never in features/modules.
|
|
|
|
-- Use case: for maps that know exactly what features they're using and
|
|
|
|
-- want full control over the info presented.
|
|
|
|
function Public.set_map_extra_info(value)
|
|
|
|
create_map_extra_info(value, true)
|
2018-09-11 16:55:20 +02:00
|
|
|
end
|
|
|
|
|
2018-10-07 16:49:12 +02:00
|
|
|
function Public.get_new_info()
|
2018-09-11 16:55:20 +02:00
|
|
|
return editable_info[new_info_key]
|
|
|
|
end
|
|
|
|
|
|
|
|
function Public.set_new_info(value)
|
|
|
|
editable_info[new_info_key] = value
|
|
|
|
end
|
|
|
|
|
|
|
|
return Public
|