| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?php
- require_once($path["entity"] . "Entity.php");
- require_once($path["entity"] . "K_Skill_Level.php");
- require_once($path["entity"] . "K_Effect.php");
- /**
- * Monster skill.
- *
- * Represents an object from the table 'k_skill'.
- */
- class K_Skill extends Entity{
- /**
- * Skill identifier.
- */
- public $id;
- /**
- * Skill name.
- */
- public $name;
- /**
- * Skill description.
- */
- public $description;
- /**
- * Skill order.
- */
- public $slot;
- /**
- * Skill cooldown turns.
- */
- public $cooltime;
- /**
- * Number of hits.
- */
- public $hits;
- /**
- * Wether the skill is passive or not.
- */
- public $passive;
- /**
- * Wether the skill is AOE.
- */
- public $aoe;
- /**
- * Skill max level.
- */
- public $max_level;
- /**
- * Skill formula.
- */
- public $multiplier_formula;
- /**
- * The {@see Monster_Skill} upgrading this one.
- */
- public $upgrade;
- /**
- * Available {@see K_Skill_Level}
- */
- public $level = [];
- /**
- * Skill {@see K_Effect}s
- */
- public $effect = [];
- /**
- * Constructor.
- *
- * Searches the database and retrieves the information about the
- * skill, populating it and it's items.
- *
- * @param SQLite3 $db Connection to the database.
- * @param int $id Skill identifier.
- */
- public function __construct($db, $id){
- global $path;
- parent::__construct($db);
- $s =
- "SELECT " .
- " id, " .
- " name, " .
- " description, " .
- " slot, " .
- " cooltime, " .
- " hits, " .
- " passive, " .
- " aoe, " .
- " max_level, " .
- " multiplier_formula " .
- "FROM k_skill " .
- "WHERE id = $id; ";
- $q = $this->db->query($s);
- $r = $q->fetchArray(SQLITE3_ASSOC);
- $this->id = $r["id"];
- $this->name = $r["name"];
- $this->description = $r["description"];
- $this->slot = $r["slot"];
- $this->cooltime = $r["cooltime"];
- $this->hits = $r["hits"];
- $this->passive = $r["passive"];
- $this->aoe = $r["aoe"];
- $this->max_level = $r["max_level"];
- $this->multiplier_formula = $r["multiplier_formula"];
- $s =
- "SELECT " .
- " skill, " .
- " level " .
- "FROM k_skill_level " .
- "WHERE skill = " . $this->id . " " .
- "ORDER BY level; ";
- $q = $this->db->query($s);
- while ($r = $q->fetchArray(SQLITE3_ASSOC)){
- array_push($this->level, new K_Skill_Level($this->db, $r["skill"], $r["level"]));
- }
- $s =
- "SELECT effect " .
- "FROM k_skill_effect " .
- "WHERE skill = " . $this->id . "; ";
- $q = $this->db->query($s);
- while ($r = $q->fetchArray(SQLITE3_ASSOC)){
- array_push($this->effect, new K_Effect($this->db, $r["effect"]));
- }
- }
- /**
- * Gets the path to the skill image. The image must be in the
- * img/skill/ directory, and its name must be the set id,
- * padded with '0' to 8 digits, and the extension must be '.png'.
- *
- * @return Path to the image, or a path to a fixed unknown image if it
- * doesn't exist.
- */
- public function get_image(){
- global $base_dir;
- global $path;
- if (file_exists($base_dir . "img/skill/" . str_pad($this->id, 8, '0', STR_PAD_LEFT) . ".png")){
- return $path["img"]["skill"] . str_pad($this->id, 8, '0', STR_PAD_LEFT) . ".png";
- }
- else{
- return $path["img"]["root"] . "unknown.png";
- }
- }
- }
- ?>
|