package lua; /** A set of utility methods for working with the Lua table extern. **/ class PairTools { public static function ipairsEach(table:Table, func : Int->T->Void) : Void { untyped __lua__("for i,v in _G.ipairs(table) do func(i,v) end"); } public static function pairsEach(table:Table, func : A->B->Void) : Void { untyped __lua__("for k,v in _G.pairs(table) do func(k,v) end"); } public static function ipairsMap(table:Table, func : Int->A->B) : Table { var ret : Table = Table.create(); untyped __lua__( "for i,v in _G.ipairs(table) do ret[i] = func(i,v) end;"); return ret; } public static function pairsMap(table:Table, func : A->B->C->C) : Table { var ret : Table = Table.create(); untyped __lua__( "for k,v in _G.pairs(table) do ret[k] = func(k,v) end;"); return ret; } public static function ipairsFold(table:Table, func : Int->A->B->B, seed: B) : B { untyped __lua__("for i,v in _G.ipairs(table) do seed = func(i,v,seed) end"); return untyped __lua__("seed"); } public static function pairsFold(table:Table, func : A->B->C->C, seed: C) : C { untyped __lua__("for k,v in _G.pairs(table) do seed = func(k,v,seed) end"); return untyped __lua__("seed"); } public static function ipairsConcat(table1:Table, table2:Table){ var ret:Table = Table.create(); ipairsFold(table1, function(a,b,c:Table){ c[a] = b; return c;}, ret); var size = lua.TableTools.maxn(ret); ipairsFold(table2, function(a,b,c:Table){ c[a + size] = b; return c;}, ret); return ret; } public static function pairsMerge(table1:Table, table2:Table){ var ret = copy(table1); pairsEach(table2, function(a,b:B) ret[cast a] = b); return ret; } public static function ipairsExist(table:Table, func: Int->T->Bool) { untyped __lua__("for k,v in _G.ipairs(table) do if func(k,v) then return true end end"); } public static function pairsExist(table:Table, func: A->B->Bool) { untyped __lua__("for k,v in _G.pairs(table) do if func(k,v) then return true end end"); } public static function copy(table1:Table) : Table { var ret : Table = Table.create(); untyped __lua__("for k,v in _G.pairs(table1) do ret[k] = v end"); return ret; } public static function pairsIterator(table:Table) : Iterator<{index:A, value:B}> { var p = Lua.pairs(table); var next = p.next; var i = p.index; return { next : function(){ var res = next(table,i); i = res.index; return {index : res.index, value : res.value}; }, hasNext : function(){ return Lua.next(table, i).value != null; } } } public static function ipairsIterator(table:Table) : Iterator<{index:Int, value:B}> { var p = Lua.ipairs(table); var next = p.next; var i = p.index; return { next : function(){ var res = next(table,i); i = res.index; return {index : res.index, value : res.value}; }, hasNext : function(){ return next(table, i).value != null; } } } }