PATH: //opt/alt/python311/share/doc/alt-python311-pyparsing-doc/examples/statemachine
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 documentSignoffDemo.py
↓
X
📄 documentsignoffstate.pystate
↓
X
📄 libraryBookDemo.py
↓
X
📄 librarybookstate.pystate
↓
X
📄 statemachine.py
↓
X
📄 trafficLightDemo.py
↓
X
📄 trafficlightstate.pystate
↓
X
📄 vending_machine.py
↓
X
📄 video_demo.py
↓
X
📄 videostate.pystate
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: videostate.pystate
# # videostate.pystate # # Statemachine describing the playing of a video # [] = stop # > = play # || = pause # >> = fast forward # << = rewind statemachine VideoState: # basic >, [], and || controls Stopped-(play)->Playing Playing-(pause)-> Paused Playing-(stop)-> Stopped Paused-(stop)-> Stopped Paused-(play)->Playing # add >> and << controls - different meanings if occur while playing or stopped Playing-(fast_forward)->FastForward FastForward-(play)->Playing FastForward-(pause)->Paused FastForward-(stop)->Stopped Stopped-(fast_forward)->Forwardwinding Forwardwinding-(stop)->Stopped Playing-(rewind)->ReversePlaying ReversePlaying-(play)->Playing ReversePlaying-(pause)->Paused ReversePlaying-(stop)->Stopped Stopped-(rewind)->Rewinding Rewinding-(stop)->Stopped
SIMPAN PERUBAHAN