Difficult-Rocket/docs/README-en.md

162 lines
5.7 KiB
Markdown
Raw Normal View History

2022-06-13 18:24:17 +08:00
# Difficult Rocket
2022-06-08 21:07:47 +08:00
[中文](../README.md) | English
2022-06-08 21:07:47 +08:00
- [GitHub](https://github.com/shenjackyuanjie/Difficult-Rocket)
- [gitee](https://gitee.com/shenjackyuanjie/Difficult-Rocket)
2022-10-11 21:53:27 +08:00
- [discord](https://discord.gg/kWzw2JrG6M)
2023-01-01 17:58:26 +08:00
- [kook](https://kook.top/sRPjFG)
2022-06-08 21:07:47 +08:00
2023-05-16 21:06:17 +08:00
## Notice: This repo will only publish `DR SDK` updates, `DR game` updates will be published [here](https://github.com/shenjackyuanjie/DR-game)
2023-01-23 13:54:05 +08:00
<a href="https://996.icu"><img src="https://img.shields.io/badge/link-996.icu-red.svg" alt="996.icu" /></a>
2022-06-08 21:07:47 +08:00
[![Generic badge](https://img.shields.io/badge/SemVer-2.0.0-blue.svg)](https://Semver.org/)
[![Generic badge](https://img.shields.io/badge/Write_with_Python-3.8.10-blue.svg)](https://Python.org)
2023-06-22 20:13:26 +08:00
[![Generic badge](https://img.shields.io/badge/Write_with_Pyglet-2.0.8-blue.svg)](https://pyglet.org)
2023-01-01 18:00:52 +08:00
[![Generic badge](https://img.shields.io/badge/Python-_3.8_|_3.9_|_3.10_|_3.11_-blue.svg)](https://Python.org)
2022-06-08 21:07:47 +08:00
## Version
2023-02-25 12:08:12 +08:00
[About Versions](src/version.md)
[![Generic badge](https://img.shields.io/badge/Release-0.8.5.0-blue.svg)](https://github.com/shenjackyuanjie/Difficult-Rocket/releases)
[![Generic badge](https://img.shields.io/badge/Pre_Release-0.8.5.0-blue.svg)](https://github.com/shenjackyuanjie/Difficult-Rocket/releases)
[![Generic badge](https://img.shields.io/badge/Devloping-0.8.6-blue.svg)](https://github.com/shenjackyuanjie/Difficult-Rocket/releases)
2022-06-08 21:07:47 +08:00
2023-03-01 23:07:10 +08:00
[![language badge](https://stats.deeptrain.net/repo/shenjackyuanjie/Difficult-Rocket?theme=dark)](https://stats.deeptrain.net/repo/shenjackyuanjie/Difficult-Rocket?theme=dark)
2023-06-25 15:49:34 +08:00
[DR sdk latest Action build](https://nightly.link/shenjackyuanjie/Difficult-Rocket/workflows/nuitka/main)
[DR rs latest Action build](https://nightly.link/shenjackyuanjie/Difficult-Rocket/workflows/dr_rs/main)
2022-06-08 21:07:47 +08:00
## 中文README请移步 [这里](../README.md)
> Difficult-rocket is a Simple Rocket liked game build with Python (in short: rocket simulator)
## Advantage
> Lighter than Vanilla SR
2023-02-23 23:48:49 +08:00
## [Plan feature list](src/plan_features/README.md)
2022-06-08 21:07:47 +08:00
2023-03-01 16:45:42 +08:00
[YouTrack](https://difficult-rocket.youtrack.cloud/projects/8dafd498-59c0-4ce7-9900-d9292e9ed1f0)
2022-06-08 21:07:47 +08:00
## [Update logs](src/change_log/readme.md)
2022-06-08 21:07:47 +08:00
## Environment (been tested / developed on)
2022-06-08 21:07:47 +08:00
2023-01-01 20:36:55 +08:00
- `Develop platform 1 - Windows 10 x64 22H2`
2023-06-30 23:50:49 +08:00
- Python `3.8.10` / `3.10.11`
2023-06-09 16:23:32 +08:00
- pillow `9.5.0`
- psutil `5.9.5`
- rtoml `0.9.0`
- tomlkit `0.11.8`
- defusedxml `0.7.1`
- objprint `0.2.2`
- viztracer `0.15.6`
- vizplugins `0.1.3`
2023-06-30 23:50:49 +08:00
- nuitka `1.6.6`
2023-06-09 16:23:32 +08:00
- ordered-set `4.1.0`
- imageio `2.31.0`
- wheel `0.40.0`
- setuptools `67.8.0`
- setuptools-rust `1.6.0`
2022-06-08 21:07:47 +08:00
- `AMD R5 5600X`
- `AMD RX 550 4G`
2023-01-01 20:36:55 +08:00
2022-06-08 21:07:47 +08:00
## Required python modules
- `pyglet` (pre-installed V2.0.8 path:`./libs/pyglet`)
2022-06-08 21:07:47 +08:00
- `xmltodict` (pre-installed V0.12.0 path:`./libs/xmltodict`)
- `pyperclip` (pre-installed V1.8.2 path: `./libs/pyperclip`)
2023-04-20 19:54:53 +08:00
```text
# this requirement is for
# DR basic running from source
# DR build (by nuitka)
# DR contributing
# for images
# not for pypy >= 3.10
pillow >= 9.5.0; (platform_python_implementation == "PyPy" and python_version < "3.10") or platform_python_implementation == "CPython"
2023-04-20 19:54:53 +08:00
# for sys info
psutil >= 5.9.5
# for files
rtoml >= 0.9.0
tomlkit >= 0.11.8
2023-04-20 19:54:53 +08:00
defusedxml >= 0.7.1
# for debug
objprint >= 0.2.2
viztracer >= 0.15.6; platform_python_implementation != "PyPy"
vizplugins >= 0.1.3; platform_python_implementation != "PyPy"
2023-04-20 19:54:53 +08:00
# for compile
2023-06-30 23:50:49 +08:00
nuitka >= 1.6.6
2023-04-20 19:54:53 +08:00
ordered-set >= 4.1.0
imageio >= 2.31.0; (platform_python_implementation == "PyPy" and python_version < "3.10") or platform_python_implementation == "CPython"
2023-04-20 19:54:53 +08:00
wheel >= 0.40.0
setuptools >= 67.8.0
setuptools-rust >= 1.6.0
2023-04-20 19:54:53 +08:00
```
2022-06-08 21:07:47 +08:00
## thanks to
2023-02-17 22:15:24 +08:00
- Open Source Projects
- [pyglet](https://github.com/pyglet/pyglet): GUI and graphics
- `tomlkit` / `rtoml` toml parser
- `xmltodict`: translate data between xml and dict
- `pyperclip`: paste board!
- [rapier2d](https://rapier.rs/) : Phy simulate engine
- [pyo3](https://pyo3.rs/main) : Rust Python Binding
2023-02-17 22:15:24 +08:00
- Main contributors
- [@Rayawa](https://github.com/Rayawa) : Check mistake in docs & some translates
- [@rouxiao-you](https://github.com/ruoxiao-you) : Translate chinese to English
- [@Billchyi](https://github.com/Billchyi) : Check mistake in docs
- [@MSDNicrosoft](https://github.com/MSDNicrosoft) : Optimize code
2022-06-08 21:07:47 +08:00
## Other links
## About License
#### https://creativecommons.org/licenses/by-nc-sa/4.0/
#### Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
You are free to:
Share — copy and redistribute the material in any medium or format
Adapt — remix, transform, and build upon the material
The licensor cannot revoke these freedoms as long as you follow the license terms.
Under the following terms:
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You
may do so in any reasonable manner, but not in any way
that suggests the licensor endorses you or your use.
NonCommercial — You may not use the material for commercial purposes.
ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same
license as the original.
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from
doing anything the license permits.
Notices:
You do not have to comply with the license for elements of the material in the public domain or where your use is
permitted by an applicable exception or limitation.
No warranties are given. The license may not give you all the permissions necessary for your intended use. For example,
other rights such as publicity, privacy, or moral rights may limit how you use the material.