aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-15 17:06:47 +0000
committerJustin Clarke Casey2008-10-15 17:06:47 +0000
commit230835dbaab80bc672b5cbd9f12e09930ed516e1 (patch)
treeb0d95eaf66375b9ddc06c8a66d1e673188af036a /OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
parent* refactor: move viewer effect packet into LLClientView (diff)
downloadopensim-SC_OLD-230835dbaab80bc672b5cbd9f12e09930ed516e1.zip
opensim-SC_OLD-230835dbaab80bc672b5cbd9f12e09930ed516e1.tar.gz
opensim-SC_OLD-230835dbaab80bc672b5cbd9f12e09930ed516e1.tar.bz2
opensim-SC_OLD-230835dbaab80bc672b5cbd9f12e09930ed516e1.tar.xz
* refactor: Remove OutPacket from the IClientAPI
* I believe this is reasonable since code outside the Linden client stack shouldn't be aware of the packet format being used * I would love to have made the method protected, but the LoadBalancerPlugin is still calling it and resolving that would require more work
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs15
1 files changed, 7 insertions, 8 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 663e768..cc49072 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -326,11 +326,6 @@ namespace OpenSim.Region.Examples.SimpleModule
326 { 326 {
327 } 327 }
328 328
329
330 public virtual void OutPacket(Packet newPack, ThrottleOutPacketType packType)
331 {
332 }
333
334 public virtual void SendWearables(AvatarWearable[] wearables, int serial) 329 public virtual void SendWearables(AvatarWearable[] wearables, int serial)
335 { 330 {
336 } 331 }
@@ -821,38 +816,42 @@ namespace OpenSim.Region.Examples.SimpleModule
821 public void SendRegionInfoToEstateMenu(RegionInfoForEstateMenuArgs args) 816 public void SendRegionInfoToEstateMenu(RegionInfoForEstateMenuArgs args)
822 { 817 {
823 } 818 }
819
824 public void SendEstateCovenantInformation(UUID covenant) 820 public void SendEstateCovenantInformation(UUID covenant)
825 { 821 {
826 } 822 }
823
827 public void SendDetailedEstateData(UUID invoice, string estateName, uint estateID, uint parentEstate, uint estateFlags, uint sunPosition, UUID covenant, string abuseEmail, UUID estateOwner) 824 public void SendDetailedEstateData(UUID invoice, string estateName, uint estateID, uint parentEstate, uint estateFlags, uint sunPosition, UUID covenant, string abuseEmail, UUID estateOwner)
828 { 825 {
829 } 826 }
830 827
831 public void SendLandProperties(IClientAPI remote_client, int sequence_id, bool snap_selection, int request_result, LandData landData, float simObjectBonusFactor, int parcelObjectCapacity, int simObjectCapacity, uint regionFlags) 828 public void SendLandProperties(int sequence_id, bool snap_selection, int request_result, LandData landData, float simObjectBonusFactor, int parcelObjectCapacity, int simObjectCapacity, uint regionFlags)
832 { 829 {
833 } 830 }
831
834 public void SendLandAccessListData(List<UUID> avatars, uint accessFlag, int localLandID) 832 public void SendLandAccessListData(List<UUID> avatars, uint accessFlag, int localLandID)
835 { 833 {
836 } 834 }
835
837 public void SendForceClientSelectObjects(List<uint> objectIDs) 836 public void SendForceClientSelectObjects(List<uint> objectIDs)
838 { 837 {
839 } 838 }
839
840 public void SendLandObjectOwners(Dictionary<UUID, int> ownersAndCount) 840 public void SendLandObjectOwners(Dictionary<UUID, int> ownersAndCount)
841 { 841 {
842 } 842 }
843
843 public void SendLandParcelOverlay(byte[] data, int sequence_id) 844 public void SendLandParcelOverlay(byte[] data, int sequence_id)
844 { 845 {
845 } 846 }
846 847
847 public void SendParcelMediaCommand(uint flags, ParcelMediaCommandEnum command, float time) 848 public void SendParcelMediaCommand(uint flags, ParcelMediaCommandEnum command, float time)
848 { 849 {
849
850 } 850 }
851 851
852 public void SendParcelMediaUpdate(string mediaUrl, UUID mediaTextureID, byte autoScale, string mediaType, 852 public void SendParcelMediaUpdate(string mediaUrl, UUID mediaTextureID, byte autoScale, string mediaType,
853 string mediaDesc, int mediaWidth, int mediaHeight, byte mediaLoop) 853 string mediaDesc, int mediaWidth, int mediaHeight, byte mediaLoop)
854 { 854 {
855
856 } 855 }
857 856
858 public void SendGroupNameReply(UUID groupLLUID, string GroupName) 857 public void SendGroupNameReply(UUID groupLLUID, string GroupName)