Isometric game: screen to world transformation
Posted: Thu Jul 20, 2023 4:25 pm
Im working on an isometric project, so far it has a lighting system similar to old minecraft and the basics of an isometric game. Thing is, id like to have my own level editor built in Love2D specifically for this project. With this, id need a way to get the mouse position, to do that i need a way to get screen position and transform it into a tile position in the isometric world. I have a formula for getting a world position and output a screen position, and i have tried to do the inverse, but to no success:
Im scaling everything by 4 and shifting the map drawing to the center of the screen as well, heres the draw call:
Heres some screenshots and the code for the interested, any help is greatly appreciated, ive been stuck on this for the last 2 weeks :
https://github.com/Caue-Aron/Isometric


Code: Select all
local a = (TILE_WIDTH / 2) -- a11
local b = -(TILE_WIDTH / 2) -- a12
local c = (TILE_WIDTH / 4) -- a21
local d = (TILE_WIDTH / 4) -- a22
function ToScreen(x, y, xtransform, ytransform)
xtransform = xtransform or 0
ytransform = ytransform or 0
local xx = (x * a + y * b) - TILE_WIDTH / 2
local yy = (x * c + y * d) - TILE_HEIGHT / 2
return math.floor(xx + xtransform), math.floor(yy + ytransform)
end
function ToWorld(x, y)
local scalar = 1 / (a * d - b * c)
local aa = d * scalar
local bb = -b * scalar
local cc = -c * scalar
local dd = a * scalar
local xx = (x * aa + y * bb) + TILE_WIDTH / 2
local yy = (x * cc + y * dd) + TILE_HEIGHT / 2
return math.floor(xx), math.floor(yy)
end
Code: Select all
function love.draw()
love.graphics.scale(SCALE, SCALE)
for y = 0, ACTUAL_MAP_HEIGHT do
for x = 0, ACTUAL_MAP_WIDTH do
local tile_index = Map:GetIndexFromXY(x, y)
local tile = Map[tile_index]
light_color = tile.color
love.graphics.setColor(light_color)
local xx, yy = ToScreen(x, y, WINDOW_WIDTH / 2, WINDOW_HIEGHT / 4)
love.graphics.draw(sheet, tilemap[tile.tileset], xx, yy)
end
end
end
function love.update()
print(ToWorld(love.mouse.getPosition()))
end
https://github.com/Caue-Aron/Isometric

