Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local socket = require "socket"
- PIXEL_SIZE = 15
- SPEED = 0.1
- GROWTH_FACTOR = 3
- function love.load()
- grid = {}
- for y = 1, love.graphics.getHeight() / PIXEL_SIZE do
- for x = 1, love.graphics.getWidth() / PIXEL_SIZE do
- table.insert(grid, 0)
- end
- end
- snake = {}
- snake.pos = {y = 0, x = 0}
- snake.length = GROWTH_FACTOR
- snake.path = {}
- snake.facing = nil
- last_key = nil
- end
- function love.update(dt)
- table.insert(snake.path, 1, snake.pos)
- if #snake.path > snake.length then table.remove(snake.path, #snake.path) end
- if last_key == "up" and snake.facing ~= "down" then snake.facing = "up"
- elseif last_key == "down" and snake.facing ~= "up" then snake.facing = "down"
- elseif last_key == "left" and snake.facing ~= "right" then snake.facing = "left"
- elseif last_key == "right" and snake.facing ~= "left" then snake.facing = "right" end
- if snake.facing == "up" then snake.pos.y = snake.pos.y - 1
- elseif snake.facing == "down" then snake.pos.y = snake.pos.y + 1
- elseif snake.facing == "left" then snake.pos.x = snake.pos.x - 1
- elseif snake.facing == "right" then snake.pos.x = snake.pos.x + 1 end
- socket.sleep(SPEED)
- end
- function love.draw()
- love.graphics.setColor(0, 0, 0, 1)
- love.graphics.rectangle("fill", 0, 0, love.graphics.getWidth(), love.graphics.getHeight())
- love.graphics.setColor(255, 255, 255, 1)
- love.graphics.rectangle("fill", snake.pos.x * PIXEL_SIZE, snake.pos.y * PIXEL_SIZE, PIXEL_SIZE, PIXEL_SIZE)
- for i = 1, #snake.path do
- love.graphics.rectangle("fill", snake.path[i].x * PIXEL_SIZE, snake.path[i].y * PIXEL_SIZE, PIXEL_SIZE, PIXEL_SIZE)
- end
- end
- function love.keypressed(key, scancode, isrepeat)
- if scancode == "escape" then love.event.quit() end
- last_key = scancode
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement