public void Test1()
        {
            var files = Directory.GetFiles(this.path, "*.zip");

            foreach (var file in files)
            {
                var name = Path.GetFileNameWithoutExtension(file);

                Assert.AreEqual(0, this.Storage.GetCourses().Where(c => c.Name == name && c.Owner == "OlehVukladachenko").Count());
            }

            CourseGenerator.PascalCourse(this.Storage, this.CacheProvider, this.path);
            foreach (var file in files)
            {
                var name = Path.GetFileNameWithoutExtension(file);

                Assert.AreEqual(1, this.Storage.GetCourses().Where(c => c.Name == name && c.Owner == "OlehVukladachenko").Count());
            }
            this.DeleteFiles();
            CourseGenerator.PascalCourse(this.Storage, this.CacheProvider, this.path);
            foreach (var file in files)
            {
                var name = Path.GetFileNameWithoutExtension(file);

                Assert.AreEqual(1, this.Storage.GetCourses().Where(c => c.Name == name && c.Owner == "OlehVukladachenko").Count());
            }
        }
Beispiel #2
0
        public static void InitialSeed(StudentSystemContext context)
        {
            StudentGenerator.InitialStudentSeed(context, 5);
            CourseGenerator.InitialCourseSeed(context, 10);

            var students = context.Students.ToList();
            var courses  = context.Courses.ToList();

            HomeworkGenerator.InitialHomeworkSeed(context, 30, courses, students);
        }
        public static void RandomSeed(StudentDbContext context)
        {
            for (int i = 0; i < 100; i++)
            {
                context.Add(StudentGenerator.GenerateStudent());
                context.Add(CourseGenerator.GenerateCourse());
                context.Add(ResourceGenerator.GenerateResource());

                context.SaveChanges();
            }
        }
Beispiel #4
0
        private static void SeedCourses(StudentSystemContext context, int count)
        {
            var courseGenerator = new CourseGenerator();

            for (int i = 0; i < count; i++)
            {
                context.Courses.Add(courseGenerator.NewCourse());
            }

            context.SaveChanges();
        }
        private void GenerateForSeleniumTests()
        {
            var cacheProvider = container.Resolve <ICacheProvider>();
            var courseStorage = container.Resolve <ICourseStorage>();


            CourseGenerator.GenerateAllCourses(courseStorage, cacheProvider);

            var databaseStorage = new FakeDatabaseDisciplineStorage(container.Resolve <ILmsService>(), "prof3");
            var storage         = new CachedDisciplineStorage(databaseStorage, cacheProvider);

            DisciplineGenerator.GenerateAllDisciplines(storage);
        }
        public static void Seed(StudentSystemContext context)
        {
            Course[] courses = CourseGenerator.CreateCourses();
            context.Courses.AddRange(courses);

            Student[] students = StudentGenerator.CreateStudents();
            context.Students.AddRange(students);

            Resource[] resources = ResourceGenerator.CreateResources();
            context.Resources.AddRange(resources);

            Homework[] homeworks = HomeworkGenerator.CreateHomeworks();
            context.HomeworkSubmissions.AddRange(homeworks);

            StudentCourse[] studentCourses = StudentCourseGenerator.CreateStudentCourses();
            context.StudentCourses.AddRange(studentCourses);

            context.SaveChanges();

            Console.WriteLine("Sample data inserted successfully.");
        }
        public MainWindow()
        {
            InitializeComponent();

            DBSetup.MigrateDB();

            var writeConnection = $"Data Source=courses.sqlite;foreign keys=true;";

            using (var DB = new SQLiteConnection(writeConnection))
            {
                var newStudents       = new StudentGenerator(DB);
                var newCourses        = new CourseGenerator(DB);
                var newAssignments    = new AssignmentGenerator(DB);
                var newCourseStudents = new CourseStudentGenerator(DB);


                newCourses.Generate(10);
                newStudents.Generate(10);
                newAssignments.Generate(10);
                newCourseStudents.Generate(10);
            }

            var students    = Student.All();
            var courses     = Course.All();
            var assignments = Assignment.All();

            StudentsListBoxView.ItemsSource = students;

            foreach (var course in courses)
            {
                course.CalculateGrades();
            }
            StudentsCourseListView.ItemsSource = courses;

            AssignmentsListView.ItemsSource = assignments;
        }
