Exemplo n.º 1
0
        // when this button is clicked check and see if data entered is valid
        private void btnOptionsOK_Click(object sender, EventArgs e)
        {
            // this method checks all of the inputs to make sure they are valid
            if (IsValidData() == true)
            {
                // record selection and pass it to the next form
                Ticket ticketSettings = new Ticket();

                // set ticket property values
                ticketSettings.TicketNumber = Convert.ToInt16(txtFirstTicket.Text);
                ticketSettings.TicketTime = dateTimePickerStartTime.Value;
                ticketSettings.TicketLimit = Convert.ToInt16(txtGuestWindow.Text);
                //t.TicketLimit = Convert.ToInt16(txtGuestWindow.Text);

                // this instance of this options form's Tag can be set equal to the ticket object type
                this.Tag = ticketSettings;

                // prep the form1
                frmMain f1 = new frmMain();
                f1.Tag = ticketSettings;
                // set form1's tag property equal to this tag

                // show the next form
                f1.ShowDialog();
                if (f1.DialogResult == DialogResult.Cancel)
                {
                    this.Close();
                }
            }
        }
Exemplo n.º 2
0
        // checks how many tickets can be in the lsit box at once
        public bool UpperLimit(Ticket t, int ticketQueueCount)
        {
            // if you add this ticket to the list box will it exceed the number allowed in ?

            // if the listbox count is higher than the limit uhh... don't add it
            if(ticketQueueCount + 1 >= t.TicketLimit)
            {
                return false;

            }
            else { return true;  }
        }
Exemplo n.º 3
0
        //TODO Finish the listbox timer once program is working again
        //Timer to remove items from list box right now every 30 seconds
        //Still looking into it
        private void timer1_Tick(object sender, EventArgs e)
        {
            //}
            //	public void testMethod()
            //	{
            //	// if there is tickets in the list start the counter.
            if (listBoxTicketQueueList.Items.Count > 0)
            {

                Ticket check = new Ticket();
                string theTicketInThebox = listBoxTicketQueueList.Items[0].ToString();
            //	check = (Ticket)listBoxTicketQueueList.Items[0];

                for (int i = listBoxTicketQueueList.Items.Count - 1; i > -1; i--)
                {

            //		var exp = (ExpiringItem)listBoxTicketQueueList.Items[i];
                    TimeSpan timeVisible = DateTime.Now - check.TicketTime;
                    if (timeVisible.TotalSeconds > 30)
                        listBoxTicketQueueList.Items.RemoveAt(0);
                }
            }
        }
Exemplo n.º 4
0
        // this button click adds a new ticket based on the information from the options window
        private void btnIssueTicket_Click(object sender, EventArgs e)
        {
            //timer1.Interval = 5;
            timer1.Enabled = true;
            timer1.Start();
            // creates a new instance of the ticket class
            Ticket t3 = new Ticket();

            //todo put these into the ticket class to validate over the limit and end of day time.
            bool OverTheLimit = false;
            // over the limit means that if we try and add a ticket to the list it will exceed the maximum allow in.

            // to check this I need to have a number passed in that is equal to the number of tickets in the ticket queue list.

            // todo add the endtime to the ticket class.
            bool TimesUpDaysOver = false;

            // old ticket is casted from this tag , which i'm thinking is t2 from further down around line 72 when the form loads.
            Ticket oldTicket = new Ticket();
            oldTicket = (Ticket)this.Tag;

            // increment the ticket + 1

            //todo write a method to check and see if the number of tickets in the list is greater than one. The problem here is that
            // the ticket is being set to the starting ticket number
            //from the options and only adding one the starting ticket number so it doesn't increase after the 2nd ticket is created.
            t3.TicketNumber += oldTicket.TicketNumber + 1;

            if (listBoxTicketQueueList.Items.Count >= oldTicket.TicketLimit)
            {
                OverTheLimit = true;
                MessageBox.Show("Cannot add another ticket please wait until the ticket window opens again",
                    "Ticket List Cannot Exceed Queue Limit of " + oldTicket.TicketLimit.ToString());
            }

            else if (TimesUpDaysOver.Equals(true))
            {
                MessageBox.Show("Cannot add another ticket because the ride will close before they can ride", "Ride Closing Soon");
            }
            // if over the limit let them know another ticket cannot be added
            // check the time to see if it falls before the end of the day.
            //If it does let the user know that prior to trying to add the ticket because it won't work

            else
            {
                //try
                // listcheckr

                // if we were to add another ticket to the listbox would it be less than or equal to the max

                // add the chosen option for the ticket time
                t3.TicketTime = oldTicket.TicketTime.Add(oldTicket.TimeIncrement);

                //Add new ticket -- Next ticketNumber is used similar to an overide to string. It was written by Conner from the inital Ticket Class.
                listBoxTicketQueueList.Items.Add(t3.nextTicketNumber().ToString());

                //Increment total tickets Mapped to the number of tickets in the list
                lblOutsandingTicketTotal.Text = listBoxTicketQueueList.Items.Count.ToString();

                //Show time in label
                lblTimeofEntry.Text = t3.TicketTime.ToString();

                //todo add the method to check the number of tickets in the listbox to make sure we are not over the limit.
            }
        }
Exemplo n.º 5
0
        // when this form loads try and load the tagged property
        private void Form1_Load(object sender, EventArgs e)
        {
            //todo try loading an instance of frmOptions first with a show dialog , and then make the dialog result equal to a tag,
            // then convert the tag to a ticket

            //todo maybe try loading into frmOptions first , and moving all of this out of this form load event into the initialize component section.

            // loads this forms instance of the ticket which recieved from the tag on frmOptions
            Ticket t2 = new Ticket();
            t2 = (Ticket)this.Tag;

            if (t2 == null)
            {
                MessageBox.Show("Could not cast value. Check your code and try again", "Error");

            }
            else
            {
                //add the item to the ticket list
                listBoxTicketQueueList.Items.Add(t2.nextTicketNumber().ToString());

                //this sets the text on the number of tickets in the list
                lblOutsandingTicketTotal.Text = (listBoxTicketQueueList.Items.Count).ToString();

                //this for testing. For now it diplsays 5 minutes, but it not set equal to the options wait time.

                //todo tie this into the ticket timewindow. also write this into the class as the timeout value.
                lblTimeofEntry.Text = DateTime.Now.AddMinutes(5).ToLongTimeString();

                //todo setup the list to inherit a list from the Ticket class?

                // loop over the list and try to read the time property for each ticket to check and see if it can enter.

            }
        }