This commit is contained in:
smiley
2017-11-23 02:28:42 +01:00
parent 693e1ee965
commit 7ea7b3c85a
55 changed files with 2453 additions and 3244 deletions
+215
View File
@@ -0,0 +1,215 @@
<?php
/**
* Class MaskPatternTester
*
* @filesource MaskPatternTester.php
* @created 22.11.2017
* @package chillerlan\QRCode\Data
* @author Smiley <smiley@chillerlan.net>
* @copyright 2017 Smiley
* @license MIT
*/
namespace chillerlan\QRCode\Data;
/**
* @link http://www.thonky.com/qr-code-tutorial/data-masking
*/
class MaskPatternTester{
/**
* @var \chillerlan\QRCode\Data\QRMatrix
*/
protected $matrix;
/**
* @var int
*/
protected $moduleCount;
/**
* @param \chillerlan\QRCode\Data\QRMatrix $matrix
*/
public function setMatrix(QRMatrix $matrix){
$this->matrix = $matrix;
$this->moduleCount = $this->matrix->size();
}
/**
* Returns the penalty for the given mask pattern
*
* @see \chillerlan\QRCode\QRCode::getBestMaskPattern()
*
* @return float
*/
public function testPattern():float{
$penalty = 0;
for($level = 1; $level <= 4; $level++){
$penalty += call_user_func([$this, 'testLevel'.$level]);
}
return $penalty;
}
/**
* Checks for each group of five or more same-colored modules in a row (or column)
*
* @return float
*/
protected function testLevel1():float{
$penalty = 0;
foreach($this->matrix->matrix() as $y => $row){
foreach($row as $x => $val){
$count = 0;
for($ry = -1; $ry <= 1; $ry++){
if($y + $ry < 0 || $this->moduleCount <= $y + $ry){
continue;
}
for($rx = -1; $rx <= 1; $rx++){
if(($ry === 0 && $rx === 0) || ($x + $rx < 0 || $this->moduleCount <= $x + $rx)){
continue;
}
if($this->matrix->check($x + $rx, $y + $ry) === ($val >> 8 > 0)){
$count++;
}
}
}
if($count > 5){
$penalty += (3 + $count - 5);
}
}
}
return $penalty;
}
/**
* Checks for each 2x2 area of same-colored modules in the matrix
*
* @return float
*/
protected function testLevel2():float{
$penalty = 0;
foreach($this->matrix->matrix() as $y => $row){
if($y > $this->moduleCount - 2){
break;
}
foreach($row as $x => $val){
if($x > $this->moduleCount - 2){
break;
}
$count = 0;
if($val >> 8 > 0){
$count++;
}
if($this->matrix->check($y, $x + 1)){
$count++;
}
if($this->matrix->check($y + 1, $x)){
$count++;
}
if($this->matrix->check($y + 1, $x + 1)){
$count++;
}
if($count === 0 || $count === 4){
$penalty += 3;
}
}
}
return $penalty;
}
/**
* Checks if there are patterns that look similar to the finder patterns
*
* @return float
*/
protected function testLevel3():float{
$penalty = 0;
foreach($this->matrix->matrix() as $y => $row){
foreach($row as $x => $val){
if($x > $this->moduleCount - 7){
break;
}
if(
$val >> 8 > 0
&& !$this->matrix->check($x + 1, $y)
&& $this->matrix->check($x + 2, $y)
&& $this->matrix->check($x + 3, $y)
&& $this->matrix->check($x + 4, $y)
&& !$this->matrix->check($x + 5, $y)
&& $this->matrix->check($x + 6, $y)
){
$penalty += 40;
}
}
}
for ($x = 0; $x < $this->moduleCount; $x++) {
for ($y = 0; $y < $this->moduleCount - 6; $y++) {
if(
$this->matrix->check($x, $y )
&& !$this->matrix->check($x, $y + 1)
&& $this->matrix->check($x, $y + 2)
&& $this->matrix->check($x, $y + 3)
&& $this->matrix->check($x, $y + 4)
&& !$this->matrix->check($x, $y + 5)
&& $this->matrix->check($x, $y + 6)
){
$penalty += 40;
}
}
}
return $penalty;
}
/**
* Checks if more than half of the modules are dark or light, with a larger penalty for a larger difference
*
* @return float
*/
protected function testLevel4():float {
$count = 0;
foreach($this->matrix->matrix() as $y => $row){
foreach($row as $x => $val){
if($val >> 8 > 0){
$count++;
}
}
}
return (abs(100 * $count / $this->moduleCount / $this->moduleCount - 50) / 5) * 10;
}
}