/* TShock, a server mod for Terraria Copyright (C) 2011 The TShock Team This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.IO; using System.Data; using TShockAPI.DB; using Community.CsharpSqlite.SQLiteClient; using Microsoft.Xna.Framework; using Terraria; namespace TShockAPI.DB { public class RegionManager { public List Regions = new List(); private IDbConnection database; public RegionManager(IDbConnection db) { database = db; using (var com = database.CreateCommand()) { if (TShock.Config.StorageType.ToLower() == "sqlite") com.CommandText = "CREATE TABLE IF NOT EXISTS 'Regions' ('X1' NUMERIC, 'Y1' NUMERIC, 'height' NUMERIC, 'width' NUMERIC, 'RegionName' TEXT PRIMARY KEY, 'WorldID' TEXT, 'UserIds' TEXT, 'Protected' NUMERIC);"; else if (TShock.Config.StorageType.ToLower() == "mysql") com.CommandText = "CREATE TABLE IF NOT EXISTS Regions (X1 INT(11), Y1 INT(11), height INT(11), width INT(11), RegionName VARCHAR(255) PRIMARY, WorldID VARCHAR(255), UserIds VARCHAR(255), Protected INT(1));"; com.ExecuteNonQuery(); } ReloadAllRegions(); } public void ReloadAllRegions() { try { using (var com = database.CreateCommand()) { com.CommandText = "SELECT * FROM Regions WHERE WorldID=@worldid"; com.AddParameter("@worldid", Main.worldID.ToString()); using (var reader = com.ExecuteReader()) { Regions.Clear(); while (reader.Read()) { int X1 = reader.Get("X1"); int Y1 = reader.Get("Y1"); int height = reader.Get("height"); int width = reader.Get("width"); int Protected = reader.Get("Protected"); string MergedIDs = DbExt.Get(reader, "UserIds"); string name = DbExt.Get(reader, "RegionName"); string[] SplitIDs = MergedIDs.Split(','); Region r = new Region(new Rectangle(X1, Y1, width, height), name, Protected, Main.worldID.ToString()); r.RegionAllowedIDs = SplitIDs; Regions.Add(r); } reader.Close(); } } } catch (Exception ex) { Log.Error(ex.ToString()); } } public bool AddRegion(int tx, int ty, int width, int height, string regionname, string worldid) { try { using (var com = database.CreateCommand()) { com.CommandText = "INSERT INTO Regions VALUES (@tx, @ty, @height, @width, @name, @worldid, @userids, @protected);"; com.AddParameter("@tx", tx); com.AddParameter("@ty", ty); com.AddParameter("@height", width + tx); com.AddParameter("@width", height + ty); com.AddParameter("@name", regionname.ToLower()); com.AddParameter("@worldid", worldid); com.AddParameter("@userids", ""); com.AddParameter("@protected", 1); if (com.ExecuteNonQuery() > 0) { ReloadAllRegions(); return true; } } } catch (Exception ex) { Log.Error(ex.ToString()); } return false; } public bool DeleteRegion(string name) { try { using (var com = database.CreateCommand()) { com.CommandText = "DELETE FROM Regions WHERE RegionName=@name AND WorldID=@worldid"; com.AddParameter("@name", name.ToLower()); com.AddParameter("@worldid", Main.worldID.ToString()); com.ExecuteNonQuery(); ReloadAllRegions(); return true; } } catch (Exception ex) { Log.Error(ex.ToString()); } return false; } public bool SetRegionState(string name, bool state) { try { using (var com = database.CreateCommand()) { com.CommandText = "UPDATE Regions SET Protected=@bool WHERE RegionName=@name AND WorldID=@worldid"; com.AddParameter("@name", name); com.AddParameter("@bool", state ? 1 : 0); com.AddParameter("@worldid", Main.worldID.ToString()); ReloadAllRegions(); return (com.ExecuteNonQuery() > 0); } } catch (Exception ex) { Log.Error(ex.ToString()); return false; } } [Obsolete("Use CanBuild and InArea instead.")] public bool InProtectedAreaAndCantBuild(int X, int Y, User user) { Rectangle r = new Rectangle(X, Y, 0, 0); for (int i = 0; i < Regions.Count; i++) { if (Regions[i].RegionArea.Intersects(r)) { for (int j = 0; j < Regions[i].RegionAllowedIDs.Length; j++) { if (Regions[i].RegionAllowedIDs[j] == user.Name) { return false; } } } } return true; } public bool CanBuild(int x, int y, User user) { for (int i = 0; i < Regions.Count; i++) { if (Regions[i].InArea(new Rectangle(x, y, 0, 0)) && Regions[i].HasPermissionToBuildInRegion(new Rectangle(x, y, 0, 0), user)) { return true; } } return false; } public bool CanBuild(int x, int y, TSPlayer ply) { User user = TShock.Users.GetUserByName(ply.TPlayer.name); if (!ply.Group.HasPermission("canbuild")) { return false; } if (ply.Group.HasPermission("editspawn")) { return true; } for (int i = 0; i < Regions.Count; i++) { if (Regions[i].InArea(new Rectangle(x, y, 0, 0)) && !Regions[i].HasPermissionToBuildInRegion(new Rectangle(x, y, 0, 0), user)) { return false; } } return true; } public bool InArea(int x, int y) { for (int i = 0; i < Regions.Count; i++) { if (Regions[i].InArea(new Rectangle(x, y, 0, 0)) && Regions[i].DisableBuild == 0) { return true; } } return false; } public static List ListIDs(string MergedIDs) { List SplitIDs = new List(); var sb = new StringBuilder(); for (int i = 0; i < MergedIDs.Length; i++) { char c = MergedIDs[i]; if (c != ',') { sb.Append(c); } else if (sb.Length > 0) { SplitIDs.Add(sb.ToString()); sb.Clear(); } } return SplitIDs; } public bool AddNewUser(string regionName, User user) { string MergedIDs = string.Empty; try { using (var com = database.CreateCommand()) { com.CommandText = "SELECT * FROM Regions WHERE RegionName=@name AND WorldID=@worldid"; com.AddParameter("@name", regionName); com.AddParameter("@worldid", Main.worldID.ToString()); using (var reader = com.ExecuteReader()) { if (reader.Read()) MergedIDs = reader.Get("UserIds"); } if (MergedIDs == string.Empty) MergedIDs = user.ID.ToString(); else MergedIDs = MergedIDs + "," + user.ID; com.CommandText = "UPDATE Regions SET UserIds=@ids"; com.AddParameter("@ids", MergedIDs); ReloadAllRegions(); return (com.ExecuteNonQuery() > 0); } } catch (Exception ex) { Log.Error(ex.ToString()); return false; } } public List ListAllRegions() { List Regions = new List(); try { using (var com = database.CreateCommand()) { com.CommandText = "SELECT * FROM Regions"; using (var reader = com.ExecuteReader()) { while (reader.Read()) Regions.Add(new Region(new Rectangle(reader.Get("X1"), reader.Get("Y1"), reader.Get("height"), reader.Get("width")), reader.Get("RegionName"), reader.Get("Protected"), reader.Get("WorldID"))); reader.Close(); } } } catch (Exception ex) { Log.Error(ex.ToString()); } return Regions; } } public class Region { public Rectangle RegionArea { get; set; } public string RegionName { get; set; } public int DisableBuild { get; set; } public string RegionWorldID { get; set; } public string[] RegionAllowedIDs { get; set; } public Region(Rectangle region, string name, int disablebuild, string RegionWorldIDz) { RegionArea = region; RegionName = name; DisableBuild = disablebuild; RegionWorldID = RegionWorldIDz; } public Region() { RegionArea = Rectangle.Empty; RegionName = string.Empty; DisableBuild = 1; RegionWorldID = string.Empty; } public bool InArea(Rectangle point) { if (RegionArea.Intersects(point)) { return true; } return false; } public bool HasPermissionToBuildInRegion(Rectangle point, User user) { if (DisableBuild == 0) { return true; } for (int i = 0; i < RegionAllowedIDs.Length; i++) { if (RegionAllowedIDs[i] == user.Name) { return true; } } return false; } } }