MCGalaxy/Commands/Fun/CmdTeam.cs

196 lines
9.1 KiB
C#

/*
Copyright 2015 MCGalaxy
Dual-licensed under the Educational Community License, Version 2.0 and
the GNU General Public License, Version 3 (the "Licenses"); you may
not use this file except in compliance with the Licenses. You may
obtain a copy of the Licenses at
http://www.opensource.org/licenses/ecl2.php
http://www.gnu.org/licenses/gpl-3.0.html
Unless required by applicable law or agreed to in writing,
software distributed under the Licenses are distributed on an "AS IS"
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the Licenses for the specific language governing
permissions and limitations under the Licenses.
*/
using System;
using MCGalaxy.Games;
namespace MCGalaxy.Commands {
public sealed class CmdTeam : Command {
public override string name { get { return "team"; } }
public override string shortcut { get { return ""; } }
public override string type { get { return CommandTypes.Games; } }
public override bool museumUsable { get { return true; } }
public override LevelPermission defaultRank { get { return LevelPermission.Guest; } }
public override void Use(Player p, string message) {
if (p == null) { MessageInGameOnly(p); return; }
if (message == "") { Help(p); return; }
string[] args = message.Split(' ');
switch (args[0].ToLower()) {
case "owner":
HandleOwner(p, args); break;
case "kick":
HandleKick(p, args); break;
case "color":
HandleColor(p, args); break;
case "create":
HandleCreate(p, args); break;
case "join":
HandleJoin(p, args); break;
case "invite":
HandleInvite(p, args); break;
case "leave":
HandleLeave(p, args); break;
case "members":
HandleMembers(p, args); break;
default:
Team team = p.GameTeam;
if (team == null) {
Player.SendMessage(p, "You need to be in a team first to send a team message."); return;
}
team.Chat(p, message); break;
}
}
void HandleOwner(Player p, string[] args) {
Team team = p.GameTeam;
if (team == null) { Player.SendMessage(p, "You need to be in a team first."); return; }
if (args.Length == 1) {
Player.SendMessage(p, "The current owner of the team is: " + team.Owner); return;
}
Player who = PlayerInfo.FindOrShowMatches(p, args[1]);
if (who == null) return;
team.Owner = who.name;
team.Action(who, "set the team owner to " + who.FullName);
Team.SaveList();
}
void HandleKick(Player p, string[] args) {
Team team = p.GameTeam;
if (team == null) { Player.SendMessage(p, "You need to be in a team first."); return; }
if (args.Length == 1) {
Player.SendMessage(p, "You need to provide the name of the player to kick."); return;
}
if (p.name != team.Owner) {
Player.SendMessage(p, "Only the team owner can kick players from the team."); return;
}
if (team.Remove(args[1])) {
team.Action(p, "kicked " + args[1] + " from the team.");
Player who = PlayerInfo.FindExact(args[1]);
if (who != null) {
who.GameTeam = null;
who.SetPrefix();
}
Team.SaveList();
} else {
Player.SendMessage(p, "The given player was not found. You need to use their full account name.");
}
}
void HandleColor(Player p, string[] args) {
Team team = p.GameTeam;
if (team == null) { Player.SendMessage(p, "You need to be in a team first."); return; }
if (args.Length == 1) {
Player.SendMessage(p, "You need to provide the new color."); return;
}
string color = Colors.Parse(args[1]);
if (color == "") {
Player.SendMessage(p, "\"" + color + "\" is not a valid color."); return;
}
team.Color = color;
team.Action(p, "changed the team color to: " + args[1]);
team.UpdatePrefix();
Team.SaveList();
}
void HandleCreate(Player p, string[] args) {
Team team = p.GameTeam;
if (team != null) { Player.SendMessage(p, "You need to leave your current team before you can create one."); return; }
if (args.Length == 1) {
Player.SendMessage(p, "You need to provide the name of the new team."); return;
}
team = Team.FindTeam(args[1]);
if (team != null) { Player.SendMessage(p, "There is already an existing team with that name."); return; }
team = new Team(args[1], p.name);
p.GameTeam = team;
p.SetPrefix();
Team.TeamsList[team.Name] = team;
Team.SaveList();
Player.GlobalMessage(p.FullName + " %Sjust created the &a" + args[1] + " %Steam.");
}
void HandleJoin(Player p, string[] args) {
Team team = p.GameTeam;
if (p.GameTeamInvite == null) { Player.SendMessage(p, "You do not currently have any invitation to join a team."); return; }
if (team != null) { Player.SendMessage(p, "You need to leave your current team before you can join another one."); return; }
team = Team.FindTeam(p.GameTeamInvite);
if (team == null) { Player.SendMessage(p, "The team you were invited to no longer exists."); return; }
team.Members.Add(p.name);
team.Action(p, "joined the team.");
p.GameTeam = team;
p.SetPrefix();
Team.SaveList();
}
void HandleInvite(Player p, string[] args) {
Team team = p.GameTeam;
if (team == null) { Player.SendMessage(p, "You need to be in a team first to invite players."); return; }
if (args.Length == 1) {
Player.SendMessage(p, "You need to provide the name of the person to invite."); return;
}
Player who = PlayerInfo.FindOrShowMatches(p, args[1]);
if (who == null) return;
Player.SendMessage(p, "Invited " + who.FullName + " %Sto join your team.");
Player.SendMessage(who, p.color + p.DisplayName + " %Sinvited you to join the " + team.Color + team.Name + " %Steam.");
who.GameTeamInvite = team.Name;
}
void HandleLeave(Player p, string[] args) {
Team team = p.GameTeam;
if (team == null) { Player.SendMessage(p, "You need to be in a team first to leave one."); return; }
team.Action(p, "left the team.");
team.Remove(p.name);
p.GameTeam = null;
p.SetPrefix();
Team.SaveList();
}
void HandleMembers(Player p, string[] args) {
Team team = p.GameTeam;
if (args.Length == 1) {
if (team == null) { Player.SendMessage(p, "You are not in a team, so must provide a team name."); return; }
} else {
team = Team.FindTeam(args[1]);
if (team == null) { Player.SendMessage(p, "No team found with the name \"" + args[1] + "\"."); return; }
}
Player.SendMessage(p, "Team owner: " + team.Owner);
Player.SendMessage(p, "Members: " + String.Join(", ", team.Members));
}
public override void Help(Player p) {
Player.SendMessage(p, "%T/team owner <name> %H-Sets the player who has owner priveliges for the team.");
Player.SendMessage(p, "%T/team kick [name] %H-Removes that player from the team you are in.");
Player.SendMessage(p, "%T/team color [color] %H-Sets the color of the team name shown in chat.");
Player.SendMessage(p, "%T/team create %H- Creates a new team.");
Player.SendMessage(p, "%T/team join %H-Joins the team you last received an invite to.");
Player.SendMessage(p, "%T/team invite [name] %H-Invites that player to join your team.");
Player.SendMessage(p, "%T/team leave %H-Removes you from the team you are in.");
Player.SendMessage(p, "%T/team members [name] %H-Lists the players within that team.");
Player.SendMessage(p, "%HAnything else is sent as a message to all members of the team.");
}
}
}