-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
dResidence.java
147 lines (122 loc) · 4.2 KB
/
dResidence.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package com.denizenscript.depenizen.bukkit.objects.residence;
import com.bekvon.bukkit.residence.Residence;
import com.bekvon.bukkit.residence.protection.ClaimedResidence;
import net.aufdemrand.denizen.objects.dLocation;
import net.aufdemrand.denizen.objects.dPlayer;
import com.denizenscript.denizencore.objects.Element;
import com.denizenscript.denizencore.objects.Fetchable;
import com.denizenscript.denizencore.objects.dObject;
import com.denizenscript.denizencore.tags.Attribute;
import com.denizenscript.denizencore.tags.TagContext;
import com.denizenscript.denizencore.utilities.CoreUtilities;
import com.denizenscript.denizencore.utilities.debugging.dB;
public class dResidence implements dObject {
public static dResidence valueOf(String string) {
return dResidence.valueOf(string, null);
}
@Fetchable("residence")
public static dResidence valueOf(String string, TagContext context) {
if (string == null) {
return null;
}
////////
// Match residence name
string = string.replace("residence@", "");
ClaimedResidence residence = Residence.getInstance().getResidenceManagerAPI().getByName(string);
if (residence == null) {
return null;
}
return new dResidence(residence);
}
public static boolean matches(String arg) {
arg = arg.replace("residence@", "");
return Residence.getInstance().getResidenceManagerAPI().getByName(arg) != null;
}
ClaimedResidence residence = null;
public dResidence(ClaimedResidence residence) {
if (residence != null) {
this.residence = residence;
}
else {
dB.echoError("Residence referenced is null!");
}
}
String prefix = "Residence";
@Override
public String getPrefix() {
return prefix;
}
@Override
public String debug() {
return (prefix + "='<A>" + identify() + "<G>' ");
}
@Override
public boolean isUnique() {
return true;
}
@Override
public String getObjectType() {
return "Residence";
}
@Override
public String identify() {
return "residence@" + residence.getName();
}
@Override
public String identifySimple() {
return identify();
}
@Override
public dObject setPrefix(String prefix) {
this.prefix = prefix;
return this;
}
public ClaimedResidence getResidence() {
return residence;
}
public boolean equals(dResidence residence) {
return CoreUtilities.toLowerCase(residence.getResidence().getName()).equals(CoreUtilities.toLowerCase(this.getResidence().getName()));
}
@Override
public String toString() {
return identify();
}
@Override
public String getAttribute(Attribute attribute) {
if (attribute == null) {
return null;
}
// <--[tag]
// @attribute <residence@residence.name>
// @returns Element
// @description
// Returns the name of the residence.
// @Plugin Depenizen, Residence
// -->
if (attribute.startsWith("name")) {
return new Element(residence.getName()).getAttribute(attribute.fulfill(1));
}
// <--[tag]
// @attribute <residence@residence.owner>
// @returns dPlayer
// @description
// Returns the owner of the residence.
// @Plugin Depenizen, Residence
// -->
else if (attribute.startsWith("owner")) {
return new dPlayer(residence.getOwnerUUID()).getAttribute(attribute.fulfill(1));
}
// <--[tag]
// @attribute <residence@residence.is_within[<location>]>
// @returns Element(Boolean)
// @description
// Returns whether the specified location is within this Residence.
// @Plugin Depenizen, Residence
// -->
else if (attribute.startsWith("is_within") && attribute.hasContext(1)) {
dLocation location = dLocation.valueOf(attribute.getContext(1));
return new Element(residence.containsLoc(location)).getAttribute(attribute.fulfill(1));
}
return new Element(identify()).getAttribute(attribute);
}
}