diff options
author | lbsa71 | 2007-09-24 07:30:30 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-24 07:30:30 +0000 |
commit | 1302ef44e3c632159378bc4042c753bcf36e9c63 (patch) | |
tree | 6b6295ac233ecb05afe6432a903ec616e4fa079a /OpenSim/Framework/Communications/LoginResponse.cs | |
parent | * Trying to streamline CommunicationsManager (diff) | |
download | opensim-SC_OLD-1302ef44e3c632159378bc4042c753bcf36e9c63.zip opensim-SC_OLD-1302ef44e3c632159378bc4042c753bcf36e9c63.tar.gz opensim-SC_OLD-1302ef44e3c632159378bc4042c753bcf36e9c63.tar.bz2 opensim-SC_OLD-1302ef44e3c632159378bc4042c753bcf36e9c63.tar.xz |
* Started major restructusing of comms to prepare for better grid and region functionality
* Working towards one shared set of services
* Killed off two projects with very little functionality
Diffstat (limited to 'OpenSim/Framework/Communications/LoginResponse.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginResponse.cs | 667 |
1 files changed, 667 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/LoginResponse.cs b/OpenSim/Framework/Communications/LoginResponse.cs new file mode 100644 index 0000000..b5a4184 --- /dev/null +++ b/OpenSim/Framework/Communications/LoginResponse.cs | |||
@@ -0,0 +1,667 @@ | |||
1 | using System; | ||
2 | using System.Collections; | ||
3 | using libsecondlife; | ||
4 | using Nwc.XmlRpc; | ||
5 | using OpenSim.Framework.Console; | ||
6 | |||
7 | namespace OpenSim.Framework.UserManagement | ||
8 | { | ||
9 | |||
10 | /// <summary> | ||
11 | /// A temp class to handle login response. | ||
12 | /// Should make use of UserProfileManager where possible. | ||
13 | /// </summary> | ||
14 | |||
15 | public class LoginResponse | ||
16 | { | ||
17 | private Hashtable loginFlagsHash; | ||
18 | private Hashtable globalTexturesHash; | ||
19 | private Hashtable loginError; | ||
20 | private Hashtable uiConfigHash; | ||
21 | |||
22 | private ArrayList loginFlags; | ||
23 | private ArrayList globalTextures; | ||
24 | private ArrayList eventCategories; | ||
25 | private ArrayList uiConfig; | ||
26 | private ArrayList classifiedCategories; | ||
27 | private ArrayList inventoryRoot; | ||
28 | private ArrayList initialOutfit; | ||
29 | private ArrayList agentInventory; | ||
30 | private ArrayList inventoryLibraryOwner; | ||
31 | private ArrayList inventoryLibrary; | ||
32 | |||
33 | private UserInfo userProfile; | ||
34 | |||
35 | private LLUUID agentID; | ||
36 | private LLUUID sessionID; | ||
37 | private LLUUID secureSessionID; | ||
38 | |||
39 | // Login Flags | ||
40 | private string dst; | ||
41 | private string stipendSinceLogin; | ||
42 | private string gendered; | ||
43 | private string everLoggedIn; | ||
44 | private string login; | ||
45 | private int simPort; | ||
46 | private string simAddress; | ||
47 | private string agentAccess; | ||
48 | private Int32 circuitCode; | ||
49 | private uint regionX; | ||
50 | private uint regionY; | ||
51 | |||
52 | // Login | ||
53 | private string firstname; | ||
54 | private string lastname; | ||
55 | |||
56 | // Global Textures | ||
57 | private string sunTexture; | ||
58 | private string cloudTexture; | ||
59 | private string moonTexture; | ||
60 | |||
61 | // Error Flags | ||
62 | private string errorReason; | ||
63 | private string errorMessage; | ||
64 | |||
65 | // Response | ||
66 | private XmlRpcResponse xmlRpcResponse; | ||
67 | private XmlRpcResponse defaultXmlRpcResponse; | ||
68 | |||
69 | private string welcomeMessage; | ||
70 | private string startLocation; | ||
71 | private string allowFirstLife; | ||
72 | private string home; | ||
73 | private string seedCapability; | ||
74 | private string lookAt; | ||
75 | |||
76 | public LoginResponse() | ||
77 | { | ||
78 | this.loginFlags = new ArrayList(); | ||
79 | this.globalTextures = new ArrayList(); | ||
80 | this.eventCategories = new ArrayList(); | ||
81 | this.uiConfig = new ArrayList(); | ||
82 | this.classifiedCategories = new ArrayList(); | ||
83 | |||
84 | this.loginError = new Hashtable(); | ||
85 | this.uiConfigHash = new Hashtable(); | ||
86 | |||
87 | this.defaultXmlRpcResponse = new XmlRpcResponse(); | ||
88 | this.userProfile = new UserInfo(); | ||
89 | this.inventoryRoot = new ArrayList(); | ||
90 | this.initialOutfit = new ArrayList(); | ||
91 | this.agentInventory = new ArrayList(); | ||
92 | this.inventoryLibrary = new ArrayList(); | ||
93 | this.inventoryLibraryOwner = new ArrayList(); | ||
94 | |||
95 | this.xmlRpcResponse = new XmlRpcResponse(); | ||
96 | this.defaultXmlRpcResponse = new XmlRpcResponse(); | ||
97 | |||
98 | this.SetDefaultValues(); | ||
99 | } // LoginServer | ||
100 | |||
101 | public void SetDefaultValues() | ||
102 | { | ||
103 | this.DST = "N"; | ||
104 | this.StipendSinceLogin = "N"; | ||
105 | this.Gendered = "Y"; | ||
106 | this.EverLoggedIn = "Y"; | ||
107 | this.login = "false"; | ||
108 | this.firstname = "Test"; | ||
109 | this.lastname = "User"; | ||
110 | this.agentAccess = "M"; | ||
111 | this.startLocation = "last"; | ||
112 | this.allowFirstLife = "Y"; | ||
113 | |||
114 | this.SunTexture = "cce0f112-878f-4586-a2e2-a8f104bba271"; | ||
115 | this.CloudTexture = "fc4b9f0b-d008-45c6-96a4-01dd947ac621"; | ||
116 | this.MoonTexture = "fc4b9f0b-d008-45c6-96a4-01dd947ac621"; | ||
117 | |||
118 | this.ErrorMessage = "You have entered an invalid name/password combination. Check Caps/lock."; | ||
119 | this.ErrorReason = "key"; | ||
120 | this.welcomeMessage = "Welcome to OpenSim!"; | ||
121 | this.seedCapability = ""; | ||
122 | this.home = "{'region_handle':[r" + (1000 * 256).ToString() + ",r" + (1000 * 256).ToString() + "], 'position':[r" + this.userProfile.homepos.X.ToString() + ",r" + this.userProfile.homepos.Y.ToString() + ",r" + this.userProfile.homepos.Z.ToString() + "], 'look_at':[r" + this.userProfile.homelookat.X.ToString() + ",r" + this.userProfile.homelookat.Y.ToString() + ",r" + this.userProfile.homelookat.Z.ToString() + "]}"; | ||
123 | this.lookAt = "[r0.99949799999999999756,r0.03166859999999999814,r0]"; | ||
124 | this.RegionX = (uint)255232; | ||
125 | this.RegionY = (uint)254976; | ||
126 | |||
127 | // Classifieds; | ||
128 | this.AddClassifiedCategory((Int32)1, "Shopping"); | ||
129 | this.AddClassifiedCategory((Int32)2, "Land Rental"); | ||
130 | this.AddClassifiedCategory((Int32)3, "Property Rental"); | ||
131 | this.AddClassifiedCategory((Int32)4, "Special Attraction"); | ||
132 | this.AddClassifiedCategory((Int32)5, "New Products"); | ||
133 | this.AddClassifiedCategory((Int32)6, "Employment"); | ||
134 | this.AddClassifiedCategory((Int32)7, "Wanted"); | ||
135 | this.AddClassifiedCategory((Int32)8, "Service"); | ||
136 | this.AddClassifiedCategory((Int32)9, "Personal"); | ||
137 | |||
138 | |||
139 | this.SessionID = LLUUID.Random(); | ||
140 | this.SecureSessionID = LLUUID.Random(); | ||
141 | this.AgentID = LLUUID.Random(); | ||
142 | |||
143 | Hashtable InitialOutfitHash = new Hashtable(); | ||
144 | InitialOutfitHash["folder_name"] = "Nightclub Female"; | ||
145 | InitialOutfitHash["gender"] = "female"; | ||
146 | this.initialOutfit.Add(InitialOutfitHash); | ||
147 | |||
148 | |||
149 | } // SetDefaultValues | ||
150 | |||
151 | #region Login Failure Methods | ||
152 | public XmlRpcResponse GenerateFailureResponse(string reason, string message, string login) | ||
153 | { | ||
154 | // Overwrite any default values; | ||
155 | this.xmlRpcResponse = new XmlRpcResponse(); | ||
156 | |||
157 | // Ensure Login Failed message/reason; | ||
158 | this.ErrorMessage = message; | ||
159 | this.ErrorReason = reason; | ||
160 | |||
161 | this.loginError["reason"] = this.ErrorReason; | ||
162 | this.loginError["message"] = this.ErrorMessage; | ||
163 | this.loginError["login"] = login; | ||
164 | this.xmlRpcResponse.Value = this.loginError; | ||
165 | return (this.xmlRpcResponse); | ||
166 | } // GenerateResponse | ||
167 | |||
168 | public XmlRpcResponse CreateFailedResponse() | ||
169 | { | ||
170 | return (this.CreateLoginFailedResponse()); | ||
171 | } // CreateErrorConnectingToGridResponse() | ||
172 | |||
173 | public XmlRpcResponse CreateLoginFailedResponse() | ||
174 | { | ||
175 | return (this.GenerateFailureResponse("key", "Could not authenticate your avatar. Please check your username and password, and check the grid if problems persist.", "false")); | ||
176 | } // LoginFailedResponse | ||
177 | |||
178 | public XmlRpcResponse CreateAlreadyLoggedInResponse() | ||
179 | { | ||
180 | return (this.GenerateFailureResponse("presence", "You appear to be already logged in, if this is not the case please wait for your session to timeout, if this takes longer than a few minutes please contact the grid owner", "false")); | ||
181 | } // CreateAlreadyLoggedInResponse() | ||
182 | |||
183 | public XmlRpcResponse CreateDeadRegionResponse() | ||
184 | { | ||
185 | return (this.GenerateFailureResponse("key", "The region you are attempting to log into is not responding. Please select another region and try again.", "false")); | ||
186 | } | ||
187 | |||
188 | public XmlRpcResponse CreateGridErrorResponse() | ||
189 | { | ||
190 | return (this.GenerateFailureResponse("key", "Error connecting to grid. Could not percieve credentials from login XML.", "false")); | ||
191 | } | ||
192 | |||
193 | #endregion | ||
194 | |||
195 | public XmlRpcResponse ToXmlRpcResponse() | ||
196 | { | ||
197 | try | ||
198 | { | ||
199 | |||
200 | Hashtable responseData = new Hashtable(); | ||
201 | |||
202 | this.loginFlagsHash = new Hashtable(); | ||
203 | this.loginFlagsHash["daylight_savings"] = this.DST; | ||
204 | this.loginFlagsHash["stipend_since_login"] = this.StipendSinceLogin; | ||
205 | this.loginFlagsHash["gendered"] = this.Gendered; | ||
206 | this.loginFlagsHash["ever_logged_in"] = this.EverLoggedIn; | ||
207 | this.loginFlags.Add(this.loginFlagsHash); | ||
208 | |||
209 | responseData["first_name"] = this.Firstname; | ||
210 | responseData["last_name"] = this.Lastname; | ||
211 | responseData["agent_access"] = this.agentAccess; | ||
212 | |||
213 | this.globalTexturesHash = new Hashtable(); | ||
214 | this.globalTexturesHash["sun_texture_id"] = this.SunTexture; | ||
215 | this.globalTexturesHash["cloud_texture_id"] = this.CloudTexture; | ||
216 | this.globalTexturesHash["moon_texture_id"] = this.MoonTexture; | ||
217 | this.globalTextures.Add(this.globalTexturesHash); | ||
218 | // this.eventCategories.Add(this.eventCategoriesHash); | ||
219 | |||
220 | this.AddToUIConfig("allow_first_life", this.allowFirstLife); | ||
221 | this.uiConfig.Add(this.uiConfigHash); | ||
222 | |||
223 | responseData["sim_port"] =(Int32) this.SimPort; | ||
224 | responseData["sim_ip"] = this.SimAddress; | ||
225 | |||
226 | responseData["agent_id"] = this.AgentID.ToStringHyphenated(); | ||
227 | responseData["session_id"] = this.SessionID.ToStringHyphenated(); | ||
228 | responseData["secure_session_id"] = this.SecureSessionID.ToStringHyphenated(); | ||
229 | responseData["circuit_code"] = this.CircuitCode; | ||
230 | responseData["seconds_since_epoch"] = (Int32)(DateTime.UtcNow - new DateTime(1970, 1, 1)).TotalSeconds; | ||
231 | responseData["login-flags"] = this.loginFlags; | ||
232 | responseData["global-textures"] = this.globalTextures; | ||
233 | responseData["seed_capability"] = this.seedCapability; | ||
234 | |||
235 | responseData["event_categories"] = this.eventCategories; | ||
236 | responseData["event_notifications"] = new ArrayList(); // todo | ||
237 | responseData["classified_categories"] = this.classifiedCategories; | ||
238 | responseData["ui-config"] = this.uiConfig; | ||
239 | |||
240 | responseData["inventory-skeleton"] = this.agentInventory; | ||
241 | responseData["inventory-skel-lib"] = this.inventoryLibrary; | ||
242 | responseData["inventory-root"] = this.inventoryRoot; | ||
243 | responseData["gestures"] = new ArrayList(); // todo | ||
244 | responseData["inventory-lib-owner"] = this.inventoryLibraryOwner; | ||
245 | responseData["initial-outfit"] = this.initialOutfit; | ||
246 | responseData["start_location"] = this.startLocation; | ||
247 | responseData["seed_capability"] = this.seedCapability; | ||
248 | responseData["home"] = this.home; | ||
249 | responseData["look_at"] = this.lookAt; | ||
250 | responseData["message"] = this.welcomeMessage; | ||
251 | responseData["region_x"] = (Int32)this.RegionX * 256; | ||
252 | responseData["region_y"] = (Int32)this.RegionY * 256; | ||
253 | |||
254 | //responseData["inventory-lib-root"] = new ArrayList(); // todo | ||
255 | //responseData["buddy-list"] = new ArrayList(); // todo | ||
256 | |||
257 | responseData["login"] = "true"; | ||
258 | this.xmlRpcResponse.Value = responseData; | ||
259 | |||
260 | return (this.xmlRpcResponse); | ||
261 | } | ||
262 | catch (Exception e) | ||
263 | { | ||
264 | MainLog.Instance.Warn( | ||
265 | "CLIENT", | ||
266 | "LoginResponse: Error creating XML-RPC Response: " + e.Message | ||
267 | ); | ||
268 | return (this.GenerateFailureResponse("Internal Error", "Error generating Login Response", "false")); | ||
269 | |||
270 | } | ||
271 | |||
272 | } // ToXmlRpcResponse | ||
273 | |||
274 | public void SetEventCategories(string category, string value) | ||
275 | { | ||
276 | // this.eventCategoriesHash[category] = value; | ||
277 | //TODO | ||
278 | } // SetEventCategories | ||
279 | |||
280 | public void AddToUIConfig(string itemName, string item) | ||
281 | { | ||
282 | this.uiConfigHash[itemName] = item; | ||
283 | } // SetUIConfig | ||
284 | |||
285 | public void AddClassifiedCategory(Int32 ID, string categoryName) | ||
286 | { | ||
287 | Hashtable hash = new Hashtable(); | ||
288 | hash["category_name"] = categoryName; | ||
289 | hash["category_id"] = ID; | ||
290 | this.classifiedCategories.Add(hash); | ||
291 | // this.classifiedCategoriesHash.Clear(); | ||
292 | } // SetClassifiedCategory | ||
293 | |||
294 | #region Properties | ||
295 | public string Login | ||
296 | { | ||
297 | get | ||
298 | { | ||
299 | return this.login; | ||
300 | } | ||
301 | set | ||
302 | { | ||
303 | this.login = value; | ||
304 | } | ||
305 | } // Login | ||
306 | |||
307 | public string DST | ||
308 | { | ||
309 | get | ||
310 | { | ||
311 | return this.dst; | ||
312 | } | ||
313 | set | ||
314 | { | ||
315 | this.dst = value; | ||
316 | } | ||
317 | } // DST | ||
318 | |||
319 | public string StipendSinceLogin | ||
320 | { | ||
321 | get | ||
322 | { | ||
323 | return this.stipendSinceLogin; | ||
324 | } | ||
325 | set | ||
326 | { | ||
327 | this.stipendSinceLogin = value; | ||
328 | } | ||
329 | } // StipendSinceLogin | ||
330 | |||
331 | public string Gendered | ||
332 | { | ||
333 | get | ||
334 | { | ||
335 | return this.gendered; | ||
336 | } | ||
337 | set | ||
338 | { | ||
339 | this.gendered = value; | ||
340 | } | ||
341 | } // Gendered | ||
342 | |||
343 | public string EverLoggedIn | ||
344 | { | ||
345 | get | ||
346 | { | ||
347 | return this.everLoggedIn; | ||
348 | } | ||
349 | set | ||
350 | { | ||
351 | this.everLoggedIn = value; | ||
352 | } | ||
353 | } // EverLoggedIn | ||
354 | |||
355 | public int SimPort | ||
356 | { | ||
357 | get | ||
358 | { | ||
359 | return this.simPort; | ||
360 | } | ||
361 | set | ||
362 | { | ||
363 | this.simPort = value; | ||
364 | } | ||
365 | } // SimPort | ||
366 | |||
367 | public string SimAddress | ||
368 | { | ||
369 | get | ||
370 | { | ||
371 | return this.simAddress; | ||
372 | } | ||
373 | set | ||
374 | { | ||
375 | this.simAddress = value; | ||
376 | } | ||
377 | } // SimAddress | ||
378 | |||
379 | public LLUUID AgentID | ||
380 | { | ||
381 | get | ||
382 | { | ||
383 | return this.agentID; | ||
384 | } | ||
385 | set | ||
386 | { | ||
387 | this.agentID = value; | ||
388 | } | ||
389 | } // AgentID | ||
390 | |||
391 | public LLUUID SessionID | ||
392 | { | ||
393 | get | ||
394 | { | ||
395 | return this.sessionID; | ||
396 | } | ||
397 | set | ||
398 | { | ||
399 | this.sessionID = value; | ||
400 | } | ||
401 | } // SessionID | ||
402 | |||
403 | public LLUUID SecureSessionID | ||
404 | { | ||
405 | get | ||
406 | { | ||
407 | return this.secureSessionID; | ||
408 | } | ||
409 | set | ||
410 | { | ||
411 | this.secureSessionID = value; | ||
412 | } | ||
413 | } // SecureSessionID | ||
414 | |||
415 | public Int32 CircuitCode | ||
416 | { | ||
417 | get | ||
418 | { | ||
419 | return this.circuitCode; | ||
420 | } | ||
421 | set | ||
422 | { | ||
423 | this.circuitCode = value; | ||
424 | } | ||
425 | } // CircuitCode | ||
426 | |||
427 | public uint RegionX | ||
428 | { | ||
429 | get | ||
430 | { | ||
431 | return this.regionX; | ||
432 | } | ||
433 | set | ||
434 | { | ||
435 | this.regionX = value; | ||
436 | } | ||
437 | } // RegionX | ||
438 | |||
439 | public uint RegionY | ||
440 | { | ||
441 | get | ||
442 | { | ||
443 | return this.regionY; | ||
444 | } | ||
445 | set | ||
446 | { | ||
447 | this.regionY = value; | ||
448 | } | ||
449 | } // RegionY | ||
450 | |||
451 | public string SunTexture | ||
452 | { | ||
453 | get | ||
454 | { | ||
455 | return this.sunTexture; | ||
456 | } | ||
457 | set | ||
458 | { | ||
459 | this.sunTexture = value; | ||
460 | } | ||
461 | } // SunTexture | ||
462 | |||
463 | public string CloudTexture | ||
464 | { | ||
465 | get | ||
466 | { | ||
467 | return this.cloudTexture; | ||
468 | } | ||
469 | set | ||
470 | { | ||
471 | this.cloudTexture = value; | ||
472 | } | ||
473 | } // CloudTexture | ||
474 | |||
475 | public string MoonTexture | ||
476 | { | ||
477 | get | ||
478 | { | ||
479 | return this.moonTexture; | ||
480 | } | ||
481 | set | ||
482 | { | ||
483 | this.moonTexture = value; | ||
484 | } | ||
485 | } // MoonTexture | ||
486 | |||
487 | public string Firstname | ||
488 | { | ||
489 | get | ||
490 | { | ||
491 | return this.firstname; | ||
492 | } | ||
493 | set | ||
494 | { | ||
495 | this.firstname = value; | ||
496 | } | ||
497 | } // Firstname | ||
498 | |||
499 | public string Lastname | ||
500 | { | ||
501 | get | ||
502 | { | ||
503 | return this.lastname; | ||
504 | } | ||
505 | set | ||
506 | { | ||
507 | this.lastname = value; | ||
508 | } | ||
509 | } // Lastname | ||
510 | |||
511 | public string AgentAccess | ||
512 | { | ||
513 | get | ||
514 | { | ||
515 | return this.agentAccess; | ||
516 | } | ||
517 | set | ||
518 | { | ||
519 | this.agentAccess = value; | ||
520 | } | ||
521 | } | ||
522 | |||
523 | public string StartLocation | ||
524 | { | ||
525 | get | ||
526 | { | ||
527 | return this.startLocation; | ||
528 | } | ||
529 | set | ||
530 | { | ||
531 | this.startLocation = value; | ||
532 | } | ||
533 | } // StartLocation | ||
534 | |||
535 | public string LookAt | ||
536 | { | ||
537 | get | ||
538 | { | ||
539 | return this.lookAt; | ||
540 | } | ||
541 | set | ||
542 | { | ||
543 | this.lookAt = value; | ||
544 | } | ||
545 | } | ||
546 | |||
547 | public string SeedCapability | ||
548 | { | ||
549 | get | ||
550 | { | ||
551 | return this.seedCapability; | ||
552 | } | ||
553 | set | ||
554 | { | ||
555 | this.seedCapability = value; | ||
556 | } | ||
557 | } // SeedCapability | ||
558 | |||
559 | public string ErrorReason | ||
560 | { | ||
561 | get | ||
562 | { | ||
563 | return this.errorReason; | ||
564 | } | ||
565 | set | ||
566 | { | ||
567 | this.errorReason = value; | ||
568 | } | ||
569 | } // ErrorReason | ||
570 | |||
571 | public string ErrorMessage | ||
572 | { | ||
573 | get | ||
574 | { | ||
575 | return this.errorMessage; | ||
576 | } | ||
577 | set | ||
578 | { | ||
579 | this.errorMessage = value; | ||
580 | } | ||
581 | } // ErrorMessage | ||
582 | |||
583 | public ArrayList InventoryRoot | ||
584 | { | ||
585 | get | ||
586 | { | ||
587 | return this.inventoryRoot; | ||
588 | } | ||
589 | set | ||
590 | { | ||
591 | this.inventoryRoot = value; | ||
592 | } | ||
593 | } | ||
594 | |||
595 | public ArrayList InventorySkeleton | ||
596 | { | ||
597 | get | ||
598 | { | ||
599 | return this.agentInventory; | ||
600 | } | ||
601 | set | ||
602 | { | ||
603 | this.agentInventory = value; | ||
604 | } | ||
605 | } | ||
606 | |||
607 | public ArrayList InventoryLibrary | ||
608 | { | ||
609 | get | ||
610 | { | ||
611 | return this.inventoryLibrary; | ||
612 | } | ||
613 | set | ||
614 | { | ||
615 | this.inventoryLibrary = value; | ||
616 | } | ||
617 | } | ||
618 | |||
619 | public ArrayList InventoryLibraryOwner | ||
620 | { | ||
621 | get | ||
622 | { | ||
623 | return this.inventoryLibraryOwner; | ||
624 | } | ||
625 | set | ||
626 | { | ||
627 | this.inventoryLibraryOwner = value; | ||
628 | } | ||
629 | } | ||
630 | |||
631 | public string Home | ||
632 | { | ||
633 | get | ||
634 | { | ||
635 | return this.home; | ||
636 | } | ||
637 | set | ||
638 | { | ||
639 | this.home = value; | ||
640 | } | ||
641 | } | ||
642 | |||
643 | public string Message | ||
644 | { | ||
645 | get | ||
646 | { | ||
647 | return this.welcomeMessage; | ||
648 | } | ||
649 | set | ||
650 | { | ||
651 | this.welcomeMessage = value; | ||
652 | } | ||
653 | } | ||
654 | #endregion | ||
655 | |||
656 | |||
657 | public class UserInfo | ||
658 | { | ||
659 | public string firstname; | ||
660 | public string lastname; | ||
661 | public ulong homeregionhandle; | ||
662 | public LLVector3 homepos; | ||
663 | public LLVector3 homelookat; | ||
664 | } | ||
665 | } | ||
666 | } | ||
667 | |||