.
This commit is contained in:
parent
d505661bdd
commit
35ed90dc51
@ -4,6 +4,9 @@
|
||||
|
||||
basic = require("lib.basic")
|
||||
|
||||
|
||||
|
||||
|
||||
local function createMatrix(filePath, dim)
|
||||
--create empty matrix
|
||||
matrix = {}
|
||||
@ -41,10 +44,13 @@ local function createMatrix(filePath, dim)
|
||||
matrix[x][y] = 1
|
||||
end
|
||||
end
|
||||
|
||||
return matrix
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
local function printLayer(matrix, withChest)
|
||||
for i=1, #matrix do
|
||||
for j=1, #matrix[i] do
|
||||
@ -64,6 +70,10 @@ local function printLayer(matrix, withChest)
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
local function countBlocks(matrix)
|
||||
local counter = 0
|
||||
for i=1, #matrix do
|
||||
@ -76,6 +86,10 @@ local function countBlocks(matrix)
|
||||
return counter
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
local function confirmationDialog(input)
|
||||
if input == "y" or input == "yes" then
|
||||
return true
|
||||
@ -85,6 +99,11 @@ local function confirmationDialog(input)
|
||||
print("confirmationDialogError")
|
||||
return "Error"
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
local function itemInInventory()
|
||||
for i=1, 16 do
|
||||
@ -99,7 +118,6 @@ local function itemInInventory()
|
||||
end
|
||||
|
||||
|
||||
--[[
|
||||
function main()
|
||||
print("Print with Chest? [yn]")
|
||||
local withChest = confirmationDialog()
|
||||
@ -125,5 +143,4 @@ function main()
|
||||
end
|
||||
|
||||
main()
|
||||
--]]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user