totengeist/iv-parsers
最新稳定版本:v0.2.0
Composer 安装命令:
composer require totengeist/iv-parsers
包简介
Introversion save file parsers.
README 文档
README
This library aims to provide parsers for common Introversion file formats. It is currently focused on the early access game The Last Starship, but will hopefully include other parsers in the future.
This library is developed by the community. We are not affiliated with Introversion Software.
Installation
Use the package manager composer to install IVParsers.
composer require totengeist/iv-parsers
Usage
IVParsers currently supports .ship and .space files for The Last Starship. Files can be loaded, modified and saved.
$ship = ShipFile(file_get_contents('science-vessel.ship')); $ship->setName('Crusher'); $ship->setAuthor('Totengeist'); file_put_contents('Crusher.ship', $ship->toString());
$save = SaveFile(file_get_contents('Fun Time.space')); $save->getSaveVersion(); TiddletBug::resolveBug($save); file_put_contents('Fun Time.space', $save->toString());
Support
For questions not related to contributing directly to the project, please reach out on Discord.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
统计信息
- 总下载量: 1.2k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-02-10