diff --git a/api/unitData.php b/api/unitData.php new file mode 100644 index 0000000..590c0b5 --- /dev/null +++ b/api/unitData.php @@ -0,0 +1,14 @@ + self::$units, + "descriptions" => self::$descriptions, + "pricelist" => self::$pricelist, + "requeriments" => self::$requeriments + ]; + } } diff --git a/core/classes/data/user.php b/core/classes/data/user.php index 171de10..136ce71 100644 --- a/core/classes/data/user.php +++ b/core/classes/data/user.php @@ -8,7 +8,7 @@ * This class maps the 'user'-table to an php object and is also responsible of keeping it up-to-date. * */ - class D_User { + class D_User implements JsonSerializable { private $userID; @@ -193,4 +193,8 @@ public function setOldRank($old_rank) : void { $this->old_rank = $old_rank; } + public function jsonSerialize() { + return get_object_vars($this); + } + } diff --git a/core/classes/loader.php b/core/classes/loader.php index cf0b789..a119439 100644 --- a/core/classes/loader.php +++ b/core/classes/loader.php @@ -4,7 +4,7 @@ defined('INSIDE') OR exit('No direct script access allowed'); - class Loader { + class Loader implements JsonSerializable { private static $user = null; @@ -30,13 +30,6 @@ class Loader { private static $initialized = false; - private function __construct($userID) { - if (!self::$initialized) { - self::init($userID); - self::$initialized = true; - } - } - public static function init($userID) { $dbConnection = new Database(); @@ -545,4 +538,22 @@ public static function getFleetData() : D_Fleet { return self::$fleetData; } + public function jsonSerialize() { + if(!self::$initialized) self::init(1); + + return [ + "user" => self::$user, + "planet" => self::$planet, + "galaxy" => self::$galaxy, + "buildingData" => self::$buildingData, + "buildingList" => self::$buildingList, + "defenseData" => self::$defenseData, + "defenseList" => self::$defenseList, + "techData" => self::$techData, + "techList" => self::$techList, + "fleetData" => self::$fleetData, + "fleetList" => self::$fleetList + ]; + } + } diff --git a/core/classes/units/building.php b/core/classes/units/building.php index 77937ae..4253f50 100644 --- a/core/classes/units/building.php +++ b/core/classes/units/building.php @@ -4,7 +4,7 @@ defined('INSIDE') OR exit('No direct script access allowed'); - class U_Building extends U_Unit { + class U_Building extends U_Unit implements JsonSerializable { /** @var int the current level */ private $level; @@ -93,4 +93,8 @@ public function getEnergyConsumption($metPercent, $crystPercent, $deutPercent) : public function getLevel() : int { return $this->level; } + + public function jsonSerialize() { + return get_object_vars($this); + } } \ No newline at end of file diff --git a/core/classes/units/defense.php b/core/classes/units/defense.php index 1f9f654..c41192f 100644 --- a/core/classes/units/defense.php +++ b/core/classes/units/defense.php @@ -4,7 +4,7 @@ defined('INSIDE') OR exit('No direct script access allowed'); - class U_Defense extends U_Unit { + class U_Defense extends U_Unit implements JsonSerializable { /** @var int The current amount */ private $amount; @@ -53,4 +53,8 @@ public function getCostEnergy() : float { public function getAmount() : int { return $this->amount; } + + public function jsonSerialize() { + return get_object_vars($this); + } } \ No newline at end of file diff --git a/core/classes/units/fleet.php b/core/classes/units/fleet.php index 653c641..5797a68 100644 --- a/core/classes/units/fleet.php +++ b/core/classes/units/fleet.php @@ -4,7 +4,7 @@ defined('INSIDE') OR exit('No direct script access allowed'); - class U_Fleet extends U_Unit { + class U_Fleet extends U_Unit implements JsonSerializable { /** @var int The current amount */ private $amount; @@ -54,4 +54,8 @@ public function getAmount() : int { public function setAmount($amt) { $this->amount = $amt; } + + public function jsonSerialize() { + return get_object_vars($this); + } } \ No newline at end of file diff --git a/core/classes/units/planet.php b/core/classes/units/planet.php index 2aacd3f..350d510 100644 --- a/core/classes/units/planet.php +++ b/core/classes/units/planet.php @@ -4,76 +4,73 @@ defined('INSIDE') OR exit('No direct script access allowed'); - /** - * Class U_Planet - */ - class U_Planet { + class U_Planet implements JsonSerializable { - private $planetID; + protected $planetID; - private $ownerID; + protected $ownerID; - private $name; + protected $name; - private $galaxy; + protected $galaxy; - private $system; + protected $system; - private $planet; + protected $planet; - private $last_update; + protected $last_update; - private $planet_type; + protected $planet_type; - private $image; + protected $image; - private $diameter; + protected $diameter; - private $fields_current; + protected $fields_current; - private $fields_max; + protected $fields_max; - private $temp_min; + protected $temp_min; - private $temp_max; + protected $temp_max; - private $metal; + protected $metal; - private $crystal; + protected $crystal; - private $deuterium; + protected $deuterium; - private $energy_used; + protected $energy_used; - private $energy_max; + protected $energy_max; - private $metal_mine_percent; + protected $metal_mine_percent; - private $crystal_mine_percent; + protected $crystal_mine_percent; - private $deuterium_synthesizer_percent; + protected $deuterium_synthesizer_percent; - private $solar_plant_percent; + protected $solar_plant_percent; - private $fusion_reactor_percent; + protected $fusion_reactor_percent; - private $solar_satellite_percent; + protected $solar_satellite_percent; - private $b_building_id; + protected $b_building_id; - private $b_building_endtime; + protected $b_building_endtime; - private $b_tech_id; + protected $b_tech_id; - private $b_hangar_start_time; + protected $b_hangar_start_time; - private $b_tech_endtime; + protected $b_tech_endtime; - private $b_hangar_id; + protected $b_hangar_id; - private $b_hangar_plus; + protected $b_hangar_plus; - private $destroyed; + protected $destroyed; /** * U_Planet constructor. @@ -1088,4 +1085,8 @@ public function print() : void { echo ''; } + public function jsonSerialize() { + return get_object_vars($this); + } + } \ No newline at end of file diff --git a/core/classes/units/research.php b/core/classes/units/research.php index 9149e7c..1e87847 100644 --- a/core/classes/units/research.php +++ b/core/classes/units/research.php @@ -4,11 +4,11 @@ defined('INSIDE') OR exit('No direct script access allowed'); - class U_Research extends U_Unit { + class U_Research extends U_Unit implements JsonSerializable { - private $level; + protected $level; - private $costFactor; + protected $costFactor; /** * Unit constructor. @@ -63,4 +63,8 @@ public function getCostEnergy() : float { public function getLevel() : int { return $this->level; } + + public function jsonSerialize() { + return get_object_vars($this); + } } \ No newline at end of file diff --git a/core/classes/units/unit.php b/core/classes/units/unit.php index be91533..eb6353e 100644 --- a/core/classes/units/unit.php +++ b/core/classes/units/unit.php @@ -4,25 +4,25 @@ defined('INSIDE') OR exit('No direct script access allowed'); - abstract class U_Unit { + abstract class U_Unit implements JsonSerializable { /** @var int The unitID */ - private $unitID; + protected $unitID; /** @var float the metal cost */ - private $costMetal; + protected $costMetal; /** @var float the crystal cost */ - private $costCrystal; + protected $costCrystal; /** @var float the deuterium cost */ - private $costDeuterium; + protected $costDeuterium; /** @var float the energy cost */ - private $costEnergy; + protected $costEnergy; /** @var float the cost factor */ - private $costFactor; + protected $costFactor; /** * Unit constructor. @@ -85,4 +85,8 @@ public function getFactor() : float { return $this->costFactor; } + public function jsonSerialize() { + return get_object_vars($this); + } + } \ No newline at end of file