diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/GridInstantMessage.cs | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/OpenSim/Framework/GridInstantMessage.cs b/OpenSim/Framework/GridInstantMessage.cs new file mode 100644 index 0000000..da3690c --- /dev/null +++ b/OpenSim/Framework/GridInstantMessage.cs | |||
@@ -0,0 +1,113 @@ | |||
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 OpenSimulator 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 OpenMetaverse; | ||
30 | |||
31 | namespace OpenSim.Framework | ||
32 | { | ||
33 | [Serializable] | ||
34 | public class GridInstantMessage | ||
35 | { | ||
36 | public Guid fromAgentID; | ||
37 | public string fromAgentName; | ||
38 | public Guid toAgentID; | ||
39 | public byte dialog; | ||
40 | public bool fromGroup; | ||
41 | public string message; | ||
42 | public Guid imSessionID; | ||
43 | public byte offline; | ||
44 | public Vector3 Position; | ||
45 | public byte[] binaryBucket; | ||
46 | |||
47 | public uint ParentEstateID; | ||
48 | public Guid RegionID; | ||
49 | public uint timestamp; | ||
50 | |||
51 | public GridInstantMessage() | ||
52 | { | ||
53 | binaryBucket = new byte[0]; | ||
54 | } | ||
55 | |||
56 | public GridInstantMessage(GridInstantMessage im, bool addTimestamp) | ||
57 | { | ||
58 | fromAgentID = im.fromAgentID; | ||
59 | fromAgentName = im.fromAgentName; | ||
60 | toAgentID = im.toAgentID; | ||
61 | dialog = im.dialog; | ||
62 | fromGroup = im.fromGroup; | ||
63 | message = im.message; | ||
64 | imSessionID = im.imSessionID; | ||
65 | offline = im.offline; | ||
66 | Position = im.Position; | ||
67 | binaryBucket = im.binaryBucket; | ||
68 | RegionID = im.RegionID; | ||
69 | |||
70 | if (addTimestamp) | ||
71 | timestamp = (uint)Util.UnixTimeSinceEpoch(); | ||
72 | } | ||
73 | |||
74 | public GridInstantMessage(IScene scene, UUID _fromAgentID, | ||
75 | string _fromAgentName, UUID _toAgentID, | ||
76 | byte _dialog, bool _fromGroup, string _message, | ||
77 | UUID _imSessionID, bool _offline, Vector3 _position, | ||
78 | byte[] _binaryBucket, bool addTimestamp) | ||
79 | { | ||
80 | fromAgentID = _fromAgentID.Guid; | ||
81 | fromAgentName = _fromAgentName; | ||
82 | toAgentID = _toAgentID.Guid; | ||
83 | dialog = _dialog; | ||
84 | fromGroup = _fromGroup; | ||
85 | message = _message; | ||
86 | imSessionID = _imSessionID.Guid; | ||
87 | if (_offline) | ||
88 | offline = 1; | ||
89 | else | ||
90 | offline = 0; | ||
91 | Position = _position; | ||
92 | binaryBucket = _binaryBucket; | ||
93 | |||
94 | if (scene != null) | ||
95 | { | ||
96 | ParentEstateID = scene.RegionInfo.EstateSettings.ParentEstateID; | ||
97 | RegionID = scene.RegionInfo.RegionSettings.RegionUUID.Guid; | ||
98 | } | ||
99 | |||
100 | if (addTimestamp) | ||
101 | timestamp = (uint)Util.UnixTimeSinceEpoch(); | ||
102 | } | ||
103 | |||
104 | public GridInstantMessage(IScene scene, UUID _fromAgentID, | ||
105 | string _fromAgentName, UUID _toAgentID, byte _dialog, | ||
106 | string _message, bool _offline, | ||
107 | Vector3 _position) : this(scene, _fromAgentID, _fromAgentName, | ||
108 | _toAgentID, _dialog, false, _message, | ||
109 | _fromAgentID ^ _toAgentID, _offline, _position, new byte[0], true) | ||
110 | { | ||
111 | } | ||
112 | } | ||
113 | } | ||