mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-26 03:52:22 +02:00
156 lines
7.3 KiB
Lua
156 lines
7.3 KiB
Lua
local WPT = require 'maps.mountain_fortress_v3.table'
|
|
local Session = require 'utils.datastore.session_data'
|
|
local Jailed = require 'utils.datastore.jail_data'
|
|
|
|
local Antigrief = require 'antigrief'
|
|
|
|
local Public = {}
|
|
|
|
function Public.add_player_to_permission_group(player, group, forced)
|
|
local jailed = Jailed.get_jailed_table()
|
|
local enable_permission_group_disconnect = WPT.get('disconnect_wagon')
|
|
local session = Session.get_session_table()
|
|
local AG = Antigrief.get()
|
|
local allow_decon = WPT.get('allow_decon')
|
|
|
|
local default_group = game.permissions.get_group('Default')
|
|
default_group.set_allows_action(defines.input_action.deconstruct, false)
|
|
default_group.set_allows_action(defines.input_action.activate_cut, false)
|
|
|
|
if not game.permissions.get_group('limited') then
|
|
local limited_group = game.permissions.create_group('limited')
|
|
limited_group.set_allows_action(defines.input_action.cancel_craft, false)
|
|
limited_group.set_allows_action(defines.input_action.drop_item, false)
|
|
if allow_decon then
|
|
limited_group.set_allows_action(defines.input_action.deconstruct, true)
|
|
else
|
|
limited_group.set_allows_action(defines.input_action.deconstruct, false)
|
|
end
|
|
limited_group.set_allows_action(defines.input_action.activate_cut, false)
|
|
end
|
|
|
|
if not game.permissions.get_group('near_locomotive') then
|
|
local near_locomotive_group = game.permissions.create_group('near_locomotive')
|
|
near_locomotive_group.set_allows_action(defines.input_action.cancel_craft, false)
|
|
near_locomotive_group.set_allows_action(defines.input_action.drop_item, false)
|
|
near_locomotive_group.set_allows_action(defines.input_action.deconstruct, false)
|
|
near_locomotive_group.set_allows_action(defines.input_action.activate_cut, false)
|
|
end
|
|
|
|
if not game.permissions.get_group('main_surface') then
|
|
local main_surface_group = game.permissions.create_group('main_surface')
|
|
main_surface_group.set_allows_action(defines.input_action.deconstruct, false)
|
|
main_surface_group.set_allows_action(defines.input_action.activate_cut, false)
|
|
end
|
|
|
|
if not game.permissions.get_group('not_trusted') then
|
|
local not_trusted = game.permissions.create_group('not_trusted')
|
|
not_trusted.set_allows_action(defines.input_action.cancel_craft, false)
|
|
not_trusted.set_allows_action(defines.input_action.edit_permission_group, false)
|
|
not_trusted.set_allows_action(defines.input_action.import_permissions_string, false)
|
|
not_trusted.set_allows_action(defines.input_action.delete_permission_group, false)
|
|
not_trusted.set_allows_action(defines.input_action.add_permission_group, false)
|
|
not_trusted.set_allows_action(defines.input_action.admin_action, false)
|
|
not_trusted.set_allows_action(defines.input_action.drop_item, false)
|
|
not_trusted.set_allows_action(defines.input_action.disconnect_rolling_stock, false)
|
|
not_trusted.set_allows_action(defines.input_action.connect_rolling_stock, false)
|
|
not_trusted.set_allows_action(defines.input_action.open_train_gui, false)
|
|
not_trusted.set_allows_action(defines.input_action.open_train_station_gui, false)
|
|
not_trusted.set_allows_action(defines.input_action.open_trains_gui, false)
|
|
not_trusted.set_allows_action(defines.input_action.change_train_stop_station, false)
|
|
not_trusted.set_allows_action(defines.input_action.change_train_wait_condition, false)
|
|
not_trusted.set_allows_action(defines.input_action.change_train_wait_condition_data, false)
|
|
not_trusted.set_allows_action(defines.input_action.drag_train_schedule, false)
|
|
not_trusted.set_allows_action(defines.input_action.drag_train_wait_condition, false)
|
|
not_trusted.set_allows_action(defines.input_action.go_to_train_station, false)
|
|
not_trusted.set_allows_action(defines.input_action.remove_train_station, false)
|
|
not_trusted.set_allows_action(defines.input_action.set_trains_limit, false)
|
|
not_trusted.set_allows_action(defines.input_action.set_train_stopped, false)
|
|
not_trusted.set_allows_action(defines.input_action.deconstruct, false)
|
|
not_trusted.set_allows_action(defines.input_action.activate_cut, false)
|
|
end
|
|
|
|
if not AG.enabled then
|
|
default_group.add_player(player)
|
|
return
|
|
end
|
|
|
|
local gulag = game.permissions.get_group('gulag')
|
|
local tbl = gulag and gulag.players
|
|
for i = 1, #tbl do
|
|
if tbl[i].index == player.index then
|
|
return
|
|
end
|
|
end
|
|
|
|
if forced then
|
|
default_group.add_player(player)
|
|
return
|
|
end
|
|
|
|
local playtime = player.online_time
|
|
if session[player.name] then
|
|
playtime = player.online_time + session[player.name]
|
|
end
|
|
|
|
if jailed[player.name] then
|
|
return
|
|
end
|
|
|
|
if enable_permission_group_disconnect then
|
|
local limited_group = game.permissions.get_group('limited')
|
|
local main_surface_group = game.permissions.get_group('main_surface')
|
|
local near_locomotive_group = game.permissions.get_group('near_locomotive')
|
|
if limited_group then
|
|
limited_group.set_allows_action(defines.input_action.disconnect_rolling_stock, true)
|
|
end
|
|
if main_surface_group then
|
|
main_surface_group.set_allows_action(defines.input_action.disconnect_rolling_stock, true)
|
|
end
|
|
if near_locomotive_group then
|
|
near_locomotive_group.set_allows_action(defines.input_action.disconnect_rolling_stock, true)
|
|
end
|
|
if default_group then
|
|
default_group.set_allows_action(defines.input_action.disconnect_rolling_stock, true)
|
|
end
|
|
else
|
|
local limited_group = game.permissions.get_group('limited')
|
|
local main_surface_group = game.permissions.get_group('main_surface')
|
|
local near_locomotive_group = game.permissions.get_group('near_locomotive')
|
|
if limited_group then
|
|
limited_group.set_allows_action(defines.input_action.disconnect_rolling_stock, false)
|
|
end
|
|
if main_surface_group then
|
|
main_surface_group.set_allows_action(defines.input_action.disconnect_rolling_stock, false)
|
|
end
|
|
if near_locomotive_group then
|
|
near_locomotive_group.set_allows_action(defines.input_action.disconnect_rolling_stock, false)
|
|
end
|
|
if default_group then
|
|
default_group.set_allows_action(defines.input_action.disconnect_rolling_stock, false)
|
|
end
|
|
end
|
|
|
|
if playtime < 5184000 then -- 24 hours
|
|
local not_trusted = game.permissions.get_group('not_trusted')
|
|
if not player.admin then
|
|
not_trusted.add_player(player)
|
|
end
|
|
else
|
|
if group == 'limited' then
|
|
local limited_group = game.permissions.get_group('limited')
|
|
limited_group.add_player(player)
|
|
elseif group == 'main_surface' then
|
|
local main_surface_group = game.permissions.get_group('main_surface')
|
|
main_surface_group.add_player(player)
|
|
elseif group == 'near_locomotive' then
|
|
local near_locomotive_group = game.permissions.get_group('near_locomotive')
|
|
near_locomotive_group.add_player(player)
|
|
elseif group == 'default' then
|
|
default_group.add_player(player)
|
|
end
|
|
end
|
|
end
|
|
|
|
return Public
|