about summary refs log tree commit diff stats
path: root/tools/validator/validator.cpp
blob: f8024600c5f0f337d1accb74a0ff83474e89ec64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from .generated import common_pb2 as common_pb2
from .generated import data_pb2 as data_pb2
import pkgutil

class Lingo2StaticLogic:
    item_id_to_name: dict[int, str]
    location_id_to_name: dict[int, str]

    item_name_to_id: dict[str, int]
    location_name_to_id: dict[str, int]

    def __init__(self):
        self.item_id_to_name = {}
        self.location_id_to_name = {}

        file = pkgutil.get_data(__name__, "generated/data.binpb")
        self.objects = data_pb2.AllObjects()
        self.objects.ParseFromString(bytearray(file))

        for door in self.objects.doors:
            if door.type in [common_pb2.DoorType.STANDARD, common_pb2.DoorType.pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#include "validator.h"

#include <iostream>

#include "proto/human.pb.h"
#include "structs.h"
#include "util/identifiers.h"

namespace com::fourisland::lingo2_archipelago {
namespace {

void ValidateMap(const std::string& map_name, const MapInfo& map_info) {
  for (const auto& [node_path, node_info] : map_info.game_nodes) {
    if (node_info.uses > 1) {
      std::cout << "Map " << map_name << " node " << node_path
                << " is used in multiple places." << std::endl;
    } else if (node_info.uses == 0) {
      std::cout << "Map " << map_name << " node " << node_path
                << " is not used." << std::endl;
    }

    if (!node_info.defined) {
      std::cout << "Map " << map_name << " node " << node_path
                << " is not defined in the game file." << std::endl;
    }
  }
}

void ValidateRoom(const RoomIdentifier& room_identifier,
                  const RoomInfo& room_info) {
  if (room_info.definitions.empty()) {
    std::cout << "Room " << room_identifier.ShortDebugString()
              << " has no definition, but was referenced:" << std::endl;

    for (const DoorIdentifier& door_identifier :
         room_info.doors_referenced_by) {
      std::cout << "    DOOR " << door_identifier.ShortDebugString()
                << std::endl;
    }

    for (const PanelIdentifier& panel_identifier :
         room_info.panels_referenced_by) {
      std::cout << "    PANEL " << panel_identifier.ShortDebugString()
                << std::endl;
    }

    for (const HumanConnection& connection :
         room_info.connections_referenced_by) {
      std::cout << "    CONNECTION " << connection.ShortDebugString()
                << std::endl;
    }
  } else if (room_info.definitions.size() > 1) {
    std::cout << "Room " << room_identifier.ShortDebugString()
              << " was defined multiple times." << std::endl;
  }
}

void ValidateDoor(const DoorIdentifier& door_identifier,
                  const DoorInfo& door_info) {
  if (door_info.definitions.empty()) {
    std::cout << "Door " << door_identifier.ShortDebugString()
              << " has no definition, but was referenced:" << std::endl;

    for (const DoorIdentifier& other_door_identifier :
         door_info.doors_referenced_by) {
      std::cout << "    DOOR " << other_door_identifier.ShortDebugString()
                << std::endl;
    }

    for (const PanelIdentifier& panel_identifier :
         door_info.panels_referenced_by) {
      std::cout << "    PANEL " << panel_identifier.ShortDebugString()
                << std::endl;
    }

    for (const PaintingIdentifier& painting_identifier :
         door_info.paintings_referenced_by) {
      std::cout << "    PAINTING " << painting_identifier.ShortDebugString()
                << std::endl;
    }

    for (const PortIdentifier& port_identifier :
         door_info.ports_referenced_by) {
      std::cout << "    PORT " << port_identifier.ShortDebugString()
                << std::endl;
    }

    for (const HumanConnection& connection :
         door_info.connections_referenced_by) {
      std::cout << "    CONNECTION " << connection.ShortDebugString()
                << std::endl;
    }
  } else if (door_info.definitions.size() > 1) {
    std::cout << "Door " << door_identifier.ShortDebugString()
              << " was defined multiple times." << std::endl;
  }

  if (door_info.malformed_identifiers.HasAny()) {
    std::cout << "Door " << door_identifier.ShortDebugString()
              << " has malformed identifiers:" << std::endl;

    for (const PaintingIdentifier& painting_identifier :
         door_info.malformed_identifiers.paintings) {
      std::cout << "    PAINTING " << painting_identifier.ShortDebugString()
                << std::endl;
    }

    for (const PanelIdentifier& panel_identifier :
         door_info.malformed_identifiers.panels) {
      std::cout << "    PANEL " << panel_identifier.ShortDebugString()
                << std::endl;
    }

    for (const KeyholderIdentifier& keyholder_identifier :
         door_info.malformed_identifiers.keyholders) {
      std::cout << "    KEYHOLDER " << keyholder_identifier.ShortDebugString()
                << std::endl;
    }
  }
}

void ValidatePort(const PortIdentifier& port_identifier,
                  const PortInfo& port_info) {
  if (port_info.definitions.empty()) {
    std::cout << "Port " << port_identifier.ShortDebugString()
              << " has no definition, but was referenced:" << std::endl;

    for (const HumanConnection& connection :
         port_info.connections_referenced_by) {
      std::cout << "    CONNECTION " << connection.ShortDebugString()
                << std::endl;
    }
  } else if (port_info.definitions.size() > 1) {
    std::cout << "Port " << port_identifier.ShortDebugString()
              << " was defined multiple times." << std::endl;
  }
}

void ValidatePainting(const PaintingIdentifier& painting_identifier,
                      const PaintingInfo& painting_info) {
  if (painting_info.definitions.empty()) {
    std::cout << "Painting " << painting_identifier.ShortDebugString()
              << " has no definition, but was referenced:" << std::endl;

    for (const DoorIdentifier& door_identifier :
         painting_info.doors_referenced_by) {
      std::cout << "    DOOR " << door_identifier.ShortDebugString()
                << std::endl;
    }

    for (const HumanConnection& connection :
         painting_info.connections_referenced_by) {
      std::cout << "    CONNECTION " << connection.ShortDebugString()
                << std::endl;
    }
  } else if (painting_info.definitions.size() > 1) {
    std::cout << "Painting " << painting_identifier.ShortDebugString()
              << " was defined multiple times." << std::endl;
  }
}

void ValidatePanel(const PanelIdentifier& panel_identifier,
                   const PanelInfo& panel_info) {
  if (panel_identifier.name().empty()) {
    std::cout << "Panel " << panel_identifier.ShortDebugString()
              << " has no name." << std::endl;
  }

  if (panel_info.definitions.empty()) {
    std::cout << "Panel " << panel_identifier.ShortDebugString()
              << " has no definition, but was referenced:" << std::endl;

    for (const DoorIdentifier& door_identifier :
         panel_info.doors_referenced_by) {
      std::cout << "    DOOR " << door_identifier.ShortDebugString()
                << std::endl;
    }

    for (const HumanConnection& connection :
         panel_info.connections_referenced_by) {
      std::cout << "    CONNECTION " << connection.ShortDebugString()
                << std::endl;
    }
  } else if (panel_info.definitions.size() > 1) {
    std::cout << "Panel " << panel_identifier.ShortDebugString()
              << " was defined multiple times." << std::endl;
  }

  for (const auto& [answer, proxy_info] : panel_info.proxies) {
    if (proxy_info.definitions.empty()) {
      std::cout << "Panel " << panel_identifier.ShortDebugString()
                << " with answer \"" << answer
                << "\" has no definition, but was referenced:" << std::endl;

      for (const DoorIdentifier& door_identifier :
           proxy_info.doors_referenced_by) {
        std::cout << "    DOOR " << door_identifier.ShortDebugString()
                  << std::endl;
      }

      for (const HumanConnection& connection :
           proxy_info.connections_referenced_by) {
        std::cout << "    CONNECTION " << connection.ShortDebugString()
                  << std::endl;
      }
    } else if (proxy_info.definitions.size() > 1) {
      std::cout << "Panel " << panel_identifier.ShortDebugString()
                << " with answer \"" << answer
                << "\" was defined multiple times." << std::endl;
    }
  }
}

void ValidateKeyholder(const KeyholderIdentifier& keyholder_identifier,
                       const KeyholderInfo& keyholder_info) {
  if (keyholder_info.definitions.empty()) {
    std::cout << "Keyholder " << keyholder_identifier.ShortDebugString()
              << " has no definition, but was referenced:" << std::endl;

    for (const DoorIdentifier& door_identifier :
         keyholder_info.doors_referenced_by) {
      std::cout << "    DOOR " << door_identifier.ShortDebugString()
                << std::endl;
    }
  } else if (keyholder_info.definitions.size() > 1) {
    std::cout << "Keyholder " << keyholder_identifier.ShortDebugString()
              << " was defined multiple times." << std::endl;
  }
}

void ValidateLetter(const LetterIdentifier& letter_identifier,
                    const LetterInfo& letter_info) {
  std::string letter_name = std::string(1, std::get<0>(letter_identifier)) +
                            (std::get<1>(letter_identifier) ? "2" : "1");

  if (letter_info.defined_in.size() > 1) {
    std::cout << "Letter " << letter_name
              << " was defined in multiple places:" << std::endl;

    for (const RoomIdentifier& room_identifier : letter_info.defined_in) {
      std::cout << "    " << room_identifier.ShortDebugString() << std::endl;
    }
  }
}

void ValidateEnding(const std::string& ending_name,
                    const EndingInfo& ending_info) {
  if (ending_info.defined_in.empty()) {
    std::cout << "Ending " << ending_name
              << " has no definition, but was referenced:" << std::endl;

    for (const DoorIdentifier& door_identifier :
         ending_info.doors_referenced_by) {
      std::cout << "    DOOR " << door_identifier.ShortDebugString()
                << std::endl;
    }
  } else if (ending_info.defined_in.size() > 1) {
    std::cout << "Ending " << ending_name
              << " was defined in multiple places:" << std::endl;

    for (const RoomIdentifier& room_identifier : ending_info.defined_in) {
      std::cout << "    " << room_identifier.ShortDebugString() << std::endl;
    }
  }
}

}  // namespace

void ValidateCollectedInfo(const CollectedInfo& info) {
  for (const auto& [map_name, map_info] : info.maps) {
    ValidateMap(map_name, map_info);
  }
  for (const auto& [room_identifier, room_info] : info.rooms) {
    ValidateRoom(room_identifier, room_info);
  }
  for (const auto& [door_identifier, door_info] : info.doors) {
    ValidateDoor(door_identifier, door_info);
  }
  for (const auto& [port_identifier, port_info] : info.ports) {
    ValidatePort(port_identifier, port_info);
  }
  for (const auto& [painting_identifier, painting_info] : info.paintings) {
    ValidatePainting(painting_identifier, painting_info);
  }
  for (const auto& [panel_identifier, panel_info] : info.panels) {
    ValidatePanel(panel_identifier, panel_info);
  }
  for (const auto& [keyholder_identifier, keyholder_info] : info.keyholders) {
    ValidateKeyholder(keyholder_identifier, keyholder_info);
  }
  for (const auto& [letter_identifier, letter_info] : info.letters) {
    ValidateLetter(letter_identifier, letter_info);
  }
  for (const auto& [ending_name, ending_info] : info.endings) {
    ValidateEnding(ending_name, ending_info);
  }
}

}  // namespace com::fourisland::lingo2_archipelago