snake = {{10, 10}, {10, 9}, {10, 8}}
food = {15, 15}
direction = "right"
score = 0
width = 20
height = 20
grid = {}
for i = 1, width do
grid[i] = {}
for j = 1, height do
grid[i][j] = "."
end
end
for _, pos in ipairs(snake) do
grid[pos[1]][pos[2]] = "#"
end
grid[food[1]][food[2]] = "*"
function update()
local head = table.remove(snake, 1)
local newHead = {head[1], head[2]}
if direction == "right" then
newHead[1] = newHead[1] + 1
elseif direction == "left" then
newHead[1] = newHead[1] - 1
elseif direction == "up" then
newHead[2] = newHead[2] - 1
elseif direction == "down" then
newHead[2] = newHead[2] + 1
end
if newHead[1] < 1 or newHead[1] > width or newHead[2] < 1 or newHead[2] > height then
print("Game Over!")
return
end
for _, bodyPart in ipairs(snake) do
if bodyPart[1] == newHead[1] and bodyPart[2] == newHead[2] then
print("Game Over!")
return
end
end
if newHead[1] == food[1] and newHead[2] == food[2] then
score = score + 1
table.insert(snake, newHead)
while true do
local newFood = {math.random(1, width), math.random(1, height)}
if newFood[1] ~= newHead[1] and newFood[2] ~= newHead[2] then
food = newFood
break
end
end
else
table.insert(snake, 1, newHead)
end
grid[head[1]][head[2]] = "."
grid[newHead[1]][newHead[2]] = "#"
end
function changeDirection(newDir)
if newDir == "up" and direction ~= "down" or
newDir == "down" and direction ~= "up" or
newDir == "left" and direction ~= "right" or
newDir == "right" and direction ~= "left" then
direction = newDir
end
end
while true do
local event = io.read()
if event == "w" then
changeDirection("up")
elseif event == "s" then
changeDirection("down")
elseif event == "a" then
changeDirection("left")
elseif event == "d" then
changeDirection("right")
end
update()
for i = 1, height do
for j = 1, width do
io.write(grid[i][j])
end
print()
end
print("Score: ", score)
os.execute("sleep 0.2")
end