mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
c3b6454e8e
fixes #404
42 lines
1 KiB
Ruby
42 lines
1 KiB
Ruby
class ParametrisedEvent
|
|
include AASM
|
|
aasm do
|
|
state :sleeping, :initial => true
|
|
state :showering
|
|
state :working
|
|
state :dating
|
|
state :prettying_up
|
|
|
|
event :wakeup do
|
|
transitions :from => :sleeping, :to => [:showering, :working]
|
|
end
|
|
|
|
event :shower do
|
|
transitions :from => :sleeping, :to => :showering, :after => :wet_hair, :success => :wear_clothes
|
|
end
|
|
|
|
event :dress do
|
|
transitions :from => :sleeping, :to => :working, :after => :wear_clothes, :success => :wear_makeup
|
|
transitions :from => :showering, :to => [:working, :dating], :after => Proc.new { |*args| wear_clothes(*args) }, :success => proc { |*args| wear_makeup(*args) }
|
|
transitions :from => :showering, :to => :prettying_up, :after => [:condition_hair, :fix_hair], :success => [:touch_up_hair]
|
|
end
|
|
end
|
|
|
|
def wear_clothes(shirt_color, trouser_type=nil)
|
|
end
|
|
|
|
def wear_makeup(makeup, moisturizer)
|
|
end
|
|
|
|
def wet_hair(dryer)
|
|
end
|
|
|
|
def condition_hair
|
|
end
|
|
|
|
def fix_hair
|
|
end
|
|
|
|
def touch_up_hair
|
|
end
|
|
end
|