Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't figure out how to put the objects created by a simple function in a table, to have them figure as individual identities..

E.g.

local function spawncibo()
nuovoCibo = display.newImage("immagini/cibo/cibo001.png")
end
timer.performWithDelay(1500, spawncibo, -1)

I tried to do it with a for loop, but it doesn't work (if i try to print the table I always get a nil result).

Any suggestion would be immensely appreciated!

share|improve this question

3 Answers

Providing I have correctly understood your question, you may try something like this :

local cibo = {}
local function spawncibo()
  cibo[#cibo+1] = display.newImage(string.format(
    "immagini/cibo/cibo%3d.png", #cibo+1))
end
timer.performWithDelay(1500, spawncibo, -1)

This will read files cibo001.png, cibo002.png, ... every 1.5 s and put all images into the cibo array.

share|improve this answer
local spawnedCibos = {}
local function spawncibo()
    nuovoCibo = display.newImage("immagini/cibo/cibo001.png")
    table.insert(spawnedCibos, nuovoCibo);
end
timer.performWithDelay(1500, spawncibo, -1);

local function enterFrameListener( event )
    for index=#spawnedCibos, 1, -1 do
        local cibo = spawnedCibos[index];
        cibo.x = cibo.x + 1;
        if cibo.x > display.contentWidth then
            cibo:removeSelf();
            table.remove(spawnedCibos, index);
        end
    end
end
share|improve this answer

Thank for you reply! I'll try to clarify a little better.

Basically, i'd want to spawn objects endlessly, at set amounts of time, and then move them and be able to check if a single one or some of them have fulfilled certain conditions. I reckon i have to do it putting each object i spawn in a table, in order to make each object unique and be able to handle it.

I read a guide which explains how to put objects in a table, but it uses a for loop to do it. If i try to spawn objects in that way, everyone of them is created instantly, rather than being created one at a time.

Sorry, i hope i clarified my point without complicating it too much.

Again, thank you for your help!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.