Log In  

Hey All,

First post here after recently picking up and playing with pico-8 (humble bundle). It's rather brilliant I have to say!

I have only been playing around with coding for a couple of months and remain very much a novice, and this is my first time using lua with pico-8.

My question is regarding tables of tables (objects I am spawning in my game), and the deletion of those objects...

Let's say we have the following little program which spawns 5 THINGS, gives them unique names, and then adds them to the list a{}. We then delete the item with NAME=3, and then print some output...

a = {}

for i=1,5 do
    local thing = {}
    thing.name = i
    add(a,thing)
end

for thing in all(a) do
 if thing.name == 3 then
  del(a,thing)
 end
end

for thing in all(a) do
 print(thing.name)
end

print("# = "..#a)
print(a[3])

Output is: 1, 2, 4, 5, # = 4, TABLE

This works fine, and is the standard practice I have been using to remove objects from the master table.

However, let's say I already know which item on the main table (a) that I want to delete by its index, say the third item... i.e. a[3]

What I'd like to be able to do is delete that sub-table from the list without iterating through the list a{} to find it (imagine a{} contains lots of objects!), and instead just delete it directly, i.e.

del(a,[3])

but the del() function does not work in this way, so I have been trying to set the sub-table to NIL by its index in the main table a{} i.e....

-- REPLACE THIS
-- for thing in all(a) do
-- if thing.name == 3 then
--  del(a,thing)
-- end
--end

-- WITH
a[3]=NIL

I don't have any idea if this is the right way to approach this, but it has been producing some confusing results....

a[3]=NIL

produces... 1, 2, 4, 5, #=5, NIL

which as far as I can tell means the third item in a{} is now a non-item (NIL) and will not be processed when I iterate through a{}, and the table a{} still has 5 items.

This is not exactly what I'm looking for, as I was hoping to see the # in a{} go down to 4.

Also.... and this is where I'm really confused... attempting to remove the first or second item, a[1] or a[2], produces similar results.... BUT if I try a[5]=nil, then the output is:

1, 2, 3, 4, #=4, TABLE

... which appears to have done what I wanted??

BUT if I try a[4]=nil .... then I get:

1, 2, 3, #=3, TABLE

which seems to have removed both entries 4 and 5 in the table completely ?!?

So.... I'm guessing there must be a better way to achieve what I'm trying to do that I'm not aware of, so if anyone can tell me what that is that would be great!

...and if anyone can explain what is going on to create the strange results above then .... :)

Sorry if that was a little long-winded, just wanted to try and be clear.

Any input here would be much appreciated.
Thanks!

P#35335 2017-01-09 09:13 ( Edited 2017-01-09 15:48)

you can do del(a,a[3]). it does iterate though.

here's add() & del():

function add(c,i) 
    if (c==nil) then return end
    local num=#c c[num+1]=i 
end

function del(c,i) 
    if (c==nil) then return end
    local num=#c
    if (num < 1) then return end
    local j
    local k
    for j=1,num do
        if c[j]==i then
            for k=j,num-1 do c[k]=c[k+1] end
            c[num]=nil
            return 
        end 
    end 
end


also have look there: https://www.lexaloffle.com/bbs/?tid=2742

alternatives I've been using:

-- faster add - no check
function fadd(t,v)
    t[#t+1]=v
end

-- faster del - doesn't keep order!!
function fdel(t,v)
    local n=#t
    for i=1,n do
        if t[i]==v then
            t[i]=t[n]
            t[n]=nil
            return
        end
    end
end

-- del by index - keeps order
function idel(t,i)
    local n=#t
    if (i>0 and i<=n) then
            for j=i,n-1 do t[j]=t[j+1] end
            t[n]=nil
    end
end

-- del by index - doesn't keep order!!
function idelr(t,i)
    local n=#t
    if (i>0 and i<=n) then
            t[i]=t[n]
            t[n]=nil
    end
end

P#35337 2017-01-09 09:32 ( Edited 2017-01-09 15:13)

thank you very much ultrabrite!

using del(a,a[3]) instead of just del(a,[3]) works perfectly......

not trying a[3] instead of just [3] seems pretty stupid now that I know what was wrong! cheers!

also, being able to see the code for add() and del() like that is pretty useful and really helps me understand all this.

as for the link... seeing that assigning table entries a value of NIL can screw things up explains the weirdness I was seeing! Interesting looking repair functions in there as well.

Great response... thanks again!

P#35344 2017-01-09 10:40 ( Edited 2017-01-09 15:42)

Blimey, those alternatives you added are awesome! The way your delete by index functions work is exactly what I was looking for!

Many thanks!

P#35346 2017-01-09 10:48 ( Edited 2017-01-09 16:33)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-29 14:49:35 | 0.006s | Q:10