2024-07-29 02:26:16 +00:00
|
|
|
from parse.StoryMap import XAST_ParseTool, storyline_list2map
|
|
|
|
from parse.ast_load import global_ast_path
|
2024-07-14 10:18:14 +00:00
|
|
|
|
|
|
|
|
2024-07-29 02:26:16 +00:00
|
|
|
astx = XAST_ParseTool(global_ast_path)
|
|
|
|
storys = astx.story_list
|
|
|
|
storys_map = storyline_list2map(storys)
|
|
|
|
astx.storylines_plait(storys_map)
|
|
|
|
print(storys_map)
|