- Timestamp:
- Nov 9, 2021, 6:28:33 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/AllocsCommands/Commands/RemoveLandProtection.cs
r359 r369 11 11 public override string GetHelp () { 12 12 return "Usage:" + 13 " 1. removelandprotection < steamid>\n" +13 " 1. removelandprotection <userid>\n" + 14 14 " 2. removelandprotection <x> <y> <z>\n" + 15 15 " 3. removelandprotection nearby [length]\n" + 16 "1. Remove all land claims owned by the user with the given SteamID\n" +16 "1. Remove all land claims owned by the user with the given UserID\n" + 17 17 "2. Remove only the claim block on the exactly given block position\n" + 18 18 "3. Remove all claims in a square with edge length of 64 (or the optionally specified size) around the executing player"; … … 25 25 private void removeById (string _id) { 26 26 try { 27 PersistentPlayerList ppl = GameManager.Instance.GetPersistentPlayerList (); 28 29 if (_id.Length < 1 || !ppl.Players.ContainsKey (_id)) { 27 if (!PlatformUserIdentifierAbs.TryFromCombinedString (_id, out PlatformUserIdentifierAbs userId)) { 30 28 SdtdConsole.Instance.Output ( 31 29 "Not a valid Steam ID or user has never logged on. Use \"listlandprotection\" to get a list of keystones."); 32 30 return; 33 31 } 32 33 PersistentPlayerList ppl = GameManager.Instance.GetPersistentPlayerList (); 34 34 35 if (ppl.Players [ _id].LPBlocks == null || ppl.Players [_id].LPBlocks.Count == 0) {35 if (ppl.Players [userId].LPBlocks == null || ppl.Players [userId].LPBlocks.Count == 0) { 36 36 SdtdConsole.Instance.Output ( 37 37 "Player does not own any keystones. Use \"listlandprotection\" to get a list of keystones."); … … 40 40 41 41 List<BlockChangeInfo> changes = new List<BlockChangeInfo> (); 42 foreach (Vector3i pos in ppl.Players [ _id].LPBlocks) {42 foreach (Vector3i pos in ppl.Players [userId].LPBlocks) { 43 43 BlockChangeInfo bci = new BlockChangeInfo (pos, new BlockValue (0), true, false); 44 44 changes.Add (bci); … … 58 58 59 59 private void removeByPosition (List<string> _coords) { 60 int x, y, z; 61 int.TryParse (_coords [0], out x); 62 int.TryParse (_coords [1], out y); 63 int.TryParse (_coords [2], out z); 60 int.TryParse (_coords [0], out int x); 61 int.TryParse (_coords [1], out int y); 62 int.TryParse (_coords [2], out int z); 64 63 65 64 if (x == int.MinValue || y == int.MinValue || z == int.MinValue) { … … 81 80 BlockChangeInfo bci = new BlockChangeInfo (v, new BlockValue (0), true, false); 82 81 83 List<BlockChangeInfo> changes = new List<BlockChangeInfo> (); 84 changes.Add (bci); 82 List<BlockChangeInfo> changes = new List<BlockChangeInfo> {bci}; 85 83 86 84 GameManager.Instance.SetBlocksRPC (changes); … … 90 88 91 89 public override void Execute (List<string> _params, CommandSenderInfo _senderInfo) { 92 try{90 if (_params.Count > 0 && _params [0].EqualsCaseInsensitive ("nearby")) { 93 91 if (_senderInfo.RemoteClientInfo != null) { 94 if (_params.Count >= 1 && _params [0].EqualsCaseInsensitive ("nearby")) {95 _params.Add (_senderInfo.RemoteClientInfo.playerId);96 }92 _params.Add (_senderInfo.RemoteClientInfo.entityId.ToString ()); 93 } else if (_senderInfo.IsLocalGame && !GameManager.IsDedicatedServer) { 94 _params.Add (GameManager.Instance.World.GetPrimaryPlayerId ().ToString ()); 97 95 } 98 96 99 if (_params.Count > 0 && _params [0].EqualsCaseInsensitive ("nearby")) { 100 try { 101 int closeToDistance = 32; 102 if (_params.Count == 3) { 103 if (!int.TryParse (_params [1], out closeToDistance)) { 104 SdtdConsole.Instance.Output ("Given length is not an integer!"); 105 return; 106 } 107 108 closeToDistance /= 2; 97 try { 98 int closeToDistance = 32; 99 if (_params.Count == 3) { 100 if (!int.TryParse (_params [1], out closeToDistance)) { 101 SdtdConsole.Instance.Output ("Given length is not an integer!"); 102 return; 109 103 } 110 104 111 ClientInfo ci = ConsoleHelper.ParseParamSteamIdOnline (_params [_params.Count - 1]); 112 EntityPlayer ep = GameManager.Instance.World.Players.dict [ci.entityId]; 113 Vector3i closeTo = new Vector3i (ep.GetPosition ()); 114 LandClaimList.PositionFilter[] posFilters = 115 {LandClaimList.CloseToFilter2dRect (closeTo, closeToDistance)}; 116 Dictionary<Player, List<Vector3i>> claims = LandClaimList.GetLandClaims (null, posFilters); 105 closeToDistance /= 2; 106 } 117 107 118 try { 119 List<BlockChangeInfo> changes = new List<BlockChangeInfo> (); 120 foreach (KeyValuePair<Player, List<Vector3i>> kvp in claims) { 121 foreach (Vector3i v in kvp.Value) { 122 BlockChangeInfo bci = new BlockChangeInfo (v, new BlockValue (0), true, false); 123 changes.Add (bci); 124 } 108 int entityId = int.Parse (_params [_params.Count - 1]); 109 EntityPlayer ep = GameManager.Instance.World.Players.dict [entityId]; 110 Vector3i closeTo = new Vector3i (ep.GetPosition ()); 111 LandClaimList.PositionFilter[] posFilters = 112 {LandClaimList.CloseToFilter2dRect (closeTo, closeToDistance)}; 113 Dictionary<Player, List<Vector3i>> claims = LandClaimList.GetLandClaims (null, posFilters); 114 115 try { 116 List<BlockChangeInfo> changes = new List<BlockChangeInfo> (); 117 foreach (KeyValuePair<Player, List<Vector3i>> kvp in claims) { 118 foreach (Vector3i v in kvp.Value) { 119 BlockChangeInfo bci = new BlockChangeInfo (v, new BlockValue (0), true, false); 120 changes.Add (bci); 125 121 } 122 } 126 123 127 GameManager.Instance.SetBlocksRPC (changes); 128 } catch (Exception e) { 129 SdtdConsole.Instance.Output ("Error removing claims"); 130 Log.Out ("Error in RemoveLandProtection.Run: " + e); 131 } 124 GameManager.Instance.SetBlocksRPC (changes); 132 125 } catch (Exception e) { 133 SdtdConsole.Instance.Output ("Error getting current player's position");126 SdtdConsole.Instance.Output ("Error removing claims"); 134 127 Log.Out ("Error in RemoveLandProtection.Run: " + e); 135 128 } 136 } else if (_params.Count == 1) { 137 removeById (_params [0]); 138 } else if (_params.Count == 3) { 139 removeByPosition (_params); 140 } else { 141 SdtdConsole.Instance.Output ("Illegal parameters"); 129 } catch (Exception e) { 130 SdtdConsole.Instance.Output ("Error getting current player's position"); 131 Log.Out ("Error in RemoveLandProtection.Run: " + e); 142 132 } 143 } catch (Exception e) { 144 Log.Out ("Error in RemoveLandProtection.Run: " + e); 133 } else if (_params.Count == 1) { 134 removeById (_params [0]); 135 } else if (_params.Count == 3) { 136 removeByPosition (_params); 137 } else { 138 SdtdConsole.Instance.Output ("Illegal parameters"); 145 139 } 146 140 }
Note:
See TracChangeset
for help on using the changeset viewer.