LSL_Stub.cs 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Diagnostics; //for [DebuggerNonUserCode]
  29. using System.Runtime.Remoting.Lifetime;
  30. using System.Threading;
  31. using System.Reflection;
  32. using System.Collections;
  33. using System.Collections.Generic;
  34. using OpenSim.Region.ScriptEngine.Interfaces;
  35. using OpenSim.Region.ScriptEngine.Shared.Api.Interfaces;
  36. using LSL_Float = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLFloat;
  37. using LSL_Integer = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger;
  38. using LSL_Key = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString;
  39. using LSL_List = OpenSim.Region.ScriptEngine.Shared.LSL_Types.list;
  40. using LSL_Rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion;
  41. using LSL_String = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString;
  42. using LSL_Vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3;
  43. namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
  44. {
  45. public partial class ScriptBaseClass : MarshalByRefObject
  46. {
  47. public ILSL_Api m_LSL_Functions;
  48. public void ApiTypeLSL(IScriptApi api)
  49. {
  50. if (!(api is ILSL_Api))
  51. return;
  52. m_LSL_Functions = (ILSL_Api)api;
  53. }
  54. public void state(string newState)
  55. {
  56. m_LSL_Functions.state(newState);
  57. }
  58. //
  59. // Script functions
  60. //
  61. public LSL_Integer llAbs(LSL_Integer i)
  62. {
  63. return m_LSL_Functions.llAbs(i);
  64. }
  65. public LSL_Float llAcos(LSL_Float val)
  66. {
  67. return m_LSL_Functions.llAcos(val);
  68. }
  69. public void llAddToLandBanList(LSL_Key avatar, LSL_Float hours)
  70. {
  71. m_LSL_Functions.llAddToLandBanList(avatar, hours);
  72. }
  73. public void llAddToLandPassList(LSL_Key avatar, LSL_Float hours)
  74. {
  75. m_LSL_Functions.llAddToLandPassList(avatar, hours);
  76. }
  77. public void llAdjustSoundVolume(LSL_Float volume)
  78. {
  79. m_LSL_Functions.llAdjustSoundVolume(volume);
  80. }
  81. public void llAllowInventoryDrop(LSL_Integer add)
  82. {
  83. m_LSL_Functions.llAllowInventoryDrop(add);
  84. }
  85. public LSL_Float llAngleBetween(LSL_Rotation a, LSL_Rotation b)
  86. {
  87. return m_LSL_Functions.llAngleBetween(a, b);
  88. }
  89. public void llApplyImpulse(LSL_Vector force, LSL_Integer local)
  90. {
  91. m_LSL_Functions.llApplyImpulse(force, local);
  92. }
  93. public void llApplyRotationalImpulse(LSL_Vector force, int local)
  94. {
  95. m_LSL_Functions.llApplyRotationalImpulse(force, local);
  96. }
  97. public LSL_Float llAsin(LSL_Float val)
  98. {
  99. return m_LSL_Functions.llAsin(val);
  100. }
  101. public LSL_Float llAtan2(LSL_Float x, LSL_Float y)
  102. {
  103. return m_LSL_Functions.llAtan2(x, y);
  104. }
  105. public void llAttachToAvatar(LSL_Integer attachment)
  106. {
  107. m_LSL_Functions.llAttachToAvatar(attachment);
  108. }
  109. public void llAttachToAvatarTemp(LSL_Integer attachment)
  110. {
  111. m_LSL_Functions.llAttachToAvatarTemp(attachment);
  112. }
  113. public LSL_Key llAvatarOnSitTarget()
  114. {
  115. return m_LSL_Functions.llAvatarOnSitTarget();
  116. }
  117. public LSL_Key llAvatarOnLinkSitTarget(LSL_Integer linknum)
  118. {
  119. return m_LSL_Functions.llAvatarOnLinkSitTarget(linknum);
  120. }
  121. public LSL_Rotation llAxes2Rot(LSL_Vector fwd, LSL_Vector left, LSL_Vector up)
  122. {
  123. return m_LSL_Functions.llAxes2Rot(fwd, left, up);
  124. }
  125. public LSL_Rotation llAxisAngle2Rot(LSL_Vector axis, double angle)
  126. {
  127. return m_LSL_Functions.llAxisAngle2Rot(axis, angle);
  128. }
  129. public LSL_Integer llBase64ToInteger(string str)
  130. {
  131. return m_LSL_Functions.llBase64ToInteger(str);
  132. }
  133. public LSL_String llBase64ToString(string str)
  134. {
  135. return m_LSL_Functions.llBase64ToString(str);
  136. }
  137. public void llBreakAllLinks()
  138. {
  139. m_LSL_Functions.llBreakAllLinks();
  140. }
  141. public void llBreakLink(int linknum)
  142. {
  143. m_LSL_Functions.llBreakLink(linknum);
  144. }
  145. public LSL_Integer llCeil(double f)
  146. {
  147. return m_LSL_Functions.llCeil(f);
  148. }
  149. public void llClearCameraParams()
  150. {
  151. m_LSL_Functions.llClearCameraParams();
  152. }
  153. public void llCloseRemoteDataChannel(string channel)
  154. {
  155. m_LSL_Functions.llCloseRemoteDataChannel(channel);
  156. }
  157. public LSL_Float llCloud(LSL_Vector offset)
  158. {
  159. return m_LSL_Functions.llCloud(offset);
  160. }
  161. public void llCollisionFilter(LSL_String name, LSL_Key id, LSL_Integer accept)
  162. {
  163. m_LSL_Functions.llCollisionFilter(name, id, accept);
  164. }
  165. public void llCollisionSound(LSL_String impact_sound, LSL_Float impact_volume)
  166. {
  167. m_LSL_Functions.llCollisionSound(impact_sound, impact_volume);
  168. }
  169. public void llCollisionSprite(LSL_String impact_sprite)
  170. {
  171. m_LSL_Functions.llCollisionSprite(impact_sprite);
  172. }
  173. public LSL_Float llCos(double f)
  174. {
  175. return m_LSL_Functions.llCos(f);
  176. }
  177. public void llCreateLink(LSL_Key target, LSL_Integer parent)
  178. {
  179. m_LSL_Functions.llCreateLink(target, parent);
  180. }
  181. public LSL_List llCSV2List(string src)
  182. {
  183. return m_LSL_Functions.llCSV2List(src);
  184. }
  185. public LSL_List llDeleteSubList(LSL_List src, int start, int end)
  186. {
  187. return m_LSL_Functions.llDeleteSubList(src, start, end);
  188. }
  189. public LSL_String llDeleteSubString(string src, int start, int end)
  190. {
  191. return m_LSL_Functions.llDeleteSubString(src, start, end);
  192. }
  193. public void llDetachFromAvatar()
  194. {
  195. m_LSL_Functions.llDetachFromAvatar();
  196. }
  197. public LSL_Vector llDetectedGrab(int number)
  198. {
  199. return m_LSL_Functions.llDetectedGrab(number);
  200. }
  201. public LSL_Integer llDetectedGroup(int number)
  202. {
  203. return m_LSL_Functions.llDetectedGroup(number);
  204. }
  205. public LSL_Key llDetectedKey(int number)
  206. {
  207. return m_LSL_Functions.llDetectedKey(number);
  208. }
  209. public LSL_Integer llDetectedLinkNumber(int number)
  210. {
  211. return m_LSL_Functions.llDetectedLinkNumber(number);
  212. }
  213. public LSL_String llDetectedName(int number)
  214. {
  215. return m_LSL_Functions.llDetectedName(number);
  216. }
  217. public LSL_Key llDetectedOwner(int number)
  218. {
  219. return m_LSL_Functions.llDetectedOwner(number);
  220. }
  221. public LSL_Vector llDetectedPos(int number)
  222. {
  223. return m_LSL_Functions.llDetectedPos(number);
  224. }
  225. public LSL_Rotation llDetectedRot(int number)
  226. {
  227. return m_LSL_Functions.llDetectedRot(number);
  228. }
  229. public LSL_Integer llDetectedType(int number)
  230. {
  231. return m_LSL_Functions.llDetectedType(number);
  232. }
  233. public LSL_Vector llDetectedTouchBinormal(int index)
  234. {
  235. return m_LSL_Functions.llDetectedTouchBinormal(index);
  236. }
  237. public LSL_Integer llDetectedTouchFace(int index)
  238. {
  239. return m_LSL_Functions.llDetectedTouchFace(index);
  240. }
  241. public LSL_Vector llDetectedTouchNormal(int index)
  242. {
  243. return m_LSL_Functions.llDetectedTouchNormal(index);
  244. }
  245. public LSL_Vector llDetectedTouchPos(int index)
  246. {
  247. return m_LSL_Functions.llDetectedTouchPos(index);
  248. }
  249. public LSL_Vector llDetectedTouchST(int index)
  250. {
  251. return m_LSL_Functions.llDetectedTouchST(index);
  252. }
  253. public LSL_Vector llDetectedTouchUV(int index)
  254. {
  255. return m_LSL_Functions.llDetectedTouchUV(index);
  256. }
  257. public LSL_Vector llDetectedVel(int number)
  258. {
  259. return m_LSL_Functions.llDetectedVel(number);
  260. }
  261. public void llDialog(LSL_Key avatar, LSL_String message, LSL_List buttons, int chat_channel)
  262. {
  263. m_LSL_Functions.llDialog(avatar, message, buttons, chat_channel);
  264. }
  265. [DebuggerNonUserCode]
  266. public void llDie()
  267. {
  268. m_LSL_Functions.llDie();
  269. }
  270. public LSL_String llDumpList2String(LSL_List src, string seperator)
  271. {
  272. return m_LSL_Functions.llDumpList2String(src, seperator);
  273. }
  274. public LSL_Integer llEdgeOfWorld(LSL_Vector pos, LSL_Vector dir)
  275. {
  276. return m_LSL_Functions.llEdgeOfWorld(pos, dir);
  277. }
  278. public void llEjectFromLand(LSL_Key pest)
  279. {
  280. m_LSL_Functions.llEjectFromLand(pest);
  281. }
  282. public void llEmail(string address, string subject, string message)
  283. {
  284. m_LSL_Functions.llEmail(address, subject, message);
  285. }
  286. public LSL_String llEscapeURL(string url)
  287. {
  288. return m_LSL_Functions.llEscapeURL(url);
  289. }
  290. public LSL_Rotation llEuler2Rot(LSL_Vector v)
  291. {
  292. return m_LSL_Functions.llEuler2Rot(v);
  293. }
  294. public LSL_Float llFabs(double f)
  295. {
  296. return m_LSL_Functions.llFabs(f);
  297. }
  298. public LSL_Integer llFloor(double f)
  299. {
  300. return m_LSL_Functions.llFloor(f);
  301. }
  302. public void llForceMouselook(int mouselook)
  303. {
  304. m_LSL_Functions.llForceMouselook(mouselook);
  305. }
  306. public LSL_Float llFrand(double mag)
  307. {
  308. return m_LSL_Functions.llFrand(mag);
  309. }
  310. public LSL_Key llGenerateKey()
  311. {
  312. return m_LSL_Functions.llGenerateKey();
  313. }
  314. public LSL_Vector llGetAccel()
  315. {
  316. return m_LSL_Functions.llGetAccel();
  317. }
  318. public LSL_Integer llGetAgentInfo(LSL_Key id)
  319. {
  320. return m_LSL_Functions.llGetAgentInfo(id);
  321. }
  322. public LSL_String llGetAgentLanguage(LSL_Key id)
  323. {
  324. return m_LSL_Functions.llGetAgentLanguage(id);
  325. }
  326. public LSL_List llGetAgentList(LSL_Integer scope, LSL_List options)
  327. {
  328. return m_LSL_Functions.llGetAgentList(scope, options);
  329. }
  330. public LSL_Vector llGetAgentSize(LSL_Key id)
  331. {
  332. return m_LSL_Functions.llGetAgentSize(id);
  333. }
  334. public LSL_Float llGetAlpha(int face)
  335. {
  336. return m_LSL_Functions.llGetAlpha(face);
  337. }
  338. public LSL_Float llGetAndResetTime()
  339. {
  340. return m_LSL_Functions.llGetAndResetTime();
  341. }
  342. public LSL_String llGetAnimation(LSL_Key id)
  343. {
  344. return m_LSL_Functions.llGetAnimation(id);
  345. }
  346. public LSL_List llGetAnimationList(LSL_Key id)
  347. {
  348. return m_LSL_Functions.llGetAnimationList(id);
  349. }
  350. public LSL_Integer llGetAttached()
  351. {
  352. return m_LSL_Functions.llGetAttached();
  353. }
  354. public LSL_List llGetAttachedList(LSL_Key id)
  355. {
  356. return m_LSL_Functions.llGetAttachedList(id);
  357. }
  358. public LSL_List llGetBoundingBox(string obj)
  359. {
  360. return m_LSL_Functions.llGetBoundingBox(obj);
  361. }
  362. public LSL_Vector llGetCameraPos()
  363. {
  364. return m_LSL_Functions.llGetCameraPos();
  365. }
  366. public LSL_Rotation llGetCameraRot()
  367. {
  368. return m_LSL_Functions.llGetCameraRot();
  369. }
  370. public LSL_Vector llGetCenterOfMass()
  371. {
  372. return m_LSL_Functions.llGetCenterOfMass();
  373. }
  374. public LSL_Vector llGetColor(int face)
  375. {
  376. return m_LSL_Functions.llGetColor(face);
  377. }
  378. public LSL_Key llGetCreator()
  379. {
  380. return m_LSL_Functions.llGetCreator();
  381. }
  382. public LSL_String llGetDate()
  383. {
  384. return m_LSL_Functions.llGetDate();
  385. }
  386. public LSL_Float llGetEnergy()
  387. {
  388. return m_LSL_Functions.llGetEnergy();
  389. }
  390. public LSL_String llGetEnv(LSL_String name)
  391. {
  392. return m_LSL_Functions.llGetEnv(name);
  393. }
  394. public LSL_Vector llGetForce()
  395. {
  396. return m_LSL_Functions.llGetForce();
  397. }
  398. public LSL_Integer llGetFreeMemory()
  399. {
  400. return m_LSL_Functions.llGetFreeMemory();
  401. }
  402. public LSL_Integer llGetUsedMemory()
  403. {
  404. return m_LSL_Functions.llGetUsedMemory();
  405. }
  406. public LSL_Integer llGetFreeURLs()
  407. {
  408. return m_LSL_Functions.llGetFreeURLs();
  409. }
  410. public LSL_Vector llGetGeometricCenter()
  411. {
  412. return m_LSL_Functions.llGetGeometricCenter();
  413. }
  414. public LSL_Float llGetGMTclock()
  415. {
  416. return m_LSL_Functions.llGetGMTclock();
  417. }
  418. public LSL_String llGetHTTPHeader(LSL_Key request_id, string header)
  419. {
  420. return m_LSL_Functions.llGetHTTPHeader(request_id, header);
  421. }
  422. public LSL_Key llGetInventoryCreator(string item)
  423. {
  424. return m_LSL_Functions.llGetInventoryCreator(item);
  425. }
  426. public LSL_Key llGetInventoryKey(string name)
  427. {
  428. return m_LSL_Functions.llGetInventoryKey(name);
  429. }
  430. public LSL_String llGetInventoryName(int type, int number)
  431. {
  432. return m_LSL_Functions.llGetInventoryName(type, number);
  433. }
  434. public LSL_Integer llGetInventoryNumber(int type)
  435. {
  436. return m_LSL_Functions.llGetInventoryNumber(type);
  437. }
  438. public LSL_Integer llGetInventoryPermMask(string item, int mask)
  439. {
  440. return m_LSL_Functions.llGetInventoryPermMask(item, mask);
  441. }
  442. public LSL_Integer llGetInventoryType(string name)
  443. {
  444. return m_LSL_Functions.llGetInventoryType(name);
  445. }
  446. public LSL_Key llGetKey()
  447. {
  448. return m_LSL_Functions.llGetKey();
  449. }
  450. public LSL_Key llGetLandOwnerAt(LSL_Vector pos)
  451. {
  452. return m_LSL_Functions.llGetLandOwnerAt(pos);
  453. }
  454. public LSL_Key llGetLinkKey(int linknum)
  455. {
  456. return m_LSL_Functions.llGetLinkKey(linknum);
  457. }
  458. public LSL_String llGetLinkName(int linknum)
  459. {
  460. return m_LSL_Functions.llGetLinkName(linknum);
  461. }
  462. public LSL_Integer llGetLinkNumber()
  463. {
  464. return m_LSL_Functions.llGetLinkNumber();
  465. }
  466. public LSL_Integer llGetLinkNumberOfSides(int link)
  467. {
  468. return m_LSL_Functions.llGetLinkNumberOfSides(link);
  469. }
  470. public LSL_Integer llGetListEntryType(LSL_List src, int index)
  471. {
  472. return m_LSL_Functions.llGetListEntryType(src, index);
  473. }
  474. public LSL_Integer llGetListLength(LSL_List src)
  475. {
  476. return m_LSL_Functions.llGetListLength(src);
  477. }
  478. public LSL_Vector llGetLocalPos()
  479. {
  480. return m_LSL_Functions.llGetLocalPos();
  481. }
  482. public LSL_Rotation llGetLocalRot()
  483. {
  484. return m_LSL_Functions.llGetLocalRot();
  485. }
  486. public LSL_Float llGetMass()
  487. {
  488. return m_LSL_Functions.llGetMass();
  489. }
  490. public LSL_Float llGetMassMKS()
  491. {
  492. return m_LSL_Functions.llGetMassMKS();
  493. }
  494. public LSL_Integer llGetMemoryLimit()
  495. {
  496. return m_LSL_Functions.llGetMemoryLimit();
  497. }
  498. public void llGetNextEmail(string address, string subject)
  499. {
  500. m_LSL_Functions.llGetNextEmail(address, subject);
  501. }
  502. public LSL_Key llGetNotecardLine(string name, int line)
  503. {
  504. return m_LSL_Functions.llGetNotecardLine(name, line);
  505. }
  506. public LSL_Key llGetNumberOfNotecardLines(string name)
  507. {
  508. return m_LSL_Functions.llGetNumberOfNotecardLines(name);
  509. }
  510. public LSL_Integer llGetNumberOfPrims()
  511. {
  512. return m_LSL_Functions.llGetNumberOfPrims();
  513. }
  514. public LSL_Integer llGetNumberOfSides()
  515. {
  516. return m_LSL_Functions.llGetNumberOfSides();
  517. }
  518. public LSL_String llGetObjectDesc()
  519. {
  520. return m_LSL_Functions.llGetObjectDesc();
  521. }
  522. public LSL_List llGetObjectDetails(LSL_Key id, LSL_List args)
  523. {
  524. return m_LSL_Functions.llGetObjectDetails(id, args);
  525. }
  526. public LSL_Float llGetObjectMass(string id)
  527. {
  528. return m_LSL_Functions.llGetObjectMass(id);
  529. }
  530. public LSL_String llGetObjectName()
  531. {
  532. return m_LSL_Functions.llGetObjectName();
  533. }
  534. public LSL_Integer llGetObjectPermMask(int mask)
  535. {
  536. return m_LSL_Functions.llGetObjectPermMask(mask);
  537. }
  538. public LSL_Integer llGetObjectPrimCount(LSL_Key object_id)
  539. {
  540. return m_LSL_Functions.llGetObjectPrimCount(object_id);
  541. }
  542. public LSL_Vector llGetOmega()
  543. {
  544. return m_LSL_Functions.llGetOmega();
  545. }
  546. public LSL_Key llGetOwner()
  547. {
  548. return m_LSL_Functions.llGetOwner();
  549. }
  550. public LSL_Key llGetOwnerKey(string id)
  551. {
  552. return m_LSL_Functions.llGetOwnerKey(id);
  553. }
  554. public LSL_List llGetParcelDetails(LSL_Vector pos, LSL_List param)
  555. {
  556. return m_LSL_Functions.llGetParcelDetails(pos, param);
  557. }
  558. public LSL_Integer llGetParcelFlags(LSL_Vector pos)
  559. {
  560. return m_LSL_Functions.llGetParcelFlags(pos);
  561. }
  562. public LSL_Integer llGetParcelMaxPrims(LSL_Vector pos, int sim_wide)
  563. {
  564. return m_LSL_Functions.llGetParcelMaxPrims(pos, sim_wide);
  565. }
  566. public LSL_String llGetParcelMusicURL()
  567. {
  568. return m_LSL_Functions.llGetParcelMusicURL();
  569. }
  570. public LSL_Integer llGetParcelPrimCount(LSL_Vector pos, int category, int sim_wide)
  571. {
  572. return m_LSL_Functions.llGetParcelPrimCount(pos, category, sim_wide);
  573. }
  574. public LSL_List llGetParcelPrimOwners(LSL_Vector pos)
  575. {
  576. return m_LSL_Functions.llGetParcelPrimOwners(pos);
  577. }
  578. public LSL_Integer llGetPermissions()
  579. {
  580. return m_LSL_Functions.llGetPermissions();
  581. }
  582. public LSL_Key llGetPermissionsKey()
  583. {
  584. return m_LSL_Functions.llGetPermissionsKey();
  585. }
  586. public LSL_Vector llGetPos()
  587. {
  588. return m_LSL_Functions.llGetPos();
  589. }
  590. public LSL_List llGetPrimitiveParams(LSL_List rules)
  591. {
  592. return m_LSL_Functions.llGetPrimitiveParams(rules);
  593. }
  594. public LSL_List llGetLinkPrimitiveParams(int linknum, LSL_List rules)
  595. {
  596. return m_LSL_Functions.llGetLinkPrimitiveParams(linknum, rules);
  597. }
  598. public LSL_Integer llGetRegionAgentCount()
  599. {
  600. return m_LSL_Functions.llGetRegionAgentCount();
  601. }
  602. public LSL_Vector llGetRegionCorner()
  603. {
  604. return m_LSL_Functions.llGetRegionCorner();
  605. }
  606. public LSL_Integer llGetRegionFlags()
  607. {
  608. return m_LSL_Functions.llGetRegionFlags();
  609. }
  610. public LSL_Float llGetRegionFPS()
  611. {
  612. return m_LSL_Functions.llGetRegionFPS();
  613. }
  614. public LSL_String llGetRegionName()
  615. {
  616. return m_LSL_Functions.llGetRegionName();
  617. }
  618. public LSL_Float llGetRegionTimeDilation()
  619. {
  620. return m_LSL_Functions.llGetRegionTimeDilation();
  621. }
  622. public LSL_Vector llGetRootPosition()
  623. {
  624. return m_LSL_Functions.llGetRootPosition();
  625. }
  626. public LSL_Rotation llGetRootRotation()
  627. {
  628. return m_LSL_Functions.llGetRootRotation();
  629. }
  630. public LSL_Rotation llGetRot()
  631. {
  632. return m_LSL_Functions.llGetRot();
  633. }
  634. public LSL_Vector llGetScale()
  635. {
  636. return m_LSL_Functions.llGetScale();
  637. }
  638. public LSL_String llGetScriptName()
  639. {
  640. return m_LSL_Functions.llGetScriptName();
  641. }
  642. public LSL_Integer llGetScriptState(string name)
  643. {
  644. return m_LSL_Functions.llGetScriptState(name);
  645. }
  646. public LSL_String llGetSimulatorHostname()
  647. {
  648. return m_LSL_Functions.llGetSimulatorHostname();
  649. }
  650. public LSL_Integer llGetSPMaxMemory()
  651. {
  652. return m_LSL_Functions.llGetSPMaxMemory();
  653. }
  654. public LSL_Integer llGetStartParameter()
  655. {
  656. return m_LSL_Functions.llGetStartParameter();
  657. }
  658. public LSL_Integer llGetStatus(int status)
  659. {
  660. return m_LSL_Functions.llGetStatus(status);
  661. }
  662. public LSL_String llGetSubString(string src, int start, int end)
  663. {
  664. return m_LSL_Functions.llGetSubString(src, start, end);
  665. }
  666. public LSL_String llGetTexture(int face)
  667. {
  668. return m_LSL_Functions.llGetTexture(face);
  669. }
  670. public LSL_Vector llGetTextureOffset(int face)
  671. {
  672. return m_LSL_Functions.llGetTextureOffset(face);
  673. }
  674. public LSL_Float llGetTextureRot(int side)
  675. {
  676. return m_LSL_Functions.llGetTextureRot(side);
  677. }
  678. public LSL_Vector llGetTextureScale(int side)
  679. {
  680. return m_LSL_Functions.llGetTextureScale(side);
  681. }
  682. public LSL_Float llGetTime()
  683. {
  684. return m_LSL_Functions.llGetTime();
  685. }
  686. public LSL_Float llGetTimeOfDay()
  687. {
  688. return m_LSL_Functions.llGetTimeOfDay();
  689. }
  690. public LSL_String llGetTimestamp()
  691. {
  692. return m_LSL_Functions.llGetTimestamp();
  693. }
  694. public LSL_Vector llGetTorque()
  695. {
  696. return m_LSL_Functions.llGetTorque();
  697. }
  698. public LSL_Integer llGetUnixTime()
  699. {
  700. return m_LSL_Functions.llGetUnixTime();
  701. }
  702. public LSL_Vector llGetVel()
  703. {
  704. return m_LSL_Functions.llGetVel();
  705. }
  706. public LSL_Float llGetWallclock()
  707. {
  708. return m_LSL_Functions.llGetWallclock();
  709. }
  710. public void llGiveInventory(LSL_Key destination, LSL_String inventory)
  711. {
  712. m_LSL_Functions.llGiveInventory(destination, inventory);
  713. }
  714. public void llGiveInventoryList(LSL_Key destination, LSL_String category, LSL_List inventory)
  715. {
  716. m_LSL_Functions.llGiveInventoryList(destination, category, inventory);
  717. }
  718. public LSL_Integer llGiveMoney(LSL_Key destination, LSL_Integer amount)
  719. {
  720. return m_LSL_Functions.llGiveMoney(destination, amount);
  721. }
  722. public LSL_Key llTransferLindenDollars(LSL_Key destination, LSL_Integer amount)
  723. {
  724. return m_LSL_Functions.llTransferLindenDollars(destination, amount);
  725. }
  726. public void llGodLikeRezObject(LSL_String inventory, LSL_Vector pos)
  727. {
  728. m_LSL_Functions.llGodLikeRezObject(inventory, pos);
  729. }
  730. public LSL_Float llGround(LSL_Vector offset)
  731. {
  732. return m_LSL_Functions.llGround(offset);
  733. }
  734. public LSL_Vector llGroundContour(LSL_Vector offset)
  735. {
  736. return m_LSL_Functions.llGroundContour(offset);
  737. }
  738. public LSL_Vector llGroundNormal(LSL_Vector offset)
  739. {
  740. return m_LSL_Functions.llGroundNormal(offset);
  741. }
  742. public void llGroundRepel(double height, int water, double tau)
  743. {
  744. m_LSL_Functions.llGroundRepel(height, water, tau);
  745. }
  746. public LSL_Vector llGroundSlope(LSL_Vector offset)
  747. {
  748. return m_LSL_Functions.llGroundSlope(offset);
  749. }
  750. public LSL_Key llHTTPRequest(LSL_String url, LSL_List parameters, LSL_String body)
  751. {
  752. return m_LSL_Functions.llHTTPRequest(url, parameters, body);
  753. }
  754. public void llHTTPResponse(LSL_Key id, int status, LSL_String body)
  755. {
  756. m_LSL_Functions.llHTTPResponse(id, status, body);
  757. }
  758. public LSL_String llInsertString(LSL_String dst, int position, LSL_String src)
  759. {
  760. return m_LSL_Functions.llInsertString(dst, position, src);
  761. }
  762. public void llInstantMessage(LSL_String user, LSL_String message)
  763. {
  764. m_LSL_Functions.llInstantMessage(user, message);
  765. }
  766. public LSL_String llIntegerToBase64(int number)
  767. {
  768. return m_LSL_Functions.llIntegerToBase64(number);
  769. }
  770. public LSL_String llKey2Name(LSL_Key id)
  771. {
  772. return m_LSL_Functions.llKey2Name(id);
  773. }
  774. public LSL_String llGetUsername(LSL_Key id)
  775. {
  776. return m_LSL_Functions.llGetUsername(id);
  777. }
  778. public LSL_Key llRequestUsername(LSL_Key id)
  779. {
  780. return m_LSL_Functions.llRequestUsername(id);
  781. }
  782. public LSL_String llGetDisplayName(LSL_Key id)
  783. {
  784. return m_LSL_Functions.llGetDisplayName(id);
  785. }
  786. public LSL_Key llRequestDisplayName(LSL_Key id)
  787. {
  788. return m_LSL_Functions.llRequestDisplayName(id);
  789. }
  790. public LSL_List llCastRay(LSL_Vector start, LSL_Vector end, LSL_List options)
  791. {
  792. return m_LSL_Functions.llCastRay(start, end, options);
  793. }
  794. public void llLinkParticleSystem(int linknum, LSL_List rules)
  795. {
  796. m_LSL_Functions.llLinkParticleSystem(linknum, rules);
  797. }
  798. public LSL_String llList2CSV(LSL_List src)
  799. {
  800. return m_LSL_Functions.llList2CSV(src);
  801. }
  802. public LSL_Float llList2Float(LSL_List src, int index)
  803. {
  804. return m_LSL_Functions.llList2Float(src, index);
  805. }
  806. public LSL_Integer llList2Integer(LSL_List src, int index)
  807. {
  808. return m_LSL_Functions.llList2Integer(src, index);
  809. }
  810. public LSL_Key llList2Key(LSL_List src, int index)
  811. {
  812. return m_LSL_Functions.llList2Key(src, index);
  813. }
  814. public LSL_List llList2List(LSL_List src, int start, int end)
  815. {
  816. return m_LSL_Functions.llList2List(src, start, end);
  817. }
  818. public LSL_List llList2ListStrided(LSL_List src, int start, int end, int stride)
  819. {
  820. return m_LSL_Functions.llList2ListStrided(src, start, end, stride);
  821. }
  822. public LSL_Rotation llList2Rot(LSL_List src, int index)
  823. {
  824. return m_LSL_Functions.llList2Rot(src, index);
  825. }
  826. public LSL_String llList2String(LSL_List src, int index)
  827. {
  828. return m_LSL_Functions.llList2String(src, index);
  829. }
  830. public LSL_Vector llList2Vector(LSL_List src, int index)
  831. {
  832. return m_LSL_Functions.llList2Vector(src, index);
  833. }
  834. public LSL_Integer llListen(int channelID, string name, string ID, string msg)
  835. {
  836. return m_LSL_Functions.llListen(channelID, name, ID, msg);
  837. }
  838. public void llListenControl(int number, int active)
  839. {
  840. m_LSL_Functions.llListenControl(number, active);
  841. }
  842. public void llListenRemove(int number)
  843. {
  844. m_LSL_Functions.llListenRemove(number);
  845. }
  846. public LSL_Integer llListFindList(LSL_List src, LSL_List test)
  847. {
  848. return m_LSL_Functions.llListFindList(src, test);
  849. }
  850. public LSL_List llListInsertList(LSL_List dest, LSL_List src, int start)
  851. {
  852. return m_LSL_Functions.llListInsertList(dest, src, start);
  853. }
  854. public LSL_List llListRandomize(LSL_List src, int stride)
  855. {
  856. return m_LSL_Functions.llListRandomize(src, stride);
  857. }
  858. public LSL_List llListReplaceList(LSL_List dest, LSL_List src, int start, int end)
  859. {
  860. return m_LSL_Functions.llListReplaceList(dest, src, start, end);
  861. }
  862. public LSL_List llListSort(LSL_List src, int stride, int ascending)
  863. {
  864. return m_LSL_Functions.llListSort(src, stride, ascending);
  865. }
  866. public LSL_Float llListStatistics(int operation, LSL_List src)
  867. {
  868. return m_LSL_Functions.llListStatistics(operation, src);
  869. }
  870. public void llLoadURL(string avatar_id, string message, string url)
  871. {
  872. m_LSL_Functions.llLoadURL(avatar_id, message, url);
  873. }
  874. public LSL_Float llLog(double val)
  875. {
  876. return m_LSL_Functions.llLog(val);
  877. }
  878. public LSL_Float llLog10(double val)
  879. {
  880. return m_LSL_Functions.llLog10(val);
  881. }
  882. public void llLookAt(LSL_Vector target, double strength, double damping)
  883. {
  884. m_LSL_Functions.llLookAt(target, strength, damping);
  885. }
  886. public void llLoopSound(string sound, double volume)
  887. {
  888. m_LSL_Functions.llLoopSound(sound, volume);
  889. }
  890. public void llLoopSoundMaster(string sound, double volume)
  891. {
  892. m_LSL_Functions.llLoopSoundMaster(sound, volume);
  893. }
  894. public void llLoopSoundSlave(string sound, double volume)
  895. {
  896. m_LSL_Functions.llLoopSoundSlave(sound, volume);
  897. }
  898. public LSL_Integer llManageEstateAccess(int action, string avatar)
  899. {
  900. return m_LSL_Functions.llManageEstateAccess(action, avatar);
  901. }
  902. public void llMakeExplosion(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset)
  903. {
  904. m_LSL_Functions.llMakeExplosion(particles, scale, vel, lifetime, arc, texture, offset);
  905. }
  906. public void llMakeFire(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset)
  907. {
  908. m_LSL_Functions.llMakeFire(particles, scale, vel, lifetime, arc, texture, offset);
  909. }
  910. public void llMakeFountain(int particles, double scale, double vel, double lifetime, double arc, int bounce, string texture, LSL_Vector offset, double bounce_offset)
  911. {
  912. m_LSL_Functions.llMakeFountain(particles, scale, vel, lifetime, arc, bounce, texture, offset, bounce_offset);
  913. }
  914. public void llMakeSmoke(int particles, double scale, double vel, double lifetime, double arc, string texture, LSL_Vector offset)
  915. {
  916. m_LSL_Functions.llMakeSmoke(particles, scale, vel, lifetime, arc, texture, offset);
  917. }
  918. public void llMapDestination(string simname, LSL_Vector pos, LSL_Vector look_at)
  919. {
  920. m_LSL_Functions.llMapDestination(simname, pos, look_at);
  921. }
  922. public LSL_String llMD5String(string src, int nonce)
  923. {
  924. return m_LSL_Functions.llMD5String(src, nonce);
  925. }
  926. public LSL_String llSHA1String(string src)
  927. {
  928. return m_LSL_Functions.llSHA1String(src);
  929. }
  930. public void llMessageLinked(int linknum, int num, string str, string id)
  931. {
  932. m_LSL_Functions.llMessageLinked(linknum, num, str, id);
  933. }
  934. public void llMinEventDelay(double delay)
  935. {
  936. m_LSL_Functions.llMinEventDelay(delay);
  937. }
  938. public void llModifyLand(int action, int brush)
  939. {
  940. m_LSL_Functions.llModifyLand(action, brush);
  941. }
  942. public LSL_Integer llModPow(int a, int b, int c)
  943. {
  944. return m_LSL_Functions.llModPow(a, b, c);
  945. }
  946. public void llMoveToTarget(LSL_Vector target, double tau)
  947. {
  948. m_LSL_Functions.llMoveToTarget(target, tau);
  949. }
  950. public LSL_Key llName2Key(LSL_String name)
  951. {
  952. return m_LSL_Functions.llName2Key(name);
  953. }
  954. public void llOffsetTexture(double u, double v, int face)
  955. {
  956. m_LSL_Functions.llOffsetTexture(u, v, face);
  957. }
  958. public void llOpenRemoteDataChannel()
  959. {
  960. m_LSL_Functions.llOpenRemoteDataChannel();
  961. }
  962. public LSL_Integer llOverMyLand(string id)
  963. {
  964. return m_LSL_Functions.llOverMyLand(id);
  965. }
  966. public void llOwnerSay(string msg)
  967. {
  968. m_LSL_Functions.llOwnerSay(msg);
  969. }
  970. public void llParcelMediaCommandList(LSL_List commandList)
  971. {
  972. m_LSL_Functions.llParcelMediaCommandList(commandList);
  973. }
  974. public LSL_List llParcelMediaQuery(LSL_List aList)
  975. {
  976. return m_LSL_Functions.llParcelMediaQuery(aList);
  977. }
  978. public LSL_List llParseString2List(string str, LSL_List separators, LSL_List spacers)
  979. {
  980. return m_LSL_Functions.llParseString2List(str, separators, spacers);
  981. }
  982. public LSL_List llParseStringKeepNulls(string src, LSL_List seperators, LSL_List spacers)
  983. {
  984. return m_LSL_Functions.llParseStringKeepNulls(src, seperators, spacers);
  985. }
  986. public void llParticleSystem(LSL_List rules)
  987. {
  988. m_LSL_Functions.llParticleSystem(rules);
  989. }
  990. public void llPassCollisions(int pass)
  991. {
  992. m_LSL_Functions.llPassCollisions(pass);
  993. }
  994. public void llPassTouches(int pass)
  995. {
  996. m_LSL_Functions.llPassTouches(pass);
  997. }
  998. public void llPlaySound(string sound, double volume)
  999. {
  1000. m_LSL_Functions.llPlaySound(sound, volume);
  1001. }
  1002. public void llPlaySoundSlave(string sound, double volume)
  1003. {
  1004. m_LSL_Functions.llPlaySoundSlave(sound, volume);
  1005. }
  1006. public void llPointAt(LSL_Vector pos)
  1007. {
  1008. m_LSL_Functions.llPointAt(pos);
  1009. }
  1010. public LSL_Float llPow(double fbase, double fexponent)
  1011. {
  1012. return m_LSL_Functions.llPow(fbase, fexponent);
  1013. }
  1014. public void llPreloadSound(string sound)
  1015. {
  1016. m_LSL_Functions.llPreloadSound(sound);
  1017. }
  1018. public void llPushObject(string target, LSL_Vector impulse, LSL_Vector ang_impulse, int local)
  1019. {
  1020. m_LSL_Functions.llPushObject(target, impulse, ang_impulse, local);
  1021. }
  1022. public void llRefreshPrimURL()
  1023. {
  1024. m_LSL_Functions.llRefreshPrimURL();
  1025. }
  1026. public void llRegionSay(int channelID, string text)
  1027. {
  1028. m_LSL_Functions.llRegionSay(channelID, text);
  1029. }
  1030. public void llRegionSayTo(string key, int channelID, string text)
  1031. {
  1032. m_LSL_Functions.llRegionSayTo(key, channelID, text);
  1033. }
  1034. public void llReleaseCamera(string avatar)
  1035. {
  1036. m_LSL_Functions.llReleaseCamera(avatar);
  1037. }
  1038. public void llReleaseURL(string url)
  1039. {
  1040. m_LSL_Functions.llReleaseURL(url);
  1041. }
  1042. public void llReleaseControls()
  1043. {
  1044. m_LSL_Functions.llReleaseControls();
  1045. }
  1046. public void llRemoteDataReply(string channel, string message_id, string sdata, int idata)
  1047. {
  1048. m_LSL_Functions.llRemoteDataReply(channel, message_id, sdata, idata);
  1049. }
  1050. public void llRemoteDataSetRegion()
  1051. {
  1052. m_LSL_Functions.llRemoteDataSetRegion();
  1053. }
  1054. public void llRemoteLoadScript(string target, string name, int running, int start_param)
  1055. {
  1056. m_LSL_Functions.llRemoteLoadScript(target, name, running, start_param);
  1057. }
  1058. public void llRemoteLoadScriptPin(string target, string name, int pin, int running, int start_param)
  1059. {
  1060. m_LSL_Functions.llRemoteLoadScriptPin(target, name, pin, running, start_param);
  1061. }
  1062. public void llRemoveFromLandBanList(string avatar)
  1063. {
  1064. m_LSL_Functions.llRemoveFromLandBanList(avatar);
  1065. }
  1066. public void llRemoveFromLandPassList(string avatar)
  1067. {
  1068. m_LSL_Functions.llRemoveFromLandPassList(avatar);
  1069. }
  1070. public void llRemoveInventory(string item)
  1071. {
  1072. m_LSL_Functions.llRemoveInventory(item);
  1073. }
  1074. public void llRemoveVehicleFlags(int flags)
  1075. {
  1076. m_LSL_Functions.llRemoveVehicleFlags(flags);
  1077. }
  1078. public LSL_Key llRequestUserKey(LSL_String username)
  1079. {
  1080. return m_LSL_Functions.llRequestUserKey(username);
  1081. }
  1082. public LSL_Key llRequestAgentData(string id, int data)
  1083. {
  1084. return m_LSL_Functions.llRequestAgentData(id, data);
  1085. }
  1086. public LSL_Key llRequestInventoryData(LSL_String name)
  1087. {
  1088. return m_LSL_Functions.llRequestInventoryData(name);
  1089. }
  1090. public void llRequestPermissions(string agent, int perm)
  1091. {
  1092. m_LSL_Functions.llRequestPermissions(agent, perm);
  1093. }
  1094. public LSL_Key llRequestSecureURL()
  1095. {
  1096. return m_LSL_Functions.llRequestSecureURL();
  1097. }
  1098. public LSL_Key llRequestSimulatorData(string simulator, int data)
  1099. {
  1100. return m_LSL_Functions.llRequestSimulatorData(simulator, data);
  1101. }
  1102. public LSL_Key llRequestURL()
  1103. {
  1104. return m_LSL_Functions.llRequestURL();
  1105. }
  1106. public void llResetLandBanList()
  1107. {
  1108. m_LSL_Functions.llResetLandBanList();
  1109. }
  1110. public void llResetLandPassList()
  1111. {
  1112. m_LSL_Functions.llResetLandPassList();
  1113. }
  1114. public void llResetOtherScript(string name)
  1115. {
  1116. m_LSL_Functions.llResetOtherScript(name);
  1117. }
  1118. public void llResetScript()
  1119. {
  1120. m_LSL_Functions.llResetScript();
  1121. }
  1122. public void llResetTime()
  1123. {
  1124. m_LSL_Functions.llResetTime();
  1125. }
  1126. public void llRezAtRoot(string inventory, LSL_Vector position, LSL_Vector velocity, LSL_Rotation rot, int param)
  1127. {
  1128. m_LSL_Functions.llRezAtRoot(inventory, position, velocity, rot, param);
  1129. }
  1130. public void llRezObject(string inventory, LSL_Vector pos, LSL_Vector vel, LSL_Rotation rot, int param)
  1131. {
  1132. m_LSL_Functions.llRezObject(inventory, pos, vel, rot, param);
  1133. }
  1134. public LSL_Float llRot2Angle(LSL_Rotation rot)
  1135. {
  1136. return m_LSL_Functions.llRot2Angle(rot);
  1137. }
  1138. public LSL_Vector llRot2Axis(LSL_Rotation rot)
  1139. {
  1140. return m_LSL_Functions.llRot2Axis(rot);
  1141. }
  1142. public LSL_Vector llRot2Euler(LSL_Rotation r)
  1143. {
  1144. return m_LSL_Functions.llRot2Euler(r);
  1145. }
  1146. public LSL_Vector llRot2Fwd(LSL_Rotation r)
  1147. {
  1148. return m_LSL_Functions.llRot2Fwd(r);
  1149. }
  1150. public LSL_Vector llRot2Left(LSL_Rotation r)
  1151. {
  1152. return m_LSL_Functions.llRot2Left(r);
  1153. }
  1154. public LSL_Vector llRot2Up(LSL_Rotation r)
  1155. {
  1156. return m_LSL_Functions.llRot2Up(r);
  1157. }
  1158. public void llRotateTexture(double rotation, int face)
  1159. {
  1160. m_LSL_Functions.llRotateTexture(rotation, face);
  1161. }
  1162. public LSL_Rotation llRotBetween(LSL_Vector start, LSL_Vector end)
  1163. {
  1164. return m_LSL_Functions.llRotBetween(start, end);
  1165. }
  1166. public void llRotLookAt(LSL_Rotation target, double strength, double damping)
  1167. {
  1168. m_LSL_Functions.llRotLookAt(target, strength, damping);
  1169. }
  1170. public LSL_Integer llRotTarget(LSL_Rotation rot, double error)
  1171. {
  1172. return m_LSL_Functions.llRotTarget(rot, error);
  1173. }
  1174. public void llRotTargetRemove(int number)
  1175. {
  1176. m_LSL_Functions.llRotTargetRemove(number);
  1177. }
  1178. public LSL_Integer llRound(double f)
  1179. {
  1180. return m_LSL_Functions.llRound(f);
  1181. }
  1182. public LSL_Integer llSameGroup(string agent)
  1183. {
  1184. return m_LSL_Functions.llSameGroup(agent);
  1185. }
  1186. public void llSay(int channelID, string text)
  1187. {
  1188. m_LSL_Functions.llSay(channelID, text);
  1189. }
  1190. public LSL_Integer llScaleByFactor(double scaling_factor)
  1191. {
  1192. return m_LSL_Functions.llScaleByFactor(scaling_factor);
  1193. }
  1194. public LSL_Float llGetMaxScaleFactor()
  1195. {
  1196. return m_LSL_Functions.llGetMaxScaleFactor();
  1197. }
  1198. public LSL_Float llGetMinScaleFactor()
  1199. {
  1200. return m_LSL_Functions.llGetMinScaleFactor();
  1201. }
  1202. public void llScaleTexture(double u, double v, int face)
  1203. {
  1204. m_LSL_Functions.llScaleTexture(u, v, face);
  1205. }
  1206. public LSL_Integer llScriptDanger(LSL_Vector pos)
  1207. {
  1208. return m_LSL_Functions.llScriptDanger(pos);
  1209. }
  1210. public void llScriptProfiler(LSL_Integer flags)
  1211. {
  1212. m_LSL_Functions.llScriptProfiler(flags);
  1213. }
  1214. public LSL_Key llSendRemoteData(string channel, string dest, int idata, string sdata)
  1215. {
  1216. return m_LSL_Functions.llSendRemoteData(channel, dest, idata, sdata);
  1217. }
  1218. public void llSensor(string name, string id, int type, double range, double arc)
  1219. {
  1220. m_LSL_Functions.llSensor(name, id, type, range, arc);
  1221. }
  1222. public void llSensorRemove()
  1223. {
  1224. m_LSL_Functions.llSensorRemove();
  1225. }
  1226. public void llSensorRepeat(string name, string id, int type, double range, double arc, double rate)
  1227. {
  1228. m_LSL_Functions.llSensorRepeat(name, id, type, range, arc, rate);
  1229. }
  1230. public void llSetAlpha(double alpha, int face)
  1231. {
  1232. m_LSL_Functions.llSetAlpha(alpha, face);
  1233. }
  1234. public void llSetBuoyancy(double buoyancy)
  1235. {
  1236. m_LSL_Functions.llSetBuoyancy(buoyancy);
  1237. }
  1238. public void llSetCameraAtOffset(LSL_Vector offset)
  1239. {
  1240. m_LSL_Functions.llSetCameraAtOffset(offset);
  1241. }
  1242. public void llSetCameraEyeOffset(LSL_Vector offset)
  1243. {
  1244. m_LSL_Functions.llSetCameraEyeOffset(offset);
  1245. }
  1246. public void llSetLinkCamera(LSL_Integer link, LSL_Vector eye, LSL_Vector at)
  1247. {
  1248. m_LSL_Functions.llSetLinkCamera(link, eye, at);
  1249. }
  1250. public void llSetCameraParams(LSL_List rules)
  1251. {
  1252. m_LSL_Functions.llSetCameraParams(rules);
  1253. }
  1254. public void llSetClickAction(int action)
  1255. {
  1256. m_LSL_Functions.llSetClickAction(action);
  1257. }
  1258. public void llSetColor(LSL_Vector color, int face)
  1259. {
  1260. m_LSL_Functions.llSetColor(color, face);
  1261. }
  1262. public void llSetContentType(LSL_Key id, LSL_Integer type)
  1263. {
  1264. m_LSL_Functions.llSetContentType(id, type);
  1265. }
  1266. public void llSetDamage(double damage)
  1267. {
  1268. m_LSL_Functions.llSetDamage(damage);
  1269. }
  1270. public void llSetForce(LSL_Vector force, int local)
  1271. {
  1272. m_LSL_Functions.llSetForce(force, local);
  1273. }
  1274. public void llSetForceAndTorque(LSL_Vector force, LSL_Vector torque, int local)
  1275. {
  1276. m_LSL_Functions.llSetForceAndTorque(force, torque, local);
  1277. }
  1278. public void llSetVelocity(LSL_Vector force, int local)
  1279. {
  1280. m_LSL_Functions.llSetVelocity(force, local);
  1281. }
  1282. public void llSetAngularVelocity(LSL_Vector force, int local)
  1283. {
  1284. m_LSL_Functions.llSetAngularVelocity(force, local);
  1285. }
  1286. public void llSetHoverHeight(double height, int water, double tau)
  1287. {
  1288. m_LSL_Functions.llSetHoverHeight(height, water, tau);
  1289. }
  1290. public void llSetInventoryPermMask(string item, int mask, int value)
  1291. {
  1292. m_LSL_Functions.llSetInventoryPermMask(item, mask, value);
  1293. }
  1294. public void llSetLinkAlpha(int linknumber, double alpha, int face)
  1295. {
  1296. m_LSL_Functions.llSetLinkAlpha(linknumber, alpha, face);
  1297. }
  1298. public void llSetLinkColor(int linknumber, LSL_Vector color, int face)
  1299. {
  1300. m_LSL_Functions.llSetLinkColor(linknumber, color, face);
  1301. }
  1302. public void llSetLinkPrimitiveParams(int linknumber, LSL_List rules)
  1303. {
  1304. m_LSL_Functions.llSetLinkPrimitiveParams(linknumber, rules);
  1305. }
  1306. public void llSetLinkTexture(int linknumber, string texture, int face)
  1307. {
  1308. m_LSL_Functions.llSetLinkTexture(linknumber, texture, face);
  1309. }
  1310. public void llSetLinkTextureAnim(int linknum, int mode, int face, int sizex, int sizey, double start, double length, double rate)
  1311. {
  1312. m_LSL_Functions.llSetLinkTextureAnim(linknum, mode, face, sizex, sizey, start, length, rate);
  1313. }
  1314. public void llSetLocalRot(LSL_Rotation rot)
  1315. {
  1316. m_LSL_Functions.llSetLocalRot(rot);
  1317. }
  1318. public LSL_Integer llSetMemoryLimit(LSL_Integer limit)
  1319. {
  1320. return m_LSL_Functions.llSetMemoryLimit(limit);
  1321. }
  1322. public void llSetObjectDesc(string desc)
  1323. {
  1324. m_LSL_Functions.llSetObjectDesc(desc);
  1325. }
  1326. public void llSetObjectName(string name)
  1327. {
  1328. m_LSL_Functions.llSetObjectName(name);
  1329. }
  1330. public void llSetObjectPermMask(int mask, int value)
  1331. {
  1332. m_LSL_Functions.llSetObjectPermMask(mask, value);
  1333. }
  1334. public void llSetParcelMusicURL(string url)
  1335. {
  1336. m_LSL_Functions.llSetParcelMusicURL(url);
  1337. }
  1338. public void llSetPayPrice(int price, LSL_List quick_pay_buttons)
  1339. {
  1340. m_LSL_Functions.llSetPayPrice(price, quick_pay_buttons);
  1341. }
  1342. public void llSetPos(LSL_Vector pos)
  1343. {
  1344. m_LSL_Functions.llSetPos(pos);
  1345. }
  1346. public LSL_Integer llSetRegionPos(LSL_Vector pos)
  1347. {
  1348. return m_LSL_Functions.llSetRegionPos(pos);
  1349. }
  1350. public void llSetPrimitiveParams(LSL_List rules)
  1351. {
  1352. m_LSL_Functions.llSetPrimitiveParams(rules);
  1353. }
  1354. public void llSetLinkPrimitiveParamsFast(int linknum, LSL_List rules)
  1355. {
  1356. m_LSL_Functions.llSetLinkPrimitiveParamsFast(linknum, rules);
  1357. }
  1358. public void llSetPrimURL(string url)
  1359. {
  1360. m_LSL_Functions.llSetPrimURL(url);
  1361. }
  1362. public void llSetRemoteScriptAccessPin(int pin)
  1363. {
  1364. m_LSL_Functions.llSetRemoteScriptAccessPin(pin);
  1365. }
  1366. public void llSetRot(LSL_Rotation rot)
  1367. {
  1368. m_LSL_Functions.llSetRot(rot);
  1369. }
  1370. public void llSetScale(LSL_Vector scale)
  1371. {
  1372. m_LSL_Functions.llSetScale(scale);
  1373. }
  1374. public void llSetScriptState(string name, int run)
  1375. {
  1376. m_LSL_Functions.llSetScriptState(name, run);
  1377. }
  1378. public void llSetSitText(string text)
  1379. {
  1380. m_LSL_Functions.llSetSitText(text);
  1381. }
  1382. public void llSetSoundQueueing(int queue)
  1383. {
  1384. m_LSL_Functions.llSetSoundQueueing(queue);
  1385. }
  1386. public void llSetSoundRadius(double radius)
  1387. {
  1388. m_LSL_Functions.llSetSoundRadius(radius);
  1389. }
  1390. public void llSetStatus(int status, int value)
  1391. {
  1392. m_LSL_Functions.llSetStatus(status, value);
  1393. }
  1394. public void llSetText(string text, LSL_Vector color, double alpha)
  1395. {
  1396. m_LSL_Functions.llSetText(text, color, alpha);
  1397. }
  1398. public void llSetTexture(string texture, int face)
  1399. {
  1400. m_LSL_Functions.llSetTexture(texture, face);
  1401. }
  1402. public void llSetTextureAnim(int mode, int face, int sizex, int sizey, double start, double length, double rate)
  1403. {
  1404. m_LSL_Functions.llSetTextureAnim(mode, face, sizex, sizey, start, length, rate);
  1405. }
  1406. public void llSetTimerEvent(double sec)
  1407. {
  1408. m_LSL_Functions.llSetTimerEvent(sec);
  1409. }
  1410. public void llSetTorque(LSL_Vector torque, int local)
  1411. {
  1412. m_LSL_Functions.llSetTorque(torque, local);
  1413. }
  1414. public void llSetTouchText(string text)
  1415. {
  1416. m_LSL_Functions.llSetTouchText(text);
  1417. }
  1418. public void llSetVehicleFlags(int flags)
  1419. {
  1420. m_LSL_Functions.llSetVehicleFlags(flags);
  1421. }
  1422. public void llSetVehicleFloatParam(int param, LSL_Float value)
  1423. {
  1424. m_LSL_Functions.llSetVehicleFloatParam(param, value);
  1425. }
  1426. public void llSetVehicleRotationParam(int param, LSL_Rotation rot)
  1427. {
  1428. m_LSL_Functions.llSetVehicleRotationParam(param, rot);
  1429. }
  1430. public void llSetVehicleType(int type)
  1431. {
  1432. m_LSL_Functions.llSetVehicleType(type);
  1433. }
  1434. public void llSetVehicleVectorParam(int param, LSL_Vector vec)
  1435. {
  1436. m_LSL_Functions.llSetVehicleVectorParam(param, vec);
  1437. }
  1438. public void llShout(int channelID, string text)
  1439. {
  1440. m_LSL_Functions.llShout(channelID, text);
  1441. }
  1442. public LSL_Float llSin(double f)
  1443. {
  1444. return m_LSL_Functions.llSin(f);
  1445. }
  1446. public void llSitTarget(LSL_Vector offset, LSL_Rotation rot)
  1447. {
  1448. m_LSL_Functions.llSitTarget(offset, rot);
  1449. }
  1450. public void llLinkSitTarget(LSL_Integer link, LSL_Vector offset, LSL_Rotation rot)
  1451. {
  1452. m_LSL_Functions.llLinkSitTarget(link, offset, rot);
  1453. }
  1454. public void llSleep(double sec)
  1455. {
  1456. m_LSL_Functions.llSleep(sec);
  1457. }
  1458. public void llSound(string sound, double volume, int queue, int loop)
  1459. {
  1460. m_LSL_Functions.llSound(sound, volume, queue, loop);
  1461. }
  1462. public void llSoundPreload(string sound)
  1463. {
  1464. m_LSL_Functions.llSoundPreload(sound);
  1465. }
  1466. public LSL_Float llSqrt(double f)
  1467. {
  1468. return m_LSL_Functions.llSqrt(f);
  1469. }
  1470. public void llStartAnimation(string anim)
  1471. {
  1472. m_LSL_Functions.llStartAnimation(anim);
  1473. }
  1474. public void llStopAnimation(string anim)
  1475. {
  1476. m_LSL_Functions.llStopAnimation(anim);
  1477. }
  1478. public void llStartObjectAnimation(string anim)
  1479. {
  1480. m_LSL_Functions.llStartObjectAnimation(anim);
  1481. }
  1482. public void llStopObjectAnimation(string anim)
  1483. {
  1484. m_LSL_Functions.llStopObjectAnimation(anim);
  1485. }
  1486. public LSL_List llGetObjectAnimationNames()
  1487. {
  1488. return m_LSL_Functions.llGetObjectAnimationNames();
  1489. }
  1490. public void llStopHover()
  1491. {
  1492. m_LSL_Functions.llStopHover();
  1493. }
  1494. public void llStopLookAt()
  1495. {
  1496. m_LSL_Functions.llStopLookAt();
  1497. }
  1498. public void llStopMoveToTarget()
  1499. {
  1500. m_LSL_Functions.llStopMoveToTarget();
  1501. }
  1502. public void llStopPointAt()
  1503. {
  1504. m_LSL_Functions.llStopPointAt();
  1505. }
  1506. public void llStopSound()
  1507. {
  1508. m_LSL_Functions.llStopSound();
  1509. }
  1510. public LSL_Integer llStringLength(string str)
  1511. {
  1512. return m_LSL_Functions.llStringLength(str);
  1513. }
  1514. public LSL_String llStringToBase64(string str)
  1515. {
  1516. return m_LSL_Functions.llStringToBase64(str);
  1517. }
  1518. public LSL_String llStringTrim(LSL_String src, LSL_Integer type)
  1519. {
  1520. return m_LSL_Functions.llStringTrim(src, type);
  1521. }
  1522. public LSL_Integer llSubStringIndex(string source, string pattern)
  1523. {
  1524. return m_LSL_Functions.llSubStringIndex(source, pattern);
  1525. }
  1526. public void llTakeCamera(string avatar)
  1527. {
  1528. m_LSL_Functions.llTakeCamera(avatar);
  1529. }
  1530. public void llTakeControls(int controls, int accept, int pass_on)
  1531. {
  1532. m_LSL_Functions.llTakeControls(controls, accept, pass_on);
  1533. }
  1534. public LSL_Float llTan(double f)
  1535. {
  1536. return m_LSL_Functions.llTan(f);
  1537. }
  1538. public LSL_Integer llTarget(LSL_Vector position, double range)
  1539. {
  1540. return m_LSL_Functions.llTarget(position, range);
  1541. }
  1542. public void llTargetOmega(LSL_Vector axis, double spinrate, double gain)
  1543. {
  1544. m_LSL_Functions.llTargetOmega(axis, spinrate, gain);
  1545. }
  1546. public void llTargetRemove(int number)
  1547. {
  1548. m_LSL_Functions.llTargetRemove(number);
  1549. }
  1550. public void llTargetedEmail(LSL_Integer target, LSL_String subject, LSL_String message)
  1551. {
  1552. m_LSL_Functions.llTargetedEmail(target, subject, message);
  1553. }
  1554. public void llTeleportAgent(string agent, string simname, LSL_Vector pos, LSL_Vector lookAt)
  1555. {
  1556. m_LSL_Functions.llTeleportAgent(agent, simname, pos, lookAt);
  1557. }
  1558. public void llTeleportAgentGlobalCoords(string agent, LSL_Vector global, LSL_Vector pos, LSL_Vector lookAt)
  1559. {
  1560. m_LSL_Functions.llTeleportAgentGlobalCoords(agent, global, pos, lookAt);
  1561. }
  1562. public void llTeleportAgentHome(string agent)
  1563. {
  1564. m_LSL_Functions.llTeleportAgentHome(agent);
  1565. }
  1566. public void llTextBox(string avatar, string message, int chat_channel)
  1567. {
  1568. m_LSL_Functions.llTextBox(avatar, message, chat_channel);
  1569. }
  1570. public LSL_String llToLower(string source)
  1571. {
  1572. return m_LSL_Functions.llToLower(source);
  1573. }
  1574. public LSL_String llToUpper(string source)
  1575. {
  1576. return m_LSL_Functions.llToUpper(source);
  1577. }
  1578. public void llTriggerSound(string sound, double volume)
  1579. {
  1580. m_LSL_Functions.llTriggerSound(sound, volume);
  1581. }
  1582. public void llTriggerSoundLimited(string sound, double volume, LSL_Vector top_north_east, LSL_Vector bottom_south_west)
  1583. {
  1584. m_LSL_Functions.llTriggerSoundLimited(sound, volume, top_north_east, bottom_south_west);
  1585. }
  1586. public LSL_String llUnescapeURL(string url)
  1587. {
  1588. return m_LSL_Functions.llUnescapeURL(url);
  1589. }
  1590. public void llUnSit(string id)
  1591. {
  1592. m_LSL_Functions.llUnSit(id);
  1593. }
  1594. public LSL_Float llVecDist(LSL_Vector a, LSL_Vector b)
  1595. {
  1596. return m_LSL_Functions.llVecDist(a, b);
  1597. }
  1598. public LSL_Float llVecMag(LSL_Vector v)
  1599. {
  1600. return m_LSL_Functions.llVecMag(v);
  1601. }
  1602. public LSL_Vector llVecNorm(LSL_Vector v)
  1603. {
  1604. return m_LSL_Functions.llVecNorm(v);
  1605. }
  1606. public void llVolumeDetect(int detect)
  1607. {
  1608. m_LSL_Functions.llVolumeDetect(detect);
  1609. }
  1610. public LSL_Float llWater(LSL_Vector offset)
  1611. {
  1612. return m_LSL_Functions.llWater(offset);
  1613. }
  1614. public void llWhisper(int channelID, string text)
  1615. {
  1616. m_LSL_Functions.llWhisper(channelID, text);
  1617. }
  1618. public LSL_Vector llWind(LSL_Vector offset)
  1619. {
  1620. return m_LSL_Functions.llWind(offset);
  1621. }
  1622. public LSL_String llXorBase64(string str1, string str2)
  1623. {
  1624. return m_LSL_Functions.llXorBase64(str1, str2);
  1625. }
  1626. public LSL_String llXorBase64Strings(string str1, string str2)
  1627. {
  1628. return m_LSL_Functions.llXorBase64Strings(str1, str2);
  1629. }
  1630. public LSL_String llXorBase64StringsCorrect(string str1, string str2)
  1631. {
  1632. return m_LSL_Functions.llXorBase64StringsCorrect(str1, str2);
  1633. }
  1634. public LSL_List llGetPrimMediaParams(int face, LSL_List rules)
  1635. {
  1636. return m_LSL_Functions.llGetPrimMediaParams(face, rules);
  1637. }
  1638. public LSL_List llGetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules)
  1639. {
  1640. return m_LSL_Functions.llGetLinkMedia(link, face, rules);
  1641. }
  1642. public LSL_Integer llSetPrimMediaParams(int face, LSL_List rules)
  1643. {
  1644. return m_LSL_Functions.llSetPrimMediaParams(face, rules);
  1645. }
  1646. public LSL_Integer llSetLinkMedia(LSL_Integer link, LSL_Integer face, LSL_List rules)
  1647. {
  1648. return m_LSL_Functions.llSetLinkMedia(link, face, rules);
  1649. }
  1650. public LSL_Integer llClearPrimMedia(LSL_Integer face)
  1651. {
  1652. return m_LSL_Functions.llClearPrimMedia(face);
  1653. }
  1654. public LSL_Integer llClearLinkMedia(LSL_Integer link, LSL_Integer face)
  1655. {
  1656. return m_LSL_Functions.llClearLinkMedia(link, face);
  1657. }
  1658. public LSL_Integer llGetLinkNumberOfSides(LSL_Integer link)
  1659. {
  1660. return m_LSL_Functions.llGetLinkNumberOfSides(link);
  1661. }
  1662. public void llSetKeyframedMotion(LSL_List frames, LSL_List options)
  1663. {
  1664. m_LSL_Functions.llSetKeyframedMotion(frames, options);
  1665. }
  1666. public void llSetPhysicsMaterial(int material_bits, LSL_Float material_gravity_modifier, LSL_Float material_restitution, LSL_Float material_friction, LSL_Float material_density)
  1667. {
  1668. m_LSL_Functions.llSetPhysicsMaterial(material_bits, material_gravity_modifier, material_restitution, material_friction, material_density);
  1669. }
  1670. public LSL_List llGetPhysicsMaterial()
  1671. {
  1672. return m_LSL_Functions.llGetPhysicsMaterial();
  1673. }
  1674. public void llSetAnimationOverride(LSL_String animState, LSL_String anim)
  1675. {
  1676. m_LSL_Functions.llSetAnimationOverride(animState, anim);
  1677. }
  1678. public void llResetAnimationOverride(LSL_String anim_state)
  1679. {
  1680. m_LSL_Functions.llResetAnimationOverride(anim_state);
  1681. }
  1682. public LSL_String llGetAnimationOverride(LSL_String anim_state)
  1683. {
  1684. return m_LSL_Functions.llGetAnimationOverride(anim_state);
  1685. }
  1686. public LSL_String llJsonGetValue(LSL_String json, LSL_List specifiers)
  1687. {
  1688. return m_LSL_Functions.llJsonGetValue(json, specifiers);
  1689. }
  1690. public LSL_List llJson2List(LSL_String json)
  1691. {
  1692. return m_LSL_Functions.llJson2List(json);
  1693. }
  1694. public LSL_String llList2Json(LSL_String type, LSL_List values)
  1695. {
  1696. return m_LSL_Functions.llList2Json(type, values);
  1697. }
  1698. public LSL_String llJsonSetValue(LSL_String json, LSL_List specifiers, LSL_String value)
  1699. {
  1700. return m_LSL_Functions.llJsonSetValue(json, specifiers, value);
  1701. }
  1702. public LSL_String llJsonValueType(LSL_String json, LSL_List specifiers)
  1703. {
  1704. return m_LSL_Functions.llJsonValueType(json, specifiers);
  1705. }
  1706. public LSL_Integer llGetDayLength()
  1707. {
  1708. return m_LSL_Functions.llGetDayLength();
  1709. }
  1710. public LSL_Integer llGetRegionDayLength()
  1711. {
  1712. return m_LSL_Functions.llGetRegionDayLength();
  1713. }
  1714. public LSL_Integer llGetDayOffset()
  1715. {
  1716. return m_LSL_Functions.llGetDayOffset();
  1717. }
  1718. public LSL_Integer llGetRegionDayOffset()
  1719. {
  1720. return m_LSL_Functions.llGetRegionDayOffset();
  1721. }
  1722. public LSL_Vector llGetSunDirection()
  1723. {
  1724. return m_LSL_Functions.llGetSunDirection();
  1725. }
  1726. public LSL_Vector llGetRegionSunDirection()
  1727. {
  1728. return m_LSL_Functions.llGetRegionSunDirection();
  1729. }
  1730. public LSL_Vector llGetMoonDirection()
  1731. {
  1732. return m_LSL_Functions.llGetMoonDirection();
  1733. }
  1734. public LSL_Vector llGetRegionMoonDirection()
  1735. {
  1736. return m_LSL_Functions.llGetRegionMoonDirection();
  1737. }
  1738. public LSL_Rotation llGetSunRotation()
  1739. {
  1740. return m_LSL_Functions.llGetSunRotation();
  1741. }
  1742. public LSL_Rotation llGetRegionSunRotation()
  1743. {
  1744. return m_LSL_Functions.llGetRegionSunRotation();
  1745. }
  1746. public LSL_Rotation llGetMoonRotation()
  1747. {
  1748. return m_LSL_Functions.llGetMoonRotation();
  1749. }
  1750. public LSL_Rotation llGetRegionMoonRotation()
  1751. {
  1752. return m_LSL_Functions.llGetRegionMoonRotation();
  1753. }
  1754. }
  1755. }