aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scripting/NullScriptHost.cs
blob: 2337abac4f5e4a0b6873a6d5c2962d8c3a2143a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using System;
using Axiom.Math;
using libsecondlife;

namespace OpenSim.Region.Environment.Scenes.Scripting
{
    public class NullScriptHost : IScriptHost
    {
        private LLVector3 m_pos = new LLVector3(128, 128, 30);

        public string Name
        {
            get { return "Object"; }
            set { }
        }

        public string SitName
        {
            get { return ""; }
            set { }
        }

        public string TouchName
        {
            get { return ""; }
            set { }
        }

        public string Description
        {
            get { return ""; }
            set { }
        }

        public LLUUID UUID
        {
            get { return LLUUID.Zero; }
        }

        public LLUUID ObjectOwner
        {
            get { return LLUUID.Zero; }
        }

        public LLUUID ObjectCreator
        {
            get { return LLUUID.Zero; }
        }

        public LLVector3 AbsolutePosition
        {
            get { return m_pos; }
        }

        public void SetText(string text, Vector3 color, double alpha)
        {
            Console.WriteLine("Tried to SetText [{0}] on NullScriptHost", text);
        }
    }
}