forked from Seadragon91/SkyBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkyBlock.lua
223 lines (190 loc) · 7.43 KB
/
SkyBlock.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
-- SkyBlock plugin for cuberite.
-- Before starting the server, you need to add a (configurable world name in Config.ini)
-- world in the settings.ini under the section [Worlds]
-- Example: World=skyblock
PLUGIN = nil
ISLAND_NUMBER = nil -- Gets increased, before a new island is created
ISLAND_DISTANCE = nil -- Distance betweens the islands
ISLAND_SCHEMATIC = nil -- Schematic file for islands
SPAWN_SCHEMATIC = nil -- Schematic file for the spawn
SPAWN_CREATED = nil -- Check value, if spawn has already been created
SKYBLOCK = nil -- Instance of a world
PLAYERS = nil -- A table that contains player uuid and PlayerInfos
ISLANDS = nil -- A table contains island numbers and IslandInfo
WORLD_NAME = nil -- The world that the plugin is using
LEVELS = nil -- Store all levels
CONFIG_FILE = nil -- Config file for SkyBlock
BLOCK_VALUES = nil -- Store the points of block / meta
LANGUAGES = nil -- Contains a list of languages
LANGUAGE_DEFAULT = nil -- Default language file
LANGUAGE_OTHERS = nil -- Enable other language files
ISLAND_AREA = nil -- The island file
function Initialize(Plugin)
Plugin:SetName("SkyBlock")
Plugin:SetVersion(3)
PLUGIN = Plugin
ISLAND_NUMBER = 0
ISLAND_DISTANCE = 96
ISLAND_SCHEMATIC = ""
SPAWN_SCHEMATIC = ""
SPAWN_CREATED = false
PLAYERS = {}
ISLANDS = {}
WORLD_NAME = "skyblock"
LEVELS = {}
CONFIG_FILE = PLUGIN:GetLocalFolder() .. "/Config.ini"
BLOCK_VALUES = {}
LANGUAGES = {}
LANGUAGE_DEFAULT = "english.ini"
LANGUAGE_OTHERS = 1
-- Load all lua files
LoadLuaFiles()
-- Load Config file
LoadConfiguration()
ISLAND_AREA = cBlockArea()
if not(ISLAND_AREA:LoadFromSchematicFile(PLUGIN:GetLocalFolder() .. "/" .. ISLAND_SCHEMATIC)) then
ISLAND_AREA = nil
end
-- Check for world <WORLD NAME>
SKYBLOCK = cRoot:Get():GetWorld(WORLD_NAME)
if (SKYBLOCK == nil) then
LOGERROR("The plugin SkyBlock requires the world " .. WORLD_NAME .. ". Please add this line")
LOGERROR("World=" .. WORLD_NAME)
LOGERROR("to the section [Worlds] in the settings.ini.")
LOGERROR("Then stop and start the server again.")
return false
end
-- Create language folder
cFile:CreateFolder(PLUGIN:GetLocalFolder() .. "/languages/")
LoadLanguageFiles()
-- Load the points for block / meta
LoadBlockValues()
-- Load all ChallengeInfos
LoadAllLevels(PLUGIN:GetLocalFolder() .. "/challenges/Config.ini")
-- Load all PlayerInfos and IslandInfos from players who are in the world
LoadPlayerInfos()
-- Register hooks
cPluginManager:AddHook(cPluginManager.HOOK_CHUNK_GENERATING, OnChunkGenerating)
cPluginManager:AddHook(cPluginManager.HOOK_PLAYER_DESTROYED, OnPlayerQuit)
cPluginManager:AddHook(cPluginManager.HOOK_PLAYER_SPAWNED, OnPlayerSpawn)
cPluginManager:AddHook(cPluginManager.HOOK_WORLD_STARTED, OnWorldLoaded)
cPluginManager:AddHook(cPluginManager.HOOK_TAKE_DAMAGE, OnTakeDamage)
cPluginManager:AddHook(cPluginManager.HOOK_ENTITY_CHANGED_WORLD, OnPlayerChangedWorld)
-- This below are required for checking the permission in the island area
cPluginManager:AddHook(cPluginManager.HOOK_PLAYER_PLACING_BLOCK, OnBlockPlacing)
cPluginManager:AddHook(cPluginManager.HOOK_PLAYER_LEFT_CLICK, OnPlayerLeftClick)
cPluginManager:AddHook(cPluginManager.HOOK_PLAYER_RIGHT_CLICK, OnPlayerRightClick)
-- Command Bindings
cPluginManager:BindCommand("/skyblock", "skyblock.command", CommandSkyBlock , " - Access to the skyblock plugin")
cPluginManager:BindCommand("/challenges", "skyblock.command", CommandChallenges , " - Access to the challenges")
cPluginManager:BindCommand("/island", "skyblock.command", CommandIsland , " - Access to the island commands")
LOG("Initialised " .. Plugin:GetName() .. " v." .. Plugin:GetVersion())
return true
end
function OnDisable()
LOG(PLUGIN:GetName() .. " is shutting down...")
end
function LoadConfiguration()
-- Create players folder
if (not cFile:IsFolder(PLUGIN:GetLocalFolder() .. "/players/")) then
cFile:CreateFolder(PLUGIN:GetLocalFolder() .. "/players/")
end
-- Create islands folder
if (not cFile:IsFolder(PLUGIN:GetLocalFolder() .. "/islands/")) then
cFile:CreateFolder(PLUGIN:GetLocalFolder() .. "/islands/")
end
local configIni = cIniFile()
configIni:ReadFile(CONFIG_FILE)
ISLAND_NUMBER = configIni:GetValueI("Island", "Number")
ISLAND_DISTANCE = configIni:GetValueI("Island", "Distance")
ISLAND_SCHEMATIC = "schematics/" .. configIni:GetValue("Schematic", "Island")
SPAWN_SCHEMATIC = "schematics/" .. configIni:GetValue("Schematic", "Spawn")
WORLD_NAME = configIni:GetValue("General", "Worldname")
SPAWN_CREATED = configIni:GetValueB("PluginValues", "SpawnCreated")
LANGUAGE_DEFAULT = configIni:GetValue("Language", "Default")
LANGUAGE_OTHERS = configIni:GetValueB("Language", "EnableOthers")
-- Reminder: Any new settings who gets added in new versions, should be added, to the config file trough the plugin, if not existent
end
-- Save settings who gets changed trough the plugin
function SaveConfiguration()
local configIni = cIniFile()
configIni:ReadFile(CONFIG_FILE)
configIni:SetValue("Island", "Number", ISLAND_NUMBER, true)
configIni:SetValueB("PluginValues", "SpawnCreated", SPAWN_CREATED, true)
configIni:WriteFile(CONFIG_FILE)
end
-- Only for the world that the plugin is using
function LoadPlayerInfos()
cRoot:Get():ForEachPlayer(function(a_Player)
if (a_Player:GetWorld():GetName() == WORLD_NAME) then
local playerInfo = cPlayerInfo.new(a_Player)
if (cFile:IsFolder(PLUGIN:GetLocalFolder() .. "/islands/" .. playerInfo.m_IslandNumber .. ".ini")) then
GetIslandInfo(playerInfo.m_IslandNumber)
end
PLAYERS[a_Player:GetUUID()] = playerInfo
end
end);
end
-- Loads all level challenges
function LoadAllLevels(a_File)
local configIni = cIniFile()
configIni:ReadFile(a_File)
local amount = configIni:GetNumValues("Levels")
for counter = 1, amount do
local fileLevel = configIni:GetValue("Levels", tostring(counter))
LEVELS[counter] = cLevel.new(fileLevel)
end
end
function LoadBlockValues()
local f = io.open(PLUGIN:GetLocalFolder() .. "/blockvalues.txt")
while true do
local line = f:read()
if (line == nil) then break end
local values = StringSplit(line, ":")
local point = tonumber(values[2])
if (string.find(values[1], "#") == nil) then
local id = tonumber(values[1])
BLOCK_VALUES[id] = {}
BLOCK_VALUES[id][0] = point
else
local idMeta = StringSplit(values[1], "#")
local id = tonumber(idMeta[1])
local meta = tonumber(idMeta[2])
if (BLOCK_VALUES[id] == nil) then
BLOCK_VALUES[id] = {}
end
BLOCK_VALUES[id][meta] = point
end
end
end
function LoadLanguageFiles()
local files = cFile:GetFolderContents(PLUGIN:GetLocalFolder() .. "/languages")
if
#files == 0 or
not(cFile:IsFile(PLUGIN:GetLocalFolder() .. "/languages/english.ini"))
then
-- Write Default language file
LANGUAGES["english.ini"] = cLanguage.new()
return
end
if (LANGUAGE_OTHERS) then
for i = 1, #files do
if (cFile:IsFile(PLUGIN:GetLocalFolder() .. "/languages/" .. files[i])) then
LANGUAGES[files[i]] = cLanguage.new(files[i])
end
end
else
LANGUAGES[LANGUAGE_DEFAULT] = cLanguage.new(LANGUAGE_DEFAULT)
end
end
function LoadLuaFiles()
local folders = { "/code", "/code/classes", "/code/commands" }
for _, folder in pairs(folders) do
local files = cFile:GetFolderContents(PLUGIN:GetLocalFolder() .. folder)
for _, file in pairs(files) do
if (string.sub(file, #file -3, #file) == ".lua") then
dofile(PLUGIN:GetLocalFolder() .. folder .. "/" .. file)
end
end
end
end