diff options
author | alexichi <alexbankai96@gmail.com> | 2016-04-25 13:37:08 +0200 |
---|---|---|
committer | alexichi <alexbankai96@gmail.com> | 2016-04-25 13:37:08 +0200 |
commit | 29d23898c7ec5d3280e9a7f01a6209f8c8f2d5f8 (patch) | |
tree | cbfaaea85e3739abd0b4c59c1bef4e28ff69a84a /inc | |
parent | 1ffba62faae83e18597270b68580a90ac3032a31 (diff) | |
download | candybox-29d23898c7ec5d3280e9a7f01a6209f8c8f2d5f8.tar.gz candybox-29d23898c7ec5d3280e9a7f01a6209f8c8f2d5f8.tar.bz2 candybox-29d23898c7ec5d3280e9a7f01a6209f8c8f2d5f8.tar.xz candybox-29d23898c7ec5d3280e9a7f01a6209f8c8f2d5f8.zip |
Mise en commun du shop et de la guilde
Diffstat (limited to 'inc')
-rw-r--r-- | inc/account.inc | 2 | ||||
-rw-r--r-- | inc/craftmine.inc | 1 | ||||
-rw-r--r-- | inc/guild.inc | 29 | ||||
-rw-r--r-- | inc/messages.inc | 2 |
4 files changed, 19 insertions, 15 deletions
diff --git a/inc/account.inc b/inc/account.inc index 19f311d..6f398bb 100644 --- a/inc/account.inc +++ b/inc/account.inc @@ -2,7 +2,7 @@ require_once("messages.inc"); function debitAccount($amount) { - if($_SESSION["mine"]["gold"] <= $amount) { + if($_SESSION["mine"]["gold"] < $amount) { sendError("gold_insufficient"); return false; } diff --git a/inc/craftmine.inc b/inc/craftmine.inc index a30538c..33a28d7 100644 --- a/inc/craftmine.inc +++ b/inc/craftmine.inc @@ -7,6 +7,7 @@ function sendCraftMine() { $data = array("gold" => sendMine(), "shop" => sendShop(), "inventory" => Inventory::sendContent(), + "miners" => sendMiners() ); echo json_encode($data); } diff --git a/inc/guild.inc b/inc/guild.inc index 4ca0262..c0e8264 100644 --- a/inc/guild.inc +++ b/inc/guild.inc @@ -1,30 +1,31 @@ <?php +define("GUILD_COST",10); +define("MINER_COST",5); + function createGuild(){ - if($_SESSION["mine"]["gold"] >= 50 && !isset($_SESSION["guild"])){ - $_SESSION["guild"]= array("miners" => 1); - $_SESSION["mine"]["gold"] -= 50; - echo "Guild has been successfully created"; + if(!empty($_SESSION["guild"])) { + sendError("guild_already_built"); } - else{ - echo "g"; + elseif(debitAccount(GUILD_COST)) { + $_SESSION["guild"] = true; + echo json_encode(array("cost" => GUILD_COST)); } } function hireMiner(){ if(!isset($_SESSION["guild"])){ - echo "you need to create a guild first"; + sendError("guild_not_yet_created"); } - if($_SESSION["mine"]["gold"] >= 20 && isset($_SESSION["guild"])){ - $_SESSION["guild"]["miners"]++; - $_SESSION["mine"]["gold"] -= 20; - $_SESSION["mine"]["miners"] = $_SESSION["guild"]["miners"]; - $mine = $_SESSION["mine"]; - echo $mine["gold"] +","+ $mine["miners"]; + elseif(debitAccount(MINER_COST)){ + $_SESSION["mine"]["miners"]++; + echo json_encode(array("cost" => MINER_COST , "miners" => $_SESSION["mine"]["miners"])); } } -//function buy($obj,$prix){} +function sendMiners(){ + return $_SESSION["mine"]["miners"]; +} ?> diff --git a/inc/messages.inc b/inc/messages.inc index f1ca8b3..d6ea87e 100644 --- a/inc/messages.inc +++ b/inc/messages.inc @@ -4,6 +4,8 @@ $messages = array( "shop_already_built" => "You have already built a shop.", "gold_insufficient" => "You don't have enough gold.", "shop_missing_item" => "This item does not exist.", + "guild_not_yet_created" => "You need to create a guild first.", + "guild_already_built" => "You have aready built a guild." ); function sendError($msg) { |