diff options
author | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-09-06 07:52:41 +0000 |
commit | 7d89e122930be39e84a6d174548fa2d12ac0484a (patch) | |
tree | e5aa5752f988a9aba2a969f49e5e208985eda80c /OpenSim/Region/Environment/Scenes/EventManager.cs | |
parent | * minor: speculatively try a change to bamboo.build to see if this generates ... (diff) | |
download | opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.zip opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.gz opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.bz2 opensim-SC_OLD-7d89e122930be39e84a6d174548fa2d12ac0484a.tar.xz |
* This is the fabled LibOMV update with all of the libOMV types from JHurliman
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle.
* This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big!
* Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EventManager.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/EventManager.cs | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EventManager.cs b/OpenSim/Region/Environment/Scenes/EventManager.cs index d48ef0c..58f5efe 100644 --- a/OpenSim/Region/Environment/Scenes/EventManager.cs +++ b/OpenSim/Region/Environment/Scenes/EventManager.cs | |||
@@ -26,7 +26,7 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using libsecondlife; | 29 | using OpenMetaverse; |
30 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Region.Environment.Interfaces; | 31 | using OpenSim.Region.Environment.Interfaces; |
32 | using Caps=OpenSim.Framework.Communications.Capabilities.Caps; | 32 | using Caps=OpenSim.Framework.Communications.Capabilities.Caps; |
@@ -63,7 +63,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
63 | 63 | ||
64 | public event OnNewPresenceDelegate OnNewPresence; | 64 | public event OnNewPresenceDelegate OnNewPresence; |
65 | 65 | ||
66 | public delegate void OnRemovePresenceDelegate(LLUUID agentId); | 66 | public delegate void OnRemovePresenceDelegate(UUID agentId); |
67 | 67 | ||
68 | public event OnRemovePresenceDelegate OnRemovePresence; | 68 | public event OnRemovePresenceDelegate OnRemovePresence; |
69 | 69 | ||
@@ -83,11 +83,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
83 | 83 | ||
84 | public event OnShutdownDelegate OnShutdown; | 84 | public event OnShutdownDelegate OnShutdown; |
85 | 85 | ||
86 | public delegate void ObjectGrabDelegate(uint localID, uint originalID, LLVector3 offsetPos, IClientAPI remoteClient); | 86 | public delegate void ObjectGrabDelegate(uint localID, uint originalID, Vector3 offsetPos, IClientAPI remoteClient); |
87 | public delegate void ObjectDeGrabDelegate(uint localID, uint originalID, IClientAPI remoteClient); | 87 | public delegate void ObjectDeGrabDelegate(uint localID, uint originalID, IClientAPI remoteClient); |
88 | public delegate void ScriptResetDelegate(uint localID, LLUUID itemID); | 88 | public delegate void ScriptResetDelegate(uint localID, UUID itemID); |
89 | 89 | ||
90 | public delegate void OnPermissionErrorDelegate(LLUUID user, string reason); | 90 | public delegate void OnPermissionErrorDelegate(UUID user, string reason); |
91 | 91 | ||
92 | public event ObjectGrabDelegate OnObjectGrab; | 92 | public event ObjectGrabDelegate OnObjectGrab; |
93 | public event ObjectDeGrabDelegate OnObjectDeGrab; | 93 | public event ObjectDeGrabDelegate OnObjectDeGrab; |
@@ -95,27 +95,27 @@ namespace OpenSim.Region.Environment.Scenes | |||
95 | 95 | ||
96 | public event OnPermissionErrorDelegate OnPermissionError; | 96 | public event OnPermissionErrorDelegate OnPermissionError; |
97 | 97 | ||
98 | public delegate void NewRezScript(uint localID, LLUUID itemID, string script, int startParam, bool postOnRez); | 98 | public delegate void NewRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez); |
99 | 99 | ||
100 | public event NewRezScript OnRezScript; | 100 | public event NewRezScript OnRezScript; |
101 | 101 | ||
102 | public delegate void RemoveScript(uint localID, LLUUID itemID); | 102 | public delegate void RemoveScript(uint localID, UUID itemID); |
103 | 103 | ||
104 | public event RemoveScript OnRemoveScript; | 104 | public event RemoveScript OnRemoveScript; |
105 | 105 | ||
106 | public delegate void StartScript(uint localID, LLUUID itemID); | 106 | public delegate void StartScript(uint localID, UUID itemID); |
107 | 107 | ||
108 | public event StartScript OnStartScript; | 108 | public event StartScript OnStartScript; |
109 | 109 | ||
110 | public delegate void StopScript(uint localID, LLUUID itemID); | 110 | public delegate void StopScript(uint localID, UUID itemID); |
111 | 111 | ||
112 | public event StopScript OnStopScript; | 112 | public event StopScript OnStopScript; |
113 | 113 | ||
114 | public delegate bool SceneGroupMoved(LLUUID groupID, LLVector3 delta); | 114 | public delegate bool SceneGroupMoved(UUID groupID, Vector3 delta); |
115 | 115 | ||
116 | public event SceneGroupMoved OnSceneGroupMove; | 116 | public event SceneGroupMoved OnSceneGroupMove; |
117 | 117 | ||
118 | public delegate void SceneGroupGrabed(LLUUID groupID, LLVector3 offset, LLUUID userID); | 118 | public delegate void SceneGroupGrabed(UUID groupID, Vector3 offset, UUID userID); |
119 | 119 | ||
120 | public event SceneGroupGrabed OnSceneGroupGrab; | 120 | public event SceneGroupGrabed OnSceneGroupGrab; |
121 | 121 | ||
@@ -123,11 +123,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
123 | 123 | ||
124 | public event LandObjectAdded OnLandObjectAdded; | 124 | public event LandObjectAdded OnLandObjectAdded; |
125 | 125 | ||
126 | public delegate void LandObjectRemoved(LLUUID globalID); | 126 | public delegate void LandObjectRemoved(UUID globalID); |
127 | 127 | ||
128 | public event LandObjectRemoved OnLandObjectRemoved; | 128 | public event LandObjectRemoved OnLandObjectRemoved; |
129 | 129 | ||
130 | public delegate void AvatarEnteringNewParcel(ScenePresence avatar, int localLandID, LLUUID regionID); | 130 | public delegate void AvatarEnteringNewParcel(ScenePresence avatar, int localLandID, UUID regionID); |
131 | 131 | ||
132 | public event AvatarEnteringNewParcel OnAvatarEnteringNewParcel; | 132 | public event AvatarEnteringNewParcel OnAvatarEnteringNewParcel; |
133 | 133 | ||
@@ -143,7 +143,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
143 | 143 | ||
144 | public event NewGridInstantMessage OnGridInstantMessageToGroupsModule; | 144 | public event NewGridInstantMessage OnGridInstantMessageToGroupsModule; |
145 | 145 | ||
146 | public delegate void ClientClosed(LLUUID clientID); | 146 | public delegate void ClientClosed(UUID clientID); |
147 | 147 | ||
148 | public event ClientClosed OnClientClosed; | 148 | public event ClientClosed OnClientClosed; |
149 | 149 | ||
@@ -151,11 +151,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
151 | 151 | ||
152 | public event ScriptChangedEvent OnScriptChangedEvent; | 152 | public event ScriptChangedEvent OnScriptChangedEvent; |
153 | 153 | ||
154 | public delegate void ScriptControlEvent(uint localID, LLUUID item, LLUUID avatarID, uint held, uint changed); | 154 | public delegate void ScriptControlEvent(uint localID, UUID item, UUID avatarID, uint held, uint changed); |
155 | 155 | ||
156 | public event ScriptControlEvent OnScriptControlEvent; | 156 | public event ScriptControlEvent OnScriptControlEvent; |
157 | 157 | ||
158 | public delegate void ScriptAtTargetEvent(uint localID, uint handle, LLVector3 targetpos, LLVector3 atpos); | 158 | public delegate void ScriptAtTargetEvent(uint localID, uint handle, Vector3 targetpos, Vector3 atpos); |
159 | 159 | ||
160 | public event ScriptAtTargetEvent OnScriptAtTargetEvent; | 160 | public event ScriptAtTargetEvent OnScriptAtTargetEvent; |
161 | 161 | ||
@@ -175,7 +175,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
175 | public delegate void OnMakeRootAgentDelegate(ScenePresence presence); | 175 | public delegate void OnMakeRootAgentDelegate(ScenePresence presence); |
176 | public event OnMakeRootAgentDelegate OnMakeRootAgent; | 176 | public event OnMakeRootAgentDelegate OnMakeRootAgent; |
177 | 177 | ||
178 | public delegate void NewInventoryItemUploadComplete(LLUUID avatarID, LLUUID assetID, string name, int userlevel); | 178 | public delegate void NewInventoryItemUploadComplete(UUID avatarID, UUID assetID, string name, int userlevel); |
179 | 179 | ||
180 | public event NewInventoryItemUploadComplete OnNewInventoryItemUploadComplete; | 180 | public event NewInventoryItemUploadComplete OnNewInventoryItemUploadComplete; |
181 | 181 | ||
@@ -217,13 +217,13 @@ namespace OpenSim.Region.Environment.Scenes | |||
217 | /// has been instantiated and before it is return to the | 217 | /// has been instantiated and before it is return to the |
218 | /// client and provides region modules to add their caps. | 218 | /// client and provides region modules to add their caps. |
219 | /// </summary> | 219 | /// </summary> |
220 | public delegate void RegisterCapsEvent(LLUUID agentID, Caps caps); | 220 | public delegate void RegisterCapsEvent(UUID agentID, Caps caps); |
221 | public event RegisterCapsEvent OnRegisterCaps; | 221 | public event RegisterCapsEvent OnRegisterCaps; |
222 | /// <summary> | 222 | /// <summary> |
223 | /// DeregisterCapsEvent is called by Scene when the caps | 223 | /// DeregisterCapsEvent is called by Scene when the caps |
224 | /// handler for an agent are removed. | 224 | /// handler for an agent are removed. |
225 | /// </summary> | 225 | /// </summary> |
226 | public delegate void DeregisterCapsEvent(LLUUID agentID, Caps caps); | 226 | public delegate void DeregisterCapsEvent(UUID agentID, Caps caps); |
227 | public event DeregisterCapsEvent OnDeregisterCaps; | 227 | public event DeregisterCapsEvent OnDeregisterCaps; |
228 | /// <summary> | 228 | /// <summary> |
229 | /// ChatFromWorldEvent is called via Scene when a chat message | 229 | /// ChatFromWorldEvent is called via Scene when a chat message |
@@ -244,8 +244,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
244 | 244 | ||
245 | public class MoneyTransferArgs : EventArgs | 245 | public class MoneyTransferArgs : EventArgs |
246 | { | 246 | { |
247 | public LLUUID sender; | 247 | public UUID sender; |
248 | public LLUUID receiver; | 248 | public UUID receiver; |
249 | 249 | ||
250 | // Always false. The SL protocol sucks. | 250 | // Always false. The SL protocol sucks. |
251 | public bool authenticated = false; | 251 | public bool authenticated = false; |
@@ -254,7 +254,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
254 | public int transactiontype; | 254 | public int transactiontype; |
255 | public string description; | 255 | public string description; |
256 | 256 | ||
257 | public MoneyTransferArgs(LLUUID asender, LLUUID areceiver, int aamount, int atransactiontype, string adescription) | 257 | public MoneyTransferArgs(UUID asender, UUID areceiver, int aamount, int atransactiontype, string adescription) |
258 | { | 258 | { |
259 | sender = asender; | 259 | sender = asender; |
260 | receiver = areceiver; | 260 | receiver = areceiver; |
@@ -266,11 +266,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
266 | 266 | ||
267 | public class LandBuyArgs : EventArgs | 267 | public class LandBuyArgs : EventArgs |
268 | { | 268 | { |
269 | public LLUUID agentId = LLUUID.Zero; | 269 | public UUID agentId = UUID.Zero; |
270 | 270 | ||
271 | public LLUUID groupId = LLUUID.Zero; | 271 | public UUID groupId = UUID.Zero; |
272 | 272 | ||
273 | public LLUUID parcelOwnerID = LLUUID.Zero; | 273 | public UUID parcelOwnerID = UUID.Zero; |
274 | 274 | ||
275 | public bool final = false; | 275 | public bool final = false; |
276 | public bool groupOwned = false; | 276 | public bool groupOwned = false; |
@@ -284,7 +284,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
284 | public int transactionID = 0; | 284 | public int transactionID = 0; |
285 | public int amountDebited = 0; | 285 | public int amountDebited = 0; |
286 | 286 | ||
287 | public LandBuyArgs(LLUUID pagentId, LLUUID pgroupId, bool pfinal, bool pgroupOwned, | 287 | public LandBuyArgs(UUID pagentId, UUID pgroupId, bool pfinal, bool pgroupOwned, |
288 | bool premoveContribution, int pparcelLocalID, int pparcelArea, int pparcelPrice, | 288 | bool premoveContribution, int pparcelLocalID, int pparcelArea, int pparcelPrice, |
289 | bool pauthenticated) | 289 | bool pauthenticated) |
290 | { | 290 | { |
@@ -385,7 +385,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
385 | handlerClientMovement(avatar); | 385 | handlerClientMovement(avatar); |
386 | } | 386 | } |
387 | 387 | ||
388 | public void TriggerPermissionError(LLUUID user, string reason) | 388 | public void TriggerPermissionError(UUID user, string reason) |
389 | { | 389 | { |
390 | handlerPermissionError = OnPermissionError; | 390 | handlerPermissionError = OnPermissionError; |
391 | if (handlerPermissionError != null) | 391 | if (handlerPermissionError != null) |
@@ -422,7 +422,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
422 | handlerNewPresence(presence); | 422 | handlerNewPresence(presence); |
423 | } | 423 | } |
424 | 424 | ||
425 | public void TriggerOnRemovePresence(LLUUID agentId) | 425 | public void TriggerOnRemovePresence(UUID agentId) |
426 | { | 426 | { |
427 | handlerRemovePresence = OnRemovePresence; | 427 | handlerRemovePresence = OnRemovePresence; |
428 | if (handlerRemovePresence != null) | 428 | if (handlerRemovePresence != null) |
@@ -492,7 +492,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
492 | handlerShutdown(); | 492 | handlerShutdown(); |
493 | } | 493 | } |
494 | 494 | ||
495 | public void TriggerObjectGrab(uint localID, uint originalID, LLVector3 offsetPos, IClientAPI remoteClient) | 495 | public void TriggerObjectGrab(uint localID, uint originalID, Vector3 offsetPos, IClientAPI remoteClient) |
496 | { | 496 | { |
497 | handlerObjectGrab = OnObjectGrab; | 497 | handlerObjectGrab = OnObjectGrab; |
498 | if (handlerObjectGrab != null) | 498 | if (handlerObjectGrab != null) |
@@ -510,7 +510,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
510 | } | 510 | } |
511 | } | 511 | } |
512 | 512 | ||
513 | public void TriggerScriptReset(uint localID, LLUUID itemID) | 513 | public void TriggerScriptReset(uint localID, UUID itemID) |
514 | { | 514 | { |
515 | handlerScriptReset = OnScriptReset; | 515 | handlerScriptReset = OnScriptReset; |
516 | if (handlerScriptReset != null) | 516 | if (handlerScriptReset != null) |
@@ -519,7 +519,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
519 | } | 519 | } |
520 | } | 520 | } |
521 | 521 | ||
522 | public void TriggerRezScript(uint localID, LLUUID itemID, string script, int startParam, bool postOnRez) | 522 | public void TriggerRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez) |
523 | { | 523 | { |
524 | handlerRezScript = OnRezScript; | 524 | handlerRezScript = OnRezScript; |
525 | if (handlerRezScript != null) | 525 | if (handlerRezScript != null) |
@@ -528,7 +528,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
528 | } | 528 | } |
529 | } | 529 | } |
530 | 530 | ||
531 | public void TriggerStartScript(uint localID, LLUUID itemID) | 531 | public void TriggerStartScript(uint localID, UUID itemID) |
532 | { | 532 | { |
533 | handlerStartScript = OnStartScript; | 533 | handlerStartScript = OnStartScript; |
534 | if (handlerStartScript != null) | 534 | if (handlerStartScript != null) |
@@ -537,7 +537,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
537 | } | 537 | } |
538 | } | 538 | } |
539 | 539 | ||
540 | public void TriggerStopScript(uint localID, LLUUID itemID) | 540 | public void TriggerStopScript(uint localID, UUID itemID) |
541 | { | 541 | { |
542 | handlerStopScript = OnStopScript; | 542 | handlerStopScript = OnStopScript; |
543 | if (handlerStopScript != null) | 543 | if (handlerStopScript != null) |
@@ -546,7 +546,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
546 | } | 546 | } |
547 | } | 547 | } |
548 | 548 | ||
549 | public void TriggerRemoveScript(uint localID, LLUUID itemID) | 549 | public void TriggerRemoveScript(uint localID, UUID itemID) |
550 | { | 550 | { |
551 | handlerRemoveScript = OnRemoveScript; | 551 | handlerRemoveScript = OnRemoveScript; |
552 | if (handlerRemoveScript != null) | 552 | if (handlerRemoveScript != null) |
@@ -555,7 +555,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
555 | } | 555 | } |
556 | } | 556 | } |
557 | 557 | ||
558 | public bool TriggerGroupMove(LLUUID groupID, LLVector3 delta) | 558 | public bool TriggerGroupMove(UUID groupID, Vector3 delta) |
559 | { | 559 | { |
560 | handlerSceneGroupMove = OnSceneGroupMove; | 560 | handlerSceneGroupMove = OnSceneGroupMove; |
561 | 561 | ||
@@ -566,7 +566,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
566 | return true; | 566 | return true; |
567 | } | 567 | } |
568 | 568 | ||
569 | public void TriggerGroupGrab(LLUUID groupID, LLVector3 offset, LLUUID userID) | 569 | public void TriggerGroupGrab(UUID groupID, Vector3 offset, UUID userID) |
570 | { | 570 | { |
571 | handlerSceneGroupGrab = OnSceneGroupGrab; | 571 | handlerSceneGroupGrab = OnSceneGroupGrab; |
572 | if (handlerSceneGroupGrab != null) | 572 | if (handlerSceneGroupGrab != null) |
@@ -585,7 +585,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
585 | } | 585 | } |
586 | } | 586 | } |
587 | 587 | ||
588 | public void TriggerLandObjectRemoved(LLUUID globalID) | 588 | public void TriggerLandObjectRemoved(UUID globalID) |
589 | { | 589 | { |
590 | handlerLandObjectRemoved = OnLandObjectRemoved; | 590 | handlerLandObjectRemoved = OnLandObjectRemoved; |
591 | if (handlerLandObjectRemoved != null) | 591 | if (handlerLandObjectRemoved != null) |
@@ -601,7 +601,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
601 | TriggerLandObjectAdded(newParcel); | 601 | TriggerLandObjectAdded(newParcel); |
602 | } | 602 | } |
603 | 603 | ||
604 | public void TriggerAvatarEnteringNewParcel(ScenePresence avatar, int localLandID, LLUUID regionID) | 604 | public void TriggerAvatarEnteringNewParcel(ScenePresence avatar, int localLandID, UUID regionID) |
605 | { | 605 | { |
606 | handlerAvatarEnteringNewParcel = OnAvatarEnteringNewParcel; | 606 | handlerAvatarEnteringNewParcel = OnAvatarEnteringNewParcel; |
607 | 607 | ||
@@ -634,7 +634,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
634 | } | 634 | } |
635 | } | 635 | } |
636 | 636 | ||
637 | public void TriggerClientClosed(LLUUID ClientID) | 637 | public void TriggerClientClosed(UUID ClientID) |
638 | { | 638 | { |
639 | handlerClientClosed = OnClientClosed; | 639 | handlerClientClosed = OnClientClosed; |
640 | if (handlerClientClosed != null) | 640 | if (handlerClientClosed != null) |
@@ -661,7 +661,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
661 | } | 661 | } |
662 | } | 662 | } |
663 | 663 | ||
664 | public void TriggerOnRegisterCaps(LLUUID agentID, Caps caps) | 664 | public void TriggerOnRegisterCaps(UUID agentID, Caps caps) |
665 | { | 665 | { |
666 | handlerRegisterCaps = OnRegisterCaps; | 666 | handlerRegisterCaps = OnRegisterCaps; |
667 | if (handlerRegisterCaps != null) | 667 | if (handlerRegisterCaps != null) |
@@ -670,7 +670,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
670 | } | 670 | } |
671 | } | 671 | } |
672 | 672 | ||
673 | public void TriggerOnDeregisterCaps(LLUUID agentID, Caps caps) | 673 | public void TriggerOnDeregisterCaps(UUID agentID, Caps caps) |
674 | { | 674 | { |
675 | handlerDeregisterCaps = OnDeregisterCaps; | 675 | handlerDeregisterCaps = OnDeregisterCaps; |
676 | if (handlerDeregisterCaps != null) | 676 | if (handlerDeregisterCaps != null) |
@@ -679,7 +679,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
679 | } | 679 | } |
680 | } | 680 | } |
681 | 681 | ||
682 | public void TriggerOnNewInventoryItemUploadComplete(LLUUID agentID, LLUUID AssetID, String AssetName, int userlevel) | 682 | public void TriggerOnNewInventoryItemUploadComplete(UUID agentID, UUID AssetID, String AssetName, int userlevel) |
683 | { | 683 | { |
684 | handlerNewInventoryItemUpdateComplete = OnNewInventoryItemUploadComplete; | 684 | handlerNewInventoryItemUpdateComplete = OnNewInventoryItemUploadComplete; |
685 | if (handlerNewInventoryItemUpdateComplete != null) | 685 | if (handlerNewInventoryItemUpdateComplete != null) |
@@ -706,7 +706,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
706 | } | 706 | } |
707 | } | 707 | } |
708 | 708 | ||
709 | public void TriggerAtTargetEvent(uint localID, uint handle, LLVector3 targetpos, LLVector3 currentpos) | 709 | public void TriggerAtTargetEvent(uint localID, uint handle, Vector3 targetpos, Vector3 currentpos) |
710 | { | 710 | { |
711 | handlerScriptAtTargetEvent = OnScriptAtTargetEvent; | 711 | handlerScriptAtTargetEvent = OnScriptAtTargetEvent; |
712 | if (handlerScriptAtTargetEvent != null) | 712 | if (handlerScriptAtTargetEvent != null) |
@@ -769,7 +769,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
769 | } | 769 | } |
770 | } | 770 | } |
771 | 771 | ||
772 | internal void TriggerControlEvent(uint p, LLUUID scriptUUID, LLUUID avatarID, uint held, uint _changed) | 772 | internal void TriggerControlEvent(uint p, UUID scriptUUID, UUID avatarID, uint held, uint _changed) |
773 | { | 773 | { |
774 | handlerScriptControlEvent = OnScriptControlEvent; | 774 | handlerScriptControlEvent = OnScriptControlEvent; |
775 | if (handlerScriptControlEvent != null) | 775 | if (handlerScriptControlEvent != null) |