diff options
Diffstat (limited to 'OpenSim/Grid/ScriptServer/ScriptServer/Region/RegionBase.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/ScriptServer/Region/RegionBase.cs | 214 |
1 files changed, 172 insertions, 42 deletions
diff --git a/OpenSim/Grid/ScriptServer/ScriptServer/Region/RegionBase.cs b/OpenSim/Grid/ScriptServer/ScriptServer/Region/RegionBase.cs index b18bda2..cb6734f 100644 --- a/OpenSim/Grid/ScriptServer/ScriptServer/Region/RegionBase.cs +++ b/OpenSim/Grid/ScriptServer/ScriptServer/Region/RegionBase.cs | |||
@@ -26,10 +26,6 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | 28 | ||
29 | using System; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | |||
33 | namespace OpenSim.Grid.ScriptServer | 29 | namespace OpenSim.Grid.ScriptServer |
34 | { | 30 | { |
35 | public abstract class RegionBase | 31 | public abstract class RegionBase |
@@ -73,42 +69,176 @@ namespace OpenSim.Grid.ScriptServer | |||
73 | public event DefaultDelegate onobject_rez; | 69 | public event DefaultDelegate onobject_rez; |
74 | public event DefaultDelegate onremote_data; | 70 | public event DefaultDelegate onremote_data; |
75 | public event DefaultDelegate onhttp_response; | 71 | public event DefaultDelegate onhttp_response; |
76 | 72 | ||
77 | 73 | ||
78 | public void ScriptRez() { onScriptRez(); } | 74 | public void ScriptRez() |
79 | public void state_entry() { onstate_entry(); } | 75 | { |
80 | public void state_exit() { onstate_exit(); } | 76 | onScriptRez(); |
81 | public void touch_start() { ontouch_start(); } | 77 | } |
82 | public void touch() { ontouch(); } | 78 | |
83 | public void touch_end() { ontouch_end(); } | 79 | public void state_entry() |
84 | public void collision_start() { oncollision_start(); } | 80 | { |
85 | public void collision() { oncollision(); } | 81 | onstate_entry(); |
86 | public void collision_end() { oncollision_end(); } | 82 | } |
87 | public void land_collision_start() { onland_collision_start(); } | 83 | |
88 | public void land_collision() { onland_collision(); } | 84 | public void state_exit() |
89 | public void land_collision_end() { onland_collision_end(); } | 85 | { |
90 | public void timer() { ontimer(); } | 86 | onstate_exit(); |
91 | public void listen() { onlisten(); } | 87 | } |
92 | public void on_rez() { onon_rez(); } | 88 | |
93 | public void sensor() { onsensor(); } | 89 | public void touch_start() |
94 | public void no_sensor() { onno_sensor(); } | 90 | { |
95 | public void control() { oncontrol(); } | 91 | ontouch_start(); |
96 | public void money() { onmoney(); } | 92 | } |
97 | public void email() { onemail(); } | 93 | |
98 | public void at_target() { onat_target(); } | 94 | public void touch() |
99 | public void not_at_target() { onnot_at_target(); } | 95 | { |
100 | public void at_rot_target() { onat_rot_target(); } | 96 | ontouch(); |
101 | public void not_at_rot_target() { onnot_at_rot_target(); } | 97 | } |
102 | public void run_time_permissions() { onrun_time_permissions(); } | 98 | |
103 | public void changed() { onchanged(); } | 99 | public void touch_end() |
104 | public void attach() { onattach(); } | 100 | { |
105 | public void dataserver() { ondataserver(); } | 101 | ontouch_end(); |
106 | public void link_message() { onlink_message(); } | 102 | } |
107 | public void moving_start() { onmoving_start(); } | 103 | |
108 | public void moving_end() { onmoving_end(); } | 104 | public void collision_start() |
109 | public void object_rez() { onobject_rez(); } | 105 | { |
110 | public void remote_data() { onremote_data(); } | 106 | oncollision_start(); |
111 | public void http_response() { onhttp_response(); } | 107 | } |
112 | 108 | ||
109 | public void collision() | ||
110 | { | ||
111 | oncollision(); | ||
112 | } | ||
113 | |||
114 | public void collision_end() | ||
115 | { | ||
116 | oncollision_end(); | ||
117 | } | ||
118 | |||
119 | public void land_collision_start() | ||
120 | { | ||
121 | onland_collision_start(); | ||
122 | } | ||
123 | |||
124 | public void land_collision() | ||
125 | { | ||
126 | onland_collision(); | ||
127 | } | ||
128 | |||
129 | public void land_collision_end() | ||
130 | { | ||
131 | onland_collision_end(); | ||
132 | } | ||
133 | |||
134 | public void timer() | ||
135 | { | ||
136 | ontimer(); | ||
137 | } | ||
138 | |||
139 | public void listen() | ||
140 | { | ||
141 | onlisten(); | ||
142 | } | ||
143 | |||
144 | public void on_rez() | ||
145 | { | ||
146 | onon_rez(); | ||
147 | } | ||
148 | |||
149 | public void sensor() | ||
150 | { | ||
151 | onsensor(); | ||
152 | } | ||
153 | |||
154 | public void no_sensor() | ||
155 | { | ||
156 | onno_sensor(); | ||
157 | } | ||
158 | |||
159 | public void control() | ||
160 | { | ||
161 | oncontrol(); | ||
162 | } | ||
163 | |||
164 | public void money() | ||
165 | { | ||
166 | onmoney(); | ||
167 | } | ||
168 | |||
169 | public void email() | ||
170 | { | ||
171 | onemail(); | ||
172 | } | ||
173 | |||
174 | public void at_target() | ||
175 | { | ||
176 | onat_target(); | ||
177 | } | ||
178 | |||
179 | public void not_at_target() | ||
180 | { | ||
181 | onnot_at_target(); | ||
182 | } | ||
183 | |||
184 | public void at_rot_target() | ||
185 | { | ||
186 | onat_rot_target(); | ||
187 | } | ||
188 | |||
189 | public void not_at_rot_target() | ||
190 | { | ||
191 | onnot_at_rot_target(); | ||
192 | } | ||
193 | |||
194 | public void run_time_permissions() | ||
195 | { | ||
196 | onrun_time_permissions(); | ||
197 | } | ||
198 | |||
199 | public void changed() | ||
200 | { | ||
201 | onchanged(); | ||
202 | } | ||
203 | |||
204 | public void attach() | ||
205 | { | ||
206 | onattach(); | ||
207 | } | ||
208 | |||
209 | public void dataserver() | ||
210 | { | ||
211 | ondataserver(); | ||
212 | } | ||
213 | |||
214 | public void link_message() | ||
215 | { | ||
216 | onlink_message(); | ||
217 | } | ||
218 | |||
219 | public void moving_start() | ||
220 | { | ||
221 | onmoving_start(); | ||
222 | } | ||
223 | |||
224 | public void moving_end() | ||
225 | { | ||
226 | onmoving_end(); | ||
227 | } | ||
228 | |||
229 | public void object_rez() | ||
230 | { | ||
231 | onobject_rez(); | ||
232 | } | ||
233 | |||
234 | public void remote_data() | ||
235 | { | ||
236 | onremote_data(); | ||
237 | } | ||
238 | |||
239 | public void http_response() | ||
240 | { | ||
241 | onhttp_response(); | ||
242 | } | ||
113 | } | 243 | } |
114 | } | 244 | } \ No newline at end of file |