2014-11-03 38 views
1

我正在Unity中进行一个游戏,这个游戏是在您控制的单位的六面板上播放的。当一个单位被选中时,它周围的格子被点亮,表示(通过颜色 - 蓝色移动,橙色攻击),你可以移动到他们身上,或者攻击他们。下面是引用一个截图:获取我的一个队列的错误..需要帮助搞清楚

http://i.imgur.com/UbijlD8.jpg

这里是我的功能,显示不吉利的东西:

//breadth first search 
//has built in range checker so you dont have to check the path length of every individual node 
//works whether attackRange or moveRange is longer 
public void showUnitsHexes(ArmyUnit unitScript, bool trueShowFalseHide) 
{ 
    //HIDING 
    if(trueShowFalseHide == false) 
    { 
     foreach(TileNode node in nodesToHide) 
     { 
      //change the mat back to the default white 
      comReader.changeNodeMat(node, CommandReader.hexMats.defaultt); 

      node.Hide(); 
     } 

     nodesToHide.Clear(); 
     return; 
    } 

    //SHOWING 
    //Only show if its your turn (return on enemy turn) 
    if ((comReader.playerNum == getWhichButtonAndPlayer.playerType.P1 && comReader.CurrPlayerTurn == 2) 
    || (comReader.playerNum == getWhichButtonAndPlayer.playerType.P2 && comReader.CurrPlayerTurn == 1)) 
     return; 

    #region SETUP 
    //these were originally parameters but it's easier to just set them in the funct itself 
    TileNode startNode = unitScript.node; 
    int attackRange = unitScript.attackRange; 
    int moveRange = unitScript.moveRange; 

    //safety-net 
    if (startNode == null || (attackRange < 1 && moveRange < 1)) 
     return; 

    //how to know when you're done 
    int finishedRadius; 
    if (moveRange > attackRange) 
     finishedRadius = moveRange; 
    else 
     finishedRadius = attackRange; 
    #endregion 

    //get the list of nodes not to go over twice, and the queue of nodes to go through 
    List<TileNode> nodesPassedAlready = new List<TileNode>(); 
    nodesPassedAlready.Add(startNode); 
    Queue<TileNode> nodesToGoToInCurrentRadius = new Queue<TileNode>(); 
    Queue<TileNode> nodesToGoToInNextRadius = new Queue<TileNode>(); 
    int currentRadius = 1; 
    bool finished = false; 

    //add the 6 nodes surrounding the initial node to the queue to start things off 
    foreach (TileNode n in startNode.nodeLinks) 
     nodesToGoToInCurrentRadius.Enqueue(n); 

    //while the queue is not empty... 
    while (finished == false) 
    { 
     //END CHECK 
     //if done in current radius, need to go to next radius 
     if (nodesToGoToInCurrentRadius.Count < 1) 
     { 
      if (currentRadius == finishedRadius) 
      { 
       finished = true; 
       continue; 
      } 
      else 
      { 
       currentRadius++; 
       nodesToGoToInCurrentRadius = nodesToGoToInNextRadius; 
       nodesToGoToInNextRadius = new Queue<TileNode>(); 
      } 
     } 

     //...get the next node and... 
     TileNode n = nodesToGoToInCurrentRadius.Dequeue(); 

     //...if there's no issue... 
     #region safety check 
     //...if the node is null, has already been shown, is inhabited by a non-unit, don't bother with it 
     if (n == null || nodesPassedAlready.Contains(n) || comReader.hexIsInhabited(n, false, true)) 
      continue; 

     //...if is inhabited and outside of attackRange, or inhabited by a friendly unit, don't bother with it 
     //NOTE: rather than combining this with the above if check, leave it separated (and AFTER) to avoid errors when n == null) 
     ArmyUnit currUnit = comReader.CurrentlySelectedUnit; 
     if (comReader.hexIsInhabited(n, true, true) && (currentRadius > currUnit.attackRange || comReader.unitIsMine(comReader.getUnitOnHex(n).GetComponent<ArmyUnit>()))) 
      continue; 
     #endregion 

     //...1) show it 
     #region show nodes 
     //show as requested, add it to the list 

     //change the mat to whatever color is relevant: if n is inhabited and in attack range, color atkColor, otherwise color moveColor 
     if (comReader.hexIsInhabited(n, true, true) && currentRadius <= attackRange) 
     { 
      Debug.Log("attackRange: " + attackRange); 
      Debug.Log(n.name); 
      if (n.name.Equals("node345")) 
       Debug.Log("checked it"); 

      comReader.changeNodeMat(n, CommandReader.hexMats.attack); 
      n.Show(); 
      nodesToHide.Add(n); 
     } 

     //make sure hex is in moveRange. possible that it isnt, if attack range > moveRange 
     else if (moveRange >= currentRadius) 
     { 
      comReader.changeNodeMat(n, CommandReader.hexMats.move); 
      n.Show(); 
      nodesToHide.Add(n); 
     } 

     //do not take n.show() out of those braces. If you do, it will sometimes show white nodes and you don't want to show them 
     #endregion 

     //...2) don't go over it a second time 
     nodesPassedAlready.Add(n); 

     //...and 3) add all surrounding nodes to the queue if they haven't been gone over yet AND ARE NOT ALREADY IN THE QUEUE 
     foreach (TileNode adjacentNode in n.nodeLinks) 
     { 
      #region safety check 
      //...if the node is null or has already been shown or is inhabited by a non-unit, don't bother with it 
      if (adjacentNode == null || nodesPassedAlready.Contains(adjacentNode) || comReader.hexIsInhabited(adjacentNode, false, true)) 
       continue; 

      //...if is inhabited and outside of attackRange, don't bother with it 
      //NOTE: rather than combining this with the above if check, leave it separated (and AFTER) to avoid errors when n == null) 
      //currUnit already defined in the above safetycheck 
      if (comReader.hexIsInhabited(adjacentNode, true, true) && currentRadius > currUnit.attackRange) 
       continue; 
      #endregion 

      nodesToGoToInNextRadius.Enqueue(adjacentNode); 
     } 
    } 
} 

我的问题是,当我设置的攻击范围大于地图的大小(设置为30 ,地图是12x19),我得到的错误:

InvalidOperationException: Operation is not valid due to the current state of the object System.Collections.Generic.Queue`1[TileNode].Peek()

同样的,当我设定的范围,以17或18 - 足以能够攻击从那里你看到敌人的基地,我图片中的单位 - 尽管它在攻击范围内,该基地的节点甚至从未在该功能中看过。

这个错误信息是什么意思?我的逻辑错误在哪里?对不起,如果这是不经意地写 - 我会很乐意回答你可能有任何问题。谢谢!

回答

2

nodesToGoToInNextRadius是否有空?

Queue.Dequeue在队列为空时调用Queue.Peek并抛出InvalidOperationException。 您分配nodesToGoToInNextRadius到nodesToGoToInCurrentRadius:

nodesToGoToInCurrentRadius = nodesToGoToInNextRadius; 

,而不是再检查是否有队列中的任何东西。

if (nodesToGoToInCurrentRadius.Count < 1) // that's fine 
    { 
     if (currentRadius == finishedRadius) 
     { 
      finished = true; 
      continue; 
     } 
     else 
     { 
      currentRadius++; 
      //1. now you are swapping queues 

      nodesToGoToInCurrentRadius = nodesToGoToInNextRadius; 
      nodesToGoToInNextRadius = new Queue<TileNode>(); 
     } 
    } 

    //2. and calling Dequeue on swapped queue without checking if it's empty. 
    TileNode n = nodesToGoToInCurrentRadius.Dequeue(); 
+0

谢谢你的非常详细的答案!我在if case(在TileNoden = ... Dequeue())之前添加了一个检查。它所做的只是说,如果nodesToGoToInCurrentRadius为空,请继续。我没有得到这个错误,所以这可能是导致它的原因。但是,它甚至没有检查到敌方基地的节点。 – user3808547 2014-11-04 05:57:27

+0

我看不出任何明显的东西。你有没有尝试在每个重要部分设置中断点并逐步完成?尝试添加更多的Debug.Log()以获得所有处理节点的完整视图。 – b2zw2a 2014-11-04 07:20:40

相关问题