class StateMachine:
def __init__(self):
self.handlers = {} # 狀態(tài)轉(zhuǎn)移函數(shù)字典
self.startState = None # 初始狀態(tài)
self.endState = [] # 最終狀態(tài)集合
# 參數(shù)name為狀態(tài)名,handler為狀態(tài)轉(zhuǎn)移函數(shù),end_state表明是否為最終狀態(tài)
def add_state(self, name, handler, end_state=0):
name = name.upper()
self.handlers[name] = handler
if end_state:
self.endState.append(name)
def set_start(self, name):
self.startState = name.upper()
def run(self, cargo):
try:
handler = self.handlers[self.startState]
except:
raise Exception("must call .set_start() before .run()")
if not self.endState:
raise Exception("at least one state must be an end_state")
while True:
(newState, cargo) = handler(cargo)
if newState.upper() in self.endState:
print("reached ", newState)
break
else:
handler = self.handlers[newState.upper()]
# 有限狀態(tài)集合
positive_adjectives = ["great", "super", "fun", "entertaining", "easy"]
negative_adjectives = ["boring", "difficult", "ugly", "bad"]
# 自定義狀態(tài)轉(zhuǎn)變函數(shù)
def start_transitions(txt):
# 用指定分隔符對(duì)字符串進(jìn)行切片,默認(rèn)為空格分割,參數(shù)num指定分割次數(shù)
# 將"Python is XXX"語句分割為"Python"和之后的"is XXX"
splitted_txt = txt.split(None, 1)
word, txt = splitted_txt if len(splitted_txt) > 1 else (txt, "")
if word == "Python":
newState = "Python_state" # 如果第一個(gè)詞是Python則可轉(zhuǎn)換到"Python狀態(tài)"
else:
newState = "error_state" # 如果第一個(gè)詞不是Python則進(jìn)入終止?fàn)顟B(tài)
return (newState, txt) # 返回新狀態(tài)和余下的語句txt
def python_state_transitions(txt):
splitted_txt = txt.split(None, 1)
word, txt = splitted_txt if len(splitted_txt) > 1 else (txt, "")
if word == "is":
newState = "is_state"
else:
newState = "error_state"
return (newState, txt)
def is_state_transitions(txt):
splitted_txt = txt.split(None, 1)
word, txt = splitted_txt if len(splitted_txt) > 1 else (txt, "")
if word == "not":
newState = "not_state"
elif word in positive_adjectives:
newState = "pos_state"
elif word in negative_adjectives:
newState = "neg_state"
else:
newState = "error_state"
return (newState, txt)
def not_state_transitions(txt):
splitted_txt = txt.split(None, 1)
word, txt = splitted_txt if len(splitted_txt) > 1 else (txt, "")
if word in positive_adjectives:
newState = "neg_state"
elif word in negative_adjectives:
newState = "pos_state"
else:
newState = "error_state"
return (newState, txt)
if __name__ == "__main__":
m = StateMachine()
m.add_state("Start", start_transitions) # 添加初始狀態(tài)
m.add_state("Python_state", python_state_transitions)
m.add_state("is_state", is_state_transitions)
m.add_state("not_state", not_state_transitions)
m.add_state("neg_state", None, end_state=1) # 添加最終狀態(tài)
m.add_state("pos_state", None, end_state=1)
m.add_state("error_state", None, end_state=1)
m.set_start("Start") # 設(shè)置開始狀態(tài)
m.run("Python is great")
m.run("Python is not fun")
m.run("Perl is ugly")
m.run("Pythoniseasy")
Python 狀態(tài)機(jī)
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來闹啦,“玉大人沮明,你說我怎么就攤上這事∏戏埽” “怎么了荐健?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)琳袄。 經(jīng)常有香客問我江场,道長(zhǎng),這世上最難降的妖魔是什么窖逗? 我笑而不...
- 正文 為了忘掉前任址否,我火速辦了婚禮,結(jié)果婚禮上碎紊,老公的妹妹穿的比我還像新娘佑附。我一直安慰自己,他們只是感情好仗考,可當(dāng)我...
- 文/花漫 我一把揭開白布帮匾。 她就那樣靜靜地躺著,像睡著了一般痴鳄。 火紅的嫁衣襯著肌膚如雪瘟斜。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼取劫,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了研侣?” 一聲冷哼從身側(cè)響起谱邪,我...
- 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎庶诡,沒想到半個(gè)月后惦银,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年扯俱,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了书蚪。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
- 正文 年R本政府宣布,位于F島的核電站宪萄,受9級(jí)特大地震影響艺谆,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜拜英,卻給世界環(huán)境...
- 文/蒙蒙 一静汤、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧居凶,春花似錦虫给、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至弄兜,卻和暖如春药蜻,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背替饿。 一陣腳步聲響...
- 正文 我出身青樓踱卵,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親据过。 傳聞我的和親對(duì)象是個(gè)殘疾皇子惋砂,可洞房花燭夜當(dāng)晚...