Skip to content

Commit

Permalink
V0.5.0 commit
Browse files Browse the repository at this point in the history
lazy
  • Loading branch information
shenjackyuanjie committed Aug 13, 2021
1 parent 0b4a4b6 commit 25299a5
Show file tree
Hide file tree
Showing 48 changed files with 1,933 additions and 2,094 deletions.
9 changes: 7 additions & 2 deletions Difficult_Rocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import os
import sys
import traceback

## TODO 默认位置配置文件+可自定义工作路径

Expand All @@ -30,5 +31,9 @@

os.chdir(sys.path[0]) # TODO 没做完.ing
print(hi)
game = main.Game()
game.start()
try:
game = main.Game()
game.start()
except:
error = traceback.format_exc()
print(error)
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
# Difficult-Rocket
# [Difficult-Rocket(github)](https://github.com/shenjackyuanjie/Difficult-Rocket)
# [Difficult-Rocket(gitee)](https://gitee.com/shenjackyuanjie/Difficult-Rocket)

### Version
## Version

0.4.3 (developing DEMO)
- (developing DEMO)(coming s∞n)
- 0.4.6 release
- 0.5.0 developing

[Update logs](https://github.com/shenjackyuanjie/Difficult-Rocket/blob/main/docs/update_logs.md)

[Plan feature list](https://github.com/shenjackyuanjie/Difficult-Rocket/tree/main/docs/plan_features)

中文README请移步 [这里](https://github.com/shenjackyuanjie/Difficult-Rocket/blob/main/docs/README-cn.md)
## 中文README请移步 [这里](./docs/README-cn.md)

> It's a Simple Rocket liked game build with Python
## Advantage

None. Not even one!

(Because we are still writing the description, coming s∞n)
> Lighter than Vanilla SR
## Planed feature
## [Plan feature list](./docs/plan_features)

- All In [here](https://github.com/shenjackyuanjie/Difficult-Rocket/projects)
## [Update logs](./docs/update_logs.md)

## Environment (been tested / develop on)

-
- `Develop platform 1 - Windows 10`
- `Python 3.8.7`
- `Python 3.8.10`
- `Windows10 x64`
- `Pyglet 1.5.16`
- `Json5 0.9.5`
Expand All @@ -43,9 +40,10 @@ None. Not even one!

## Required python modules

- json5 (pre-installed V0.9.5 path:`./bin/libs/json5`)
- pyglet (pre-installed V1.5.16 path:`./bin/libs/pyglet`)
- json5 (pre-installed V0.9.6 path:`./bin/libs/json5`)
- pyglet (pre-installed V1.5.18 path:`./bin/libs/pyglet`)
- pillow
- semver

## thanks to

Expand All @@ -54,6 +52,8 @@ None. Not even one!
- [@Rayawa](https://github.com/Rayawa) : check mistake in docs
- [@Billchyi](https://github.com/Billchyi) : check mistake in docs

## Other links

## About License

#### https://creativecommons.org/licenses/by-nc-sa/4.0/
Expand Down
21 changes: 18 additions & 3 deletions bin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
github: @shenjackyuanjie
"""
# import folders
#
from .new_thread import new_thread
from .tools import config

# import in this folder
__all__ = [
'new_thread',
'config'
]


@new_thread('think')
def think(some_thing_to_think):





gotcha = 'think_result'
return gotcha
Loading

0 comments on commit 25299a5

Please sign in to comment.