diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-27 21:06:11 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-27 21:06:11 +0200 |
commit | 66300ea7a6952c520510e2fa8d57023bbbce7a83 (patch) | |
tree | c0c76c75aacd3f4d7f3782c53e4af83213bc2419 /MCServer/Plugins/ChunkWorx/chunkworx_main.lua | |
parent | Cut out all packet handling to a separate cProtocol descendant (diff) | |
download | cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.tar cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.tar.gz cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.tar.bz2 cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.tar.lz cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.tar.xz cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.tar.zst cuberite-66300ea7a6952c520510e2fa8d57023bbbce7a83.zip |
Diffstat (limited to 'MCServer/Plugins/ChunkWorx/chunkworx_main.lua')
-rw-r--r-- | MCServer/Plugins/ChunkWorx/chunkworx_main.lua | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/MCServer/Plugins/ChunkWorx/chunkworx_main.lua b/MCServer/Plugins/ChunkWorx/chunkworx_main.lua new file mode 100644 index 000000000..26f9ca624 --- /dev/null +++ b/MCServer/Plugins/ChunkWorx/chunkworx_main.lua @@ -0,0 +1,134 @@ +-- Global variables +PLUGIN = {} -- Reference to own plugin object +GENERATION_STATE = 0 +OPERATION_CODE = 0 -- 0 = generation +CX = 0 +CZ = 0 +CURRENT = 0 +-- AREA Variables +AreaStartX = -10 +AreaStartZ = -10 +AreaEndX = 10 +AreaEndZ = 10 +-- RADIAL Variables +RadialX = 0 +RadialZ = 0 +Radius = 1 +-- WORLD +WORK_WORLD = cRoot:Get():GetDefaultWorld():GetName() +WW_instance = cRoot:Get():GetDefaultWorld() +WORLDS = {} + +function Initialize(Plugin) + PLUGIN = Plugin + + PLUGIN:SetName("ChunkWorx") + PLUGIN:SetVersion(4) + + PluginManager = cRoot:Get():GetPluginManager() + PluginManager:AddHook(PLUGIN, cPluginManager.E_PLUGIN_TICK) + + Plugin:AddWebTab("(Re)Generation", HandleRequest_Generation) + + GENERATION_STATE = 0 + WW_instance = cRoot:Get():GetWorld(WORK_WORLD) + if (WW_instance == nil) then + LOG("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. ": NO WORLD found :(") + end + + PLUGIN.IniFile = cIniFile("ChunkWorx.ini") + if (PLUGIN.IniFile:ReadFile() == false) then + PLUGIN.IniFile:HeaderComment("ChunkWorx Save") + PLUGIN.IniFile:AddKeyName("Area data") + PLUGIN.IniFile:SetValueI("Area data", "StartX", AreaStartX) + PLUGIN.IniFile:SetValueI("Area data", "StartZ", AreaStartZ) + PLUGIN.IniFile:SetValueI("Area data", "EndX", AreaEndX) + PLUGIN.IniFile:SetValueI("Area data", "EndZ", AreaEndZ) + PLUGIN.IniFile:AddKeyName("Radial data") + PLUGIN.IniFile:SetValueI("Radial data", "RadialX", RadialX) + PLUGIN.IniFile:SetValueI("Radial data", "RadialZ", RadialZ) + PLUGIN.IniFile:SetValueI("Radial data", "Radius", Radius) + PLUGIN.IniFile:WriteFile() + end + + AreaStartX = PLUGIN.IniFile:GetValueI("Area data", "StartX") + AreaStartZ = PLUGIN.IniFile:GetValueI("Area data", "StartZ") + AreaEndX = PLUGIN.IniFile:GetValueI("Area data", "EndX") + AreaEndZ = PLUGIN.IniFile:GetValueI("Area data", "EndZ") + + RadialX = PLUGIN.IniFile:GetValueI("Radial data", "RadialX") + RadialZ = PLUGIN.IniFile:GetValueI("Radial data", "RadialZ") + Radius = PLUGIN.IniFile:GetValueI("Radial data", "Radius") + + LOG("Initialized " .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion()) + --LOG("Test1: " .. math.fmod(1.5, 1)) - return fractional part! + return true +end + +function OnDisable() + PLUGIN.IniFile:WriteFile() + LOG(PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. " is shutting down...") +end + +function Tick( DeltaTime ) + if (GENERATION_STATE == 1 or GENERATION_STATE == 3) then + LOGINFO("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. ": works STARTED!") + LOGINFO("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. ": At world: " .. WORK_WORLD) + WW_instance = cRoot:Get():GetWorld(WORK_WORLD) + if (GENERATION_STATE == 1) then GENERATION_STATE = 2 end + if (GENERATION_STATE == 3) then GENERATION_STATE = 4 end + + -- Changing in case coordinates are flipped + local shifter = AreaEndX + if (AreaStartX > AreaEndX) then + AreaEndX = AreaStartX + AreaStartX = shifter + end + shifter = AreaEndZ + if (AreaStartZ > AreaEndZ) then + AreaEndZ = AreaStartZ + AreaStartZ = shifter + end + + CX = AreaStartX + CZ = AreaStartZ + CURRENT = 0 + + if (WW_instance == nil) then + LOG("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. ": works ABORTED") + LOG("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. ": NO WORLD found :(") + GENERATION_STATE = 0 + end + end + + + + if (GENERATION_STATE == 2 or GENERATION_STATE == 4) then + if (WW_instance:GetGeneratorQueueLength() < 200 + and WW_instance:GetLightingQueueLength() < 200 + and (WW_instance:GetStorageSaveQueueLength() + WW_instance:GetStorageLoadQueueLength()) < 80) then + local chunk_sum = (1+ AreaEndX - AreaStartX) * (1+ AreaEndZ - AreaStartZ) + LOG("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. ": PROCESSING 100 chunks, (" .. CURRENT .. "/" .. chunk_sum .. ")") + for C = 1, 100 do + if (GENERATION_STATE == 2) then WW_instance:GenerateChunk(CX, CZ) end + if (GENERATION_STATE == 4) then WW_instance:RegenerateChunk(CX, CZ) end + + CX = CX + 1 + CURRENT = CURRENT + 1 + if (CX > AreaEndX) then + CX = AreaStartX + CZ = CZ + 1 + if (CZ > AreaEndZ) then + if (GENERATION_STATE == 2) then LOGINFO("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. " - generation ENDED!") end + if (GENERATION_STATE == 4) then LOGINFO("" .. PLUGIN:GetName() .. " v" .. PLUGIN:GetVersion() .. " - REgeneration ENDED!") end + + GENERATION_STATE = 0 + break + end + end + end + WW_instance:SaveAllChunks() + WW_instance:UnloadUnusedChunks() + end + end +end
\ No newline at end of file |