graph LR
F[Text File]
O[Origin Text List]
P[PreLoad Cache]
F-->|Load| O -->|PreLoad| P
Run
graph LR
O[Origin Text List]
P[PreLoad Cache]
C[Each Command]
O -->|Foreach Text| P -->|Combination| C
Hope
Complete the parsing of commands before running them
Finish parsing and output a debug file last_story.txt(or like {story_name}_{time}_debug.txt) in _debug folder
at the same time
Preload
graph LR
F[Text File]
O[Origin Text List]
P[PreLoad Cache]
C[Parsed Commands List]
L[Last Story File]
F-->|Load| O -->|PreLoad| C -->|OutPut| L
O -->|PreLoad| P--> C
Now
Preload
Run
Hope
last_story.txt
(or like{story_name}_{time}_debug.txt
) in_debug
folder at the same timePreload
Run
for each command in
Parsed Commands List