gries/pokemath
最新稳定版本:19.10.31.1
Composer 安装命令:
composer require gries/pokemath
包简介
A PHP library to make calculation in base pokemon
README 文档
README
This PHP-Library can be used to make calculations base pokemon.
Installation
Pokemath can be installed via. Composer:
composer require "gries/pokemath"
Rebuild the classes
In data/pokemon.csv all pokemon-data is stored. (701 pokemon) To rebuild the classes execute.
php data/generator.php
Usage
<?php use gries\Pokemath\Numbers\Ivysaur; use gries\Pokemath\Numbers\Jigglypuff; use gries\Pokemath\Numbers\Snorlax; use gries\Pokemath\Numbers\Venusaur; use gries\Pokemath\Numbers\Wigglytuff; require_once __DIR__ . '/../vendor/autoload.php'; // small calculation $ivy = new Ivysaur(); $venu = new Venusaur(); echo $ivy->add($venu)->value()."\n"; // -> charmander // big calculation $jiggly = new Jigglypuff(); $wiggly = new Wigglytuff(); echo $jiggly->multiply($wiggly)->value()."\n"; // -> ivysaur-chespin // make it even bigger $snorlax = new Snorlax(); echo $snorlax ->multiply($snorlax) ->multiply($snorlax) ->multiply($snorlax) ->multiply($snorlax) ->multiply($snorlax) ->value()."\n"; // -> nidorino-sandslash-klinklang-drifloon-gothita // make calculations $calculator = new \gries\Pokemath\PokeCalculator(); $expression = '(ivysaur + ivysaur) * ivysaur#ivysaur'; $result = $calculator->calculate('(ivysaur + ivysaur) * ivysaur#ivysaur'); echo $expression."\n"; // -> (ivysaur + ivysaur) * ivysaur#ivysaur echo $calculator->translate($expression); echo ' = '.$result->value(). '('.$result->asDecimalString().")\n"; // -> (1 + 1) * 701 = venusaur#venusaur(1402)
Author
License
For the full copyright and license information, please view the LICENSE file that was distributed with this source code.
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-20