aboutsummaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/craftmine.js2
-rw-r--r--js/craftmine.js~51
-rw-r--r--js/guild.js26
3 files changed, 27 insertions, 52 deletions
diff --git a/js/craftmine.js b/js/craftmine.js
index 66c35fc..000a8f2 100644
--- a/js/craftmine.js
+++ b/js/craftmine.js
@@ -1,7 +1,7 @@
data = {
gold: 0,
mine: 0,
- miners: 1,
+ miners: 0,
level: 1
}
diff --git a/js/craftmine.js~ b/js/craftmine.js~
deleted file mode 100644
index bc03d6c..0000000
--- a/js/craftmine.js~
+++ /dev/null
@@ -1,51 +0,0 @@
-datas = {
- gold: 0,
- mine: 0,
- miners: 1,
- level: 1
-}
-
-function sendRequest(url, params, callback) {
- var xhr = new XMLHttpRequest();
- xhr.open("POST", url);
- xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
- xhr.onreadystatechange = function() {
- if(xhr.readyState == XMLHttpRequest.DONE && xhr.status == "200") {
- callback(xhr);
- }
- }
- xhr.send(params);
-}
-
-
-function updateDatas(t) {
- document.getElementById(t).innerHTML = datas[t];
-}
-
-function withdrawMine() {
- sendRequest("craftmine.php", "op=withdrawMine", function() {
- datas.gold += parseInt(datas.mine);
- datas.mine = 0;
- updateDatas("gold");
- updateDatas("mine");
- })
-}
-
-function initCraftMine() {
- sendRequest("craftmine.php", "op=getCraftMine", function(xhr) {
- var ret = xhr.responseText;
- datas.gold = ret;
- updateDatas("gold");
- })
-}
-
-
-function updateMine() {
- datas.mine += (datas.mineurs+1);
- updateDatas("mine");
-}
-
-function init() {
- initCraftMine();
- window.setInterval(updateMine, 1000);
-}
diff --git a/js/guild.js b/js/guild.js
new file mode 100644
index 0000000..cb9e783
--- /dev/null
+++ b/js/guild.js
@@ -0,0 +1,26 @@
+function hireMiner(){
+ sendRequest("craftmine.php", "op=hireMiner", function(xhr) {
+ //data.gold -= 40;
+ var ret = xhr.responseText;
+ if(ret != "you need to create a guild first" && ret!=""){
+ console.log(ret);
+ var tmp = ret.split(",");
+ console.log(tmp);
+ data.gold = parseInt(tmp[0]);
+ data.miners = parseInt(tmp[1]);
+ updateData("gold","miners");
+ }
+ })
+}
+
+function createGuild(){
+ sendRequest("craftmine.php", "op=createGuild", function(xhr) {
+ var ret = xhr.responseText;
+ if(ret != "g"){
+ document.getElementById("guild").innerHTML = ret;
+ data.gold -= 50;
+ updateData("gold");
+ }
+ })
+}
+