SlideShare a Scribd company logo
The State Pattern



Thursday, March 18, 2010
The State Pattern
                           An Appalling Exploration




Thursday, March 18, 2010
?



Thursday, March 18, 2010
?



Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
:)



Thursday, March 18, 2010
Why we need it...



Thursday, March 18, 2010
B. F. Skinner
                 (do not do what he did)



Thursday, March 18, 2010
Thursday, March 18, 2010
Skinner box
                            “Operant
                           Conditioning
                            Chamber”

Thursday, March 18, 2010
Thursday, March 18, 2010
FAIL



Thursday, March 18, 2010
What you do depends
                    on your state


Thursday, March 18, 2010
Blood
                            test



Thursday, March 18, 2010
Thursday, March 18, 2010
Not
                                   Thing

                           Blood
                            test




Thursday, March 18, 2010
Thursday, March 18, 2010
Not
                                   Thing

                           Blood
                            test

                                   Thing




Thursday, March 18, 2010
Thursday, March 18, 2010
First
                            aid




Thursday, March 18, 2010
Not
                                   Thing

                           First
                            aid




Thursday, March 18, 2010
Thursday, March 18, 2010
Not
                                   Thing

                           First
                            aid

                                   Thing




Thursday, March 18, 2010
Thursday, March 18, 2010
Not
                                   Thing

                           First
                            aid
                                   Thing


                                    Not
                                   Thing
                           Blood
                            test
                                   Thing

Thursday, March 18, 2010
Not
                                   Thing

                           First
                            aid
                                   Thing


                                    Not
                                   Thing
                           Blood
                            test
                                   Thing

Thursday, March 18, 2010
1. Repeatedly using same test
                      2. Answers to test are
                        predictable and repeated
                      3. Test concerns one’s own
                        internal matters


Thursday, March 18, 2010
Time to get practical.



Thursday, March 18, 2010
Thursday, March 18, 2010
public class Creature
                {
                	 public function Creature()
                	 {
                	 	 trace(“Ecce Creature”);
                	 }
                }




Thursday, March 18, 2010
Thursday, March 18, 2010
1. Come to life




Thursday, March 18, 2010
1. Come to life
                   2. Talk to us



Thursday, March 18, 2010
1. Come to life
                   2. Talk to us
                   3. Move around


Thursday, March 18, 2010
public class Creature
                {


                	 public function Creature()
                	 {
                	 	 trace(“Ecce Creature”);
                	 }


                	 public function zap() {}


                	 public function talk() {}

Thursday, March 18, 2010
{
                	 	 trace(“Ecce Creature”);
                	 }


                	 public function zap() {}


                	 public function talk() {}


                	 public function walk() {}
                    }




Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
Thursday, March 18, 2010
...
                	 public function implant( b : Brain )
                	 {
                	 	 mybrain = b;
                	 }
                ...




Thursday, March 18, 2010
Thursday, March 18, 2010
public function zap()
                 {
                   	 // IF DEAD, BECOME ALIVE
                   	 // IF ALIVE, BECOME DEAD
                	 }

                	 public function walk()
                	 {
                 	 	
                	 }

                	 public function talk()
                	 {
                 	
                 	 }
Thursday, March 18, 2010
public function zap()
                 {
                   	 // IF DEAD, BECOME ALIVE
                   	 // IF ALIVE, BECOME DEAD
                	 }

                	 public function talk()
                	 {
                  	 // IF DEAD, DO NOTHING
                  	 // IF ALIVE, DESCRIBE CANCER CURE
                	 }
                	
                	 public function walk()
                	 {

                	 }

Thursday, March 18, 2010
// IF DEAD, BECOME ALIVE
                   	 // IF ALIVE, BECOME DEAD
                	 }

                	 public function talk()
                	 {
                 	 // IF DEAD, DO NOTHING
                 	 // IF ALIVE, DESCRIBE CANCER CURE
                	 }

                	 public function walk()
                	 {
                 	 // IF DEAD, DO NOTHING
                 	 // IF ALIVE, WALK TO LAB	
                	 }



