From a3fc2c45ec2a62684e128ffd7cab88bd101ad917 Mon Sep 17 00:00:00 2001 From: MichaelTheShifter Date: Tue, 17 May 2016 15:37:02 -0400 Subject: Committing all I've got Committing everything I've got - so that I can take a break for a few months and work on other things. --- .../FinalMission/QuestViewer.cs | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 source/WindowsFormsApplication1/FinalMission/QuestViewer.cs (limited to 'source/WindowsFormsApplication1/FinalMission/QuestViewer.cs') diff --git a/source/WindowsFormsApplication1/FinalMission/QuestViewer.cs b/source/WindowsFormsApplication1/FinalMission/QuestViewer.cs new file mode 100644 index 0000000..3b447f9 --- /dev/null +++ b/source/WindowsFormsApplication1/FinalMission/QuestViewer.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ShiftOS.FinalMission +{ + public partial class QuestViewer : Form + { + public QuestViewer() + { + InitializeComponent(); + } + + private void QuestViewer_Load(object sender, EventArgs e) + { + SetupList(); + StartQuestCheckThread(); + var tmr = new System.Windows.Forms.Timer(); + tmr.Interval = 500; + tmr.Tick += (object s, EventArgs a) => + { + SetupList(); + }; + tmr.Start(); + } + + public void SetupList() + { + lbobjectives.Items.Clear(); + foreach(var itm in EndGameHandler.ThingsToDo) + { + lbobjectives.Items.Add(itm.Key); + } + } + + public void StartQuestCheckThread() + { + var t = new Thread(new ThreadStart(new Action(() => { + //Start checkloop. + while(true) + { + CheckObjective(EndGameHandler.CurrentObjective); + } + }))); + t.Start(); + } + + public void CheckObjective(string obj) + { + if(EndGameHandler.ThingsToDo[obj] == true) + { + EndGameHandler.GoToNextObjective(); + } + } + } +} -- cgit v1.2.3