blob: 00f13afb50859ba37a4ce86dcb7af44ca6fe53a0 (
plain)
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
|
function displayShop(ret) {
var tmphtml = "<h3> Select an item to buy it:</h3>";
for(var key in ret.items){
if(ret.items.hasOwnProperty(key)){
var category = ret.items[key];
tmphtml += "<div class=\"row\">";
tmphtml += "<h4>"+key+"</h4>";
tmphtml += "<ul class=\"list-inline\">";
for(var i=0; i < category.length; i++) {
tmphtml += "<li>";
tmphtml += "<button type=\"button\" class=\"btn btn-primary\" onclick=\"buyItem('" + category[i].name + "')\"><span class=\"item-icon\">" + category[i].icon + "</span><br />" + category[i].name + "</button>";
tmphtml += "</li>";
}
tmphtml += "</ul>";
tmphtml += "</div>";
}
}
document.getElementById("tab2").innerHTML = tmphtml;
}
function displayInventory(items) {
for(var i=0; i < items.length; i++) {
addItem(items[i]);
}
}
function buildShop() {
sendRequest("craftmine.php", "op=buildShop", function(ret) {
displayShop(ret);
debitAccount(ret.cost);
showInfo("Your shop has been successfully created");
});
}
function addItem(ret) {
var itemhtml = "";
if(ret[1]==1){ //si c'est la première itération de l'objet
itemhtml += "<li>";
itemhtml += "<button type=\"button\" class=\"btn btn-primary\" onclick=\"useItem('" + ret[0].name + "')\"><span class=\"item-icon\">" + ret[0].icon + "</span><br />" + ret[0].name + "(<span id=\"nbObjet\">"+ret[1]+"</span>)</button>";
itemhtml += "</li>";
}
else if(ret[1]>1){ // si c'est une n-ième itération
document.getElementById("nbObjet").innerHTML=ret[1];
}
var invcontent = document.getElementById("tab3");
if(invcontent.children.length <= 1)
{
var tmphtml = "<h4>Your bag contains the following items:</h4>";
tmphtml += "<ul class=\"list-inline\">";
tmphtml += itemhtml;
tmphtml += "</ul>"
invcontent.innerHTML = tmphtml;
} else
invcontent.getElementsByTagName('ul')[0].innerHTML += itemhtml;
showInfo("The "+ ret[0].name + " has been successfully purchased");
}
function buyItem(name) {
sendRequest("craftmine.php", "op=buyItem&item="+name, function(ret) {
addItem(ret);
debitAccount(ret[0].cost);
});
}
function useItem(name) {
sendRequest("craftmine.php", "op=useItem&item="+name, function(ret) {
});
}
|