happyleavesaoc / aoc-mgz

Age of Empires II recorded game parsing and summarization in Python 3.
MIT License
197 stars 42 forks source link

No "largest army" from Summary #9

Closed sevencastles closed 4 years ago

sevencastles commented 4 years ago
    {
      "player_name": "EDITED",
      "total_score": 20300,
      "total_scores": [
        32981,
        20300,
        23559,
        4825,
        4281,
        5857,
        31856,
        12565
      ],
      "victory": false,
      "civilization": 2,
      "color_id": 2,
      "team": 3,
      "ally_count": 3,
      "random_civ": true,
      "mvp": false,
      "result": 0,
      "military": {
        "score": 9863,
        "units_killed": 447,
        "hit_points_killed": 49315,
        "units_lost": 452,
        "buildings_razed": 16,
        "hit_points_razed": 3433,
        "buildings_lost": 115,
        "units_converted": 0
      },
      "economy": {
        "score": 4763,
        "food_collected": 45740,
        "wood_collected": 48911,
        "stone_collected": 3451,
        "gold_collected": 34607,
        "tribute_sent": 6500,
        "tribute_received": 2700,
        "trade_gold": 21294,
        "relic_gold": 0
      },
      "technology": {
        "score": 5479,
        "feudal_time_int": 746,
        "feudal_time": "00:12:26",
        "castle_time_int": 1301,
        "castle_time": "00:21:41",
        "imperial_time_int": 2596,
        "imperial_time": "00:43:16",
        "explored_percent": 75,
        "research_count": 58,
        "research_percent": 39
      },
      "society": {
        "score": 195,
        "total_wonders": 0,
        "total_castles": 2,
        "relics_captured": 0,
        "villager_high": 92
      }

I cannot find any "largest army" information from the summary. Is this expected? How can I retrieve this information?

sevencastles commented 4 years ago

Same thing for "survival to finish" (inside "society" achievements)

goto-bus-stop commented 4 years ago

The largest army data is not stored in the rec unfortunately. I think the result value may be related to the "survival to finish" concept in the achievements but I'm not sure what value you should be looking for there.

sevencastles commented 4 years ago

That's unfortunate. I guess I have no other choice than adding this statistic by hand. Feel free to close this issue, and thank you for your promptly help.