diff options
Added a few summary comments to OpenSim.World files
Diffstat (limited to 'OpenSim/OpenSim.World/Avatar.Update.cs')
-rw-r--r-- | OpenSim/OpenSim.World/Avatar.Update.cs | 48 |
1 files changed, 46 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.World/Avatar.Update.cs b/OpenSim/OpenSim.World/Avatar.Update.cs index c8d92ec..478f224 100644 --- a/OpenSim/OpenSim.World/Avatar.Update.cs +++ b/OpenSim/OpenSim.World/Avatar.Update.cs | |||
@@ -10,65 +10,109 @@ namespace OpenSim.world | |||
10 | { | 10 | { |
11 | partial class Avatar | 11 | partial class Avatar |
12 | { | 12 | { |
13 | /// <summary> | ||
14 | /// | ||
15 | /// </summary> | ||
13 | public override void update() | 16 | public override void update() |
14 | { | 17 | { |
15 | 18 | ||
16 | 19 | ||
17 | } | 20 | } |
18 | 21 | ||
22 | /// <summary> | ||
23 | /// | ||
24 | /// </summary> | ||
25 | /// <param name="remoteAvatar"></param> | ||
19 | public void SendUpdateToOtherClient(Avatar remoteAvatar) | 26 | public void SendUpdateToOtherClient(Avatar remoteAvatar) |
20 | { | 27 | { |
21 | 28 | ||
22 | } | 29 | } |
23 | 30 | ||
31 | /// <summary> | ||
32 | /// | ||
33 | /// </summary> | ||
34 | /// <returns></returns> | ||
24 | public ObjectUpdatePacket CreateUpdatePacket() | 35 | public ObjectUpdatePacket CreateUpdatePacket() |
25 | { | 36 | { |
26 | return null; | 37 | return null; |
27 | } | 38 | } |
28 | 39 | ||
40 | /// <summary> | ||
41 | /// | ||
42 | /// </summary> | ||
29 | public void SendInitialPosition() | 43 | public void SendInitialPosition() |
30 | { | 44 | { |
31 | Console.WriteLine("sending initial Avatar data"); | 45 | Console.WriteLine("sending initial Avatar data"); |
32 | this.ControllingClient.SendAvatarData(this.regionData, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); | 46 | this.ControllingClient.SendAvatarData(this.regionData, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); |
33 | } | 47 | } |
34 | 48 | ||
49 | /// <summary> | ||
50 | /// | ||
51 | /// </summary> | ||
35 | public void SendOurAppearance() | 52 | public void SendOurAppearance() |
36 | { | 53 | { |
37 | 54 | ||
38 | } | 55 | } |
39 | 56 | ||
57 | /// <summary> | ||
58 | /// | ||
59 | /// </summary> | ||
60 | /// <param name="OurClient"></param> | ||
40 | public void SendOurAppearance(IClientAPI OurClient) | 61 | public void SendOurAppearance(IClientAPI OurClient) |
41 | { | 62 | { |
42 | this.ControllingClient.SendWearables(this.Wearables); | 63 | this.ControllingClient.SendWearables(this.Wearables); |
43 | } | 64 | } |
44 | 65 | ||
66 | /// <summary> | ||
67 | /// | ||
68 | /// </summary> | ||
69 | /// <param name="avatarInfo"></param> | ||
45 | public void SendAppearanceToOtherAgent(Avatar avatarInfo) | 70 | public void SendAppearanceToOtherAgent(Avatar avatarInfo) |
46 | { | 71 | { |
47 | 72 | ||
48 | } | 73 | } |
49 | 74 | ||
75 | /// <summary> | ||
76 | /// | ||
77 | /// </summary> | ||
78 | /// <param name="texture"></param> | ||
79 | /// <param name="visualParam"></param> | ||
50 | public void SetAppearance(byte[] texture, AgentSetAppearancePacket.VisualParamBlock[] visualParam) | 80 | public void SetAppearance(byte[] texture, AgentSetAppearancePacket.VisualParamBlock[] visualParam) |
51 | { | 81 | { |
52 | 82 | ||
53 | } | 83 | } |
54 | 84 | ||
85 | /// <summary> | ||
86 | /// | ||
87 | /// </summary> | ||
55 | public void StopMovement() | 88 | public void StopMovement() |
56 | { | 89 | { |
57 | 90 | ||
58 | } | 91 | } |
59 | 92 | ||
93 | /// <summary> | ||
94 | /// Very likely to be deleted soon! | ||
95 | /// </summary> | ||
96 | /// <returns></returns> | ||
60 | public ImprovedTerseObjectUpdatePacket.ObjectDataBlock CreateTerseBlock() | 97 | public ImprovedTerseObjectUpdatePacket.ObjectDataBlock CreateTerseBlock() |
61 | { | 98 | { |
62 | return null; | 99 | return null; |
63 | } | 100 | } |
64 | 101 | ||
65 | // Sends animation update | 102 | /// <summary> |
103 | /// | ||
104 | /// </summary> | ||
105 | /// <param name="animID"></param> | ||
106 | /// <param name="seq"></param> | ||
66 | public void SendAnimPack(LLUUID animID, int seq) | 107 | public void SendAnimPack(LLUUID animID, int seq) |
67 | { | 108 | { |
68 | 109 | ||
69 | 110 | ||
70 | } | 111 | } |
71 | 112 | ||
113 | /// <summary> | ||
114 | /// | ||
115 | /// </summary> | ||
72 | public void SendAnimPack() | 116 | public void SendAnimPack() |
73 | { | 117 | { |
74 | 118 | ||