diff options
author | piernov <piernov@piernov.org> | 2016-04-24 22:17:13 +0200 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2016-04-24 22:17:13 +0200 |
commit | bd688fc969dfdda43e180db17095733d6f63da56 (patch) | |
tree | 29054f1a642e6dead044236c835483a4ef24c3d7 | |
parent | 9b618abd14b69bd56e64bd998de8f9ccb722fba7 (diff) | |
download | candybox-bd688fc969dfdda43e180db17095733d6f63da56.tar.gz candybox-bd688fc969dfdda43e180db17095733d6f63da56.tar.bz2 candybox-bd688fc969dfdda43e180db17095733d6f63da56.tar.xz candybox-bd688fc969dfdda43e180db17095733d6f63da56.zip |
Send gold, shop and inventory infos from PHP all at once when requested on loading by client
-rw-r--r-- | craftmine.php | 2 | ||||
-rw-r--r-- | inc/craftmine.inc | 14 | ||||
-rw-r--r-- | inc/mine.inc | 2 |
3 files changed, 16 insertions, 2 deletions
diff --git a/craftmine.php b/craftmine.php index c5f09be..869c83a 100644 --- a/craftmine.php +++ b/craftmine.php @@ -35,7 +35,7 @@ if (!isset($_POST["op"])) { $op = $_POST["op"]; switch($op) { case "withdrawMine": withdrawMine(); break; - case "getCraftMine": sendMine(); break; + case "getCraftMine": sendCraftMine(); break; case "buildShop": buildShop(); break; case "buyItem": buyItem(); break; default: reportBadRequest(); diff --git a/inc/craftmine.inc b/inc/craftmine.inc new file mode 100644 index 0000000..a30538c --- /dev/null +++ b/inc/craftmine.inc @@ -0,0 +1,14 @@ +<?php + +require_once("mine.inc"); +require_once("shop.inc"); + +function sendCraftMine() { + $data = array("gold" => sendMine(), + "shop" => sendShop(), + "inventory" => Inventory::sendContent(), + ); + echo json_encode($data); +} + +?> diff --git a/inc/mine.inc b/inc/mine.inc index 4293243..6a04cc4 100644 --- a/inc/mine.inc +++ b/inc/mine.inc @@ -14,7 +14,7 @@ function withdrawMine() { function sendMine() { if(empty($_SESSION["mine"])) initCraftMine(); $mine = $_SESSION["mine"]; - echo $mine["gold"]; + return $mine["gold"]; } |