shenjackyuanjie
369b675963
modified: Difficult_Rocket/api/Exp/command.py modified: Difficult_Rocket/client/__init__.py modified: Difficult_Rocket/client/fps/fps_log.py modified: Difficult_Rocket/command/api.py modified: Difficult_Rocket/command/line.py modified: Difficult_Rocket/utils/__init__.py modified: Difficult_Rocket/utils/new_thread.py modified: Difficult_Rocket/utils/tools.py modified: Difficult_Rocket/utils/translate.py new file: try/mcdr/command_tree.py
98 lines
2.6 KiB
Python
98 lines
2.6 KiB
Python
# -------------------------------
|
||
# Difficult Rocket
|
||
# Copyright © 2021-2022 by shenjackyuanjie
|
||
# All rights reserved
|
||
# -------------------------------
|
||
|
||
"""
|
||
writen by shenjackyuanjie
|
||
mail: 3695888@qq.com
|
||
github: @shenjackyuanjie
|
||
gitee: @shenjackyuanjie
|
||
"""
|
||
|
||
# system function
|
||
import re
|
||
|
||
from typing import Union, Optional, Type, Tuple, List
|
||
|
||
# DR
|
||
from Difficult_Rocket.api.Exp.command import *
|
||
|
||
search_re = re.compile(r'(?<!\\)"')
|
||
|
||
|
||
class CommandText:
|
||
"""
|
||
CommandLine返回的字符,可以用来搜索
|
||
"""
|
||
|
||
def __init__(self, text: str):
|
||
self.plain_command = text
|
||
self.text = text
|
||
self.error = False
|
||
self.value_dict = {}
|
||
self.value_list = []
|
||
self.command_tree = {}
|
||
tree_list = text.split(' ')
|
||
|
||
self.tree_node = tree_list
|
||
|
||
@staticmethod
|
||
def parse_text(raw_text: str) -> str:
|
||
q_mark_iter = re.finditer('\\"', raw_text)
|
||
for q_mark in q_mark_iter:
|
||
...
|
||
|
||
@staticmethod
|
||
def parse_command(raw_command: Union[str, "CommandText"]) -> Tuple[List[str], Union[CommandParseError, type(True)]]:
|
||
spilt_list = re.split(r'', raw_command)
|
||
done_list = [re.sub(r'\\"', '"', raw_text) for raw_text in spilt_list]
|
||
return done_list, True # 完事了
|
||
|
||
def find(self, text: str) -> Union[str, bool]:
|
||
finding = re.match(text, self.text)
|
||
if finding:
|
||
return finding.group()
|
||
else:
|
||
return False
|
||
|
||
def match(self, text: str) -> bool:
|
||
finding = re.match(text, self.text)
|
||
if finding: # 如果找到了
|
||
try:
|
||
next_find = self.text[finding.span()[1]]
|
||
# 这里try因为可能匹配到的是字符串末尾
|
||
except IndexError:
|
||
next_find = ' '
|
||
# 直接过滤掉
|
||
if next_find == ' ':
|
||
self.text = self.text[finding.span()[1] + 1:]
|
||
return True
|
||
# 将匹配到的字符串,和最后一个匹配字符后面的字符删除(相当暴力的操作)
|
||
return False
|
||
else:
|
||
return False
|
||
|
||
def value(self,
|
||
name: str = None,
|
||
split: str = ' ',
|
||
middle: list = ('\'', '\"')):
|
||
pass
|
||
|
||
def get_all(self, value_name: str):
|
||
self.value_list.append(self.text)
|
||
if value_name:
|
||
self.value_dict[value_name] = self.text
|
||
self.text = ''
|
||
return self.value_list[-1]
|
||
|
||
def get_value(self):
|
||
pass
|
||
|
||
def __str__(self):
|
||
return str(self.text)
|
||
|
||
def __int__(self):
|
||
return int(self.text)
|