diff options
Diffstat (limited to 'OpenSim/OpenSim.World/SceneObject.cs')
-rw-r--r-- | OpenSim/OpenSim.World/SceneObject.cs | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/OpenSim/OpenSim.World/SceneObject.cs b/OpenSim/OpenSim.World/SceneObject.cs deleted file mode 100644 index 9ea631b..0000000 --- a/OpenSim/OpenSim.World/SceneObject.cs +++ /dev/null | |||
@@ -1,100 +0,0 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Region.types; | ||
5 | using libsecondlife; | ||
6 | using libsecondlife.Packets; | ||
7 | using OpenSim.Framework.Interfaces; | ||
8 | using OpenSim.Physics.Manager; | ||
9 | using OpenSim.Framework.Types; | ||
10 | using OpenSim.Framework.Inventory; | ||
11 | |||
12 | namespace OpenSim.Region | ||
13 | { | ||
14 | public class SceneObject : Entity | ||
15 | { | ||
16 | private LLUUID rootUUID; | ||
17 | private Dictionary<LLUUID, Primitive> ChildPrimitives = new Dictionary<LLUUID, Primitive>(); | ||
18 | private Dictionary<uint, IClientAPI> m_clientThreads; | ||
19 | private World m_world; | ||
20 | |||
21 | /// <summary> | ||
22 | /// | ||
23 | /// </summary> | ||
24 | public SceneObject() | ||
25 | { | ||
26 | |||
27 | } | ||
28 | |||
29 | /// <summary> | ||
30 | /// | ||
31 | /// </summary> | ||
32 | /// <param name="addPacket"></param> | ||
33 | /// <param name="agentID"></param> | ||
34 | /// <param name="localID"></param> | ||
35 | public void CreateFromPacket(ObjectAddPacket addPacket, LLUUID agentID, uint localID) | ||
36 | { | ||
37 | } | ||
38 | |||
39 | /// <summary> | ||
40 | /// | ||
41 | /// </summary> | ||
42 | /// <param name="data"></param> | ||
43 | public void CreateFromBytes(byte[] data) | ||
44 | { | ||
45 | |||
46 | } | ||
47 | |||
48 | /// <summary> | ||
49 | /// | ||
50 | /// </summary> | ||
51 | public override void update() | ||
52 | { | ||
53 | |||
54 | } | ||
55 | |||
56 | /// <summary> | ||
57 | /// | ||
58 | /// </summary> | ||
59 | public override void BackUp() | ||
60 | { | ||
61 | |||
62 | } | ||
63 | |||
64 | /// <summary> | ||
65 | /// | ||
66 | /// </summary> | ||
67 | /// <param name="client"></param> | ||
68 | public void GetProperites(IClientAPI client) | ||
69 | { | ||
70 | /* | ||
71 | ObjectPropertiesPacket proper = new ObjectPropertiesPacket(); | ||
72 | proper.ObjectData = new ObjectPropertiesPacket.ObjectDataBlock[1]; | ||
73 | proper.ObjectData[0] = new ObjectPropertiesPacket.ObjectDataBlock(); | ||
74 | proper.ObjectData[0].ItemID = LLUUID.Zero; | ||
75 | proper.ObjectData[0].CreationDate = (ulong)this.primData.CreationDate; | ||
76 | proper.ObjectData[0].CreatorID = this.primData.OwnerID; | ||
77 | proper.ObjectData[0].FolderID = LLUUID.Zero; | ||
78 | proper.ObjectData[0].FromTaskID = LLUUID.Zero; | ||
79 | proper.ObjectData[0].GroupID = LLUUID.Zero; | ||
80 | proper.ObjectData[0].InventorySerial = 0; | ||
81 | proper.ObjectData[0].LastOwnerID = LLUUID.Zero; | ||
82 | proper.ObjectData[0].ObjectID = this.uuid; | ||
83 | proper.ObjectData[0].OwnerID = primData.OwnerID; | ||
84 | proper.ObjectData[0].TouchName = new byte[0]; | ||
85 | proper.ObjectData[0].TextureID = new byte[0]; | ||
86 | proper.ObjectData[0].SitName = new byte[0]; | ||
87 | proper.ObjectData[0].Name = new byte[0]; | ||
88 | proper.ObjectData[0].Description = new byte[0]; | ||
89 | proper.ObjectData[0].OwnerMask = this.primData.OwnerMask; | ||
90 | proper.ObjectData[0].NextOwnerMask = this.primData.NextOwnerMask; | ||
91 | proper.ObjectData[0].GroupMask = this.primData.GroupMask; | ||
92 | proper.ObjectData[0].EveryoneMask = this.primData.EveryoneMask; | ||
93 | proper.ObjectData[0].BaseMask = this.primData.BaseMask; | ||
94 | |||
95 | client.OutPacket(proper); | ||
96 | * */ | ||
97 | } | ||
98 | |||
99 | } | ||
100 | } | ||