├── .gitignore ├── FAQ.md ├── LICENSE ├── README.md ├── docs ├── preserve-cd-1.pdf └── preserve-cd-2.pdf └── faq └── 仙剑DOS版密码图.webp /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | /.vscode/* 131 | -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- 1 | # 关于运行 DOS 游戏的常见问题和解答 2 | 3 | ## 《仙剑》开始时要求输入颜色密码 4 | 5 | 参考目录 `/faq` 下的图片 `仙剑DOS版密码图.webp`。 6 | 7 | ## 《水浒传》开始时要求输入数字密码 8 | 9 | 只需输入任意4个数字,然后按 tab 键即可。 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 绝版游戏保护工程 2 | 3 | 今天互联网上的内容,由于各种原因,正在以越来越快的速度消失,而新一代网民们,却并没有备份和记录的习惯及意识。不远的将来,会有一天,当你特别想找一个东西却搜尽互联网都找不到时就来麻烦了,本项目立足于将这样的损失最小化。 4 | 5 | ## CD1:DOS 经典游戏 6 | 7 | 本光碟收录了 64 款几近绝版的精品 DOS 游戏,大部分游戏现在网上都很难找到,或者找到也是捆版了病毒和流氓软件。虽然 DOSBOX 可以模拟 DOS 游戏,但是不同的游戏设置不同,有的需要加载光碟,有的需要配置好声卡参数,有的游戏还需要特定的 DOSBOX 版本才能运行。 8 | 9 | 现在有很多什么 1800 个 dos 游戏之类的合集,说实话,30GB 的内容下载下来你不知道怎么玩,你不知道玩啥。这个光碟只有 650MB 的 CD-R 容量,却为你精选了 64 款最值得玩的 DOS 游戏,每个游戏配上截图和文字介绍,包括制作方,发行方,游戏类型,简介等,怀旧就是要有个气氛,才能有更高的娱乐和收藏价值。 10 | 11 | 光碟介绍: 12 | 13 | - [CD1 光盘介绍](docs/preserve-cd-1.pdf) 14 | 15 | 光碟下载: 16 | 17 | - 谷歌:[绝版游戏保护工程1.iso](https://drive.google.com/drive/folders/1FA5Md3wEz9ha4ThEfCcd8OAvK3YTHCfR?usp=drive_link) 18 | - 度盘:地址 `s/10uTA5L5Nay1aKpqkvACM-A`,口令 `f08f` 19 | - 115:地址 `s/sw3u78i3ze9` ,口令 `p254` 20 | - 天翼云网盘:地址`https://cloud.189.cn/t/Ef2IjyuuemIn`,口令:`jj8t` 21 | - BT: [磁力链接](https://tinyurl.com/y2ba4dxs) 22 | 23 | MD5SUM:66275d47779d68614232a3e5d524af4a 24 | 25 | 避免机器人扫描,读盘地址前请自己拼接 `https://pan.baidu.com/` ,115 自行添加 `https://115.com/` 即可。 26 | 27 | 28 | ## CD2:绝版经典小游戏 29 | 30 | Epic/Steam 上游戏买了一大堆,从第一页看到最后一页,没有一个想玩?免费手游试了好几个,不氪金就打不过小学生?想玩会游戏发现不是玩不动就是自取其辱?欢迎尝试《绝版经典小游戏》,本光碟包含一百个简单又耐玩的小游戏(Windows + Flash),上手容易,无需充值,百玩不腻。 31 | 32 | 光碟介绍: 33 | 34 | - [CD2 光碟介绍](docs/preserve-cd-2.pdf) 35 | 36 | 光碟下载: 37 | 38 | - 谷歌:[绝版游戏保护工程2.iso](https://drive.google.com/drive/folders/1pL994kWUs0-yV2u_p_DZkPKuhosPG_OW?usp=drive_link) 39 | - 度盘:地址 `s/1V8oN-2GyX6ku3yA247IURw`, 口令 `kpor` 40 | - 115:地址 `s/sw30ctq3ze9` ,口令 `vb46` 41 | - 天翼云网盘:地址`https://cloud.189.cn/t/B7jiUzIn63aa`,口令:`8xrr` 42 | - BT: [磁力链接](https://tinyurl.com/y38tsslf) 43 | 44 | MD5SUM:594091d64d05908fb3e38d2fda1d36e5 45 | 46 | 避免机器人扫描,读盘地址前请自己拼接 `https://pan.baidu.com/` ,115 自行添加 `https://115.com/` 即可。 47 | 48 | 49 | #### BT:[磁力链接(CD1+CD2)](https://tinyurl.com/yxk4np5n) 50 | 51 | ## 增刊:老游戏攻略合集 52 | 53 | 雷锋珍藏的一些得来不易的老游戏攻略,包含:DOS游戏,红白机,SFC/MD 等主机游戏机: 54 | 55 | - 谷歌:[老游戏攻略合集.iso](https://drive.google.com/file/d/12G-go9FSBwaE0o9JdNaoiTGrddX1kfwM/view?usp=sharing) 56 | - 度盘:地址 `s/1ZyOI2Phv6nWR_18l1uWLLg` ,口令 `8869` 57 | - 115:地址 `s/sw6n61k3ze9` ,口令 `8866` 58 | 59 | ## Credit 60 | 61 | 欢迎关注: 62 | 63 | - 我的博客:https://skywind.me/blog 64 | - 个人推特:https://x.com/skywind3000 65 | 66 | 以及兄弟项目《[绝版软件保护工程](https://github.com/skywind3000/preserve-iso)》,收录各种经典工具。 67 | 68 | -------------------------------------------------------------------------------- /docs/preserve-cd-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywind3000/preserve-cd/4b5ff0a5eaef09c10b45b30fba42d3f3177aa9cc/docs/preserve-cd-1.pdf -------------------------------------------------------------------------------- /docs/preserve-cd-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywind3000/preserve-cd/4b5ff0a5eaef09c10b45b30fba42d3f3177aa9cc/docs/preserve-cd-2.pdf -------------------------------------------------------------------------------- /faq/仙剑DOS版密码图.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skywind3000/preserve-cd/4b5ff0a5eaef09c10b45b30fba42d3f3177aa9cc/faq/仙剑DOS版密码图.webp --------------------------------------------------------------------------------