Beispiel #1
0
        public static int LoadServers(string serverFile, UInt16 defaultPort)
        {
            try
            {
                if (System.IO.File.Exists(Environment.CurrentDirectory + @"\Settings\" + serverFile))
                {
                    Framework.Ini ini = new Framework.Ini(Environment.CurrentDirectory + @"\Settings\" + serverFile);
                    string[] sList = null;
                    sList = ini.GetEntryNames("SERVERS");
                    if (sList!=null && sList.Length > 0)
                    {

                        foreach (string sectname in sList)
                        {
                            string sName = ini.GetValue("SERVERS", sectname, "");
                            Systems.SRX_Serverinfo SServerInfo = new Systems.SRX_Serverinfo();
                            SServerInfo.id = Convert.ToUInt16(ini.GetValue(sName, "id", 0));
                            SServerInfo.ip = ini.GetValue(sName, "ip", "127.0.0.1");
                            SServerInfo.ipcport = Convert.ToUInt16(ini.GetValue(sName, "ipcport", defaultPort));
                            SServerInfo.code = ini.GetValue(sName, "code", "t");
                            if (SServerInfo.ip == "" || SServerInfo.id == 0 || SServerInfo.ipcport == 0 || LSList.ContainsKey(SServerInfo.id))
                            {
                                Console.WriteLine("IPC: Error on Server \"{0}\" in {1}: Mandatory field missing or id already in use!", sName, serverFile);
                                SServerInfo = null;
                            }
                            else
                            {
                                LSList.Add(SServerInfo.id, SServerInfo);
                            }
                        }
                    }
                    if (LSList.Count() > 0)
                    {
                        Console.WriteLine("");
                        Console.ForegroundColor = ConsoleColor.Red;
                        Console.WriteLine("------------------------------------[SERVER]------------------------------------");
                        string defServer = "Server";
                        if (LSList.Count > 1) defServer = "Servers";
                        Console.ForegroundColor = ConsoleColor.Green;
                        Console.Write("                          Added:");
                        Console.ForegroundColor = ConsoleColor.White;
                        Console.Write(" {0} ", LSList.Count());
                        Console.ForegroundColor = ConsoleColor.Green;
                        Console.Write("{0} to the list", defServer);
                        Console.WriteLine();
                    }
                    else
                    {
                        Console.WriteLine("[IPC] Info: No LoginServers configured, using a default local LoginServer.");
                        Systems.SRX_Serverinfo LServer = new Systems.SRX_Serverinfo();
                        LServer.id = 1;
                        LServer.ip = "127.0.0.1";
                        LServer.ipcport = defaultPort;
                        LServer.code = "t";
                        LSList.Add(LServer.id, LServer);
                    }
                    sList = null;
                    ini = null;
                    return LSList.Count();
                }
                else
                {
                    Console.WriteLine("[IPC] Info: No LoginServers configured, using a default local LoginServer.");
                    Systems.SRX_Serverinfo LServer = new Systems.SRX_Serverinfo();
                    LServer.id = 1;
                    LServer.ip = "127.0.0.1";
                    LServer.ipcport = defaultPort;
                    LServer.code = "t";
                    LSList.Add(LServer.id, LServer);
                    return -1;
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error loading LoginServer settings {0}", ex);
                return -2;
            }
        }
Beispiel #2
0
 public static int LoadServers(string serverFile, UInt16 defaultPort)
 {
     try
     {
         if (System.IO.File.Exists(Environment.CurrentDirectory + @"\Settings\" + serverFile))
         {
             Framework.Ini ini   = new Framework.Ini(Environment.CurrentDirectory + @"\Settings\" + serverFile);
             string[]      sList = null;
             sList = ini.GetEntryNames("SERVERS");
             if (sList != null && sList.Length > 0)
             {
                 foreach (string sectname in sList)
                 {
                     string sName = ini.GetValue("SERVERS", sectname, "");
                     Systems.SRX_Serverinfo SServerInfo = new Systems.SRX_Serverinfo();
                     SServerInfo.id      = Convert.ToUInt16(ini.GetValue(sName, "id", 0));
                     SServerInfo.ip      = ini.GetValue(sName, "ip", "127.0.0.1");
                     SServerInfo.ipcport = Convert.ToUInt16(ini.GetValue(sName, "ipcport", defaultPort));
                     SServerInfo.code    = ini.GetValue(sName, "code", "t");
                     if (SServerInfo.ip == "" || SServerInfo.id == 0 || SServerInfo.ipcport == 0 || LSList.ContainsKey(SServerInfo.id))
                     {
                         Console.WriteLine("IPC: Error on Server \"{0}\" in {1}: Mandatory field missing or id already in use!", sName, serverFile);
                         SServerInfo = null;
                     }
                     else
                     {
                         LSList.Add(SServerInfo.id, SServerInfo);
                     }
                 }
             }
             if (LSList.Count() > 0)
             {
                 Console.WriteLine("");
                 Console.ForegroundColor = ConsoleColor.Red;
                 Console.WriteLine("------------------------------------[SERVER]------------------------------------");
                 string defServer = "Server";
                 if (LSList.Count > 1)
                 {
                     defServer = "Servers";
                 }
                 Console.ForegroundColor = ConsoleColor.Green;
                 Console.Write("                          Added:");
                 Console.ForegroundColor = ConsoleColor.White;
                 Console.Write(" {0} ", LSList.Count());
                 Console.ForegroundColor = ConsoleColor.Green;
                 Console.Write("{0} to the list", defServer);
                 Console.WriteLine();
             }
             else
             {
                 Console.WriteLine("[IPC] Info: No LoginServers configured, using a default local LoginServer.");
                 Systems.SRX_Serverinfo LServer = new Systems.SRX_Serverinfo();
                 LServer.id      = 1;
                 LServer.ip      = "127.0.0.1";
                 LServer.ipcport = defaultPort;
                 LServer.code    = "t";
                 LSList.Add(LServer.id, LServer);
             }
             sList = null;
             ini   = null;
             return(LSList.Count());
         }
         else
         {
             Console.WriteLine("[IPC] Info: No LoginServers configured, using a default local LoginServer.");
             Systems.SRX_Serverinfo LServer = new Systems.SRX_Serverinfo();
             LServer.id      = 1;
             LServer.ip      = "127.0.0.1";
             LServer.ipcport = defaultPort;
             LServer.code    = "t";
             LSList.Add(LServer.id, LServer);
             return(-1);
         }
     }
     catch (Exception ex)
     {
         Console.WriteLine("Error loading LoginServer settings {0}", ex);
         return(-2);
     }
 }