Beispiel #8
0
 private static void SeedCourses(StudentSystemContext db, int count)
 {
     CourseGenerator.InitialCourseSeed(db, count);
 }
 private static void SeedCourses(StudentSystemContext context)
 {
     CourseGenerator.InitialCourseSeed(context);
 }
 private static void SeedCourses(SchoolDbContext db, int count)
 {
     CourseGenerator.InitialCourseSeed(db, count);
 }
Beispiel #11
0
        private void TimeTick(int time)
        {
            _time = time;
            if (!_readyToSendItems)
            {
                return;
            }
            try
            {
                //check timeline for a new item to process
                List <T_Item>        items          = new List <T_Item>();
                List <ScheduledItem> itemsToProcess = null;// new List<ScheduledItem>();
                itemsToProcess = _timelineEvents.GetItemsUpTo(time);
                // itemsToProcess[4].DM_ID = "!!";
                if (itemsToProcess == null)
                {
                    return;
                }
                //Thread.Sleep(2000);
                foreach (ScheduledItem i in itemsToProcess)
                {
                    T_Item myItem = null;
                    //i.DM_ID;
                    if (_items.ContainsKey(i.ID))
                    {
                        myItem = _items[i.ID];
                    }
                    else if (_ptItems.ContainsKey(i.ID))
                    {
                        myItem = _ptItems[i.ID];
                    }
                    else
                    {
                        continue;
                    }

                    _ddd.SendItemInfo(i.DM_ID, i.ID, myItem.Parameters.FF_Difficulty, myItem.Parameters.TT_Difficulty, time);
                    String infoText = String.Format("Processing item id={0}; For DM={1}; Current Time={2}\r\n", i.ID, i.DM_ID, i.Time);
                    //AD: TODO: Need to add in specific strings that describe the actions taking place in the item
                    items.Add(myItem.DeepCopy());
                    T_Item        item = myItem.DeepCopy();
                    StringBuilder sb   = new StringBuilder();
                    if (item.Parameters.Crossing)
                    {
                        sb.AppendFormat("Crossing;");
                    }
                    else
                    {
                        sb.AppendFormat("Non-Crossing;");
                    }
                    if (item.Parameters.Groupings == T_Groupings.Two)
                    {
                        sb.AppendFormat("Two-Grouping;");
                    }
                    else
                    {
                        sb.AppendFormat("One-Grouping;");
                    }
                    if (item.Parameters.PlayerResources == T_ResourceAvailability.Available)
                    {
                        sb.AppendFormat("PlayerHasResources;");
                    }
                    else
                    {
                        sb.AppendFormat("PlayerHas_NO_Resources;");
                    }
                    if (item.Parameters.TeammateResources == T_ResourceAvailability.Available)
                    {
                        sb.AppendFormat("TeammateHasResources;");
                    }
                    else
                    {
                        sb.AppendFormat("TeammateHas_NO_Resources;");
                    }
                    // if (item.Parameters.ThreatTypeSpecified)
                    // {
                    if (item.Parameters.ThreatType == T_ThreatType.Imminent)
                    {
                        sb.AppendFormat("Imminent;");
                    }
                    else
                    {
                        sb.AppendFormat("Non-imminent;");
                    }
                    //}
                    if (item.Parameters.Threat == T_Threat.Ambiguous)
                    {
                        sb.AppendFormat("AmbiguousThreat;");
                    }
                    else if (item.Parameters.Threat == T_Threat.Unambiguous)
                    {
                        sb.AppendFormat("UnambiguousThreat;");
                    }
                    else
                    {
                        sb.AppendFormat("Non-Threat;");
                    }

                    infoText = String.Format("{0}\t{1}\r\n", infoText, sb.ToString());
                    if (item.Action.Count() == 0)
                    {
                        PirateGenerator pirateGenerator = new PirateGenerator(_ddd);
                        pirateGenerator.Generate(item, i.DM_ID);

                        MerchantGenerator merchantGenerator = new MerchantGenerator(_ddd);
                        merchantGenerator.Generate(item, i.DM_ID);

                        CourseGenerator courseGenerator = new CourseGenerator(_ddd);
                        courseGenerator.Generate(item, i.DM_ID);

                        InterceptGenerator interceptGenerator = new InterceptGenerator(_ddd);
                        interceptGenerator.Generate(item, i.DM_ID);
                    }


                    foreach (ActionBase action in item.Action)
                    {
                        if (action != null && !(action is T_ScriptedItem))
                        {
                            _ddd.AddDDDEventToQueue(action.ToDDDEvent(time, _ddd));
                        }

                        //ADAMS STUB: Might not work 100%, Lisa please fix if it won't work.
                        String stimType = "";
                        String objectID = "";
                        if (action is T_Reveal)
                        {
                            stimType = "Reveal";
                            objectID = ((T_Reveal)action).ID;
                            if (((T_Reveal)action).Location.Item is Aptima.Asim.DDD.CommonComponents.DataTypeTools.LocationValue)
                            {
                                if (((Aptima.Asim.DDD.CommonComponents.DataTypeTools.LocationValue)((T_Reveal)action).Location.Item).exists == false)
                                {
                                    Console.WriteLine("Uh oh, null location");
                                }
                            }
                            String IFF = "";
                            if (((T_Reveal)action).StartupParameters.Items.Length > 0)
                            {
                                for (int c = 0; c < ((T_Reveal)action).StartupParameters.Items.Length; c++)
                                {
                                    if (((T_Reveal)action).StartupParameters.Items[c] == "ObjectName")
                                    {
                                        IFF = "Squawking=" + ((T_Reveal)action).StartupParameters.Items[c + 1];
                                    }
                                    c++;     //get past the "value" item, which is the even numbered entry
                                }
                            }
                            infoText = String.Format("{0}\tREVEAL; object_id={1}; Owned_by={2}; Revealed_at={3}\r\n", infoText, objectID, ((T_Reveal)action).Owner, ((T_Reveal)action).Location.ToString());
                        }
                        else if (action is T_Move)
                        {
                            stimType = "Move";
                            objectID = ((T_Move)action).ID;
                            infoText = String.Format("{0}\tMOVE; object_id={1}; Throttle={2:0.00}; Destination={3}\r\n", infoText, objectID, ((T_Move)action).Throttle, ((T_Move)action).Location.ToString());
                        }
                        else if (action is T_ScriptedItem)
                        {
                            //TODO: check to see that the object is not dead -Lisa
                            objectID = ((T_ScriptedItem)action).ID;
                            stimType = ((T_ScriptedItem)action).ActionType;
                        }

                        if (stimType != "")
                        {
                            _ddd.SendStimulusEvent(i.ID, i.DM_ID, objectID, stimType, time, item.Parameters.FF_Difficulty, item.Parameters.TT_Difficulty);
                        }
                    }
                    AppendToInfoBox(tbInfoBox, infoText);
                    _readyToSendItems = false;    //re-set for next time;
                }
            }
            catch (Exception ex)
            {
                ErrorWindow.ShowDialog(ex, this);
            }
        }
