AR/Table: Difference between revisions
(Created page with "<font color="#FF0000" size="7"> <strong> <p align="center">'''بسم الله الرحمن الرحيم'''</p> </strong> </font><br /> <p align="center">___________...") |
mNo edit summary |
||
(25 intermediate revisions by 8 users not shown) | |||
Line 8: | Line 8: | ||
== table.foreachi == | '''== table.foreachi == | ||
تستخدم ل إظهار الجدول بصف واحد | |||
تستخدم ل إظهار الجدول بصف واحد | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
table table.foreachi(table,function) | table table.foreachi(table,function) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 42: | Line 35: | ||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
t = { 1,2,"three"; pi=3.14159, banana="yellow" } | |||
test1 = table.foreachi(t,print) | |||
1 1 | |||
2 2 | |||
3 three | |||
</syntaxhighlight> </section> | |||
<p align="center">___________________________________________________________________</p> | |||
<p align="center">___________________________________________________________________</p> | |||
''' | |||
== table.foreach == | == table.foreach == | ||
Line 69: | Line 74: | ||
k = { apple="green", orange="orange", banana="yellow" } | k = { apple="green", orange="orange", banana="yellow" } | ||
test1 = table. | test1 = table.foreach(k,print) | ||
Line 83: | Line 88: | ||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
t = { 1,2,"three"; pi=3.14159, banana="yellow" } | |||
test1 = table.foreach(t,print) | |||
1 1 | |||
2 2 | |||
3 three | |||
pi 3.14159 | |||
banana yellow | |||
</syntaxhighlight> </section> | |||
<p align="center">___________________________________________________________________</p> | |||
== table.insert == | |||
<syntaxhighlight lang="lua"> | |||
table table.insert (table,function) | |||
</syntaxhighlight> | |||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
-- مثال على جلب أسماء اللاعبين عن طريق الجدول | |||
t = { }; -- إنشاء جدول | |||
for i, p in ipairs ( getElementsByType ( "player" ) ) do -- لوب للاعبين | |||
table.insert ( t, p ); -- نحطهم ف الجدول | |||
end -- إغلاق loop | |||
------------------------ | |||
addCommandHandler ( "gPlayer", function ( ) -- إنشاء أمر | |||
for i, p in ipairs ( t ) do -- نجيب اسماء عن طريق الجدول | |||
if #t ~= 0 then -- نتأكد أن الجدول لا يساوي صفر أو مو فاضي | |||
outputChatBox ( getPlayerName ( p ) ); -- نطلع الأسماء في الشات | |||
end -- إغلاق if | |||
end -- إغلاق loop | |||
end -- إغلاق function | |||
); -- إغلاق القوس | |||
</syntaxhighlight> </section> | |||
<p align="center">___________________________________________________________________</p> | |||
<syntaxhighlight lang="lua"> | |||
table table.remove (table,function) | |||
</syntaxhighlight> | |||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
-- مثال على حذف إسم اللاعب من الجدول | |||
t = { }; -- إنشاء جدول | |||
for i, p in ipairs ( getElementsByType ( "player" ) ) do -- لوب للاعبين | |||
table.insert ( t, p ); -- نحط اللاعبين ف الجدول | |||
end -- إغلاق loop | |||
------------------------ | |||
addCommandHandler ( "removeMe", function ( player ) -- إنشاء أمر | |||
for i, p in ipairs ( t ) do -- نجيب الا ف الجدول | |||
if #t ~= 0 then -- نتأكد أن الجدول لا يساوي صفر أو مو فاضي | |||
if player == p then -- إذا كان إسم اللاعب الي كتب الأمر يساوي اللاعب اف الجدول | |||
table.remove ( t, i ); -- نحذفه من الجدول بواسطة رقمه | |||
end -- إغلاق if | |||
end -- إغلاق if | |||
end -- إغلاق loop | |||
end -- إغلاق function | |||
); -- | |||
</syntaxhighlight> </section> | |||
<p align="center">___________________________________________________________________</p> | |||
'''== table.sort == | |||
تستخدم لـ ترتيب الجدول | |||
<syntaxhighlight lang="lua"> | |||
table table.sort(table,function) | |||
</syntaxhighlight> | |||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
t = {5,1,7,2,9,8,3} -- صنع جدول داخله ارقام عشوائية | |||
table.sort(t, | |||
function (a,b) | |||
return ( tonumber(a) or 0 ) < ( tonumber(b) or 0 ) -- يرتبهم حسب الاصغر | |||
end | |||
) | |||
-- النتيجة | |||
-- t = {1,2,3,5,7,8,9} | |||
</syntaxhighlight> </section> | |||
<p align="center">___________________________________________________________________</p> | |||
'''== table.concat == | |||
تستخدم لتكوين نص من الكلمات دآخل الجدول | |||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
t = { "I", "Love", "You" }; | |||
outputChatBox ( table.concat ( t, " " ) ); | |||
-- I Love You | |||
--------------------------------- | |||
t = { "1", "2", "3", "Go!" }; | |||
outputChatBox ( table.concat ( t, ", " ) ); | |||
-- 1, 2, 3, Go! | |||
</syntaxhighlight> </section> | |||
<p align="center">___________________________________________________________________</p> | |||
'''== unpack == | |||
تستخدم لـ استخراج قيم الجدول | |||
<syntaxhighlight lang="lua"> | |||
table unpack(table) | |||
</syntaxhighlight> | |||
<section name="Example" class="both" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
Colors = {255,50,100} | |||
R,G,B = unpack(Colors) | |||
-- R = 255 , G = 50, B = 100 | |||
outputChatBox("Works!",R,G,B) | |||
</syntaxhighlight> </section> | |||
<div style="background: #FFCFCF; padding: 5px; font-weight:bold; border: 1px dotted #AAAAAA;padding:10px;margin:10px;"><center> | |||
<font color="#0066cc" size="5">؟ table.foreachi و table.foreach الفرق بين </font> | |||
الاولى تستخدم لفهرسة الجدول بينما الاخرى هي لتكرار مفاتيح الجداول ,, | |||
ملاحظة : الثانيه غير مضمونه بما يتعلق الترتيب التي يتم تخزين مفاتيح في جدول | |||
</center></div> | |||
== الجداول التي تحتاج لترجمة أو امثلة == | |||
* [http://www.lua.org/manual/5.1/manual.html#pdf-table.maxn table.maxn] | |||
[[ar:Table]] | |||
[[DE:table]] | |||
[[en:Table]] | |||
[[hu:table]] | |||
[[RU:Table]] |
Latest revision as of 18:05, 21 February 2021
بسم الله الرحمن الرحيم
___________________________________________________________________
== table.foreachi ==
تستخدم ل إظهار الجدول بصف واحد
table table.foreachi(table,function)
t = {1,1,2,3,5,8,13} test1 = table.foreachi(t,print) 1 1 2 1 3 2 4 3 5 5 6 8 7 13
t = { 1,2,"three"; pi=3.14159, banana="yellow" } test1 = table.foreachi(t,print) 1 1 2 2 3 three
___________________________________________________________________
table.foreach
تستخدم ل تكرار المفاتيح في الجدول
table table.foreach(table,function)
k = { apple="green", orange="orange", banana="yellow" } test1 = table.foreach(k,print) apple green orange orange banana yellow
t = { 1,2,"three"; pi=3.14159, banana="yellow" } test1 = table.foreach(t,print) 1 1 2 2 3 three pi 3.14159 banana yellow
___________________________________________________________________
table.insert
table table.insert (table,function)
-- مثال على جلب أسماء اللاعبين عن طريق الجدول t = { }; -- إنشاء جدول for i, p in ipairs ( getElementsByType ( "player" ) ) do -- لوب للاعبين table.insert ( t, p ); -- نحطهم ف الجدول end -- إغلاق loop ------------------------ addCommandHandler ( "gPlayer", function ( ) -- إنشاء أمر for i, p in ipairs ( t ) do -- نجيب اسماء عن طريق الجدول if #t ~= 0 then -- نتأكد أن الجدول لا يساوي صفر أو مو فاضي outputChatBox ( getPlayerName ( p ) ); -- نطلع الأسماء في الشات end -- إغلاق if end -- إغلاق loop end -- إغلاق function ); -- إغلاق القوس
___________________________________________________________________
table table.remove (table,function)
-- مثال على حذف إسم اللاعب من الجدول t = { }; -- إنشاء جدول for i, p in ipairs ( getElementsByType ( "player" ) ) do -- لوب للاعبين table.insert ( t, p ); -- نحط اللاعبين ف الجدول end -- إغلاق loop ------------------------ addCommandHandler ( "removeMe", function ( player ) -- إنشاء أمر for i, p in ipairs ( t ) do -- نجيب الا ف الجدول if #t ~= 0 then -- نتأكد أن الجدول لا يساوي صفر أو مو فاضي if player == p then -- إذا كان إسم اللاعب الي كتب الأمر يساوي اللاعب اف الجدول table.remove ( t, i ); -- نحذفه من الجدول بواسطة رقمه end -- إغلاق if end -- إغلاق if end -- إغلاق loop end -- إغلاق function ); --
___________________________________________________________________
== table.sort ==
تستخدم لـ ترتيب الجدول
table table.sort(table,function)
t = {5,1,7,2,9,8,3} -- صنع جدول داخله ارقام عشوائية table.sort(t, function (a,b) return ( tonumber(a) or 0 ) < ( tonumber(b) or 0 ) -- يرتبهم حسب الاصغر end ) -- النتيجة -- t = {1,2,3,5,7,8,9}
___________________________________________________________________
== table.concat ==
تستخدم لتكوين نص من الكلمات دآخل الجدول
t = { "I", "Love", "You" }; outputChatBox ( table.concat ( t, " " ) ); -- I Love You --------------------------------- t = { "1", "2", "3", "Go!" }; outputChatBox ( table.concat ( t, ", " ) ); -- 1, 2, 3, Go!
___________________________________________________________________
== unpack ==
تستخدم لـ استخراج قيم الجدول
table unpack(table)
Colors = {255,50,100} R,G,B = unpack(Colors) -- R = 255 , G = 50, B = 100 outputChatBox("Works!",R,G,B)
؟ table.foreachi و table.foreach الفرق بين
الاولى تستخدم لفهرسة الجدول بينما الاخرى هي لتكرار مفاتيح الجداول ,, ملاحظة : الثانيه غير مضمونه بما يتعلق الترتيب التي يتم تخزين مفاتيح في جدول