Thursday, March 18, 2010
x_x

Thursday, March 18, 2010
o_o

Thursday, March 18, 2010
0.0

Thursday, March 18, 2010
x_x

Thursday, March 18, 2010
?

Thursday, March 18, 2010
Thursday, March 18, 2010
public class Creature
                {
                	 private var amIdead : Boolean;


                	 public function Creature()
                	 {
                	 	 trace(“Ecce Creature”);
                	 	 amIdead = true;
                           }


                	 public function zap()
                	 {
Thursday, March 18, 2010
}


                	 public function zap()
                	 {
                     	         if( amIdead )
                     	         {
                           	 	 amIdead = false;
                     	         }
                               	    else
                     	         {
                           	 	 amIdead = false;
                     	         }	
                     }


                	 public function talk()
                	 {
Thursday, March 18, 2010
amIdead = false;
                     	      }	
                     }


                	 public function talk()
                	 {
                     	      if( amIdead )
                     	      {
                           	 	 // DO NOTHING -- I’M DEAD
                     	      }
                            	    else
                     	      {
                           	 	 trace(“Listen to this...”);
                           	 	 trace(“the secrets of eternity”);
                     	      }	
                     }
Thursday, March 18, 2010
}


                	 public function walk()
                	 {
                     	         if( amIdead )
                     	         {
                           	 	 // DO NOTHING -- I’M DEAD
                     	         }
                               	    else
                     	         {
                           	 	 trace(“I’ll go to my lab”);
                           	 	 trace(“and cure cancer”);
                     	         }	
                           }
                   }
Thursday, March 18, 2010
[clip: Igor drops Hans
                             Delbruck’s brain]



