diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..cb7465f8291685dea5dab6d68ce5f188529e873a --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.vscode +.idea +.DS_Store +__pycache__ +*.pyc +*.zip +*.out +bin/ +debug/ +release/ \ No newline at end of file diff --git a/README.md b/README.md index 6b9996b0a199bec7ed921705339656de86be8998..819bcfc19998890b8861c08f76143fb3a8917ab9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,131 @@ # skill_tree_cloud_design_patterns -云开发设计模式 \ No newline at end of file +`云开发设计模式技能树`是[技能森林](https://gitcode.net/csdn/skill_tree)的一部分。 + +## 编辑环境初始化 + +``` +pip install -r requirements.txt +``` + +## 目录结构说明 +技能树编辑仓库的 data 目录是主要的编辑目录,目录的结构是固定的 + +* 技能树`骨架文件`: + * 位置:`data/tree.json` + * 说明:该文件是执行 `python main.py` 生成的,请勿人工编辑 +* 技能树`根节点`配置文件: + * 位置:`data/config.json` + * 说明:可编辑配置关键词等字段,其中 `node_id` 字段是生成的,请勿编辑 +* 技能树`难度节点`: + * 位置:`data/xxx`,例如: `data/1.云开发设计模式初阶` + * 说明: + * 每个技能树有 3 个等级,目录前的序号是必要的,用来保持文件夹目录的顺序 + * 每个目录下有一个 `config.json` 可配置关键词信息,其中 `node_id` 字段是生成的,请勿编辑 +* 技能树`章节点`: + * 位置:`data/xxx/xxx`,例如:`data/1.云开发设计模式初阶/1.云开发设计模式简介` + * 说明: + * 每个技能树的每个难度等级有 n 个章节,目录前的序号是必要的,用来保持文件夹目录的顺序 + * 每个目录下有一个 `config.json` 可配置关键词信息,其中 `node_id` 字段是生成的,请勿编辑 +* 技能树`知识节点`: + * 位置:`data/xxx/xxx`,例如:`data/1.云开发设计模式初阶/1.云开发设计模式简介` + * 说明: + * 每个技能树的每章有 n 个知识节点,目录前的序号是必要的,用来保持文件夹目录的顺序 + * 每个目录下有一个 `config.json` + * 其中 `node_id` 字段是生成的,请勿编辑 + * 其中 `keywords` 可配置关键字字段 + * 其中 `children` 可配置该`知识节点`下的子树结构信息,参考后面描述 + * 其中 `export` 可配置该`知识节点`下的导出习题信息,参考后面描述 + +## `知识节点` 子树信息结构 + +例如 `data/1.云开发设计模式初阶/1.云开发设计模式简介/1.HelloWorld/config.json` 里配置对该知识节点子树信息结构,这个配置是可选的: +```json +{ + // ... + + "children": [ + { + "XX开发入门": { + "keywords": [ + "XX开发", + ], + "children": [], + "keywords_must": [ + "XX" + ], + "keywords_forbid": [] + } + } + ], +} +``` + +## `知识节点` 的导出习题编辑 + +例如 `data/1.云开发设计模式初阶/1.云开发设计模式简介/1.HelloWorld/config.json` 里配置对该知识节点导出的习题 + +```json +{ + // ... + "export": [ + "helloworld.json" + ] +} +``` + +helloworld.json 的格式如下: +```bash +{ + "type": "code_options", + "author": "xxx", + "source": "helloworld.md", + "notebook_enable": false, + "exercise_id": "xxx" +} +``` + +其中 +* "type": "code_options" 表示是一个选择题 +* "author" 可以放作者的 CSDN id, +* "source" 指向了习题 MarkDown文件 +* "notebook_enable" 目前都是false +* "exercise_id" 是工具生成的,不填 + + +习题格式模版如下: + +````mardown +# {标题} + +{习题描述} + +以下关于上述游戏代码说法[正确/错误]的是? + +## 答案 + +{目标选项} + +## 选项 + +### A + +{混淆选项1} + +### B + +{混淆选项2} + +### C + +{混淆选项3} + +```` + +## 技能树合成 + +在根目录下执行 `python main.py` 会合成技能树文件,合成的技能树文件: `data/tree.json` +* 合成过程中,会自动检查每个目录下 `config.json` 里的 `node_id` 是否存在,不存在则生成 +* 合成过程中,会自动检查每个知识点目录下 `config.json` 里的 `export` 里导出的习题配置,检查是否存在`exercise_id` 字段,如果不存在则生成 +* 在 节 目录下根据需要,可以添加一些子目录用来测试代码。 +* 开始游戏入门技能树构建之旅,GoodLuck! \ No newline at end of file diff --git "a/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/config.json" "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..7cb95e169f05bc1a579a752ed5ba53c2bed9e86a --- /dev/null +++ "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/config.json" @@ -0,0 +1,11 @@ +{ + "node_id": "cloud_design_patterns-2724d556a7be4b5d8cb0052b3428b1ed", + "keywords": [], + "children": [], + "export": [ + "helloworld.json" + ], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git "a/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/helloworld.json" "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/helloworld.json" new file mode 100644 index 0000000000000000000000000000000000000000..fd6f6a268df0c7d083c13f95eb651dfaac25c147 --- /dev/null +++ "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/helloworld.json" @@ -0,0 +1,7 @@ +{ + "type": "code_options", + "author": null, + "source": "helloworld.md", + "notebook_enable": false, + "exercise_id": "85db85c744e5454a8cc666c7c740ac93" +} \ No newline at end of file diff --git "a/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/helloworld.md" "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/helloworld.md" new file mode 100644 index 0000000000000000000000000000000000000000..a447c184c7aaa9ee5f088c42158140caf4682c08 --- /dev/null +++ "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/1.HelloWorld/helloworld.md" @@ -0,0 +1,21 @@ +# {在此填写标题} + +{在此填写题目描述} + +## 答案 + +{在此填写答案} + +## 选项 + +### A + +{在此填写选项A} + +### B + +{在此填写选项B} + +### C + +{在此填写选项C} diff --git "a/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/config.json" "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..66d378dd45e155cf0d4c9393a80e49da4709c492 --- /dev/null +++ "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\205\245\351\227\250/config.json" @@ -0,0 +1,7 @@ +{ + "node_id": "cloud_design_patterns-7d0568a7a0104676903601ed52edb247", + "keywords": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git "a/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/config.json" "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..faef4131cee3153c4c0482decbb331a32b9724e0 --- /dev/null +++ "b/data/1.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\345\210\235\351\230\266/config.json" @@ -0,0 +1,7 @@ +{ + "node_id": "cloud_design_patterns-4258d53abfba420a8375a94cc0013694", + "keywords": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git "a/data/2.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\344\270\255\351\230\266/config.json" "b/data/2.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\344\270\255\351\230\266/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..002441c379c2d9446011d38dee4398d5edcabbcc --- /dev/null +++ "b/data/2.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\344\270\255\351\230\266/config.json" @@ -0,0 +1,7 @@ +{ + "node_id": "cloud_design_patterns-7196e2698860444abd40546976b4f834", + "keywords": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git "a/data/3.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\351\253\230\351\230\266/config.json" "b/data/3.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\351\253\230\351\230\266/config.json" new file mode 100644 index 0000000000000000000000000000000000000000..0b164a2d09ee56a1f693b881c4d8dffbeb78ca1e --- /dev/null +++ "b/data/3.\344\272\221\345\274\200\345\217\221\350\256\276\350\256\241\346\250\241\345\274\217\351\253\230\351\230\266/config.json" @@ -0,0 +1,7 @@ +{ + "node_id": "cloud_design_patterns-716bb5abc3b74806a1f45756326c8334", + "keywords": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git a/data/config.json b/data/config.json new file mode 100644 index 0000000000000000000000000000000000000000..1627d365da14101739c16087a57a10b8e33b00ee --- /dev/null +++ b/data/config.json @@ -0,0 +1,8 @@ +{ + "tree_name": "cloud_design_patterns", + "keywords": [], + "node_id": "cloud_design_patterns-f03dcec3f17449049131ef7c9df0bfe8", + "keywords_must": [], + "keywords_forbid": [], + "group": 0 +} \ No newline at end of file diff --git a/data/tree.json b/data/tree.json new file mode 100644 index 0000000000000000000000000000000000000000..2b87593c065272f45cbaf417494418ad08f48465 --- /dev/null +++ b/data/tree.json @@ -0,0 +1,63 @@ +{ + "cloud_design_patterns": { + "node_id": "cloud_design_patterns-f03dcec3f17449049131ef7c9df0bfe8", + "keywords": [], + "children": [ + { + "云开发设计模式初阶": { + "node_id": "cloud_design_patterns-4258d53abfba420a8375a94cc0013694", + "keywords": [], + "children": [ + { + "云开发设计模式入门": { + "node_id": "cloud_design_patterns-7d0568a7a0104676903601ed52edb247", + "keywords": [], + "children": [ + { + "HelloWorld": { + "node_id": "cloud_design_patterns-2724d556a7be4b5d8cb0052b3428b1ed", + "keywords": [], + "children": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 + } + } + ], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 + } + } + ], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 + } + }, + { + "云开发设计模式中阶": { + "node_id": "cloud_design_patterns-7196e2698860444abd40546976b4f834", + "keywords": [], + "children": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 + } + }, + { + "云开发设计模式高阶": { + "node_id": "cloud_design_patterns-716bb5abc3b74806a1f45756326c8334", + "keywords": [], + "children": [], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 + } + } + ], + "keywords_must": [], + "keywords_forbid": [], + "group": 0 + } +} \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000000000000000000000000000000000000..5ec2ec41357670f44ac8059b03a5d447fea73fd8 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +from skill_tree.tree import TreeWalker + +if __name__ == '__main__': + walker = TreeWalker("data", "cloud_design_patterns", + "云开发设计模式", ignore_keywords=True) + walker.walk() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..0abd88a12cb668d836c3bb780e4e88573f4d1d81 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +.pre_commit +skill-tree-parser \ No newline at end of file