summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Debuggers/Debuggers.lua
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-07 09:18:10 +0100
committermadmaxoft <github@xoft.cz>2014-03-07 09:18:10 +0100
commitf6aaeb74a9bb50488c2c5b5732f43dae4beef15c (patch)
tree4fd75c272592a068aa20ab07ba5a51bb7440bf43 /MCServer/Plugins/Debuggers/Debuggers.lua
parentAPIDump: Documented cBlockArea string-serialization functions. (diff)
downloadcuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.tar
cuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.tar.gz
cuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.tar.bz2
cuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.tar.lz
cuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.tar.xz
cuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.tar.zst
cuberite-f6aaeb74a9bb50488c2c5b5732f43dae4beef15c.zip
Diffstat (limited to 'MCServer/Plugins/Debuggers/Debuggers.lua')
-rw-r--r--MCServer/Plugins/Debuggers/Debuggers.lua38
1 files changed, 38 insertions, 0 deletions
diff --git a/MCServer/Plugins/Debuggers/Debuggers.lua b/MCServer/Plugins/Debuggers/Debuggers.lua
index 329a652cd..f99c48242 100644
--- a/MCServer/Plugins/Debuggers/Debuggers.lua
+++ b/MCServer/Plugins/Debuggers/Debuggers.lua
@@ -71,6 +71,8 @@ function Initialize(Plugin)
-- TestExpatBindings();
-- TestPluginCalls();
+ TestBlockAreasString()
+
return true
end;
@@ -202,6 +204,42 @@ end
+function TestBlockAreasString()
+ -- Write one area to string, then to file:
+ local BA1 = cBlockArea()
+ BA1:Create(5, 5, 5, cBlockArea.baTypes + cBlockArea.baMetas)
+ BA1:Fill(cBlockArea.baTypes, E_BLOCK_DIAMOND_BLOCK)
+ BA1:FillRelCuboid(1, 3, 1, 3, 1, 3, cBlockArea.baTypes, E_BLOCK_GOLD_BLOCK)
+ local Data = BA1:SaveToSchematicString()
+ if ((type(Data) ~= "string") or (Data == "")) then
+ LOG("Cannot save schematic to string")
+ return
+ end
+ cFile:CreateFolder("schematics")
+ local f = io.open("schematics/StringTest.schematic", "w")
+ f:write(Data)
+ f:close()
+
+ -- Load a second area from that file:
+ local BA2 = cBlockArea()
+ if not(BA2:LoadFromSchematicFile("schematics/StringTest.schematic")) then
+ LOG("Cannot read schematic from string test file")
+ return
+ end
+ BA2:Clear()
+
+ -- Load another area from a string in that file:
+ f = io.open("schematics/StringTest.schematic", "r")
+ Data = f:read("*all")
+ if not(BA2:LoadFromSchematicString(Data)) then
+ LOG("Cannot load schematic from string")
+ end
+end
+
+
+
+
+
function TestSQLiteBindings()
LOG("Testing SQLite bindings...");