当前位置: 首页>>代码示例>>C#>>正文


C# Server.SyncLobbyGlobalSettings方法代码示例

本文整理汇总了C#中OpenRA.Server.Server.SyncLobbyGlobalSettings方法的典型用法代码示例。如果您正苦于以下问题:C# Server.SyncLobbyGlobalSettings方法的具体用法?C# Server.SyncLobbyGlobalSettings怎么用?C# Server.SyncLobbyGlobalSettings使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OpenRA.Server.Server的用法示例。


在下文中一共展示了Server.SyncLobbyGlobalSettings方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InterpretCommand

		public bool InterpretCommand(S server, Connection conn, Session.Client client, string cmd)
		{
			if (server == null || conn == null || client == null || !ValidateCommand(server, conn, client, cmd))
				return false;

			var dict = new Dictionary<string, Func<string, bool>>
			{
				{ "state",
					s =>
					{
						var state = Session.ClientState.Invalid;
						if (!Enum<Session.ClientState>.TryParse(s, false, out state))
						{
							server.SendOrderTo(conn, "Message", "Malformed state command");
							return true;
						}

						client.State = state;

						Log.Write("server", "Player @{0} is {1}",
							conn.Socket.RemoteEndPoint, client.State);

						server.SyncLobbyClients();

						CheckAutoStart(server);

						return true;
					}
				},
				{ "startgame",
					s =>
					{
						if (!client.IsAdmin)
						{
							server.SendOrderTo(conn, "Message", "Only the host can start the game.");
							return true;
						}

						if (server.LobbyInfo.Slots.Any(sl => sl.Value.Required &&
							server.LobbyInfo.ClientInSlot(sl.Key) == null))
						{
							server.SendOrderTo(conn, "Message", "Unable to start the game until required slots are full.");
							return true;
						}

						server.StartGame();
						return true;
					}
				},
				{ "slot",
					s =>
					{
						if (!server.LobbyInfo.Slots.ContainsKey(s))
						{
							Log.Write("server", "Invalid slot: {0}", s);
							return false;
						}

						var slot = server.LobbyInfo.Slots[s];

						if (slot.Closed || server.LobbyInfo.ClientInSlot(s) != null)
							return false;

						client.Slot = s;
						S.SyncClientToPlayerReference(client, server.MapPlayers.Players[s]);

						var validatedColor = ColorValidator.ValidatePlayerColorAndGetAlternative(server, client.Color, client.Index, conn);
						client.PreferredColor = client.Color = validatedColor;

						server.SyncLobbyClients();
						CheckAutoStart(server);

						return true;
					}
				},
				{ "allow_spectators",
					s =>
					{
						if (bool.TryParse(s, out server.LobbyInfo.GlobalSettings.AllowSpectators))
						{
							server.SyncLobbyGlobalSettings();
							return true;
						}
						else
						{
							server.SendOrderTo(conn, "Message", "Malformed allow_spectate command");
							return true;
						}
					}
				},
				{ "spectate",
					s =>
					{
						if (server.LobbyInfo.GlobalSettings.AllowSpectators || client.IsAdmin)
						{
							client.Slot = null;
							client.SpawnPoint = 0;
							client.Color = HSLColor.FromRGB(255, 255, 255);
							server.SyncLobbyClients();
							return true;
//.........这里部分代码省略.........
开发者ID:Roger-luo,项目名称:OpenRA,代码行数:101,代码来源:LobbyCommands.cs

示例2: InterpretCommand

        public bool InterpretCommand(S server, Connection conn, Session.Client client, string cmd)
        {
            if (server == null || conn == null || client == null || !ValidateCommand(server, conn, client, cmd))
                return false;

            var dict = new Dictionary<string, Func<string, bool>>
            {
                { "state",
                    s =>
                    {
                        var state = Session.ClientState.Invalid;
                        if (!Enum<Session.ClientState>.TryParse(s, false, out state))
                        {
                            server.SendOrderTo(conn, "Message", "Malformed state command");
                            return true;
                        }

                        client.State = state;

                        Log.Write("server", "Player @{0} is {1}",
                            conn.Socket.RemoteEndPoint, client.State);

                        server.SyncLobbyClients();

                        CheckAutoStart(server);

                        return true;
                    }
                },
                { "startgame",
                    s =>
                    {
                        if (!client.IsAdmin)
                        {
                            server.SendOrderTo(conn, "Message", "Only the host can start the game.");
                            return true;
                        }

                        if (server.LobbyInfo.Slots.Any(sl => sl.Value.Required &&
                            server.LobbyInfo.ClientInSlot(sl.Key) == null))
                        {
                            server.SendOrderTo(conn, "Message", "Unable to start the game until required slots are full.");
                            return true;
                        }

                        if (server.Settings.DisableSinglePlayer &&
                            server.LobbyInfo.Clients.Where(c => c.Bot == null && c.Slot != null).Count() == 1)
                        {
                            server.SendOrderTo(conn, "Message", "Unable to start the game until another player joins.");
                            return true;
                        }

                        server.StartGame();
                        return true;
                    }
                },
                { "slot",
                    s =>
                    {
                        if (!server.LobbyInfo.Slots.ContainsKey(s))
                        {
                            Log.Write("server", "Invalid slot: {0}", s);
                            return false;
                        }

                        var slot = server.LobbyInfo.Slots[s];

                        if (slot.Closed || server.LobbyInfo.ClientInSlot(s) != null)
                            return false;

                        // If the previous slot had a locked spawn then we must not carry that to the new slot
                        var oldSlot = client.Slot != null ? server.LobbyInfo.Slots[client.Slot] : null;
                        if (oldSlot != null && oldSlot.LockSpawn)
                            client.SpawnPoint = 0;

                        client.Slot = s;
                        S.SyncClientToPlayerReference(client, server.Map.Players.Players[s]);

                        if (!slot.LockColor)
                            client.PreferredColor = client.Color = SanitizePlayerColor(server, client.Color, client.Index, conn);

                        server.SyncLobbyClients();
                        CheckAutoStart(server);

                        return true;
                    }
                },
                { "allow_spectators",
                    s =>
                    {
                        if (bool.TryParse(s, out server.LobbyInfo.GlobalSettings.AllowSpectators))
                        {
                            server.SyncLobbyGlobalSettings();
                            return true;
                        }
                        else
                        {
                            server.SendOrderTo(conn, "Message", "Malformed allow_spectate command");
                            return true;
                        }
//.........这里部分代码省略.........
开发者ID:CH4Code,项目名称:OpenRA,代码行数:101,代码来源:LobbyCommands.cs

示例3: InterpretCommand

		public bool InterpretCommand(S server, Connection conn, Session.Client client, string cmd)
		{
			if (!ValidateCommand(server, conn, client, cmd))
				return false;

			var dict = new Dictionary<string, Func<string, bool>>
			{
				{ "state",
					s =>
					{
						var state = Session.ClientState.Invalid;
						if (!Enum<Session.ClientState>.TryParse(s, false, out state))
						{
							server.SendOrderTo(conn, "Message", "Malformed state command");
							return true;
						}

						client.State = state;

						Log.Write("server", "Player @{0} is {1}",
							conn.socket.RemoteEndPoint, client.State);

						server.SyncLobbyClients();

						CheckAutoStart(server);

						return true;
					}},
				{ "startgame",
					s =>
					{
						if (!client.IsAdmin)
						{
							server.SendOrderTo(conn, "Message", "Only the host can start the game");
							return true;
						}

						if (server.LobbyInfo.Slots.Any(sl => sl.Value.Required &&
							server.LobbyInfo.ClientInSlot(sl.Key) == null))
						{
							server.SendOrderTo(conn, "Message", "Unable to start the game until required slots are full.");
							return true;
						}
						server.StartGame();
						return true;
					}},
				{ "slot",
					s =>
					{
						if (!server.LobbyInfo.Slots.ContainsKey(s))
						{
							Log.Write("server", "Invalid slot: {0}", s );
							return false;
						}
						var slot = server.LobbyInfo.Slots[s];

						if (slot.Closed || server.LobbyInfo.ClientInSlot(s) != null)
							return false;

						client.Slot = s;
						S.SyncClientToPlayerReference(client, server.Map.Players[s]);
						server.SyncLobbyClients();
						CheckAutoStart(server);

						return true;
					}},
				{ "allow_spectators",
					s =>
					{
						if (bool.TryParse(s, out server.LobbyInfo.GlobalSettings.AllowSpectators))
						{
							server.SyncLobbyGlobalSettings();
							return true;
						}
						else
						{
							server.SendOrderTo(conn, "Message", "Malformed allow_spectate command");
							return true;
						}
					}},
				{ "spectate",
					s =>
					{
						if (server.LobbyInfo.GlobalSettings.AllowSpectators || client.IsAdmin)
						{
							client.Slot = null;
							client.SpawnPoint = 0;
							client.Color = HSLColor.FromRGB(255, 255, 255);
							server.SyncLobbyClients();
							return true;
						}
						else
							return false;
					}},
				{ "slot_close",
					s =>
					{
						if (!ValidateSlotCommand(server, conn, client, s, true))
							return false;

//.........这里部分代码省略.........
开发者ID:Berzeger,项目名称:OpenRA,代码行数:101,代码来源:LobbyCommands.cs


注:本文中的OpenRA.Server.Server.SyncLobbyGlobalSettings方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。