Code: Select all
--Scrolling Tilemap Test--
local moonshine = require("moonshine")
function love.load()
effect = moonshine(moonshine.effects.colorgradesimple)
effect.colorgradesimple.factors = {0.075,0.075,0.6}
width = love.graphics.getWidth()
height = love.graphics.getHeight()
tilesize = 64
player = {}
screenx = width/2
screeny = height/2
startx = 1
starty = 1
screentilex = nil
screentiley = nil
player.speed = 2
player.x = startx
player.y = starty
tilestartx = math.floor(player.x-(screenx/tilesize))
tilestarty = math.floor(player.y-(screeny/tilesize))
delta = love.timer.getDelta()
map = {
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1},
{1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1},
{1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1}
}
mapsizex = 30
mapsizey = 30
player.sprite = love.graphics.newImage("Assets/PNGs/Player/PlayerTemplate.png")
tileset = love.graphics.newImage("Assets/PNGs/Map/Tiles/TileSprite0.png")
grass = love.graphics.newQuad(0,0,tilesize,tilesize,2048,2048)
shortgrass = love.graphics.newQuad(128,0,tilesize,tilesize,2048,2048)
end
function love.update(dt)
updateresolution()
checkeys()
end
function love.draw()
drawmap()
drawplayer()
drawdebug()
end
function checkeys()
if love.keyboard.isDown("w") then player.y = player.y - player.speed * delta end
if love.keyboard.isDown("d") then player.x = player.x + player.speed * delta end
if love.keyboard.isDown("s") then player.y = player.y + player.speed * delta end
if love.keyboard.isDown("a") then player.x = player.x - player.speed * delta end
if player.y < 0 then player.y = 0 end
if player.x < 0 then player.x = 0 end
end
function drawplayer()
love.graphics.draw(player.sprite,screenx,screeny)
end
function drawmap()
local startdrawx = math.floor(screenx-(player.x*tilesize))
local startdrawy = math.floor(screeny-(player.y*tilesize))
if startdrawx < 0 then startdrawx = 0 end
if startdrawy < 0 then startdrawy = 0 end
local drawx = startdrawx
local drawy = startdrawy
local tilestartcheckx = nil
screentilex = screenx/tilesize
screentiley = screeny/tilesize
if drawx < 0 then drawx = 0 end
if drawy < 0 then drawy = 0 end
tilestartx = math.floor(player.x-screentilex)
tilestarty = math.floor(player.y-screentiley)
if tilestartx < 1 then tilestartx = 1 end
if tilestarty < 1 then tilestarty = 1 end
local tileendx = math.floor((width-startdrawx)/tilesize)
local tileendy = math.floor((height-startdrawy)/tilesize)
local sprite = nil
love.graphics.setBackgroundColor(0.2,0.2,0.2)
for y=tilestarty,tileendy do
for x=tilestartx,tileendx do
if map[y][x] == 0 then
sprite = grass
--effect(function()
love.graphics.draw(tileset,sprite,drawx,drawy)
--end)
end
if map[y][x] == 1 then
sprite = shortgrass
love.graphics.draw(tileset,sprite,drawx,drawy)
end
if drawx < startdrawx+(tileendx*tilesize)-tilesize then drawx = drawx+tilesize else drawx = startdrawx end
if drawy < startdrawy+(tileendy*tilesize) and drawx == startdrawx then drawy = drawy+tilesize end
end
end
end
function drawdebug()
love.graphics.print("Player X: "..player.x,10,10)
love.graphics.print("Player X FLR: "..math.floor(player.x),200,10)
love.graphics.print("Player Y: "..player.y,10,30)
love.graphics.print("TileStartX: "..tilestartx,10,50)
love.graphics.print("TileStartY: "..tilestarty,10,70)
love.graphics.print("ScreenTileX: "..screentilex,10,90)
love.graphics.print("ScreenTileX FLR: "..math.floor(screentilex),200,90)
love.graphics.print("ScreenTileY: "..screentiley,10,110)
end
function updateresolution()
width = love.graphics.getWidth()
height = love.graphics.getHeight()
screenx = math.floor(width/2)
screeny = math.floor(height/2)
delta = love.timer.getDelta()
end
Nytician.