Example #1
0
        public static void Update()
        {
            if (!currentState.IsActive())
            {
                State prevState = StateMachine.currentState;
                currentState = StateMachine.Next();
                Console.WriteLine(MSG_UPDATE_STATE + currentState.ToString());

                if (Stats())
                {
                    WriteData(GREATEST_LORD_FILENAME, GreatestLord.Update(playerStats));
                }
                else if (Game() && prevState == stateList[LOBBY])
                {
                    ArchiveGreatestLordStatFile();
                }
            }

            if (Game())
            {
                UpdatePlayerStats(playerStats);
                WriteData(PLAYERDATA_FILENAME, playerStats);
                WriteData(GREATEST_LORD_FILENAME, GreatestLord.Update(playerStats));
            }

            if (Lobby())
            {
                ResetWeightedStats();
            }
        }
Example #2
0
        public static Dictionary <string, object> Update(LinkedList <Dictionary <string, object> > endingPlayerStats)
        {
            Dictionary <string, int> scoreDict = new Dictionary <string, int>();

            scoreDict["Gold"] = 0;
            scoreDict["WeightedTroopsKilled"]       = 0;
            scoreDict["LordKills"]                  = 0;
            scoreDict["MapStartYear"]               = 0;
            scoreDict["MapStartMonth"]              = 0;
            scoreDict["MapEndYear"]                 = 0;
            scoreDict["MapEndMonth"]                = 0;
            scoreDict["WeightedBuildingsDestroyed"] = 0;

            Dictionary <string, object> mapStats = new Dictionary <string, object>();

            foreach (KeyValuePair <string, Dictionary <string, string> > entry in playerData["Map"])
            {
                int    addr  = Convert.ToInt32(entry.Value["address"], 16);
                object value = Reader.ReadType(addr, entry.Value["type"].ToString());
                mapStats[entry.Key] = value;
                try
                {
                    scoreDict[entry.Key] = Convert.ToInt32(value);
                }
                catch (Exception)
                {
                    continue;
                }
            }
            if ((int)mapStats["MapStartYear"] == 0)
            {
                return(statsDictionary);
            }

            statsDictionary["Map"] = mapStats;

            LinkedList <Dictionary <string, object> > playerStats = new LinkedList <Dictionary <string, object> >();

            for (var i = 0; i < MAX_PLAYERS; i++)
            {
                Dictionary <string, object> currentPlayer = new Dictionary <string, object>();
                currentPlayer["PlayerNumber"] = i + 1;
                foreach (KeyValuePair <string, Dictionary <string, string> > entry in playerData["Player"])
                {
                    int    addr = Convert.ToInt32(entry.Value["address"], 16) + Convert.ToInt32(entry.Value["offset"], 16) * i;
                    string type = entry.Value["type"];

                    object value = Reader.ReadType(addr, type);
                    currentPlayer[entry.Key] = value;

                    if (entry.Key == "Active" && value.ToString().ToLowerInvariant() == "false")
                    {
                        break;
                    }

                    try
                    {
                        scoreDict[entry.Key] = Convert.ToInt32(value);
                    }
                    catch (Exception)
                    {
                        continue;
                    }
                }
                if (currentPlayer["Active"].ToString().ToLowerInvariant() == "false")
                {
                    continue;
                }

                foreach (var player in endingPlayerStats)
                {
                    if ((int)player["PlayerNumber"] == (int)currentPlayer["PlayerNumber"])
                    {
                        currentPlayer["EconomyScore"]        = player["EconomyScore"];
                        currentPlayer["MilitaryScore"]       = player["MilitaryScore"];
                        currentPlayer["Score"]               = player["Score"];
                        currentPlayer["LargestWeightedArmy"] = player["LargestWeightedArmy"];
                        currentPlayer["LargestArmy"]         = player["LargestArmy"];
                    }
                }

                currentPlayer["VanillaScore"] =
                    GreatestLord.CalculateScore(scoreDict["Gold"], scoreDict["LordKills"], scoreDict["WeightedTroopsKilled"],
                                                scoreDict["WeightedBuildingsDestroyed"], scoreDict["MapStartYear"], scoreDict["MapStartMonth"],
                                                scoreDict["MapEndYear"], scoreDict["MapEndMonth"]);
                playerStats.AddLast(currentPlayer);
            }
            statsDictionary["PlayerStatistics"] = playerStats;
            return(statsDictionary);
        }