mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-24 05:03:34 -04:00
436 lines
13 KiB
C#
436 lines
13 KiB
C#
/*
|
|
Copyright 2010 MCSharp team (Modified for use with MCZall/MCLawl/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;
|
|
namespace MCGalaxy.Commands
|
|
{
|
|
public sealed class CmdDraw : Command
|
|
{
|
|
public override string name { get { return "draw"; } }
|
|
public override string shortcut { get { return ""; } }
|
|
public override string type { get { return "build"; } }
|
|
public override bool museumUsable { get { return false; } }
|
|
public override LevelPermission defaultRank { get { return LevelPermission.Builder; } }
|
|
public CmdDraw() { }
|
|
|
|
public override void Use(Player p, string message)
|
|
{
|
|
int height;
|
|
int radius;
|
|
|
|
if (p != null)
|
|
{
|
|
if (p.level.permissionbuild > p.group.Permission)
|
|
{
|
|
p.SendMessage("You can not edit this map.");
|
|
return;
|
|
}
|
|
string[] message2 = message.Split(' ');
|
|
|
|
#region cones
|
|
if (message2[0].ToLower() == "cone")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 1)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 1)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeCone);
|
|
|
|
return;
|
|
}
|
|
if (message2[0].ToLower() == "hcone")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 1)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 1)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeHCone);
|
|
|
|
return;
|
|
}
|
|
|
|
if (message2[0].ToLower() == "icone")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 1)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 1)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeICone);
|
|
|
|
return;
|
|
}
|
|
if (message2[0].ToLower() == "hicone")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 1)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 1)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeHICone);
|
|
|
|
return;
|
|
}
|
|
#endregion
|
|
#region pyramids
|
|
if (message2[0].ToLower() == "pyramid")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 2)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 2)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangePyramid);
|
|
|
|
return;
|
|
}
|
|
if (message2[0].ToLower() == "hpyramid")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 2)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 2)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeHPyramid);
|
|
|
|
return;
|
|
}
|
|
if (message2[0].ToLower() == "ipyramid")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 2)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 2)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeIPyramid);
|
|
|
|
return;
|
|
}
|
|
if (message2[0].ToLower() == "hipyramid")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 2)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 2)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeHIPyramid);
|
|
|
|
return;
|
|
}
|
|
#endregion
|
|
#region spheres
|
|
if (message2[0].ToLower() == "sphere")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 3)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 3)).name + "+"); return; }
|
|
if (message2.Length != 2)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
radius = Convert.ToUInt16(message2[1].Trim());
|
|
p.BcVar = new int[2] { 0, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeSphere);
|
|
|
|
return;
|
|
}
|
|
if (message2[0].ToLower() == "hsphere")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 3)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 3)).name + "+"); return; }
|
|
if (message2.Length != 2)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
radius = Convert.ToUInt16(message2[1].Trim());
|
|
p.BcVar = new int[2] { 0, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeHSphere);
|
|
|
|
return;
|
|
}
|
|
#endregion
|
|
#region other
|
|
if (message2[0].ToLower() == "volcano")
|
|
{
|
|
if ((int)p.group.Permission < CommandOtherPerms.GetPerm(this, 4)) { Player.SendMessage(p, "That commands addition is for " + Group.findPermInt(CommandOtherPerms.GetPerm(this, 4)).name + "+"); return; }
|
|
if (message2.Length != 3)
|
|
goto Help;
|
|
|
|
try
|
|
{
|
|
height = Convert.ToUInt16(message2[1].Trim());
|
|
radius = Convert.ToUInt16(message2[2].Trim());
|
|
p.BcVar = new int[2] { height, radius };
|
|
}
|
|
catch
|
|
{
|
|
goto Help;
|
|
}
|
|
|
|
p.SendMessage("Place a block");
|
|
p.ClearBlockchange();
|
|
p.Blockchange += new Player.BlockchangeEventHandler(BlockchangeVolcano);
|
|
|
|
return;
|
|
}
|
|
#endregion
|
|
|
|
Help:
|
|
Help(p);
|
|
return;
|
|
|
|
}
|
|
Player.SendMessage(p, "This command can only be used in-game!");
|
|
}
|
|
public override void Help(Player p)
|
|
{
|
|
p.SendMessage("/draw <shape> <height> <baseradius> - Draw an object in game- Valid Types cones, spheres, and pyramids, hspheres (hollow sphere), and hpyramids (hollow pyramid)");
|
|
}
|
|
|
|
#region Cone Blockchanges
|
|
public void BlockchangeCone(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.Cone(p, x, y, z, height, radius, type);
|
|
}
|
|
public void BlockchangeHCone(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.HCone(p, x, y, z, height, radius, type);
|
|
}
|
|
public void BlockchangeICone(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.ICone(p, x, y, z, height, radius, type);
|
|
}
|
|
public void BlockchangeHICone(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.HICone(p, x, y, z, height, radius, type);
|
|
}
|
|
#endregion
|
|
#region Pyramid Blockchanges
|
|
public void BlockchangePyramid(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.Pyramid(p, x, y, z, height, radius, type);
|
|
}
|
|
public void BlockchangeHPyramid(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.HPyramid(p, x, y, z, height, radius, type);
|
|
}
|
|
public void BlockchangeIPyramid(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.IPyramid(p, x, y, z, height, radius, type);
|
|
}
|
|
public void BlockchangeHIPyramid(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.HIPyramid(p, x, y, z, height, radius, type);
|
|
}
|
|
#endregion
|
|
#region Sphere Blockchanges
|
|
public void BlockchangeSphere(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.Sphere(p, x, y, z, radius, type);
|
|
}
|
|
public void BlockchangeHSphere(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.HSphere(p, x, y, z, radius, type);
|
|
}
|
|
#endregion
|
|
#region Special Blockchanges
|
|
public void BlockchangeVolcano(Player p, ushort x, ushort y, ushort z, byte type)
|
|
{
|
|
int height = p.BcVar[0];
|
|
int radius = p.BcVar[1];
|
|
|
|
byte b = p.level.GetTile(x, y, z);
|
|
p.SendBlockchange(x, y, z, b);
|
|
p.ClearBlockchange();
|
|
Util.SCOGenerator.Volcano(p, x, y, z, height, radius);
|
|
}
|
|
#endregion
|
|
}
|
|
} |