From 195c1dc9b8b8511980d9a607a242b24a5a91da17 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Wed, 10 Aug 2011 00:26:38 +0100
Subject: implement osNpcStopMoveTo() to cancel any current move target
---
OpenSim/Region/Framework/Interfaces/INPCModule.cs | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
(limited to 'OpenSim/Region/Framework')
diff --git a/OpenSim/Region/Framework/Interfaces/INPCModule.cs b/OpenSim/Region/Framework/Interfaces/INPCModule.cs
index 54575ca..763d2dc 100644
--- a/OpenSim/Region/Framework/Interfaces/INPCModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/INPCModule.cs
@@ -58,7 +58,7 @@ namespace OpenSim.Region.Framework.Interfaces
///
///
///
- ///
+ /// True if the operation succeeded, false if there was no such agent or the agent was not an NPC
bool SetNPCAppearance(UUID agentID, AvatarAppearance appearance, Scene scene);
///
@@ -67,7 +67,16 @@ namespace OpenSim.Region.Framework.Interfaces
/// The UUID of the NPC
///
///
- void MoveToTarget(UUID agentID, Scene scene, Vector3 pos);
+ /// True if the operation succeeded, false if there was no such agent or the agent was not an NPC
+ bool MoveToTarget(UUID agentID, Scene scene, Vector3 pos);
+
+ ///
+ /// Stop the NPC's current movement.
+ ///
+ /// The UUID of the NPC
+ ///
+ /// True if the operation succeeded, false if there was no such agent or the agent was not an NPC
+ bool StopMoveToTarget(UUID agentID, Scene scene);
///
/// Get the NPC to say something.
@@ -75,13 +84,15 @@ namespace OpenSim.Region.Framework.Interfaces
/// The UUID of the NPC
///
///
- void Say(UUID agentID, Scene scene, string text);
+ /// True if the operation succeeded, false if there was no such agent or the agent was not an NPC
+ bool Say(UUID agentID, Scene scene, string text);
///
/// Delete an NPC.
///
/// The UUID of the NPC
///
- void DeleteNPC(UUID agentID, Scene scene);
+ /// True if the operation succeeded, false if there was no such agent or the agent was not an NPC
+ bool DeleteNPC(UUID agentID, Scene scene);
}
}
\ No newline at end of file
--
cgit v1.1