This repository has been archived by the owner on May 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mcshop.js
195 lines (170 loc) · 6.8 KB
/
mcshop.js
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*========================
EDIT BELOW
========================*/
var JSONUrl = "https://survival.gamealition.com/data/signshop.json";
var dynmapURL = "http://survival.gamealition.com:8123";
var currencySymbol = "$";
/*========================
EDIT ABOVE
========================*/
var ENCHANTS = {
"ARROW_DAMAGE": "Power",
"ARROW_FIRE": "Flame",
"ARROW_INFINITE": "Infinity",
"ARROW_KNOCKBACK": "Punch",
"DAMAGE_ALL": "Sharpness",
"DAMAGE_ARTHROPODS": "Bane of Arthropods",
"DAMAGE_UNDEAD": "Smite",
"DEPTH_STRIDER": "Depth Strider",
"DIG_SPEED": "Efficiency",
"DURABILITY": "Unbreaking",
"FIRE_ASPECT": "Fire Aspect",
"FROST_WALKER": "Frost Walker",
"KNOCKBACK": "Knockback",
"LOOT_BONUS_BLOCKS": "Fortune",
"LOOT_BONUS_MOBS": "Looting",
"LUCK": "Luck of the Sea",
"LURE": "Lure",
"MENDING": "Mending",
"OXYGEN": "Respiration",
"PROTECTION_ENVIRONMENTAL": "Protection",
"PROTECTION_EXPLOSIONS": "Blast Protection",
"PROTECTION_FALL": "Feather Falling",
"PROTECTION_FIRE": "Fire Protection",
"PROTECTION_PROJECTILE": "Projectile Protection",
"SILK_TOUCH": "Silk Touch",
"THORNS": "Thorns",
"WATER_WORKER": "Aqua Affinity"
}
var NUMERALS = {
"1": "I",
"2": "II",
"3": "III",
"4": "IV",
"5": "V"
}
var sorted;
var signShopData;
var result;
var $select = $("#itemselect");
$.ajax({
url: "items.json",
dataType: "JSON",
success: function (data) {
sorted = _.sortBy(data, "name")
$.each(sorted, function (key, val) {
$select.append("<option value='" + val.type + ":" + val.meta + "'>" + val.name + "</option>");
})
},
error: function () {
$select.html("<option value=''>ERROR! Could not load items!</option>");
}
});
$("#itemselect").select2({
placeholder: "Choose an item",
allowClear: true
});
$.ajax({
url: JSONUrl,
dataType: "JSON",
success: function (data) {
sortedbyprice = _.sortBy(data, "signPrice");
//findLength = JSON.parse(data);
JSONLength = data.length;
$("#shop-number").text(JSONLength);
},
error: function () {
alert("ERROR! Could not connect to the shop data!");
}
});
function findshops() {
var selecteditem = $('#itemselect option:selected').val();
var itemname = $('#itemselect option:selected').text();
var fields = selecteditem.split(/:/);
var itemid = fields[0];
var itemid2 = fields[1];
var matches = [];
var displayedmatches = [];
$.each(sortedbyprice, function (key, val) {
$.each(val.invItems, function (key2, val2) {
var type = val2.type;
var durability = val2.durability;
if (type == itemid && durability == itemid2 && (val.signType == "buy" || val.signType == "sell" || val.signType == "ibuy" || val.signType == "isell")) {
$("#2").text(val.amount);
matches.push(val);
}
});
});
if (matches.length == 0) {
$("#responsecontainer").addClass("hide");
$("#1").text("Error! No shops found with that item!");
$("#2").text("");
} else {
$("#responsecontainer").empty();
$("#responsecontainer").removeClass("hide");
$("#1").text("");
$("#2").text("Fetched " + matches.length + " results. Displaying sorted by price.")
$.each(matches, function (key3, val3) {
$.each(val3.invItems, function (key4, val4) {
if (val4.type != itemid || val4.durability != itemid2) {
return;
}
var $signtype = val3.signType;
var $amount = val4.amount;
var $signprice = val3.signPrice;
var $ownername = val3.ownerName;
var $locworld = val3.locWorld;
var $x = val3.locX;
var $y = val3.locY;
var $z = val3.locZ;
if ($signtype == "ibuy" || $signtype == "isell") {
var $invinstock = "infinite";
} else {
var $invinstock = val3.invInStock;
}
var currentmatch = {
signType: $signtype,
amount: $amount,
signPrice: $signprice,
ownerName: $ownername,
locWorld: $locworld,
locX: $x,
locY: $y,
locZ: $z,
invInStock: $invinstock
};
displayedmatches.push(val3);
});
});
matches.length = 0;
$.each(displayedmatches, function (key5, val5) {
$.each(val5.invItems, function (key6, val6) {
var enchants = val6.meta.enchantments,
enchantLabels = [],
enchant = null,
level = null;
for (enchant in enchants) {
level = enchants[enchant];
enchantLabels.push(ENCHANTS[enchant] + " " + NUMERALS[level]);
}
if (enchants == null) {
var displayedenchant = "none";
} else {
var displayedenchant = enchantLabels.join(", ");
}
if (val5.signType == "ibuy" || val5.signType == "isell") {
var $invinstock = "infinite";
} else {
var $invinstock = val5.invInStock;
}
if ($invinstock == false) {
var textColor = "red-text";
} else {
var textColor = "green-text";
}
var $appendrow = $("<div class='col l3 m3 s6'><div class='card'><div class='card-image'><img src='img/" + itemid + "-" + itemid2 + ".png' class='card-image-size'><span class='card-title black-text right-align'>" + itemname + "</span></div><div class='card-content'><p><strong>Owner:</strong></p><img src='https://minotar.net/avatar/" + val5.ownerName + "/20' class='left'><p>" + val5.ownerName + "</p><p><strong>Enchantments:</strong></p><p>" + displayedenchant + "</p><p><strong>Location:</strong></p><p><i>" + val5.locWorld + "</i> @ <a href='" + dynmapURL + "/?worldname=" + val5.locWorld + "&mapname=surface&zoom=6&x=" + val5.locX + "&y=" + val5.locY + "&z=" + val5.locZ + "' target='_blank'>" + val5.locX + ", " + val5.locY + ", " + val5.locZ + "</a></p><p><strong>In Stock?: </strong><span class='" + textColor + "'>" + $invinstock + "</span></p></div><div class='card-action'><strong>" + val5.signType + "</strong> " + val6.amount + " for <strong>" + currencySymbol + val5.signPrice + "</strong></div></div></div>");
$appendrow.appendTo("#responsecontainer");
});
});
}
}