diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4dc197 --- /dev/null +++ b/.gitignore @@ -0,0 +1,145 @@ +############################# +# Python +############################# + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Cython debug symbols +cython_debug/ + +# Django stuff +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff +instance/ +.webassets-cache + +# Scrapy stuff +.scrapy/ + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +*.ipynb_checkpoints +.ipynb_checkpoints/ + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# Poetry / Pipenv / PDM locks (optional) +poetry.lock +#Pipfile.lock +pdm.lock + +# PEP 582; used by e.g. pdm +__pypackages__/ + +# Celery +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# dotenv (env files). Keep examples. +*.env +*.env.* +!.env.example + +# Type checkers / linters caches +.mypy_cache/ +.pytype/ +.pyre/ +.pyright/ +.ruff_cache/ + +# Editors / IDEs +.vscode/ +.vscode/* +!.vscode/settings.json +!.vscode/extensions.json +.idea/ +*.iml + +# OS generated files +.DS_Store +Thumbs.db + +# Logs and caches +*.log +*.cache + +# Temporary files +~$* +*.tmp +*.temp + +TODO \ No newline at end of file diff --git a/README.md b/README.md index e69de29..c231b07 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,5 @@ +从小一直是修仙网文的读者,从最早最早的蜀山仙侠传,到比较新的赤心巡天,修仙网文陪伴了我非常多的时间。 +由于我本人也是游戏AI行业的工作者,对LLM这两年的进步感触很深。我认为,现在的LLM智能水平,已经足够支持起来一些仙侠风格的世界模拟了。 +不是像斯坦福小镇那样的纯粹的研究,而是能给玩家提供代入感和沉浸感的实际世界。 +有一些游戏公司其实有宣扬过自己可以实现类似的功能,但是最后都沦为了纯粹的宣传工具。 +我想了下,不如干脆自己来干吧。先动手,动起手来比什么都强。 diff --git a/src/classes/action.py b/src/classes/action.py new file mode 100644 index 0000000..e69de29 diff --git a/src/classes/avatar.py b/src/classes/avatar.py new file mode 100644 index 0000000..e69de29 diff --git a/src/classes/tile.py b/src/classes/tile.py new file mode 100644 index 0000000..e69de29