Selecting and moving a singular object contained in a list
Posted: Sun Mar 30, 2025 5:22 am
I'm a very new love2d/lua user. I have been tinkering around with it the past day, trying to figure out some basics. I've watched a couple tutorials as well, but I learn best by doing and really understanding exactly what is happening in my code. I've been tinkering with simple card game mechanics (deal cards from a deck, selecting and moving a card with the mouse). I've run into an issue with moving specific cards when multiple cards have been dealt. Here is my code for the Cards and the main.lua code.
local
What is happening is that when multiple cards have been dealt on to the board, I can select one and move it, but the others disappear only to reappear when the deal card button is pressed. The other cards reappear in positions that are definitely related to the move() function, but in a manner that is making it difficult for me to discern the reason. My thought process was that because I am passing the (self) into the move() function, it should only move the card that the mouse is positioned on. Obviously I am inexperienced and this is the most simple issue ever, but I feel like if I can understand why this is happening it will help me understand things in a much broader way.
Thanks for any help in advance and apologies for such a simple issue.
local
Code: Select all
love = require("love")
function Card()
return {
length = 100,
width = 60,
x = 200,
y = 880,
title = "",
selected = false,
move = function(self, player_x, player_y, ismouse_down)
if self.x <= player_x and player_x <= self.x + 60 and self.y <= player_y and player_y <= self.y + 100 then
if ismouse_down then
self.selected = true
end
end
if not ismouse_down then
self.selected = false
end
if self.selected then
self.x = player_x - 30
self.y = player_y - 50
end
end,
draw = function (self)
love.graphics.setColor(1, 1, 1)
love.graphics.rectangle("fill", self.x, self.y, self.width, self.length)
love.graphics.setColor(1,1,1)
end
}
end
return Card
Code: Select all
_G.love = require("love")
local card = require("Card")
local game = {
state = {
menu = false,
paused = false,
running = true,
ended = false,
}
}
local player = {
x = 30,
y = 30
}
local cards = {}
local dealButton = {
length = 70,
width = 120,
x = 1740,
y = 500,
draw = function (self)
love.graphics.setColor(1, 1, 1)
love.graphics.rectangle("fill", self.x, self.y, self.width, self.length)
love.graphics.setColor(1, 1, 1)
end
}
function love.mousepressed(x, y)
if dealButton.x <= x and x <= dealButton.x + 120 and dealButton.y <= y and y <= dealButton.y + 70 then
table.insert(cards, #cards + 1, card())
for i = 2, #cards do
cards[i].x = i * 80
end
end
end
function love.load()
love.graphics.setBackgroundColor(0.5,0.5,0.3)
love.mouse.setVisible(true)
end
function love.update(dt)
player.x, player.y = love.mouse.getPosition()
local mouseDown = love.mouse.isDown(1)
for i = 1, #cards do
cards[i]:move(player.x, player.y, mouseDown)
end
end
function love.draw()
love.graphics.printf("FPS: " .. love.timer.getFPS(), love.graphics.newFont(12), 10, 20, love.graphics.getWidth())
love.graphics.printf("Number of Cards: ".. #cards, love.graphics.newFont(12), 10, 50, love.graphics.getWidth())
if game.state["running"] then
dealButton:draw()
for i = 1, #cards do
cards[i]:draw()
end
end
end
Thanks for any help in advance and apologies for such a simple issue.