Exemplo n.º 1
0
        public static bool Launch(CfgLauncherCsgo config)
        {
            String environment = null;

            String programPath = config.CsgoExe;

            String cmdLine = "-steam -game csgo";

            //if (config.AvoidVac)
            cmdLine += " -insecure";
            if (config.GfxEnabled)
            {
                cmdLine += " -w " + config.GfxWidth + " -h " + config.GfxHeight + " " + (config.GfxFull ? "-full" : "-window");
            }
            if (0 < config.CustomLaunchOptions.Length)
            {
                cmdLine += " " + config.CustomLaunchOptions;
            }

            if (config.MmcfgEnabled)
            {
                environment = "";

                foreach (DictionaryEntry kv in Environment.GetEnvironmentVariables())
                {
                    environment += kv.Key + "=" + kv.Value + "\0";
                }

                environment += "USRLOCALCSGO=" + config.Mmmcfg + "\0";

                environment += "\0\0";
            }

            return(Loader.Load(GetHookPath, programPath, cmdLine, environment));
        }
Exemplo n.º 2
0
        public static bool RunLauncherDialog(IWin32Window dialogOwner)
        {
            bool bOk;

            using (LaunchCsgoForm frm = new LaunchCsgoForm())
            {
                frm.Config = GlobalConfig.Instance.Settings.LauncherCsgo;

                if (DialogResult.OK == frm.ShowDialog(dialogOwner))
                {
                    CfgLauncherCsgo cfg = frm.Config;

                    if (cfg.RememberChanges)
                    {
                        GlobalConfig.Instance.Settings.LauncherCsgo = cfg;
                        GlobalConfig.Instance.BackUp();
                    }
                    else
                    {
                        GlobalConfig.Instance.Settings.LauncherCsgo.RememberChanges = cfg.RememberChanges;
                    }

                    bOk = Launch(cfg);
                }
                else
                {
                    bOk = true;
                }
            }

            return(bOk);
        }
Exemplo n.º 3
0
        public static bool Launch(CfgLauncherCsgo config)
        {
            String environment = null;

            String programPath = config.CsgoExe;

            String cmdLine = "-steam -game csgo";
            if (config.AvoidVac)
                cmdLine += " -insecure +sv_lan 1";
            if (config.GfxEnabled)
                cmdLine += " -w " + config.GfxWidth + " -h " + config.GfxHeight + " " + (config.GfxFull ? "-full" : "-window");
            if (0 < config.CustomLaunchOptions.Length)
                cmdLine += " " + config.CustomLaunchOptions;

            if (config.MmcfgEnabled)
            {
                environment = "";

                foreach (DictionaryEntry kv in Environment.GetEnvironmentVariables())
                {
                    environment += kv.Key + "=" + kv.Value + "\0";
                }

                environment += "USRLOCALCSGO=" + config.Mmmcfg+"\0";

                environment += "\0\0";
            }

            return AfxCppCli.AfxHook.LauchAndHook(
                programPath,
                cmdLine,
                System.Windows.Forms.Application.StartupPath + "\\AfxHookSource.dll",
                environment
                );
        }
Exemplo n.º 4
0
        public CfgSettings()
        {
            LauncherCsgo = new CfgLauncherCsgo();
            Launcher     = new CfgLauncher();
            CustomLoader = new CfgCustomLoader();
            DemoTools    = new CfgDemoTools();

            ThisDefault();
        }
Exemplo n.º 5
0
        public static bool Launch(CfgLauncherCsgo config)
        {
            String environment = null;

            String programPath = config.CsgoExe;

            String cmdLine = "-steam -game csgo";

            if (config.AvoidVac)
            {
                cmdLine += " -insecure +sv_lan 1";
            }
            if (config.GfxEnabled)
            {
                cmdLine += " -w " + config.GfxWidth + " -h " + config.GfxHeight + " " + (config.GfxFull ? "-full" : "-window");
            }
            if (0 < config.CustomLaunchOptions.Length)
            {
                cmdLine += " " + config.CustomLaunchOptions;
            }

            if (config.MmcfgEnabled)
            {
                environment = "";

                foreach (DictionaryEntry kv in Environment.GetEnvironmentVariables())
                {
                    environment += kv.Key + "=" + kv.Value + "\0";
                }

                environment += "USRLOCALCSGO=" + config.Mmmcfg + "\0";

                environment += "\0\0";
            }

            return(AfxCppCli.AfxHook.LauchAndHook(
                       programPath,
                       cmdLine,
                       System.Windows.Forms.Application.StartupPath + "\\AfxHookSource.dll",
                       environment
                       ));
        }
Exemplo n.º 6
0
        public static bool RunLauncherDialog(IWin32Window dialogOwner)
        {
            bool bOk;

            using (LaunchCsgoForm frm = new LaunchCsgoForm())
            {
                frm.Icon          = Program.Icon;
                frm.ShowInTaskbar = false;

                frm.Config = GlobalConfig.Instance.Settings.LauncherCsgo;

                if (DialogResult.OK == frm.ShowDialog(dialogOwner))
                {
                    CfgLauncherCsgo cfg = frm.Config;

                    if (cfg.RememberChanges)
                    {
                        GlobalConfig.Instance.Settings.LauncherCsgo = cfg;
                        GlobalConfig.Instance.BackUp();
                    }
                    else
                    {
                        GlobalConfig.Instance.Settings.LauncherCsgo.RememberChanges = cfg.RememberChanges;
                    }

                    bOk = Launch(cfg);

                    if (!bOk)
                    {
                        MessageBox.Show("Launching failed.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    }
                }
                else
                {
                    bOk = true;
                }
            }

            return(bOk);
        }
Exemplo n.º 7
0
	public CfgSettings()
	{
        LauncherCsgo = new CfgLauncherCsgo();
		Launcher = new CfgLauncher();
		CustomLoader = new CfgCustomLoader();
		DemoTools = new CfgDemoTools();

        ThisDefault();
	}