Beispiel #12
0
        private void SendItem(T_Item item, String dmId, int time)
        {
            //AppendToInfoBox(tbInfoBox, String.Format("{3}: Next Item ({4}) selected for {0}: FindFixDifficulty={1}, TrackTargetDifficulty={2}\r\n", dmId, nextItem.Parameters.FF_Difficulty, nextItem.Parameters.TT_Difficulty, time, nextItem.ID));
            String infoText = String.Format("{3}: Next Item ({4}) selected for {0}: FindFixDifficulty={1}, TrackTargetDifficulty={2}\r\n", dmId, item.Parameters.FF_Difficulty, item.Parameters.TT_Difficulty, time, item.ID);

            _ddd.SendItemInfo(dmId, item.ID, item.Parameters.FF_Difficulty, item.Parameters.TT_Difficulty, time);
            StringBuilder sb = new StringBuilder();

            if (item.Parameters.Crossing)
            {
                sb.AppendFormat("Crossing;");
            }
            else
            {
                sb.AppendFormat("Non-Crossing;");
            }
            if (item.Parameters.Groupings == T_Groupings.Two)
            {
                sb.AppendFormat("Two-Grouping;");
            }
            else
            {
                sb.AppendFormat("One-Grouping;");
            }
            if (item.Parameters.PlayerResources == T_ResourceAvailability.Available)
            {
                sb.AppendFormat("PlayerHasResources;");
            }
            else
            {
                sb.AppendFormat("PlayerHas_NO_Resources;");
            }
            if (item.Parameters.TeammateResources == T_ResourceAvailability.Available)
            {
                sb.AppendFormat("TeammateHasResources;");
            }
            else
            {
                sb.AppendFormat("TeammateHas_NO_Resources;");
            }
            // if (item.Parameters.ThreatTypeSpecified)
            // {
            if (item.Parameters.ThreatType == T_ThreatType.Imminent)
            {
                sb.AppendFormat("Imminent;");
            }
            else
            {
                sb.AppendFormat("Non-imminent;");
            }
            //}
            if (item.Parameters.Threat == T_Threat.Ambiguous)
            {
                sb.AppendFormat("AmbiguousThreat;");
            }
            else if (item.Parameters.Threat == T_Threat.Unambiguous)
            {
                sb.AppendFormat("UnambiguousThreat;");
            }
            else
            {
                sb.AppendFormat("Non-Threat;");
            }

            infoText = String.Format("{0}\t{1}\r\n", infoText, sb.ToString());
            if (item.Action.Count() == 0)
            {
                PirateGenerator pirateGenerator = new PirateGenerator(_ddd);
                pirateGenerator.Generate(item, dmId);

                MerchantGenerator merchantGenerator = new MerchantGenerator(_ddd);
                merchantGenerator.Generate(item, dmId);

                CourseGenerator courseGenerator = new CourseGenerator(_ddd);
                courseGenerator.Generate(item, dmId);

                InterceptGenerator interceptGenerator = new InterceptGenerator(_ddd);
                interceptGenerator.Generate(item, dmId);
            }


            foreach (ActionBase action in item.Action)
            {
                if (action != null && !(action is T_ScriptedItem))
                {
                    _ddd.AddDDDEventToQueue(action.ToDDDEvent(_time, _ddd));
                }

                //ADAMS STUB: Might not work 100%, Lisa please fix if it won't work.
                String stimType = "";
                String objectID = "";
                if (action is T_Reveal)
                {
                    stimType = "Reveal";
                    objectID = ((T_Reveal)action).ID;
                    if (((T_Reveal)action).Location.Item is Aptima.Asim.DDD.CommonComponents.DataTypeTools.LocationValue)
                    {
                        if (((Aptima.Asim.DDD.CommonComponents.DataTypeTools.LocationValue)((T_Reveal)action).Location.Item).exists == false)
                        {
                            Console.WriteLine("Uh oh, null location");
                        }
                    }
                    String IFF = "";
                    if (((T_Reveal)action).StartupParameters.Items.Length > 0)
                    {
                        for (int c = 0; c < ((T_Reveal)action).StartupParameters.Items.Length; c++)
                        {
                            if (((T_Reveal)action).StartupParameters.Items[c] == "ObjectName")
                            {
                                IFF = "Squawking=" + ((T_Reveal)action).StartupParameters.Items[c + 1];
                            }
                            c++; //get past the "value" item, which is the even numbered entry
                        }
                    }
                    infoText = String.Format("{0}\tREVEAL; object_id={1}; Owned_by={2}; Revealed_at={3}\r\n", infoText, objectID, ((T_Reveal)action).Owner, ((T_Reveal)action).Location.ToString());
                }
                else if (action is T_Move)
                {
                    stimType = "Move";
                    objectID = ((T_Move)action).ID;
                    infoText = String.Format("{0}\tMOVE; object_id={1}; Throttle={2:0.00}; Destination={3}\r\n", infoText, objectID, ((T_Move)action).Throttle, ((T_Move)action).Location.ToString());
                }
                else if (action is T_ScriptedItem)
                {
                    //TODO: check to see that the object is not dead -Lisa
                    objectID = ((T_ScriptedItem)action).ID;
                    stimType = ((T_ScriptedItem)action).ActionType;
                }

                if (stimType != "")
                {
                    _ddd.SendStimulusEvent(item.ID, dmId, objectID, stimType, _time, item.Parameters.FF_Difficulty, item.Parameters.TT_Difficulty);
                }
            }
            AppendToInfoBox(tbInfoBox, infoText);
        }