Exemple #1
0
 private void checkFinished()
 {
     if (hasCutOne && hasCutTwo)
     {
         Form1 frm = (Form1)Application.OpenForms["Form1"];
         Classes.FormObjects.ObjectSpecific.TaskListBox tasks = frm.formObj["tasks"] as Classes.FormObjects.ObjectSpecific.TaskListBox;
         tasks.markTaskComplete(Properties.Resources.INSTRUCTION_11);
         Classes.FormObjects.ObjectSpecific.Caketin tin = frm.formObj["caketin"] as Classes.FormObjects.ObjectSpecific.Caketin;
         tin.markCut();
         Dispose();
     }
 }
Exemple #2
0
 private void FrmObj_Click(object sender, System.EventArgs e)
 {
     if (InterfaceObjects.ItemBinding.hasBoundItem())
     {
         var loc = InterfaceObjects.ItemBinding.getBoundClass();
         if (loc is Caketin)
         {
             Caketin lObj = loc as Caketin;
             if (lObj.isBowlFilled())
             {
                 hasCaketinInOven = true;
                 lObj.hide();
                 InterfaceObjects.ItemBinding.unbindItem();
                 changeCakeOvenImage();
                 Form1       frm   = (Form1)System.Windows.Forms.Application.OpenForms["Form1"];
                 TaskListBox tasks = frm.formObj["tasks"] as TaskListBox;
                 tasks.markTaskComplete(Properties.Resources.INSTRUCTION_10);
             }
             else
             {
                 ErrorLogic.Error.showErrorDialog(Properties.Resources.NOT_READY, 5);
                 InterfaceObjects.ItemBinding.unbindItem();
             }
         }
         else if (loc is MeltingBowl)
         {
             MeltingBowl lObj = loc as MeltingBowl;
             if (lObj.isComplete())
             {
                 lObj.setMelted();
                 Form1       frm   = (Form1)Application.OpenForms["Form1"];
                 TaskListBox tasks = frm.formObj["tasks"];
                 tasks.markTaskComplete(Properties.Resources.INSTRUCTION_5);
                 InterfaceObjects.ItemBinding.unbindItem();
             }
             else
             {
                 ErrorLogic.Error.showErrorDialog(Properties.Resources.NOT_READY, 5);
             }
         }
         else if (loc is CoveringBowl)
         {
             CoveringBowl bowl = loc as CoveringBowl;
             if (bowl.hasIngredients())
             {
                 bowl.hasHeated = true;
                 bowl.frmObj.BackgroundImage = Properties.Resources.Glass_Mixing_Bowl_Chocolate;
                 Form1       frm   = (Form1)System.Windows.Forms.Application.OpenForms["Form1"];
                 TaskListBox tasks = frm.formObj["tasks"] as TaskListBox;
                 tasks.markTaskComplete(Properties.Resources.INSTRUCTION_12);
             }
             else
             {
                 ErrorLogic.Error.showErrorDialog(Properties.Resources.NOT_READY, 5);
             }
             InterfaceObjects.ItemBinding.unbindItem();
         }
         else
         {
             InterfaceObjects.ItemBinding.unbindItem();
             ErrorLogic.Error.showErrorDialog(Properties.Resources.NO_INTERACTION, 5);
         }
     }
     else
     {
         if (hasCaketinInOven && elapsedTimeInoven >= (cookingTime + (cookingTime / 4)))
         {
             Form1 frm = (Form1)Application.OpenForms["Form1"];
             if (elapsedTimeInoven >= (cookingTime - (cookingTime / 4)))
             {
                 hasCaketinInOven = false;;
                 Caketin tin = frm.formObj["caketin"] as Caketin;
                 tin.isCooked = true;
                 tin.frmObj.BackgroundImage = Properties.Resources.CoolingRack;
                 tin.show();
                 changeCakeOvenImage();
                 turnOvenOff();
                 //tin.frmObj.SetBounds(lObj.frmObj.Location.X, lObj.frmObj.Location.X, 280, 150);
             }
         }
     }
 }