2018-11-26 03:07:03 +02:00
|
|
|
-- Omitting the math library is a very bad idea
|
2018-10-02 10:08:57 +02:00
|
|
|
require 'utils.math'
|
2018-09-23 00:25:13 +02:00
|
|
|
|
2019-01-11 20:49:03 +02:00
|
|
|
-- Global Debug and extra global table functions to make debugging and coding significantly easier
|
2018-12-29 14:16:41 +02:00
|
|
|
Debug = require 'utils.debug'
|
2019-01-11 20:49:03 +02:00
|
|
|
require 'utils.table'
|
2018-12-29 14:16:41 +02:00
|
|
|
|
2018-12-29 21:01:18 +02:00
|
|
|
-- Map layout and config dictate the map you play and the settings in it
|
|
|
|
local config = require 'config'
|
2018-05-22 00:48:41 +02:00
|
|
|
require 'map_layout'
|
2018-08-13 17:04:02 +02:00
|
|
|
|
2018-11-11 09:20:07 +02:00
|
|
|
-- Specific to RedMew hosts, can be disabled safely if not hosting on RedMew servers
|
2018-11-27 14:32:33 +02:00
|
|
|
require 'features.server'
|
|
|
|
require 'features.server_commands'
|
2018-09-21 20:48:12 +02:00
|
|
|
|
2018-11-11 09:20:07 +02:00
|
|
|
-- Library modules which, if missing, will cause other feature modules to fail
|
2018-11-15 21:53:28 +02:00
|
|
|
require 'features.player_create'
|
2018-11-11 09:20:07 +02:00
|
|
|
require 'features.user_groups'
|
|
|
|
|
2018-11-26 03:07:03 +02:00
|
|
|
-- Feature modules, each can be disabled safely
|
2019-01-03 20:17:53 +02:00
|
|
|
if config.train_saviour.enabled then
|
|
|
|
require 'features.train_saviour'
|
|
|
|
end
|
2019-01-05 13:12:22 +02:00
|
|
|
if config.infinite_storage_chest.enabled then
|
|
|
|
require 'features.infinite_storage_chest'
|
|
|
|
end
|
2018-12-19 15:41:28 +02:00
|
|
|
if config.autodeconstruct.enabled then
|
2018-12-06 13:18:52 +02:00
|
|
|
require 'features.autodeconstruct'
|
|
|
|
end
|
|
|
|
if config.hodor.enabled or config.auto_respond.enabled or config.mentions.enabled then
|
|
|
|
require 'features.chat_triggers'
|
|
|
|
end
|
2018-12-19 15:41:28 +02:00
|
|
|
if config.corpse_util.enabled then
|
|
|
|
require 'features.corpse_util'
|
|
|
|
end
|
2019-01-02 17:34:17 +02:00
|
|
|
if config.admin_commands.enabled then
|
|
|
|
require 'features.admin_commands'
|
|
|
|
end
|
|
|
|
if config.redmew_commands.enabled then
|
|
|
|
require 'features.redmew_commands'
|
2018-12-19 15:41:28 +02:00
|
|
|
end
|
|
|
|
if config.donator_messages.enabled then
|
|
|
|
require 'features.donator_messages'
|
|
|
|
end
|
2019-01-11 20:25:54 +02:00
|
|
|
if config.market.enabled then
|
|
|
|
require 'features.market'
|
2018-12-06 13:18:52 +02:00
|
|
|
end
|
|
|
|
if config.nuke_control.enabled then
|
|
|
|
require 'features.nuke_control'
|
|
|
|
end
|
2018-12-19 15:41:28 +02:00
|
|
|
if config.player_colors.enabled then
|
|
|
|
require 'features.player_colors'
|
|
|
|
end
|
2018-12-06 13:18:52 +02:00
|
|
|
if config.reactor_meltdown.enabled then
|
|
|
|
require 'features.reactor_meltdown'
|
|
|
|
end
|
2018-12-19 15:41:28 +02:00
|
|
|
if config.walkabout.enabled then
|
|
|
|
require 'features.walkabout'
|
|
|
|
end
|
2019-01-10 16:18:55 +02:00
|
|
|
if config.performance.enabled then
|
2018-12-06 13:27:08 +02:00
|
|
|
require 'features.performance'
|
|
|
|
end
|
2019-01-10 16:18:55 +02:00
|
|
|
if config.hail_hydra.enabled then
|
2018-12-09 16:04:23 +02:00
|
|
|
require 'features.hail_hydra'
|
2019-01-16 23:05:12 +02:00
|
|
|
end
|
|
|
|
if config.lazy_bastard.enabled then
|
|
|
|
require 'features.lazy_bastard'
|
2018-12-09 16:04:23 +02:00
|
|
|
end
|
2019-01-12 15:43:41 +02:00
|
|
|
if config.redmew_qol.enabled then
|
|
|
|
require 'features.redmew_qol'
|
|
|
|
end
|
2018-12-09 16:04:23 +02:00
|
|
|
|
2018-11-11 09:20:07 +02:00
|
|
|
-- GUIs the order determines the order they appear from left to right.
|
2018-11-26 03:07:03 +02:00
|
|
|
-- These can be safely disabled if you want less GUI items.
|
|
|
|
-- Some map presets will add GUI modules themselves.
|
2018-12-22 10:34:51 +02:00
|
|
|
if config.map_info.enabled then
|
|
|
|
require 'features.gui.info'
|
|
|
|
end
|
2018-12-06 13:18:52 +02:00
|
|
|
if config.player_list.enabled then
|
|
|
|
require 'features.gui.player_list'
|
|
|
|
end
|
2019-01-28 22:20:02 +02:00
|
|
|
if config.evolution_progress.enabled then
|
|
|
|
require 'features.gui.evolution_progress'
|
|
|
|
end
|
2018-12-06 13:18:52 +02:00
|
|
|
if config.poll.enabled then
|
|
|
|
require 'features.gui.poll'
|
|
|
|
end
|
|
|
|
if config.tag_group.enabled then
|
|
|
|
require 'features.gui.tag_group'
|
|
|
|
end
|
|
|
|
if config.tasklist.enabled then
|
|
|
|
require 'features.gui.tasklist'
|
|
|
|
end
|
|
|
|
if config.blueprint_helper.enabled then
|
|
|
|
require 'features.gui.blueprint_helper'
|
|
|
|
end
|
|
|
|
if config.paint.enabled then
|
|
|
|
require 'features.gui.paint'
|
|
|
|
end
|
|
|
|
if config.score.enabled then
|
|
|
|
require 'features.gui.score'
|
|
|
|
end
|
2018-12-19 15:41:28 +02:00
|
|
|
if config.popup.enabled then
|
|
|
|
require 'features.gui.popup'
|
|
|
|
end
|
|
|
|
if config.camera.enabled then
|
|
|
|
require 'features.gui.camera'
|
|
|
|
end
|
2018-12-22 10:42:19 +02:00
|
|
|
if _DUMP_ENV then
|
|
|
|
require 'utils.dump_env'
|
|
|
|
end
|
2019-01-31 00:32:43 +02:00
|
|
|
|
|
|
|
-- Needs to be at bottom so tokens are registered last.
|
|
|
|
if _DEBUG then
|
|
|
|
require 'features.gui.debug.command'
|
|
|
|
end
|