This commit is contained in:
bridge
2025-08-18 23:20:53 +08:00
parent 2e84592bc3
commit 60ad42aea9
5 changed files with 150 additions and 0 deletions

145
.gitignore vendored Normal file
View File

@@ -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

View File

@@ -0,0 +1,5 @@
从小一直是修仙网文的读者,从最早最早的蜀山仙侠传,到比较新的赤心巡天,修仙网文陪伴了我非常多的时间。
由于我本人也是游戏AI行业的工作者对LLM这两年的进步感触很深。我认为现在的LLM智能水平已经足够支持起来一些仙侠风格的世界模拟了。
不是像斯坦福小镇那样的纯粹的研究,而是能给玩家提供代入感和沉浸感的实际世界。
有一些游戏公司其实有宣扬过自己可以实现类似的功能,但是最后都沦为了纯粹的宣传工具。
我想了下,不如干脆自己来干吧。先动手,动起手来比什么都强。

0
src/classes/action.py Normal file
View File

0
src/classes/avatar.py Normal file
View File

0
src/classes/tile.py Normal file
View File