コード例 #1
0
ファイル: GameEngine.java プロジェクト: kw701/Anchovy
 /**
  * Extracts the first component name out of an info packet.
  *
  * @param info An info packet for a component
  * @return The component name contained within the given info packet.
  */
 private String getComponentNameFromInfo(InfoPacket info) {
   Iterator<Pair<?>> pairIt = info.namedValues.iterator();
   Pair<?> pair = null;
   String name = null;
   while (pairIt.hasNext() && name == null) {
     pair = pairIt.next();
     if (pair.getLabel() == Label.cNme) {
       name = (String) pair.second();
     }
   }
   return name;
 }
コード例 #2
0
ファイル: GameEngine.java プロジェクト: kw701/Anchovy
  /**
   * Using a list of Info Packets (generated from loading the same from file or elsewhere) Adds each
   * of the components described in the Info Packet list to the list of components in the power
   * plant Then sends the info packet to that component to initialize all its values Once all
   * components of the power plant are in the list and initialized, they are then all connected
   * together in the way described by the info packets.
   *
   * @param allPowerPlantInfo A list of info packets containing all the information about all
   *     components to be put into the power plant.
   */
  public void setupPowerPlantConfigureation(ArrayList<InfoPacket> allPowerPlantInfo) {
    Iterator<InfoPacket> infoIt = allPowerPlantInfo.iterator();
    InfoPacket currentInfo = null;
    String currentCompName = null;
    Component currentNewComponent = null;

    // Create component list.
    while (infoIt.hasNext()) {
      currentInfo = infoIt.next();
      currentCompName = getComponentNameFromInfo(currentInfo);

      // Determine component types we are dealing with.
      if (currentCompName.contains("Consenser")) {
        currentNewComponent = new Condenser(currentCompName);
      } else if (currentCompName.contains("Generator")) {
        currentNewComponent = new Generator(currentCompName);
      } else if (currentCompName.contains("Pump")) {
        currentNewComponent = new Pump(currentCompName);
      } else if (currentCompName.contains("Reactor")) {
        currentNewComponent = new Reactor(currentCompName);
      } else if (currentCompName.contains("Turbine")) {
        currentNewComponent = new Turbine(currentCompName);
      } else if (currentCompName.contains("Valve")) {
        currentNewComponent = new Valve(currentCompName);
      }
      addComponent(currentNewComponent); // add the component to the power plant

      try {
        assignInfoToComponent(currentInfo); // send the just added component its info.
      } catch (Exception e) {
        e.printStackTrace();
      }
    }

    // Connect components together
    infoIt = allPowerPlantInfo.iterator(); // reset the iterator TODO i think this works.
    ArrayList<String> inputComponents = new ArrayList<String>();
    ArrayList<String> outputComponents = new ArrayList<String>();

    Iterator<Pair<?>> pairIt = null;
    Pair currentPair = null;
    Label currentLabel = null;

    Component currentComponent = null;
    Iterator<Component> compIt = null;

    Iterator<String> connectionNameIt = null;
    Component attachComp = null;

    // get info for each components
    while (infoIt.hasNext()) {
      currentInfo = infoIt.next();
      pairIt = currentInfo.namedValues.iterator();

      // get the useful information out of the info.
      while (pairIt.hasNext()) {
        currentPair = pairIt.next();
        currentLabel = currentPair.getLabel();

        switch (currentLabel) {
          case cNme:
            currentCompName = (String) currentPair.second();
            break;
          case rcIF:
            inputComponents.add((String) currentPair.second());
            break;
          case oPto:
            outputComponents.add((String) currentPair.second());
            break;
          default:
            break;
        }
      }

      // Get the component that we are going to conect other components to.
      currentComponent = getPowerPlantComponent(currentCompName);

      // Attach each input component to the current component.
      connectionNameIt = inputComponents.iterator();
      while (connectionNameIt.hasNext()) {
        attachComp = getPowerPlantComponent(connectionNameIt.next());
        connectComponentTo(currentComponent, attachComp, true);
      }
      // Attach each output component to the current compoennt
      connectionNameIt = outputComponents.iterator();
      while (connectionNameIt.hasNext()) {
        attachComp = getPowerPlantComponent(connectionNameIt.next());
        connectComponentTo(currentComponent, attachComp, false);
      }
    }
  }