aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs405
1 files changed, 0 insertions, 405 deletions
diff --git a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs
deleted file mode 100644
index a551fde..0000000
--- a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSO/LSL_BaseClass_Builtins.cs
+++ /dev/null
@@ -1,405 +0,0 @@
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 OpenSim 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
28//using System;
29//using System.Collections.Generic;
30//using System.Text;
31
32//namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSO
33//{
34// public partial class LSL_BaseClass
35// {
36
37
38// public float llSin()
39// {
40// float f = (float)LSLStack.Pop();
41// return LSL_Builtins.llSin(f);
42// }
43// public float llCos()
44// {
45// float f = (float)LSLStack.Pop();
46// return LSL_Builtins.llCos(f);
47// }
48// public float llTan()
49// {
50// float f = (float)LSLStack.Pop();
51// return LSL_Builtins.llTan(f);
52// }
53// public float llAtan2()
54// {
55// float x = (float)LSLStack.Pop();
56// float y = (float)LSLStack.Pop();
57// return LSL_Builtins.llAtan2(x, y);
58// }
59// public float llSqrt()
60// {
61// float f = (float)LSLStack.Pop();
62// return LSL_Builtins.llSqrt(f);
63// }
64// float llPow()
65// {
66// float fexponent = (float)LSLStack.Pop();
67// float fbase = (float)LSLStack.Pop();
68// return LSL_Builtins.llPow(fbase, fexponent);
69// }
70// //UInt32 llAbs(UInt32 i){ return; }
71// //float llFabs(float f){ return; }
72// //float llFrand(float mag){ return; }
73// //UInt32 llFloor(float f){ return; }
74// //UInt32 llCeil(float f){ return; }
75// //UInt32 llRound(float f){ return; }
76// //float llVecMag(LSO_Enums.Vector v){ return; }
77// //LSO_Enums.Vector llVecNorm(LSO_Enums.Vector v){ return; }
78// //float llVecDist(LSO_Enums.Vector a, LSO_Enums.Vector b){ return; }
79// //LSO_Enums.Vector llRot2Euler(LSO_Enums.Rotation r){ return; }
80// //LSO_Enums.Rotation llEuler2Rot(LSO_Enums.Vector v){ return; }
81// //LSO_Enums.Rotation llAxes2Rot(LSO_Enums.Vector fwd, LSO_Enums.Vector left, LSO_Enums.Vector up){ return; }
82// //LSO_Enums.Vector llRot2Fwd(LSO_Enums.Rotation r){ return; }
83// //LSO_Enums.Vector llRot2Left(LSO_Enums.Rotation r){ return; }
84// //LSO_Enums.Vector llRot2Up(LSO_Enums.Rotation r){ return; }
85// //LSO_Enums.Rotation llRotBetween(LSO_Enums.Vector start, LSO_Enums.Vector end){ return; }
86// public void llWhisper()
87// {
88// UInt16 i = (UInt16)LSLStack.Pop();
89// string s = (string)LSLStack.Pop();
90// LSL_Builtins.llWhisper(i, s);
91// }
92// public void llSay()
93// {
94// UInt16 i = (UInt16)LSLStack.Pop();
95// string s = (string)LSLStack.Pop();
96// LSL_Builtins.llSay(i, s);
97// }
98// //void llShout(UInt16 channelID, string text);
99// //UInt32 llListen(UInt16 channelID, string name, LSO_Enums.Key ID, string msg);
100// //void llListenControl(UInt32 number, UInt32 active);
101// //void llListenRemove(UInt32 number);
102// //void llSensor(string name, LSO_Enums.Key id, UInt32 type, float range, float arc);
103// //void llSensorRepeat(string name, LSO_Enums.Key id, UInt32 type, float range, float arc, float rate);
104// //void llSensorRemove();
105// //string llDetectedName(UInt32 number);
106// //LSO_Enums.Key llDetectedKey(UInt32 number);
107// //LSO_Enums.Key llDetectedOwner(UInt32 number);
108// //UInt32 llDetectedType(UInt32 number);
109// //LSO_Enums.Vector llDetectedPos(UInt32 number);
110// //LSO_Enums.Vector llDetectedVel(UInt32 number);
111// //LSO_Enums.Vector llDetectedGrab(UInt32 number);
112// //LSO_Enums.Rotation llDetectedRot(UInt32 number);
113// //UInt32 llDetectedGroup(UInt32 number);
114// //UInt32 llDetectedLinkNumber(UInt32 number);
115// //void llDie();
116// //float llGround(LSO_Enums.Vector offset);
117// //float llCloud(LSO_Enums.Vector offset);
118// //LSO_Enums.Vector llWind(LSO_Enums.Vector offset);
119// //void llSetStatus(UInt32 status, UInt32 value);
120// //UInt32 llGetStatus(UInt32 status);
121// //void llSetScale(LSO_Enums.Vector scale);
122// //LSO_Enums.Vector llGetScale();
123// //void llSetColor();
124// //float llGetAlpha();
125// //void llSetAlpha();
126// //LSO_Enums.Vector llGetColor();
127// //void llSetTexture();
128// //void llScaleTexture();
129// //void llOffsetTexture();
130// //void llRotateTexture();
131// //string llGetTexture();
132// //void llSetPos();
133
134// public void llGetPos() { }
135// public void llGetLocalPos() { }
136// public void llSetRot() { }
137// public void llGetRot() { }
138// public void llGetLocalRot() { }
139// public void llSetForce() { }
140// public void llGetForce() { }
141// public void llTarget() { }
142// public void llTargetRemove() { }
143// public void llRotTarget() { }
144// public void llRotTargetRemove() { }
145// public void llMoveToTarget() { }
146// public void llStopMoveToTarget() { }
147// public void llApplyImpulse() { }
148// public void llApplyRotationalImpulse() { }
149// public void llSetTorque() { }
150// public void llGetTorque() { }
151// public void llSetForceAndTorque() { }
152// public void llGetVel() { }
153// public void llGetAccel() { }
154// public void llGetOmega() { }
155// public void llGetTimeOfDay() { }
156// public void llGetWallclock() { }
157// public void llGetTime() { }
158// public void llResetTime() { }
159// public void llGetAndResetTime() { }
160// public void llSound() { }
161// public void llPlaySound() { }
162// public void llLoopSound() { }
163// public void llLoopSoundMaster() { }
164// public void llLoopSoundSlave() { }
165// public void llPlaySoundSlave() { }
166// public void llTriggerSound() { }
167// public void llStopSound() { }
168// public void llPreloadSound() { }
169// public void llGetSubString() { }
170// public void llDeleteSubString() { }
171// public void llInsertString() { }
172// public void llToUpper() { }
173// public void llToLower() { }
174// public void llGiveMoney() { }
175// public void llMakeExplosion() { }
176// public void llMakeFountain() { }
177// public void llMakeSmoke() { }
178// public void llMakeFire() { }
179// public void llRezObject() { }
180// public void llLookAt() { }
181// public void llStopLookAt() { }
182// public void llSetTimerEvent() { }
183// public void llSleep() { }
184// public void llGetMass() { }
185// public void llCollisionFilter() { }
186// public void llTakeControls() { }
187// public void llReleaseControls() { }
188// public void llAttachToAvatar() { }
189// public void llDetachFromAvatar() { }
190// public void llTakeCamera() { }
191// public void llReleaseCamera() { }
192// public void llGetOwner() { }
193// public void llInstantMessage() { }
194// public void llEmail() { }
195// public void llGetNextEmail() { }
196// public void llGetKey() { }
197// public void llSetBuoyancy() { }
198// public void llSetHoverHeight() { }
199// public void llStopHover() { }
200// public void llMinEventDelay() { }
201// public void llSoundPreload() { }
202// public void llRotLookAt() { }
203// public void llStringLength() { }
204// public void llStartAnimation() { }
205// public void llStopAnimation() { }
206// public void llPointAt() { }
207// public void llStopPointAt() { }
208// public void llTargetOmega() { }
209// public void llGetStartParameter() { }
210// public void llGodLikeRezObject() { }
211// public void llRequestPermissions() { }
212// public void llGetPermissionsKey() { }
213// public void llGetPermissions() { }
214// public void llGetLinkNumber() { }
215// public void llSetLinkColor() { }
216// public void llCreateLink() { }
217// public void llBreakLink() { }
218// public void llBreakAllLinks() { }
219// public void llGetLinkKey() { }
220// public void llGetLinkName() { }
221// public void llGetInventoryNumber() { }
222// public void llGetInventoryName() { }
223// public void llSetScriptState() { }
224// public void llGetEnergy() { }
225// public void llGiveInventory() { }
226// public void llRemoveInventory() { }
227// public void llSetText() { }
228// public void llWater() { }
229// public void llPassTouches() { }
230// public void llRequestAgentData() { }
231// public void llRequestInventoryData() { }
232// public void llSetDamage() { }
233// public void llTeleportAgentHome() { }
234// public void llModifyLand() { }
235// public void llCollisionSound() { }
236// public void llCollisionSprite() { }
237// public void llGetAnimation() { }
238// public void llResetScript() { }
239// public void llMessageLinked() { }
240// public void llPushObject() { }
241// public void llPassCollisions() { }
242// public void llGetScriptName() { }
243// public void llGetNumberOfSides() { }
244// public void llAxisAngle2Rot() { }
245// public void llRot2Axis() { }
246// public void llRot2Angle() { }
247// public void llAcos() { }
248// public void llAsin() { }
249// public void llAngleBetween() { }
250// public void llGetInventoryKey() { }
251// public void llAllowInventoryDrop() { }
252// public void llGetSunDirection() { }
253// public void llGetTextureOffset() { }
254// public void llGetTextureScale() { }
255// public void llGetTextureRot() { }
256// public void llSubStringIndex() { }
257// public void llGetOwnerKey() { }
258// public void llGetCenterOfMass() { }
259// public void llListSort() { }
260// public void llGetListLength() { }
261// public void llList2Integer() { }
262// public void llList2Float() { }
263// public void llList2String() { }
264// public void llList2Key() { }
265// public void llList2Vector() { }
266// public void llList2Rot() { }
267// public void llList2List() { }
268// public void llDeleteSubList() { }
269// public void llGetListEntryType() { }
270// public void llList2CSV() { }
271// public void llCSV2List() { }
272// public void llListRandomize() { }
273// public void llList2ListStrided() { }
274// public void llGetRegionCorner() { }
275// public void llListInsertList() { }
276// public void llListFindList() { }
277// public void llGetObjectName() { }
278// public void llSetObjectName() { }
279// public void llGetDate() { }
280// public void llEdgeOfWorld() { }
281// public void llGetAgentInfo() { }
282// public void llAdjustSoundVolume() { }
283// public void llSetSoundQueueing() { }
284// public void llSetSoundRadius() { }
285// public void llKey2Name() { }
286// public void llSetTextureAnim() { }
287// public void llTriggerSoundLimited() { }
288// public void llEjectFromLand() { }
289// public void llParseString2List() { }
290// public void llOverMyLand() { }
291// public void llGetLandOwnerAt() { }
292// public void llGetNotecardLine() { }
293// public void llGetAgentSize() { }
294// public void llSameGroup() { }
295// public void llUnSit() { }
296// public void llGroundSlope() { }
297// public void llGroundNormal() { }
298// public void llGroundContour() { }
299// public void llGetAttached() { }
300// public void llGetFreeMemory() { }
301// public void llGetRegionName() { }
302// public void llGetRegionTimeDilation() { }
303// public void llGetRegionFPS() { }
304// public void llParticleSystem() { }
305// public void llGroundRepel() { }
306// public void llGiveInventoryList() { }
307// public void llSetVehicleType() { }
308// public void llSetVehicleFloatParam() { }
309// public void llSetVehicleVectorParam() { }
310// public void llSetVehicleRotationParam() { }
311// public void llSetVehicleFlags() { }
312// public void llRemoveVehicleFlags() { }
313// public void llSitTarget() { }
314// public void llAvatarOnSitTarget() { }
315// public void llAddToLandPassList() { }
316// public void llSetTouchText() { }
317// public void llSetSitText() { }
318// public void llSetCameraEyeOffset() { }
319// public void llSetCameraAtOffset() { }
320// public void llDumpList2String() { }
321// public void llScriptDanger() { }
322// public void llDialog() { }
323// public void llVolumeDetect() { }
324// public void llResetOtherScript() { }
325// public void llGetScriptState() { }
326// public void llRemoteLoadScript() { }
327// public void llSetRemoteScriptAccessPin() { }
328// public void llRemoteLoadScriptPin() { }
329// public void llOpenRemoteDataChannel() { }
330// public void llSendRemoteData() { }
331// public void llRemoteDataReply() { }
332// public void llCloseRemoteDataChannel() { }
333// public void llMD5String() { }
334// public void llSetPrimitiveParams() { }
335// public void llStringToBase64() { }
336// public void llBase64ToString() { }
337// public void llXorBase64Strings() { }
338// public void llRemoteDataSetRegion() { }
339// public void llLog10() { }
340// public void llLog() { }
341// public void llGetAnimationList() { }
342// public void llSetParcelMusicURL() { }
343// public void llGetRootPosition() { }
344// public void llGetRootRotation() { }
345// public void llGetObjectDesc() { }
346// public void llSetObjectDesc() { }
347// public void llGetCreator() { }
348// public void llGetTimestamp() { }
349// public void llSetLinkAlpha() { }
350// public void llGetNumberOfPrims() { }
351// public void llGetNumberOfNotecardLines() { }
352// public void llGetBoundingBox() { }
353// public void llGetGeometricCenter() { }
354// public void llGetPrimitiveParams() { }
355// public void llIntegerToBase64() { }
356// public void llBase64ToInteger() { }
357// public void llGetGMTclock() { }
358// public void llGetSimulatorHostname() { }
359// public void llSetLocalRot() { }
360// public void llParseStringKeepNulls() { }
361// public void llRezAtRoot() { }
362// public void llGetObjectPermMask() { }
363// public void llSetObjectPermMask() { }
364// public void llGetInventoryPermMask() { }
365// public void llSetInventoryPermMask() { }
366// public void llGetInventoryCreator() { }
367// public void llOwnerSay() { }
368// public void llRequestSimulatorData() { }
369// public void llForceMouselook() { }
370// public void llGetObjectMass() { }
371// public void llListReplaceList() { }
372// public void llLoadURL() { }
373// public void llParcelMediaCommandList() { }
374// public void llParcelMediaQuery() { }
375// public void llModPow() { }
376// public void llGetInventoryType() { }
377// public void llSetPayPrice() { }
378// public void llGetCameraPos() { }
379// public void llGetCameraRot() { }
380// public void llSetPrimURL() { }
381// public void llRefreshPrimURL() { }
382// public void llEscapeURL() { }
383// public void llUnescapeURL() { }
384// public void llMapDestination() { }
385// public void llAddToLandBanList() { }
386// public void llRemoveFromLandPassList() { }
387// public void llRemoveFromLandBanList() { }
388// public void llSetCameraParams() { }
389// public void llClearCameraParams() { }
390// public void llListStatistics() { }
391// public void llGetUnixTime() { }
392// public void llGetParcelFlags() { }
393// public void llGetRegionFlags() { }
394// public void llXorBase64StringsCorrect() { }
395// public void llHTTPRequest() { }
396// public void llResetLandBanList() { }
397// public void llResetLandPassList() { }
398// public void llGetParcelPrimCount() { }
399// public void llGetParcelPrimOwners() { }
400// public void llGetObjectPrimCount() { }
401// public void llGetParcelMaxPrims() { }
402// public void llGetParcelDetails() { }
403
404// }
405//}