Change the highlight color:
Play with colors in: OPFsmFigureHighlighter highlight: self with: Color red. OPFsmFigureHighlighter unhighlight: self.
Replace all '0' with 'A' and all '1' with 'B':
inspect model -> right click on the model in the left navigation self elements do: [ :each | each name: (each name copyReplaceAll: '0' with: 'A'). each name: (each name copyReplaceAll: '1' with: 'B'). ] Variations: 'self elements' are states + transitions 'self states' are states 'self transitions' are transitions
Change the possibility of transitions to accept multiple values.
Change: OPFsmTransition>>initialize matchBlock := [ :aValue | self name = aValue asString ]. Inspect a transition and try: self matches: '1'. self matches: '1,0,1' Change (to the original one): OPFsmTransition>>initialize matchBlock := [ :aValue | (self name splitOn: ',') includes: aValue asString ]. Again: self matches: '1'. self matches: '1,0,1'
Implement execution logging
OPFsmRecognizer>>goTo: aPlace Transcript show: aPlace; cr. current ifNotNil: [ self announce: (OPFsmRecognizerLeave place: current) ]. current := aPlace. self announce: (OPFsmRecognizerEnter place: current)