OSDN Git Service

Update copyright year
[radegast/radegast.git] / Radegast / Core / Commands / ParcelInfoCommand.cs
1 // 
2 // Radegast Metaverse Client
3 // Copyright (c) 2009-2013, Radegast Development Team
4 // All rights reserved.
5 // 
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // 
9 //     * Redistributions of source code must retain the above copyright notice,
10 //       this list of conditions and the following disclaimer.
11 //     * Redistributions in binary form must reproduce the above copyright
12 //       notice, this list of conditions and the following disclaimer in the
13 //       documentation and/or other materials provided with the distribution.
14 //     * Neither the name of the application "Radegast", nor the names of its
15 //       contributors may be used to endorse or promote products derived from
16 //       this software without specific prior written permission.
17 // 
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 //
29 // $Id: CommandsManager.cs 226 2009-09-12 18:10:30Z logicmoo $
30 //
31 using System;
32 using System.Collections.Generic;
33 using System.Threading;
34 using System.Text;
35 using OpenMetaverse;
36
37 namespace Radegast.Commands
38 {
39     public class ParcelInfoCommand : RadegastCommand
40     {
41         private ManualResetEvent ParcelsDownloaded = new ManualResetEvent(false);
42         private RadegastInstance instance;
43
44         public ParcelInfoCommand(RadegastInstance instance)
45             : base(instance)
46         {
47             Name = "parcelinfo";
48             Description = "Prints out info about all the parcels in this simulator";
49             Usage = Name;
50
51             this.instance = instance;
52             this.instance.Netcom.ClientDisconnected += new EventHandler<DisconnectedEventArgs>(Netcom_ClientDisconnected);
53         }
54
55         public override void Dispose()
56         {
57             base.Dispose();
58             instance.Netcom.ClientDisconnected -= new EventHandler<DisconnectedEventArgs>(Netcom_ClientDisconnected);
59         }
60
61         public override void Execute(string name, string[] cmdArgs, ConsoleWriteLine WriteLine)
62         {
63             StringBuilder sb = new StringBuilder();
64             string result;
65
66             EventHandler<SimParcelsDownloadedEventArgs> del = delegate(object sender, SimParcelsDownloadedEventArgs e)
67             {
68                 ParcelsDownloaded.Set();
69             };
70
71             instance.MainForm.PreventParcelUpdate = true;
72
73             ParcelsDownloaded.Reset();
74             Client.Parcels.SimParcelsDownloaded += del;
75             Client.Parcels.RequestAllSimParcels(Client.Network.CurrentSim, true, 750);
76
77             if (Client.Network.CurrentSim.IsParcelMapFull())
78                 ParcelsDownloaded.Set();
79
80             if (ParcelsDownloaded.WaitOne(30000, false) && Client.Network.Connected)
81             {
82                 sb.AppendFormat("Downloaded {0} Parcels in {1} " + System.Environment.NewLine,
83                     Client.Network.CurrentSim.Parcels.Count, Client.Network.CurrentSim.Name);
84
85                 Client.Network.CurrentSim.Parcels.ForEach(delegate(Parcel parcel)
86                 {
87                     sb.AppendFormat("Parcel[{0}]: Name: \"{1}\", Description: \"{2}\" ACLBlacklist Count: {3}, ACLWhiteList Count: {5} Traffic: {4}" + System.Environment.NewLine,
88                         parcel.LocalID, parcel.Name, parcel.Desc, parcel.AccessBlackList.Count, parcel.Dwell, parcel.AccessWhiteList.Count);
89                 });
90
91                 result = sb.ToString();
92             }
93             else
94                 result = "Failed to retrieve information on all the simulator parcels";
95
96             Client.Parcels.SimParcelsDownloaded -= del;
97
98             Thread.Sleep(2000);
99             instance.MainForm.PreventParcelUpdate = false;
100
101             WriteLine("Parcel Infro results:\n{0}", result);
102         }
103
104         void Netcom_ClientDisconnected(object sender, DisconnectedEventArgs e)
105         {
106             ParcelsDownloaded.Set();
107         }
108     }
109 }