mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 13:15:44 +08:00
64 lines
1.4 KiB
C#
64 lines
1.4 KiB
C#
// project created on 5/14/2007 at 2:04 PM
|
|
using System;
|
|
using System.Threading;
|
|
using Gtk;
|
|
|
|
namespace OpenGridServices.Manager
|
|
{
|
|
class MainClass
|
|
{
|
|
|
|
public static bool QuitReq=false;
|
|
public static BlockingQueue<string> PendingOperations = new BlockingQueue<string>();
|
|
|
|
private static Thread OperationsRunner;
|
|
|
|
private static GridServerConnectionManager gridserverConn;
|
|
|
|
private static MainWindow win;
|
|
|
|
public static void DoMainLoop()
|
|
{
|
|
while(!QuitReq)
|
|
{
|
|
Application.RunIteration();
|
|
}
|
|
}
|
|
|
|
public static void RunOperations()
|
|
{
|
|
string operation;
|
|
string cmd;
|
|
char[] sep = new char[1];
|
|
sep[0]=' ';
|
|
while(!QuitReq)
|
|
{
|
|
operation=PendingOperations.Dequeue();
|
|
Console.WriteLine(operation);
|
|
cmd = operation.Split(sep)[0];
|
|
switch(cmd) {
|
|
case "connect_to_gridserver":
|
|
win.SetStatus("Connecting to grid server...");
|
|
if(gridserverConn.Connect(operation.Split(sep)[1],operation.Split(sep)[2],operation.Split(sep)[3])) {
|
|
win.SetStatus("Connected OK");
|
|
} else {
|
|
win.SetStatus("Could not connect");
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void Main (string[] args)
|
|
{
|
|
gridserverConn = new GridServerConnectionManager();
|
|
Application.Init ();
|
|
win = new MainWindow ();
|
|
win.Show ();
|
|
OperationsRunner = new Thread(new ThreadStart(RunOperations));
|
|
OperationsRunner.IsBackground=true;
|
|
OperationsRunner.Start();
|
|
DoMainLoop();
|
|
}
|
|
}
|
|
} |