/* Legal: Version: MPL 1.1 The contents of this file are subject to the Mozilla Public License Version 1.1 the "License"; you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the YSI framework. The Initial Developer of the Original Code is Alex "Y_Less" Cole. Portions created by the Initial Developer are Copyright C 2011 the Initial Developer. All Rights Reserved. Contributors: Y_Less koolk JoeBullet/Google63 g_aSlice/Slice Misiur samphunter tianmeta maddinat0r spacemud Crayder Dayvison Ahmad45123 Zeex irinel1996 Yiin- Chaprnks Konstantinos Masterchen09 Southclaws PatchwerkQWER m0k1 paulommu udan111 Thanks: JoeBullet/Google63 - Handy arbitrary ASM jump code using SCTRL. ZeeX - Very productive conversations. koolk - IsPlayerinAreaEx code. TheAlpha - Danish translation. breadfish - German translation. Fireburn - Dutch translation. yom - French translation. 50p - Polish translation. Zamaroht - Spanish translation. Los - Portuguese translation. Dracoblue, sintax, mabako, Xtreme, other coders - Producing other modes for me to strive to better. Pixels^ - Running XScripters where the idea was born. Matite - Pestering me to release it and using it. Very special thanks to: Thiadmer - PAWN, whose limits continue to amaze me! Kye/Kalcor - SA:MP. SA:MP Team past, present and future - SA:MP. Optional plugins: Gamer_Z - GPS. Incognito - Streamer. Me - sscanf2, fixes2, Whirlpool. */ #define CB_GET(%0) new _cb[E_CALLBACK_DATA]; Callback_Get(cb, _cb, (%0)) #define CB_CALL(%0) Callback_Call(_cb,%0) #define CB_REL() Callback_Release(_cb) stock Map(callback:cb, const arr[], dest[], al = sizeof (arr), dl = sizeof (dest)) { CB_GET("i"); for (new len = min(al, dl), i; i != len; ++i) { dest[i] = CB_CALL(arr[i]); } return CB_REL(); } #define Map({%0}%1)%8; LAMBDA_i{%0}(%1)%8; stock Map_(callback:cb, const arr[], len = sizeof (arr)) { CB_GET("i"); for (new i; i != len; ++i) { CB_CALL(arr[i]); } return CB_REL(); } #define Map_({%0}%1)%8; LAMBDA_i{%0}(%1)%8; stock MapIdx(callback:cb, const arr[], dest[], al = sizeof (arr), dl = sizeof (dest)) { CB_GET("ii"); for (new len = min(al, dl), i; i != len; ++i) { dest[i] = CB_CALL(i, arr[i]); } return CB_REL(); } #define MapIdx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock MapIdx_(callback:cb, const arr[], len = sizeof (arr)) { CB_GET("ii"); for (new i; i != len; ++i) { CB_CALL(i, arr[i]); } return CB_REL(); } #define MapIdx_({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ZipWith(callback:cb, const l[], const r[], dest[], ls = sizeof (l), rs = sizeof (r), ds = sizeof (dest)) { CB_GET("ii"); for (new len = min(ds, min(ls, rs)), i; i != len; ++i) { dest[i] = CB_CALL(l[i], r[i]); } return CB_REL(); } #define ZipWith({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ZipWith_(callback:cb, const l[], const r[], ls = sizeof (l), rs = sizeof (r)) { CB_GET("ii"); for (new len = min(ls, rs), i; i != len; ++i) { CB_CALL(l[i], r[i]); } return CB_REL(); } #define ZipWith_({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ZipWith3(callback:cb, const l[], const m[], const r[], dest[], ls = sizeof (l), ms = sizeof (m), rs = sizeof (r), ds = sizeof (dest)) { CB_GET("iii"); for (new len = min(min(ms, ds), min(ls, rs)), i; i != len; ++i) { dest[i] = CB_CALL(l[i], m[i], r[i]); } return CB_REL(); } #define ZipWith3({%0}%1)%8; LAMBDA_iii{%0}(%1)%8; stock ZipWith3_(callback:cb, const l[], const m[], const r[], ls = sizeof (l), ms = sizeof (m), rs = sizeof (r)) { CB_GET("iii"); for (new len = min(ms, min(ls, rs)), i; i != len; ++i) { CB_CALL(l[i], m[i], r[i]); } return CB_REL(); } #define ZipWith3_({%0}%1)%8; LAMBDA_iii{%0}(%1)%8; stock ZipWithIdx(callback:cb, const l[], const r[], dest[], ls = sizeof (l), rs = sizeof (r), ds = sizeof (dest)) { CB_GET("iii"); for (new len = min(ds, min(ls, rs)), i; i != len; ++i) { dest[i] = CB_CALL(i, l[i], r[i]); } return CB_REL(); } #define ZipWithIdx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ZipWithIdx_(callback:cb, const l[], const r[], ls = sizeof (l), rs = sizeof (r)) { CB_GET("iii"); for (new len = min(ls, rs), i; i != len; ++i) { CB_CALL(i, l[i], r[i]); } return CB_REL(); } #define ZipWithIdx_({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ZipWith3Idx(callback:cb, const l[], const m[], const r[], dest[], ls = sizeof (l), ms = sizeof (m), rs = sizeof (r), ds = sizeof (dest)) { CB_GET("iiii"); for (new len = min(min(ms, ds), min(ls, rs)), i; i != len; ++i) { dest[i] = CB_CALL(i, l[i], m[i], r[i]); } return CB_REL(); } #define ZipWith3Idx({%0}%1)%8; LAMBDA_iii{%0}(%1)%8; stock ZipWith3Idx_(callback:cb, const l[], const m[], const r[], ls = sizeof (l), ms = sizeof (m), rs = sizeof (r)) { CB_GET("iiii"); for (new len = min(ms, min(ls, rs)), i; i != len; ++i) { CB_CALL(i, l[i], m[i], r[i]); } return CB_REL(); } #define ZipWith3Idx_({%0}%1)%8; LAMBDA_iii{%0}(%1)%8; stock FoldLIdx(callback:cb, n, const arr[], len = sizeof (arr)) { CB_GET("iii"); new cur = n; for (new i = 0; i != len; ++i) { cur = CB_CALL(i, cur, arr[i]); } return CB_REL(), cur; } #define FoldLIdx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ScanLIdx(callback:cb, n, const arr[], dest[], al = sizeof (arr), dl = sizeof (dest)) { if (!dl) return 0; CB_GET("iii"); new len = min(al, dl - 1), i = -1, cur = n; while (++i != len) { dest[i] = cur, cur = CB_CALL(i, cur, arr[i]); } dest[i] = cur; return CB_REL(), 1; } #define ScanLIdx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldRIdx(callback:cb, const arr[], n, len = sizeof (arr)) { CB_GET("iii"); new cur = n; while (len--) { cur = CB_CALL(i, arr[len], cur); } return CB_REL(), cur; } #define FoldRIdx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ScanRIdx(callback:cb, n, const arr[], dest[], al = sizeof (arr), dl = sizeof (dest)) { if (!dl) return 0; CB_GET("iii"); new len = min(al, dl - 1), cur = n; dest[len] = cur; while (len--) { dest[len] = cur = CB_CALL(i, arr[len], cur); } return CB_REL(), 1; } #define ScanRIdx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldL1Idx(callback:cb, const arr[], len = sizeof (arr)) { assert(len > 0); CB_GET("iii"); new cur = arr[0]; for (new i = 1; i != len; ++i) { cur = CB_CALL(i, cur, arr[i]); } return CB_REL(), cur; } #define FoldL1Idx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldR1Idx(callback:cb, const arr[], len = sizeof (arr)) { assert(len > 0); CB_GET("iii"); new cur = arr[--len]; while (len--) { cur = CB_CALL(i, arr[len], cur); } return CB_REL(), cur; } #define FoldR1Idx({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldL(callback:cb, n, const arr[], len = sizeof (arr)) { CB_GET("ii"); new cur = n; for (new i = 0; i != len; ++i) { cur = CB_CALL(cur, arr[i]); } return CB_REL(), cur; } #define FoldL({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ScanL(callback:cb, n, const arr[], dest[], al = sizeof (arr), dl = sizeof (dest)) { if (!dl) return 0; CB_GET("ii"); new len = min(al, dl - 1), i = -1, cur = n; while (++i != len) { dest[i] = cur, cur = CB_CALL(cur, arr[i]); } dest[i] = cur; return CB_REL(), 1; } #define ScanL({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldR(callback:cb, const arr[], n, len = sizeof (arr)) { CB_GET("ii"); new cur = n; while (len--) { cur = CB_CALL(arr[len], cur); } return CB_REL(), cur; } #define FoldR({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock ScanR(callback:cb, n, const arr[], dest[], al = sizeof (arr), dl = sizeof (dest)) { if (!dl) return 0; CB_GET("ii"); new len = min(al, dl - 1), cur = n; dest[len] = cur; while (len--) { dest[len] = cur = CB_CALL(arr[len], cur); } return CB_REL(), 1; } #define ScanR({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldL1(callback:cb, const arr[], len = sizeof (arr)) { assert(len > 0); CB_GET("ii"); new cur = arr[0]; for (new i = 1; i != len; ++i) { cur = CB_CALL(cur, arr[i]); } return CB_REL(), cur; } #define FoldL1({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock FoldR1(callback:cb, const arr[], len = sizeof (arr)) { assert(len > 0); CB_GET("ii"); new cur = arr[--len]; while (len--) { cur = CB_CALL(arr[len], cur); } return CB_REL(), cur; } #define FoldR1({%0}%1)%8; LAMBDA_ii{%0}(%1)%8; stock bool:And(bool:arr[], len = sizeof (arr)) { while (len--) { if (!arr[len]) return false; } return true; } stock bool:Or(bool:arr[], len = sizeof (arr)) { while (len--) { if (arr[len]) return true; } return false; } stock bool:All(callback:cb, const arr[], len = sizeof (arr)) { CB_GET("i"); for (new i; i != len; ++i) { if (!CB_CALL(arr[i])) return CB_REL(), false; } return CB_REL(), true; } #define All({%0}%1)%8; LAMBDA_i{%0}(%1)%8; stock bool:Any(callback:cb, const arr[], len = sizeof (arr)) { CB_GET("i"); for (new i; i != len; ++i) { if (CB_CALL(arr[i])) return CB_REL(), true; } return CB_REL(), false; } #define Any({%0}%1)%8; LAMBDA_i{%0}(%1)%8; stock bool:AllIdx(callback:cb, const arr[], len = sizeof (arr)) { CB_GET("ii"); for (new i; i != len; ++i) { if (!CB_CALL(i, arr[i])) return CB_REL(), false; } return CB_REL(), true; } #define AllIdx({%0}%1)%8; LAMBDA_i{%0}(%1)%8; stock bool:AnyIdx(callback:cb, const arr[], len = sizeof (arr)) { CB_GET("ii"); for (new i; i != len; ++i) { if (CB_CALL(i, arr[i])) return CB_REL(), true; } return CB_REL(), false; } #define AnyIdx({%0}%1)%8; LAMBDA_i{%0}(%1)%8; stock Reverse(const arr[], len = sizeof (arr)) { new temp; for (new i = 0; j = len - 1; i < j; ++i, --j) { temp = arr[i], arr[i] = arr[j], arr[j] = temp; } return 1; } stock bool:Elem(n, const arr[], len = sizeof (arr)) { while (len--) { if (arr[len] == n) return true; } return false; } stock bool:NotElem(n, const arr[], len = sizeof (arr)) { while (len--) { if (arr[len] == n) return false; } return true; } #undef CB_GET #undef CB_CALL #undef CB_REL #define Just(%0) (YSI_gJust=_:%0,1) #define Nothing (0)