Thursday, March 18, 2010
Thursday, March 18, 2010
public class Creature
                {
                	 private var amIdead : Boolean;
                	 private var doIHaveDelbruckBrain :
                Boolean;


                	 public function Creature()
                	 {
                	 	 trace(“Ecce Creature”);
                	 	 amIdead = true;
                           }


                	 public function implant( b : Brain )
                	 {
Thursday, March 18, 2010
}


                	 public function implant( b : Brain )
                	 {
                	 	 mybrain = b;
                	 	 if( mybrain == DELBRUCK_BRAIN )
                // how??
                	 	 {
                	 	 	 doIHaveDelbruckBrain = true;
                	 	 }
                	 	 else
                	 	 {
                	 	 	 doIHaveDelbruckBrain = false;
                	 	 }
                	 }
Thursday, March 18, 2010
}


                	 public function zap()
                	 {
                     	      if( amIdead )
                     	      {
                           	 	 amIdead = false;
                     	      }
                            	    else
                     	      {
                           	 	 amIdead = false;
                     	      }	
                     }


                	 public function talk()
                	 {
Thursday, March 18, 2010
}


                	 public function talk()
                	 {
                     	      if( amIdead )
                     	      {
                           	 	 // DO NOTHING -- I’M DEAD
                     	      }
                            	   else
                     	      {
                            	   if( doIHaveDelbruckBrain )
                            	   {
                           	 	 	 trace(“Listen to this...”);
                           	 	 	 trace(“the secrets of
                           eternity”);
Thursday, March 18, 2010
                            	   }
else
                     	      {
                            	    if( doIHaveDelbruckBrain )
                            	    {
                           	 	 	 trace(“Listen to this...”);
                           	 	 	 trace(“the secrets of
                           eternity”);
                            	    }
                            	    else
                            	    {
                            	    	 trace(“UNNNNNNNH”);
                            	    }
                     	      }	



Thursday, March 18, 2010

More Related Content

Similar to State Machine Presentation1 61

Pyschology & Social Media
Pyschology & Social MediaPyschology & Social Media
Pyschology & Social Media
Ines Peschiera
 
Psychology and Social Media
Psychology and Social MediaPsychology and Social Media
Psychology and Social Media
Crispin Porter+Bogusky
 
The Nametag Guy's Presentation from Blog World 2010
The Nametag Guy's Presentation from Blog World 2010The Nametag Guy's Presentation from Blog World 2010
The Nametag Guy's Presentation from Blog World 2010
Nametag Scott Ginsberg
 
Change the world
Change the worldChange the world
Change the world
occam98
 
Media Day Minutes for the Canadian Dental Association
Media Day Minutes for the Canadian Dental AssociationMedia Day Minutes for the Canadian Dental Association
Media Day Minutes for the Canadian Dental Association
Ian Capstick
 
Connecting
ConnectingConnecting
Connecting
Keith Lyons
 

Similar to State Machine Presentation1 61 (6)

Pyschology & Social Media
Pyschology & Social MediaPyschology & Social Media
Pyschology & Social Media
 
Psychology and Social Media
Psychology and Social MediaPsychology and Social Media
Psychology and Social Media
 
The Nametag Guy's Presentation from Blog World 2010
The Nametag Guy's Presentation from Blog World 2010The Nametag Guy's Presentation from Blog World 2010
The Nametag Guy's Presentation from Blog World 2010
 
Change the world
Change the worldChange the world
Change the world
 
Media Day Minutes for the Canadian Dental Association
Media Day Minutes for the Canadian Dental AssociationMedia Day Minutes for the Canadian Dental Association
Media Day Minutes for the Canadian Dental Association
 
Connecting
ConnectingConnecting
Connecting
 

Recently uploaded

How HR Search Helps in Company Success.pdf
How HR Search Helps in Company Success.pdfHow HR Search Helps in Company Success.pdf
How HR Search Helps in Company Success.pdf
HumanResourceDimensi1
 
Digital Marketing with a Focus on Sustainability
Digital Marketing with a Focus on SustainabilityDigital Marketing with a Focus on Sustainability
Digital Marketing with a Focus on Sustainability
sssourabhsharma
 
4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf
4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf
4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf
onlyfansmanagedau
 
Chapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .pptChapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .ppt
ssuser567e2d
 
The latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from NewentideThe latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from Newentide
JoeYangGreatMachiner
 
The Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb PlatformThe Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb Platform
SabaaSudozai
 
Digital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital ExcellenceDigital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital Excellence
Operational Excellence Consulting
 
Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024
Top Forex Brokers Review
 
Negotiation & Presentation Skills regarding steps in business communication, ...
Negotiation & Presentation Skills regarding steps in business communication, ...Negotiation & Presentation Skills regarding steps in business communication, ...
Negotiation & Presentation Skills regarding steps in business communication, ...
UdayaShankarS1
 
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdfThe Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
thesiliconleaders
 
GKohler - Retail Scavenger Hunt Presentation
GKohler - Retail Scavenger Hunt PresentationGKohler - Retail Scavenger Hunt Presentation
GKohler - Retail Scavenger Hunt Presentation
GraceKohler1
 
Part 2 Deep Dive: Navigating the 2024 Slowdown
Part 2 Deep Dive: Navigating the 2024 SlowdownPart 2 Deep Dive: Navigating the 2024 Slowdown
Part 2 Deep Dive: Navigating the 2024 Slowdown
jeffkluth1
 
TIMES BPO: Business Plan For Startup Industry
TIMES BPO: Business Plan For Startup IndustryTIMES BPO: Business Plan For Startup Industry
TIMES BPO: Business Plan For Startup Industry
timesbpobusiness
 
Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...
Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...
Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian MatkaDpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your TasteZodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
my Pandit
 
Call8328958814 satta matka Kalyan result satta guessing
Call8328958814 satta matka Kalyan result satta guessingCall8328958814 satta matka Kalyan result satta guessing
Call8328958814 satta matka Kalyan result satta guessing
➑➌➋➑➒➎➑➑➊➍
 
Best Competitive Marble Pricing in Dubai - ☎ 9928909666
Best Competitive Marble Pricing in Dubai - ☎ 9928909666Best Competitive Marble Pricing in Dubai - ☎ 9928909666
Best Competitive Marble Pricing in Dubai - ☎ 9928909666
Stone Art Hub
 
Innovation Management Frameworks: Your Guide to Creativity & Innovation
Innovation Management Frameworks: Your Guide to Creativity & InnovationInnovation Management Frameworks: Your Guide to Creativity & Innovation
Innovation Management Frameworks: Your Guide to Creativity & Innovation
Operational Excellence Consulting
 
Best practices for project execution and delivery
Best practices for project execution and deliveryBest practices for project execution and delivery
Best practices for project execution and delivery
CLIVE MINCHIN
 

Recently uploaded (20)

How HR Search Helps in Company Success.pdf
How HR Search Helps in Company Success.pdfHow HR Search Helps in Company Success.pdf
How HR Search Helps in Company Success.pdf
 
Digital Marketing with a Focus on Sustainability
Digital Marketing with a Focus on SustainabilityDigital Marketing with a Focus on Sustainability
Digital Marketing with a Focus on Sustainability
 
4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf
4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf
4 Benefits of Partnering with an OnlyFans Agency for Content Creators.pdf
 
Chapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .pptChapter 7 Final business management sciences .ppt
Chapter 7 Final business management sciences .ppt
 
The latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from NewentideThe latest Heat Pump Manual from Newentide
The latest Heat Pump Manual from Newentide
 
The Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb PlatformThe Genesis of BriansClub.cm Famous Dark WEb Platform
The Genesis of BriansClub.cm Famous Dark WEb Platform
 
Digital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital ExcellenceDigital Transformation Frameworks: Driving Digital Excellence
Digital Transformation Frameworks: Driving Digital Excellence
 
Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024Best Forex Brokers Comparison in INDIA 2024
Best Forex Brokers Comparison in INDIA 2024
 
Negotiation & Presentation Skills regarding steps in business communication, ...
Negotiation & Presentation Skills regarding steps in business communication, ...Negotiation & Presentation Skills regarding steps in business communication, ...
Negotiation & Presentation Skills regarding steps in business communication, ...
 
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdfThe Most Inspiring Entrepreneurs to Follow in 2024.pdf
The Most Inspiring Entrepreneurs to Follow in 2024.pdf
 
GKohler - Retail Scavenger Hunt Presentation
GKohler - Retail Scavenger Hunt PresentationGKohler - Retail Scavenger Hunt Presentation
GKohler - Retail Scavenger Hunt Presentation
 
Part 2 Deep Dive: Navigating the 2024 Slowdown
Part 2 Deep Dive: Navigating the 2024 SlowdownPart 2 Deep Dive: Navigating the 2024 Slowdown
Part 2 Deep Dive: Navigating the 2024 Slowdown
 
TIMES BPO: Business Plan For Startup Industry
TIMES BPO: Business Plan For Startup IndustryTIMES BPO: Business Plan For Startup Industry
TIMES BPO: Business Plan For Startup Industry
 
Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...
Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...
Dpboss Matka Guessing Satta Matta Matka Kalyan panel Chart Indian Matka Dpbos...
 
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian MatkaDpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
Dpboss Matka Guessing Satta Matta Matka Kalyan Chart Indian Matka
 
Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your TasteZodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
Zodiac Signs and Food Preferences_ What Your Sign Says About Your Taste
 
Call8328958814 satta matka Kalyan result satta guessing
Call8328958814 satta matka Kalyan result satta guessingCall8328958814 satta matka Kalyan result satta guessing
Call8328958814 satta matka Kalyan result satta guessing
 
Best Competitive Marble Pricing in Dubai - ☎ 9928909666
Best Competitive Marble Pricing in Dubai - ☎ 9928909666Best Competitive Marble Pricing in Dubai - ☎ 9928909666
Best Competitive Marble Pricing in Dubai - ☎ 9928909666
 
Innovation Management Frameworks: Your Guide to Creativity & Innovation
Innovation Management Frameworks: Your Guide to Creativity & InnovationInnovation Management Frameworks: Your Guide to Creativity & Innovation
Innovation Management Frameworks: Your Guide to Creativity & Innovation
 
Best practices for project execution and delivery
Best practices for project execution and deliveryBest practices for project execution and delivery
Best practices for project execution and delivery
 

State Machine Presentation1 61