Advertisement
salahzar

Problema di monty

Dec 23rd, 2012
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. // Problema di monty hall
  3. // P0: reset: disponi 2 capre e 1 macchina casualmente
  4. // P1: TOCCO: chiedi di scegliere una PORTA C
  5. // P2: ALLA SCELTA: il programma apre la porta con una capra fra le due residue
  6. // P3: AL TOCCO: il programma chiede se vuoi cambiare oppure NO
  7. // P4: ALLA SCELTA: il programma dice se hai vinto oppure no
  8. string stato="P0";
  9.  
  10. integer portamacchina;
  11. integer portacapra;
  12.  
  13. integer scelta;
  14.  
  15. integer handle;
  16.  
  17. default
  18. {
  19.     state_entry()
  20.     {
  21.         llSay(0, "Dispone gli oggetti");
  22.         portamacchina=(integer)(llFrand(3)+1);
  23.         llSay(0,"la macchina � nella porta "+(string)portamacchina);
  24.         // vale 1,2 o 3
  25.         stato="P1";
  26.  
  27.  
  28.     }
  29.     touch_start(integer total_number)
  30.  
  31.     {
  32.         key id=llDetectedKey(0);
  33.         if(stato=="P1")
  34.         {
  35.             handle=llListen(-1,"",id,""); llSetTimerEvent(30);
  36.             llDialog(id,"Scegli una porta",[ "1","2","3" ],-1);
  37.             stato="P2";
  38.             return;
  39.         }
  40.         if(stato=="P3")
  41.         {
  42.             handle=llListen(-1,"",id,""); llSetTimerEvent(30);
  43.             llDialog(id,"Vuoi cambiare la porta che hai scelto?",["TENGO","CAMBIO"],-1);
  44.             stato="P4";
  45.             return;
  46.  
  47.         }
  48.     }
  49.     listen(integer channel, string name, key id,string str)
  50.     {
  51.         llListenRemove(handle); llSetTimerEvent(0);
  52.         if(stato=="P2")
  53.         {
  54.             scelta=(integer)(str);
  55.             llSay(0,"Hai scelto "+str+" ti indico la porta con una capra");
  56.             portacapra=0;
  57.             while(portacapra==0)
  58.             {
  59.                 integer r=(integer)(llFrand(3)+1);
  60.                 if(r!=portamacchina  && r!=scelta) portacapra=r;
  61.             }
  62.             llSay(0,"Una capra si trova nella porta "+(string)portacapra+ " tocca per andare avanti");
  63.             stato="P3";
  64.             return;
  65.         }
  66.         if(stato=="P4")
  67.         {
  68.             if(str=="CAMBIO")
  69.             {
  70.                 integer i; integer cambiata;
  71.                 for(i=1;i<4;i++)
  72.                 {
  73.                     if(i!=scelta && i!=portacapra) cambiata= i;
  74.                 }
  75.                 scelta=cambiata;
  76.             }
  77.             llSay(0,"porta scelta "+(string)scelta+" porta macchina "+(string)portamacchina);
  78.             if(scelta==portamacchina)
  79.             {
  80.                 llSay(0,"Hai vinto");
  81.             }
  82.             else
  83.             {
  84.                 llSay(0,"Hai perso");
  85.             }
  86.             llResetScript();
  87.  
  88.         }
  89.     }
  90.     timer()
  91.     {
  92.         llListenRemove(handle); llSetTimerEvent(0);
  93.         llResetScript();
  94.  
  95.     }
  96.  
  97.  
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement