Ejemplo n.º 1
0
        public ActionResult Edit([Bind(Include = "id,teamName,lockedTeam")] MyVirtualTeam myVirtualTeam)
        {
            if (ModelState.IsValid)
            {
                db.Entry(myVirtualTeam).State = EntityState.Modified;
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(myVirtualTeam));
        }
Ejemplo n.º 2
0
        // GET: MyVirtualTeam/Details/5
        public ActionResult Details(string id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            MyVirtualTeam myVirtualTeam = db.myVirtualTeamDB.Find(id);

            if (myVirtualTeam == null)
            {
                return(HttpNotFound());
            }
            return(View(myVirtualTeam));
        }
Ejemplo n.º 3
0
        public ActionResult RemovePlayerFromVirtualTeam(int?playerId)
        {
            String          userName = System.Web.HttpContext.Current.User.Identity.Name;
            ApplicationUser currUser = db.Users.First(m => m.UserName == userName);

            MyVirtualTeam myVirtualTeam = db.myVirtualTeamDB.First(m => m.id == currUser.Id);

            FootballPlayer f = db.footballPlayerDB.Find(playerId);

            myVirtualTeam.footballPlayers.Remove(f);
            db.SaveChanges();

            return(RedirectToAction("Create"));
        }
Ejemplo n.º 4
0
        public ActionResult Create([Bind(Include = "myVirtualTeamName")] ModelAddFootballPlayersToVirtualTeam model)
        {
            String userName = System.Web.HttpContext.Current.User.Identity.Name;

            MyVirtualTeam myVirtualTeam = new MyVirtualTeam();

            myVirtualTeam.user     = db.Users.First(m => m.UserName == userName);
            myVirtualTeam.teamName = model.myVirtualTeamName;

            if (ModelState.IsValid)
            {
                db.myVirtualTeamDB.Add(myVirtualTeam);
                db.SaveChanges();
                return(RedirectToAction("Create"));
            }
            return(View(model));
        }
Ejemplo n.º 5
0
        // GET: MyVirtualTeam/Create
        public ActionResult Create()
        {
            ModelAddFootballPlayersToVirtualTeam model = new ModelAddFootballPlayersToVirtualTeam();

            model.footballPlayers = db.footballPlayerDB.Include(m => m.team).ToList();

            String          userName = System.Web.HttpContext.Current.User.Identity.Name;
            ApplicationUser currUser = db.Users.First(m => m.UserName == userName);

            MyVirtualTeam myVirtualTeam = db.myVirtualTeamDB.Find(currUser.Id);

            model.virtualTeam = myVirtualTeam;

            if (myVirtualTeam != null)
            {
                model.myVirtualTeamName = myVirtualTeam.teamName;
            }



            return(View(model));
        }
Ejemplo n.º 6
0
        public ActionResult LockVirtualTeam()
        {
            String          userName = System.Web.HttpContext.Current.User.Identity.Name;
            ApplicationUser currUser = db.Users.First(m => m.UserName == userName);

            MyVirtualTeam myVirtualTeam = db.myVirtualTeamDB.First(m => m.id == currUser.Id);

            if (myVirtualTeam.footballPlayers.Count != 11)
            {
                return(Content("You need to add 11 players to your virtual team"));
            }

            myVirtualTeam.lockedTeam = true;

            if (ModelState.IsValid)
            {
                db.Entry(myVirtualTeam).State = EntityState.Modified;
                db.SaveChanges();
            }


            return(RedirectToAction("Create"));
        }
Ejemplo n.º 7
0
        public ActionResult AddPlayerToVirtualTeam(int?playerId)
        {
            String          userName = System.Web.HttpContext.Current.User.Identity.Name;
            ApplicationUser currUser = db.Users.First(m => m.UserName == userName);

            MyVirtualTeam myVirtualTeam = db.myVirtualTeamDB.Find(currUser.Id);

            FootballPlayer f = db.footballPlayerDB.Find(playerId);

            if (myVirtualTeam == null)
            {
                return(Content("Please create a team first"));
            }

            if (myVirtualTeam.footballPlayers.Count >= 11)
            {
                return(Content("You have 11(max) number of players"));
            }
            myVirtualTeam.footballPlayers.Add(f);
            db.SaveChanges();

            return(RedirectToAction("Create"));
        }
Ejemplo n.º 8
0
        public ActionResult EarnedPoints(string userId)
        {
            List <Fixture> allFixtures = db.fixturesDB.ToList();

            MyVirtualTeam myVirtualTeam = db.myVirtualTeamDB.Find(userId);
            List <ModelViewEarnedPointsForPlayer> model = new List <ModelViewEarnedPointsForPlayer>();

            for (int i = 0; i < myVirtualTeam.footballPlayers.Count; i++)
            {
                FootballPlayer player            = myVirtualTeam.footballPlayers.ElementAt(i);
                ModelViewEarnedPointsForPlayer m = new ModelViewEarnedPointsForPlayer();
                m.footballPlayer = player;

                for (int j = 0; j < allFixtures.Count; j++)
                {
                    Fixture fixture          = allFixtures.ElementAt(j);
                    EarnedPointsPerFixture e = new EarnedPointsPerFixture();
                    e.fixture = fixture;


                    for (int k = 0; k < fixture.matches.Count; k++)
                    {
                        Match match = fixture.matches.ElementAt(k);

                        for (int t = 0; t < match.goals.Count; t++)
                        {
                            if (match.goals.ElementAt(t).footballPlayers.ElementAt(0).id == player.id)
                            {
                                //scorer
                                e.numOfGoalsScored++;
                            }
                            if (match.goals.ElementAt(t).footballPlayers.ElementAt(1).id == player.id)
                            {
                                //goal assisted by
                                e.numOfGoalAssists++;
                            }
                        }

                        if (player.TeamId == match.homeTeamId)
                        {
                            if (match.homeScore > match.awayScore)
                            {
                                e.numOfTeamWinsForPlayer = 1;
                            }
                            if (match.matchStats.homeBallPosession > match.matchStats.awayBallPosession)
                            {
                                e.numOfPlayersWithMoreBallPosessionPerMatch = 1;
                            }
                            if (match.matchStats.homeTotalShoots > match.matchStats.awayTotalShoots)
                            {
                                e.numOfPlayersWithMoreBallTotalShootsPerMatch = 1;
                            }
                            if (match.matchStats.homePasses > match.matchStats.awayPasses)
                            {
                                e.numOfPlayersWithMorePassesPerMatch = 1;
                            }
                            if (match.matchStats.homeFouls > match.matchStats.awayFouls)
                            {
                                e.numOfPlayersWithMoreFoulsPerMatch = 1;
                            }
                            if (match.matchStats.homeCorners > match.matchStats.awayCorners)
                            {
                                e.numOfPlayersWithMoreCornersPerMatch = 1;
                            }
                            if (match.matchStats.homeYellowCards > match.matchStats.awayYellowCards)
                            {
                                e.numOfPlayersWithMoreYellowCardsPerMatch = 1;
                            }
                            if (match.matchStats.homeRedCards > match.matchStats.awayRedCards)
                            {
                                e.numOfPlayersWithMoreRedCardsPerMatch = 1;
                            }
                        }
                        if (player.TeamId == match.awayTeamId)
                        {
                            if (match.awayScore > match.homeScore)
                            {
                                e.numOfTeamWinsForPlayer = 1;
                            }
                            if (match.matchStats.awayBallPosession > match.matchStats.homeBallPosession)
                            {
                                e.numOfPlayersWithMoreBallPosessionPerMatch = 1;
                            }
                            if (match.matchStats.awayTotalShoots > match.matchStats.homeTotalShoots)
                            {
                                e.numOfPlayersWithMoreBallTotalShootsPerMatch = 1;
                            }
                            if (match.matchStats.awayPasses > match.matchStats.homePasses)
                            {
                                e.numOfPlayersWithMorePassesPerMatch = 1;
                            }
                            if (match.matchStats.awayFouls > match.matchStats.homeFouls)
                            {
                                e.numOfPlayersWithMoreFoulsPerMatch = 1;
                            }
                            if (match.matchStats.awayCorners > match.matchStats.homeCorners)
                            {
                                e.numOfPlayersWithMoreCornersPerMatch = 1;
                            }
                            if (match.matchStats.awayYellowCards > match.matchStats.homeYellowCards)
                            {
                                e.numOfPlayersWithMoreYellowCardsPerMatch = 1;
                            }
                            if (match.matchStats.awayRedCards > match.matchStats.homeRedCards)
                            {
                                e.numOfPlayersWithMoreRedCardsPerMatch = 1;
                            }
                        }
                        e.totalPoints = (e.numOfGoalsScored * 2) + e.numOfGoalAssists
                                        + e.numOfTeamWinsForPlayer + e.numOfPlayersWithMoreBallPosessionPerMatch
                                        + e.numOfPlayersWithMoreBallTotalShootsPerMatch + e.numOfPlayersWithMorePassesPerMatch
                                        - e.numOfPlayersWithMoreFoulsPerMatch + e.numOfPlayersWithMoreCornersPerMatch
                                        - e.numOfPlayersWithMoreYellowCardsPerMatch - e.numOfPlayersWithMoreRedCardsPerMatch;
                    }

                    m.earnedPointsPerFixture.Add(e);
                }

                model.Add(m);
            }

            return(View(model));
        }
Ejemplo n.º 9
0
        private int countPointsForVirtualTeam(MyVirtualTeam virtualTeam)
        {
            int totalPoints = 0;

            List <Fixture> allFixtures = db.fixturesDB.ToList();

            List <ModelViewEarnedPointsForPlayer> model = new List <ModelViewEarnedPointsForPlayer>();

            for (int i = 0; i < virtualTeam.footballPlayers.Count; i++)
            {
                FootballPlayer player            = virtualTeam.footballPlayers.ElementAt(i);
                ModelViewEarnedPointsForPlayer m = new ModelViewEarnedPointsForPlayer();
                m.footballPlayer = player;

                for (int j = 0; j < allFixtures.Count; j++)
                {
                    Fixture fixture          = allFixtures.ElementAt(j);
                    EarnedPointsPerFixture e = new EarnedPointsPerFixture();
                    e.fixture = fixture;


                    for (int k = 0; k < fixture.matches.Count; k++)
                    {
                        Match match = fixture.matches.ElementAt(k);

                        for (int t = 0; t < match.goals.Count; t++)
                        {
                            if (match.goals.ElementAt(t).footballPlayers.ElementAt(0).id == player.id)
                            {
                                //scorer
                                e.numOfGoalsScored++;
                            }
                            if (match.goals.ElementAt(t).footballPlayers.ElementAt(1).id == player.id)
                            {
                                //goal assisted by
                                e.numOfGoalAssists++;
                            }
                        }

                        if (player.TeamId == match.homeTeamId)
                        {
                            if (match.homeScore > match.awayScore)
                            {
                                e.numOfTeamWinsForPlayer = 1;
                            }
                            if (match.matchStats.homeBallPosession > match.matchStats.awayBallPosession)
                            {
                                e.numOfPlayersWithMoreBallPosessionPerMatch = 1;
                            }
                            if (match.matchStats.homeTotalShoots > match.matchStats.awayTotalShoots)
                            {
                                e.numOfPlayersWithMoreBallTotalShootsPerMatch = 1;
                            }
                            if (match.matchStats.homePasses > match.matchStats.awayPasses)
                            {
                                e.numOfPlayersWithMorePassesPerMatch = 1;
                            }
                            if (match.matchStats.homeFouls > match.matchStats.awayFouls)
                            {
                                e.numOfPlayersWithMoreFoulsPerMatch = 1;
                            }
                            if (match.matchStats.homeCorners > match.matchStats.awayCorners)
                            {
                                e.numOfPlayersWithMoreCornersPerMatch = 1;
                            }
                            if (match.matchStats.homeYellowCards > match.matchStats.awayYellowCards)
                            {
                                e.numOfPlayersWithMoreYellowCardsPerMatch = 1;
                            }
                            if (match.matchStats.homeRedCards > match.matchStats.awayRedCards)
                            {
                                e.numOfPlayersWithMoreRedCardsPerMatch = 1;
                            }
                        }
                        if (player.TeamId == match.awayTeamId)
                        {
                            if (match.awayScore > match.homeScore)
                            {
                                e.numOfTeamWinsForPlayer = 1;
                            }
                            if (match.matchStats.awayBallPosession > match.matchStats.homeBallPosession)
                            {
                                e.numOfPlayersWithMoreBallPosessionPerMatch = 1;
                            }
                            if (match.matchStats.awayTotalShoots > match.matchStats.homeTotalShoots)
                            {
                                e.numOfPlayersWithMoreBallTotalShootsPerMatch = 1;
                            }
                            if (match.matchStats.awayPasses > match.matchStats.homePasses)
                            {
                                e.numOfPlayersWithMorePassesPerMatch = 1;
                            }
                            if (match.matchStats.awayFouls > match.matchStats.homeFouls)
                            {
                                e.numOfPlayersWithMoreFoulsPerMatch = 1;
                            }
                            if (match.matchStats.awayCorners > match.matchStats.homeCorners)
                            {
                                e.numOfPlayersWithMoreCornersPerMatch = 1;
                            }
                            if (match.matchStats.awayYellowCards > match.matchStats.homeYellowCards)
                            {
                                e.numOfPlayersWithMoreYellowCardsPerMatch = 1;
                            }
                            if (match.matchStats.awayRedCards > match.matchStats.homeRedCards)
                            {
                                e.numOfPlayersWithMoreRedCardsPerMatch = 1;
                            }
                        }
                        e.totalPoints = (e.numOfGoalsScored * 2) + e.numOfGoalAssists
                                        + e.numOfTeamWinsForPlayer + e.numOfPlayersWithMoreBallPosessionPerMatch
                                        + e.numOfPlayersWithMoreBallTotalShootsPerMatch + e.numOfPlayersWithMorePassesPerMatch
                                        - e.numOfPlayersWithMoreFoulsPerMatch + e.numOfPlayersWithMoreCornersPerMatch
                                        - e.numOfPlayersWithMoreYellowCardsPerMatch - e.numOfPlayersWithMoreRedCardsPerMatch;
                    }

                    m.earnedPointsPerFixture.Add(e);
                }

                model.Add(m);
            }

            for (int y = 0; y < model.Count; y++)
            {
                ModelViewEarnedPointsForPlayer mTmp = model.ElementAt(y);
                List <EarnedPointsPerFixture>  eTmp = mTmp.earnedPointsPerFixture;
                for (int h = 0; h < eTmp.Count; h++)
                {
                    totalPoints += eTmp.ElementAt(h).totalPoints;
                }
            }


            return(totalPoints);
        }