2016-11-02 1 views
0

私は、スクリーンショットをセグメント化し、グリッドのようなスクリーンショットをループすることで、あらかじめ定義された各ブロックを、実際のグリッドサイズは10X8です。それは2列目をスキップしています。私はブロックを100回書き直したので、私の論理的な欠陥について教えてください、過去3日間で10種類の方法は無駄です。 イメージをセグメント化するときに、ループは完全な列をスキップします

 Col1 Col2 Col3 
Row1  1  2 3 
Row2  4  5 6 
Row3  7  8 9 

 
"Starting to loop image for each ball" 


    [int]$startCell = 1 
    [int]$startRow = 1 
    [int]$startColumn = 1 
    [int]$totalLoops = 81 


    [int]$startleftCoord = 293 
    [int]$starttopCoord = 90 
    [int]$startrightCoord = 385 
    [int]$startbottomCoord = 160 
    [int]$cellheight = 75 
    [int]$cellwidth = 100 
    [int]$offset = 2 


     Do 
     {   


      #get the current time and build the filename from it 
      $Time = (Get-Date) 

      [string] $FileName += "-cellshot" 
      $FileName = "$($Time.Month)" 

      $FileName += '-' 
      $FileName += "$($Time.Day)" 
      $FileName += '-' 
      $FileName += "$($Time.Year)" 
      $FileName += '-' 
      $FileName += "$($Time.Hour)" 
      $FileName += '-' 
      $FileName += "$($Time.Minute)" 
      $FileName += '-' 
      $FileName += "$($Time.Second)" 
      $FileName += '-' 
      $FileName += "$($Time.Millisecond)" 
      $FileName += '-' 
      $FileName += [string]$currentCell 

      $FileName += '.png' 

      #use join-path to add path to filename 
      [string] $FilePath = (Join-Path $Path $FileName) 



      if (!$currentCell -OR !$currentColumn -OR !$currentRow){ 
       "Initializing Globals" 

       $currentCell = $startCell 
       $currentColumn = $startColumn 
       $currentRow = $startRow 

      } 


      "Designate capture point" 

      if ($currentColumn -gt 1 -AND $currentColumn -lt 11) { 

       "Calculating side coordinates offset" 
       $newleftCoord = $startleftCoord+($currentColumn*$cellwidth) 
       $newrightCoord = $startrightCoord+($currentColumn*$cellwidth) 

      } elseif ($currentColumn -eq 11) { 

       "Resetting column coordinates " 
       $currentColumn = $startColumn 
       $newleftCoord = $startleftCoord 
       $newrightCoord = $startrightCoord 

       "Compensating for multiple rows offest" 
       $newtopCoord = $starttopCoord+($currentRow*$cellheight)+$offset 
       $newbottomCoord = $startbottomCoord+($currentRow*$cellheight)+$offset 
       $currentRow++ 


      }else{ 
       "Getting number one" 
       $newleftCoord = $startleftCoord 
       $newtopCoord = $starttopCoord 
       $newrightCoord = $startrightCoord 
       $newbottomCoord = $startbottomCoord 
      } 



      "Current Column is " + $currentColumn 
      "Current row is " + $currentRow 
      "Current cell is " + $currentCell 


      #save cellshot 
      $cellBounds = [Drawing.Rectangle]::FromLTRB($newleftCoord,$newtopCoord, $newrightCoord, $newbottomCoord) 
      $cellObject = New-Object Drawing.Bitmap $cellBounds.Width, $cellBounds.Height 
      $cellGraphics = [Drawing.Graphics]::FromImage($cellObject) 
      $cellGraphics.CopyFromScreen($cellBounds.Location, [Drawing.Point]::Empty, $cellBounds.Size) 
      $cellGraphics.Dispose()  
      $cellObject.Save($FilePath) 





      $currentColumn++ 
      $currentCell++ 


     }Until ($currentCell -eq $totalLoops) 
    Start-Sleep -Second 20 
} 




      #load required assembly 
      Add-Type -Assembly System.Windows.Forms 

      Start-Sleep -Seconds 5  

      $ballarray = @{} 

      Do { 



       #run screenshot function 
       # If ($ballarray.count -eq 20){ 
       # GenScreenshot 
       #  "Snapped screenshot - $Filename ." 
       # }else{ 
        Do{ 

        GetNewBall 
        }Until($currentCell -eq 80) 
       #} 


       #$bounds = [Drawing.Rectangle]::FromLTRB(307,129, 1060, 668) 
       #screenshot $bounds $Filepath 

       #Start-Sleep -Second 10 
      }Until($ballarray.count -eq 20) 

答えて

0
1. $currentColumn is $null 

2. "Initializing Globals" 

3. $currentColumn = 1 

4. $newleftCoord = $startleftCoord #(is 293) 

5. $currentColumn++     #(now 2) 

6. if ($currentColumn -gt 1)   #(Yes, it's 2) 

7. $newleftCoord = $startleftCoord+($currentColumn*$cellwidth) 
       #= 293 + (2*100) 
       #= 493 

       #= jump from 293 to 493 = skipped column 

修正:1ではなく

293 + 0*100 
293 + 1*100 
293 + 2*100 
+1

の0から始まるカウントは時間を割いていただき、誠にありがとうございます。 「どのように&どのように」私は結果を得ていたかについてさらに精緻化するために、私はだった。あなたの「修正」はまさに解決策でした。私はあなたがうらやましい。 @TessellatingHecklerあなたの寛大な心をありがとう。私は15歳以上の私の代理人を得るためにコミュニティに貢献し、活動し続けています。それまでは、うまくいけば誰かが歩き回って投票をしています。 – Eric

+0

@Eric Thanks :)まだPowerShell ISEを見ていないのであれば、Windowsに付属しています。スクリプトを開いて、ループの最上部にあるコードをクリックし、 'Debug-> Toggle Breakpoint'(またはF9キー)を押すと、その行は赤色に変わります。 'Debug-> Run/Continue'(F5)を実行すると、実行され、その行で停止します。一度に1行ずつ 'Debug-> Step Over'(F10とF11)することができます。本当に便利に、変数の上にマウスを置いてその値を見ることができます。列の位置が間違って変わる理由とその理由を正確に探します。 '[DBG]:PS >>'プロンプトでコードを実行し、ポーズ状態でポークします。 – TessellatingHeckler

+0

(PS、あなたがしたい場合は、投票矢印の下にチェックマークを入れ、あなたの質問に「回答しました」と私のポイントを与える)私の答えを「受け入れる」ことができます。 – TessellatingHeckler

関連する問題