aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/GridInterfaces/ILocalStorage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/GridInterfaces/ILocalStorage.cs')
-rw-r--r--src/GridInterfaces/ILocalStorage.cs86
1 files changed, 0 insertions, 86 deletions
diff --git a/src/GridInterfaces/ILocalStorage.cs b/src/GridInterfaces/ILocalStorage.cs
deleted file mode 100644
index 6b7ded6..0000000
--- a/src/GridInterfaces/ILocalStorage.cs
+++ /dev/null
@@ -1,86 +0,0 @@
1/*
2* Copyright (c) OpenSim project, http://sim.opensecondlife.org/
3*
4* Redistribution and use in source and binary forms, with or without
5* modification, are permitted provided that the following conditions are met:
6* * Redistributions of source code must retain the above copyright
7* notice, this list of conditions and the following disclaimer.
8* * Redistributions in binary form must reproduce the above copyright
9* notice, this list of conditions and the following disclaimer in the
10* documentation and/or other materials provided with the distribution.
11* * Neither the name of the <organization> nor the
12* names of its contributors may be used to endorse or promote products
13* derived from this software without specific prior written permission.
14*
15* THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY
16* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18* DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
19* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25*
26*/
27
28using System;
29using libsecondlife;
30
31namespace GridInterfaces
32{
33 /// <summary>
34 /// ILocalStorage. Really hacked together right now needs cleaning up
35 /// </summary>
36 public interface ILocalStorage
37 {
38 void StorePrim(PrimData prim);
39 void RemovePrim(LLUUID primID);
40 void LoadPrimitives(ILocalStorageReceiver receiver);
41 void ShutDown();
42 }
43
44 public interface ILocalStorageReceiver
45 {
46 void PrimFromStorage(PrimData prim);
47 }
48
49
50 public class PrimData
51 {
52 public LLUUID OwnerID;
53 public byte PCode;
54 public byte PathBegin;
55 public byte PathEnd;
56 public byte PathScaleX;
57 public byte PathScaleY;
58 public byte PathShearX;
59 public byte PathShearY;
60 public sbyte PathSkew;
61 public byte ProfileBegin;
62 public byte ProfileEnd;
63 public LLVector3 Scale;
64 public byte PathCurve;
65 public byte ProfileCurve;
66 public uint ParentID=0;
67 public byte ProfileHollow;
68 public sbyte PathRadiusOffset;
69 public byte PathRevolutions;
70 public sbyte PathTaperX;
71 public sbyte PathTaperY;
72 public sbyte PathTwist;
73 public sbyte PathTwistBegin;
74
75 //following only used during prim storage
76 public LLVector3 Position;
77 public LLQuaternion Rotation;
78 public uint LocalID;
79 public LLUUID FullID;
80
81 public PrimData()
82 {
83
84 }
85 }
86}