réorg
This commit is contained in:
@@ -51,7 +51,12 @@ $img_h = $height+(2*$bandeau);
|
||||
// création d'une image plus haute pour inclure bandeaux haut et bas
|
||||
$img = imagecreatetruecolor($img_w, $img_h);
|
||||
|
||||
blockchain::DrawBlockHeaderFooter($the_block, $img, $bandeau);
|
||||
$paramHeader = blockchain::DrawBlockHeaderFooter($the_block, $img, $bandeau);
|
||||
|
||||
imagefilledrectangle($img, 0, $bandeau, $width, $bandeau + $height, $paramHeader[2]);
|
||||
|
||||
imagefilledrectangle($img, 0, 0, 0, $img_h, $paramHeader[2]);
|
||||
imagefilledrectangle($img, $img_w-1, 0, $img_w-1, $img_h, $paramHeader[2]);
|
||||
|
||||
imagepng($img, DATA_PATH.'/hashes/'.$the_block->hash.'.png');
|
||||
|
||||
|
||||
@@ -1,40 +1,32 @@
|
||||
#!/bin/bash
|
||||
flag=$TMP_PATH/hashes_bot.flag
|
||||
METHODE=hashes
|
||||
flag=$TMP_PATH/${METHODE}_bot.flag
|
||||
date=`date +%Y%m%d0000`
|
||||
|
||||
if [ -f $flag ];
|
||||
then
|
||||
echo "hashes_bot is already running !"
|
||||
echo "${METHODE}_bot is already running !"
|
||||
exit 0
|
||||
fi
|
||||
touch $flag
|
||||
|
||||
cd $APPS_PATH/methode/hashes
|
||||
cd $APPS_PATH/methode/$METHODE
|
||||
for BLOCK in `grep LAST $DATA_PATH/block_list.txt | awk '{print $2}'`
|
||||
do
|
||||
if [ ! -f $DATA_PATH/hashes/$BLOCK.png ]
|
||||
if [ ! -f $DATA_PATH/$METHODE/$BLOCK.png ]
|
||||
then
|
||||
BLOCK_HEIGHT=`grep $BLOCK $DATA_PATH/block_list.txt | awk '{print $3}'`
|
||||
php robot.php $BLOCK $((RANDOM % 6))
|
||||
|
||||
echo $BLOCK_HEIGHT $BLOCK >> $DATA_PATH/hashes2hashes/liste.txt
|
||||
mv $DATA_PATH/hashes2hashes/liste.txt $DATA_PATH/hashes2hashes/liste.new
|
||||
sort -k1 -n $DATA_PATH/hashes2hashes/liste.new > $DATA_PATH/hashes2hashes/liste.txt
|
||||
rm -f $DATA_PATH/hashes2hashes/liste.new
|
||||
COMPTEUR=`wc -l $DATA_PATH/hashes2hashes/liste.txt | awk '{print $1}' `
|
||||
if [ $COMPTEUR -eq 6 ]
|
||||
then
|
||||
php assemble.php
|
||||
rm -f $DATA_PATH/hashes2hashes/liste.old
|
||||
mv $DATA_PATH/hashes2hashes/liste.txt $DATA_PATH/hashes2hashes/liste.old
|
||||
fi
|
||||
fi
|
||||
|
||||
BNAME=`grep $BLOCK $DATA_PATH/block_list.txt | awk '{print $1}'`
|
||||
if [ "$BNAME" == "LAST" ]
|
||||
then
|
||||
touch $DATA_PATH/hashes/$BLOCK.png
|
||||
touch $DATA_PATH/$METHODE/$BLOCK.png
|
||||
else
|
||||
touch -t $date $DATA_PATH/hashes/$BLOCK.png
|
||||
touch -t $date $DATA_PATH/$METHODE/$BLOCK.png
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
30
methode/hashes2hashes/robot.sh
Executable file
30
methode/hashes2hashes/robot.sh
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
METHODE=hashes2hashes
|
||||
flag=$TMP_PATH/${METHODE}_bot.flag
|
||||
date=`date +%Y%m%d0000`
|
||||
|
||||
if [ -f $flag ];
|
||||
then
|
||||
echo "${METHODE}_bot is already running !"
|
||||
exit 0
|
||||
fi
|
||||
touch $flag
|
||||
|
||||
cd $APPS_PATH/methode/$METHODE
|
||||
|
||||
mv $DATA_PATH/$METHODE/liste.txt $DATA_PATH/$METHODE/liste.new
|
||||
sort -k1 -n $DATA_PATH/$METHODE/liste.new > $DATA_PATH/$METHODE/liste.txt
|
||||
rm -f $DATA_PATH/$METHODE/liste.new
|
||||
|
||||
BLOCK=`head -n 1 $DATA_PATH/$METHODE/liste.txt | awk '{print $2}'`
|
||||
COMPTEUR=`wc -l $DATA_PATH/$METHODE/liste.txt | awk '{print $1}'`
|
||||
|
||||
if [ $COMPTEUR -gt 5 ]
|
||||
then
|
||||
php robot.php
|
||||
|
||||
rm -f $DATA_PATH/$METHODE/liste.old
|
||||
mv $DATA_PATH/$METHODE/liste.txt $DATA_PATH/$METHODE/liste.old
|
||||
fi
|
||||
|
||||
rm -f $flag
|
||||
@@ -1,409 +0,0 @@
|
||||
<?php
|
||||
|
||||
class topisto_spline2
|
||||
{
|
||||
|
||||
public static function DefaultDrawBlock($the_block, $vImage, $x, $y, $graph_width, $graph_height, $type=1)
|
||||
{
|
||||
topisto_spline2::DrawBlock($the_block, $vImage, $x, $y, $graph_width, $graph_height, 3.5, 1, $type);
|
||||
topisto_spline2::DrawBlock($the_block, $vImage, $x, $y, $graph_width, $graph_height, 5, 30, $type);
|
||||
}
|
||||
|
||||
//
|
||||
// modes
|
||||
// - 0 : une droite de couleur uniforme
|
||||
// - 1 : une droite en dégradé de couleur
|
||||
// - 2 : une spline en dégradé de couleur passant les valeurs du hash de la transaction
|
||||
// - 3 : la spline dessinée en 2 est atténuée à gauche et amplifiée à droite
|
||||
// - 3.5 : idem mode 3, mais avec de la transparence
|
||||
// - 4 : $iterations splines oscillants autour de la spline dessinée en 2
|
||||
// - 4.5 : les splines sont desssinées en transparence
|
||||
//
|
||||
public static function DrawBlock($the_block, $vImage, $parametres)
|
||||
{
|
||||
|
||||
return topisto_spline2::DrawLine($the_block, $vImage, $parametres);
|
||||
|
||||
$somme = 0;
|
||||
$min =-1;
|
||||
$max = 0;
|
||||
$type = 1;
|
||||
$local_iterations = 200;
|
||||
|
||||
if (isset($parametres['x'])) $x = $parametres['x'];
|
||||
if (isset($parametres['y'])) $y = $parametres['y'];
|
||||
if (isset($parametres['width'])) $width = $parametres['width'];
|
||||
if (isset($parametres['height'])) $height = $parametres['height'];
|
||||
if (isset($parametres['methode'])) $mode = $parametres['methode'];
|
||||
if (isset($parametres['type'])) $type = $parametres['type'];
|
||||
if (isset($parametres['iterations'])) $local_iterations = $parametres['iterations'];
|
||||
if (isset($parametres['font_color'])) $vFgColor = $parametres['font_color'];
|
||||
if (isset($parametres['background_color'])) $vBgColor = $parametres['background_color'];
|
||||
if (isset($parametres['font_RGB'])) $vFgRGB = $parametres['font_RGB'];
|
||||
if (isset($parametres['background_RGB'])) $vBgRGB = $parametres['background_RGB'];
|
||||
|
||||
$local_iterations = 150;
|
||||
|
||||
$data = blockchain::getTransactionData($the_block, $type);
|
||||
$n_data = count($data);
|
||||
|
||||
$fond = $vBgColor;
|
||||
if (rand(0,100) < 50) $fond = $vFgColor;
|
||||
imagefilledrectangle($vImage, $x, $y, $x+$width-1, $y+$height-1, $fond);
|
||||
|
||||
// Calcul des min max
|
||||
foreach($data as $v)
|
||||
{
|
||||
if ($v['value'] > $max) $max = $v['value'];
|
||||
if (($v['value'] < $min)||($min == -1)) $min = $v['value'];
|
||||
$somme += $v['value'];
|
||||
}
|
||||
if ($min == $max) $max = $min + 1;
|
||||
if ($somme == 0) return;
|
||||
|
||||
// ---
|
||||
// --- On se limite à 40 000 traits
|
||||
// --- Pour des questions de performance
|
||||
// ---
|
||||
while(($n_data * $local_iterations)>40000) $local_iterations--;
|
||||
|
||||
$vColor = array();
|
||||
|
||||
// Gestion de la transparence
|
||||
$alpha = 125;
|
||||
if ($mode < 4.5) $alpha = 0;
|
||||
if ($mode == 3.5) $alpha = 100;
|
||||
|
||||
// On choisit des couleurs au hasard
|
||||
$hex_val = array(
|
||||
ColorGradient::rgb2hex([rand(0,255),rand(0,255),rand(0,255)]),
|
||||
ColorGradient::rgb2hex([rand(0,255),rand(0,255),rand(0,255)]),
|
||||
ColorGradient::rgb2hex([rand(0,255),rand(0,255),rand(0,255)])
|
||||
);
|
||||
// Dégradé de couleurs entre bgcolor et blanc
|
||||
$hex_val = array(
|
||||
ColorGradient::rgb2hex([0,0,0]),
|
||||
ColorGradient::rgb2hex($vFgRGB)
|
||||
);
|
||||
|
||||
$gradient = ColorGradient::gradient($hex_val[0], $hex_val[1], TX_HASH_LEN);
|
||||
for($i=0;$i<TX_HASH_LEN;$i++)
|
||||
{
|
||||
$rgbval = ColorGradient::hex2rgb($gradient[$i]);
|
||||
$vColor[$i] = new ColorGradient();
|
||||
$vColor[$i]->pct = ($i*1.0) / TX_HASH_LEN;
|
||||
$vColor[$i]->color = imagecolorallocatealpha($vImage, $rgbval[0], $rgbval[1], $rgbval[2], $alpha);
|
||||
}
|
||||
|
||||
//////////
|
||||
$oCurve = new CubicSplines();
|
||||
|
||||
$marge_x = 10;
|
||||
$marge_y = 20;
|
||||
|
||||
$coef = ($height - (2*$marge_y)) / $somme;
|
||||
$dx = $width;
|
||||
if ($mode > 0) $dx = round($dx / (TX_HASH_LEN+1));
|
||||
|
||||
$limite_x = $x + $width - $marge_x;
|
||||
|
||||
$h0 = 0;
|
||||
$hauteur = $y + $marge_y;
|
||||
$special_draw = (count($data) == 1);
|
||||
|
||||
foreach($data as $transaction)
|
||||
{
|
||||
//
|
||||
// La nouvelle hauteur : cumule des montants de transaction
|
||||
//
|
||||
$hauteur += $coef * $transaction['value'];
|
||||
|
||||
//
|
||||
// Cas des blocks qui n'ont qu'une seule transaction
|
||||
//
|
||||
if ($special_draw) $hauteur = $y + ($height / 2);
|
||||
|
||||
//
|
||||
// Ne pas tracer 2 lignes à la même hauteur
|
||||
//
|
||||
if ((floor($hauteur)-$h0)<2) continue;
|
||||
$h0 = floor($hauteur);
|
||||
|
||||
//
|
||||
// On va faire des itérations sur la transaction courante.
|
||||
// A chaque itération, on va s'appuyer sur le hash de la transaction
|
||||
// mais en introduisant du bruit.
|
||||
// On va donc statistiquement tracer une courbe représentant le hash
|
||||
//
|
||||
for($j=0;$j<$local_iterations;$j++)
|
||||
{
|
||||
//
|
||||
// On recommence en début de ligne
|
||||
//
|
||||
$x0 = $x + $marge_x;
|
||||
|
||||
//
|
||||
// La première partie est une ligne droite
|
||||
//
|
||||
imageline($vImage, $x0, $h0, $x0+$dx, $h0, $vColor[0]->color);
|
||||
$x0 += $dx;
|
||||
|
||||
//
|
||||
// Le mode 0 consiste à tracer une droite de couleur uniforme
|
||||
//
|
||||
if (($mode == 0)||($x0 >= $limite_x)) continue;
|
||||
|
||||
$aCoords = array();
|
||||
$facteur = 1;
|
||||
|
||||
if ($mode > 2) $facteur = 0.04;
|
||||
|
||||
//
|
||||
// On découpe la ligne en fonction du nombre de DIGIT
|
||||
// dans le hash des transactions
|
||||
//
|
||||
$aCoords[$x0] = $h0;
|
||||
for ($i = 0; $i < (TX_HASH_LEN-1); $i++)
|
||||
{
|
||||
$y0 = $h0;
|
||||
if ($mode > 1)
|
||||
{
|
||||
$y0 += (hexdec($transaction['hash'][$i]) - 8) * $facteur;
|
||||
$valeur = rand(-16, 16) * $facteur;
|
||||
if ($mode > 2) $facteur += 0.02;
|
||||
if ($mode > 3) $y0 += $valeur;
|
||||
}
|
||||
$x0 += $dx;
|
||||
$aCoords[$x0] = $y0;
|
||||
}
|
||||
if ($oCurve)
|
||||
{
|
||||
$oCurve->setInitCoords($aCoords);
|
||||
$r = $oCurve->processCoords();
|
||||
if ($r)
|
||||
{
|
||||
$curveGraph = new Plot($r);
|
||||
$curveGraph->drawLine($vImage, $vColor, $x0, $limite_x);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static function DrawLine($the_block, $vImage, $parametres)
|
||||
{
|
||||
// valeurs par défaut
|
||||
$type = 1;
|
||||
|
||||
// Ces variables vont permettre de caler les lignes
|
||||
// dans la zone de dessin en se laissant des marges
|
||||
// en haut et en bas
|
||||
$somme = 0;
|
||||
$min =-1;
|
||||
$max = 0;
|
||||
$marge_x = 10;
|
||||
$marge_y = 10;
|
||||
|
||||
// Détermine si on dessine les tx, les fees ou la récompense
|
||||
if (isset($parametres['type'])) $type = $parametres['type'];
|
||||
|
||||
// Paramètres de dessin
|
||||
if (isset($parametres['x'])) $x = $parametres['x'];
|
||||
if (isset($parametres['y'])) $y = $parametres['y'];
|
||||
if (isset($parametres['width'])) $width = $parametres['width'];
|
||||
if (isset($parametres['height'])) $height = $parametres['height'];
|
||||
if (isset($parametres['font_color'])) $vFgColor = $parametres['font_color'];
|
||||
if (isset($parametres['background_color'])) $vBgColor = $parametres['background_color'];
|
||||
|
||||
// Une chance sur deux d'inverser entre fg et bg
|
||||
if (rand(0,100) < 50) {
|
||||
$fond = $vBgColor;
|
||||
$couleur = $vFgColor;
|
||||
} else {
|
||||
$fond = $vFgColor;
|
||||
$couleur = $vBgColor;
|
||||
}
|
||||
|
||||
// Remplir le fond
|
||||
imagefilledrectangle($vImage, $x+($marge_x/2), $y+($marge_y/2), $x+$width-+($marge_x/2), $y+$height-+($marge_y/2), $fond);
|
||||
|
||||
// Récup des données
|
||||
$data = blockchain::getTransactionData($the_block, $type);
|
||||
$n_data = count($data);
|
||||
|
||||
// Calcul des min max
|
||||
foreach($data as $v)
|
||||
{
|
||||
if ($v['value'] > $max) $max = $v['value'];
|
||||
if (($v['value'] < $min)||($min == -1)) $min = $v['value'];
|
||||
$somme += $v['value'];
|
||||
}
|
||||
if ($min == $max) $max = $min + 1;
|
||||
if ($somme == 0) return;
|
||||
|
||||
$coef = ($height - (2*$marge_y)) / $somme;
|
||||
$dx = $width - (2*$marge_x);
|
||||
$limite_x = $x + $dx;
|
||||
|
||||
$h0 = 0;
|
||||
$hauteur = $y + $marge_y;
|
||||
$special_draw = (count($data) == 1);
|
||||
|
||||
foreach($data as $transaction)
|
||||
{
|
||||
//
|
||||
// La nouvelle hauteur : cumule des montants de transaction
|
||||
//
|
||||
$hauteur += $coef * $transaction['value'];
|
||||
|
||||
//
|
||||
// Cas des blocks qui n'ont qu'une seule transaction
|
||||
// On se cale au milieu
|
||||
//
|
||||
if ($special_draw) $hauteur = $y + ($height / 2);
|
||||
|
||||
//
|
||||
// Ne pas tracer 2 lignes à la même hauteur
|
||||
// => c'est possible du fait de l'arrondi
|
||||
// si la transaction a un montant faible
|
||||
//
|
||||
if ((floor($hauteur)-$h0)<2) continue;
|
||||
$h0 = floor($hauteur);
|
||||
|
||||
//
|
||||
// On recommence en début de ligne
|
||||
//
|
||||
$x0 = $x + $marge_x;
|
||||
|
||||
//
|
||||
// La première partie est une ligne droite
|
||||
//
|
||||
imageline($vImage, $x0, $h0, $x0+$dx, $h0, $couleur);
|
||||
}
|
||||
}
|
||||
|
||||
public static function DrawGradientLine($the_block, $vImage, $parametres)
|
||||
{
|
||||
// valeurs par défaut
|
||||
$type = 1;
|
||||
|
||||
// Ces variables vont permettre de caler les lignes
|
||||
// dans la zone de dessin en se laissant des marges
|
||||
// en haut et en bas
|
||||
$somme = 0;
|
||||
$min =-1;
|
||||
$max = 0;
|
||||
$marge_x = 10;
|
||||
$marge_y = 10;
|
||||
|
||||
// Détermine si on dessine les tx, les fees ou la récompense
|
||||
if (isset($parametres['type'])) $type = $parametres['type'];
|
||||
|
||||
// Paramètres de dessin
|
||||
if (isset($parametres['x'])) $x = $parametres['x'];
|
||||
if (isset($parametres['y'])) $y = $parametres['y'];
|
||||
if (isset($parametres['width'])) $width = $parametres['width'];
|
||||
if (isset($parametres['height'])) $height = $parametres['height'];
|
||||
if (isset($parametres['font_color'])) $vFgColor = $parametres['font_color'];
|
||||
if (isset($parametres['background_color'])) $vBgColor = $parametres['background_color'];
|
||||
|
||||
// Récup des données
|
||||
$data = blockchain::getTransactionData($the_block, $type);
|
||||
$n_data = count($data);
|
||||
|
||||
|
||||
$vColor = array();
|
||||
|
||||
// Gestion de la transparence
|
||||
$alpha = 125;
|
||||
if ($mode < 4.5) $alpha = 0;
|
||||
if ($mode == 3.5) $alpha = 100;
|
||||
|
||||
// On choisit des couleurs au hasard
|
||||
$hex_val = array(
|
||||
ColorGradient::rgb2hex([rand(0,255),rand(0,255),rand(0,255)]),
|
||||
ColorGradient::rgb2hex([rand(0,255),rand(0,255),rand(0,255)]),
|
||||
ColorGradient::rgb2hex([rand(0,255),rand(0,255),rand(0,255)])
|
||||
);
|
||||
// Dégradé de couleurs entre bgcolor et blanc
|
||||
$hex_val = array(
|
||||
ColorGradient::rgb2hex([0,0,0]),
|
||||
ColorGradient::rgb2hex($vFgRGB)
|
||||
);
|
||||
|
||||
$gradient = ColorGradient::gradient($hex_val[0], $hex_val[1], TX_HASH_LEN);
|
||||
for($i=0;$i<TX_HASH_LEN;$i++)
|
||||
{
|
||||
$rgbval = ColorGradient::hex2rgb($gradient[$i]);
|
||||
$vColor[$i] = new ColorGradient();
|
||||
$vColor[$i]->pct = ($i*1.0) / TX_HASH_LEN;
|
||||
$vColor[$i]->color = imagecolorallocatealpha($vImage, $rgbval[0], $rgbval[1], $rgbval[2], $alpha);
|
||||
}
|
||||
|
||||
// Une chance sur deux d'inverser entre fg et bg
|
||||
if (rand(0,100) < 50) {
|
||||
$fond = $vBgColor;
|
||||
$couleur = $vFgColor;
|
||||
} else {
|
||||
$fond = $vFgColor;
|
||||
$couleur = $vBgColor;
|
||||
}
|
||||
|
||||
// Remplir le fond
|
||||
imagefilledrectangle($vImage, $x+($marge_x/2), $y+($marge_y/2), $x+$width-+($marge_x/2), $y+$height-+($marge_y/2), $fond);
|
||||
|
||||
|
||||
// Calcul des min max
|
||||
foreach($data as $v)
|
||||
{
|
||||
if ($v['value'] > $max) $max = $v['value'];
|
||||
if (($v['value'] < $min)||($min == -1)) $min = $v['value'];
|
||||
$somme += $v['value'];
|
||||
}
|
||||
if ($min == $max) $max = $min + 1;
|
||||
if ($somme == 0) return;
|
||||
|
||||
$coef = ($height - (2*$marge_y)) / $somme;
|
||||
$dx = $width - (2*$marge_x);
|
||||
$limite_x = $x + $dx;
|
||||
|
||||
$h0 = 0;
|
||||
$hauteur = $y + $marge_y;
|
||||
$special_draw = (count($data) == 1);
|
||||
|
||||
foreach($data as $transaction)
|
||||
{
|
||||
//
|
||||
// La nouvelle hauteur : cumule des montants de transaction
|
||||
//
|
||||
$hauteur += $coef * $transaction['value'];
|
||||
|
||||
//
|
||||
// Cas des blocks qui n'ont qu'une seule transaction
|
||||
// On se cale au milieu
|
||||
//
|
||||
if ($special_draw) $hauteur = $y + ($height / 2);
|
||||
|
||||
//
|
||||
// Ne pas tracer 2 lignes à la même hauteur
|
||||
// => c'est possible du fait de l'arrondi
|
||||
// si la transaction a un montant faible
|
||||
//
|
||||
if ((floor($hauteur)-$h0)<2) continue;
|
||||
$h0 = floor($hauteur);
|
||||
|
||||
//
|
||||
// On recommence en début de ligne
|
||||
//
|
||||
$x0 = $x + $marge_x;
|
||||
|
||||
//
|
||||
// La première partie est une ligne droite
|
||||
//
|
||||
imageline($vImage, $x0, $h0, $x0+$dx, $h0, $couleur);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,98 +0,0 @@
|
||||
<?php
|
||||
|
||||
class topisto_line
|
||||
{
|
||||
public static function DrawBlock($the_block, $vImage, $parametres)
|
||||
{
|
||||
// valeurs par défaut
|
||||
$type = 1;
|
||||
|
||||
// Ces variables vont permettre de caler les lignes
|
||||
// dans la zone de dessin en se laissant des marges
|
||||
// en haut et en bas
|
||||
$somme = 0;
|
||||
$min =-1;
|
||||
$max = 0;
|
||||
$marge_x = 10;
|
||||
$marge_y = 10;
|
||||
|
||||
// Détermine si on dessine les tx, les fees ou la récompense
|
||||
if (isset($parametres['type'])) $type = $parametres['type'];
|
||||
|
||||
// Paramètres de dessin
|
||||
if (isset($parametres['x'])) $x = $parametres['x'];
|
||||
if (isset($parametres['y'])) $y = $parametres['y'];
|
||||
if (isset($parametres['width'])) $width = $parametres['width'];
|
||||
if (isset($parametres['height'])) $height = $parametres['height'];
|
||||
if (isset($parametres['font_color'])) $vFgColor = $parametres['font_color'];
|
||||
if (isset($parametres['background_color'])) $vBgColor = $parametres['background_color'];
|
||||
|
||||
// Une chance sur deux d'inverser entre fg et bg
|
||||
if (rand(0,100) < 50) {
|
||||
$fond = $vBgColor;
|
||||
$couleur = $vFgColor;
|
||||
} else {
|
||||
$fond = $vFgColor;
|
||||
$couleur = $vBgColor;
|
||||
}
|
||||
|
||||
// Remplir le fond
|
||||
imagefilledrectangle($vImage, $x+($marge_x/2), $y+($marge_y/2), $x+$width-+($marge_x/2), $y+$height-+($marge_y/2), $fond);
|
||||
|
||||
// Récup des données
|
||||
$data = blockchain::getTransactionData($the_block, $type);
|
||||
$n_data = count($data);
|
||||
|
||||
// Calcul des min max
|
||||
foreach($data as $v)
|
||||
{
|
||||
if ($v['value'] > $max) $max = $v['value'];
|
||||
if (($v['value'] < $min)||($min == -1)) $min = $v['value'];
|
||||
$somme += $v['value'];
|
||||
}
|
||||
if ($min == $max) $max = $min + 1;
|
||||
if ($somme == 0) return;
|
||||
|
||||
$coef = ($height - (2*$marge_y)) / $somme;
|
||||
$dx = $width - (2*$marge_x);
|
||||
$limite_x = $x + $dx;
|
||||
|
||||
$h0 = 0;
|
||||
$hauteur = $y + $marge_y;
|
||||
$special_draw = (count($data) == 1);
|
||||
|
||||
foreach($data as $transaction)
|
||||
{
|
||||
//
|
||||
// La nouvelle hauteur : cumule des montants de transaction
|
||||
//
|
||||
$hauteur += $coef * $transaction['value'];
|
||||
|
||||
//
|
||||
// Cas des blocks qui n'ont qu'une seule transaction
|
||||
// On se cale au milieu
|
||||
//
|
||||
if ($special_draw) $hauteur = $y + ($height / 2);
|
||||
|
||||
//
|
||||
// Ne pas tracer 2 lignes à la même hauteur
|
||||
// => c'est possible du fait de l'arrondi
|
||||
// si la transaction a un montant faible
|
||||
//
|
||||
if ((floor($hauteur)-$h0)<2) continue;
|
||||
$h0 = floor($hauteur);
|
||||
|
||||
//
|
||||
// On recommence en début de ligne
|
||||
//
|
||||
$x0 = $x + $marge_x;
|
||||
|
||||
//
|
||||
// La première partie est une ligne droite
|
||||
//
|
||||
imageline($vImage, $x0, $h0, $x0+$dx, $h0, $couleur);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,86 +0,0 @@
|
||||
<?php
|
||||
|
||||
// ---
|
||||
// --- Listening to blockchain.info to get the last block
|
||||
// ---
|
||||
|
||||
// ---
|
||||
// --- La config globale
|
||||
// ---
|
||||
require_once '../../global/inc/config.php';
|
||||
|
||||
// ---
|
||||
// --- External dependances
|
||||
// ---
|
||||
require TOPISTO_PATH.'/ressources/vendor/autoload.php';
|
||||
require_once '../../global/inc/colors.php';
|
||||
require_once '../../global/inc/cubic.php';
|
||||
|
||||
// ---
|
||||
// --- Internal dependances
|
||||
// ---
|
||||
require_once APP_PATH.'/blockchain/inc/block.php';
|
||||
require_once 'inc/draw.php';
|
||||
|
||||
// ---
|
||||
// --- Par défaut on cherche le dernier block
|
||||
// ---
|
||||
$block_hash = 'LAST';
|
||||
|
||||
// ---
|
||||
// --- Le cas échéant, on cherche block passé en argument
|
||||
// ---
|
||||
if (isset($argv[1])) $block_hash = $argv[1];
|
||||
|
||||
$mode=8;
|
||||
if (isset($argv[2])) $mode=intval($argv[2]);
|
||||
|
||||
$the_block = blockchain::getBlockWithHash($block_hash);
|
||||
if ($the_block === FALSE) die();
|
||||
|
||||
$the_name = blockchain::hash2SpecialName($the_block->hash);
|
||||
if ($the_name == $the_block->hash) $the_name ='';
|
||||
|
||||
$bandeau = 50;
|
||||
$marge = 25;
|
||||
$text_border = 20;
|
||||
$width = GRAPH_WIDTH;
|
||||
$height = GRAPH_HEIGHT;
|
||||
|
||||
// Pour que l'image simple ait les proportions que l'image full
|
||||
$width = $marge + ($width*2) + (2*$text_border);
|
||||
$height = $marge + ($height*2);
|
||||
|
||||
$img_w = $width;
|
||||
$img_h = $height+(2*$bandeau);
|
||||
|
||||
// création d'une image plus haute pour inclure bandeaux haut et bas
|
||||
$img = imagecreatetruecolor($img_w, $img_h);
|
||||
|
||||
$type=2;
|
||||
if (count($the_block->tx)==1) $type = 4;
|
||||
|
||||
$paramHeader = blockchain::DrawBlockHeaderFooter($the_block, $img, $bandeau);
|
||||
|
||||
$parametres = [];
|
||||
$parametres['x'] = 0;
|
||||
$parametres['y'] = $bandeau;
|
||||
$parametres['width'] = $width;
|
||||
$parametres['height'] = $height;
|
||||
$parametres['methode'] = 5;
|
||||
$parametres['type'] = $type;
|
||||
$parametres['iterations'] = 200;
|
||||
$parametres['transparent_color'] = $paramHeader[0];
|
||||
$parametres['background_color'] = $paramHeader[1];
|
||||
$parametres['font_color'] = $paramHeader[2];
|
||||
$parametres['fontname'] = $paramHeader[3];
|
||||
$parametres['font_RGB'] = $paramHeader[4];
|
||||
$parametres['background_RGB'] = $paramHeader[5];
|
||||
|
||||
topisto_line::DrawBlock($the_block, $img, $parametres);
|
||||
|
||||
imagepng($img, DATA_PATH.'/last/'.$the_block->hash.'.png');
|
||||
|
||||
imagedestroy($img);
|
||||
|
||||
?>
|
||||
@@ -1,36 +0,0 @@
|
||||
#!/bin/bash
|
||||
METHODE=line
|
||||
flag=$TMP_PATH/${METHODE}_bot.flag
|
||||
date=`date +%Y%m%d0000`
|
||||
|
||||
if [ -f $flag ];
|
||||
then
|
||||
echo "$METHODE_bot is already running !"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
touch $flag
|
||||
|
||||
cd $APPS_PATH/methode/$METHODE
|
||||
for BLOCK in `awk '{print $2}' $DATA_PATH/block_list.txt`
|
||||
do
|
||||
if [ ! -f $DATA_PATH/$METHODE/$BLOCK.png ]
|
||||
then
|
||||
php robot.php $BLOCK $(( RANDOM % 6))
|
||||
fi
|
||||
|
||||
BNAME=`grep $BLOCK $DATA_PATH/block_list.txt | awk '{print $1}'`
|
||||
if [ "$BNAME" == "LAST" ]
|
||||
then
|
||||
touch $DATA_PATH/$METHODE/$BLOCK.png
|
||||
else
|
||||
touch -t $date $DATA_PATH/$METHODE/$BLOCK.png
|
||||
fi
|
||||
|
||||
rm -f $DATA_PATH/hasard/$BLOCK.png
|
||||
ln $DATA_PATH/last/$BLOCK.png $DATA_PATH/$METHODE/$BLOCK.png
|
||||
ln $DATA_PATH/last/$BLOCK.png $DATA_PATH/hasard/$BLOCK.png
|
||||
|
||||
done
|
||||
|
||||
rm -f $flag
|
||||
@@ -265,8 +265,6 @@ class CubicSplines
|
||||
}
|
||||
}
|
||||
|
||||
define('TX_HASH_LEN',64);
|
||||
|
||||
class topisto_spline
|
||||
{
|
||||
public static function DefaultDrawBlock($the_block, $vImage, $x, $y, $graph_width, $graph_height, $type=1)
|
||||
|
||||
@@ -21,9 +21,6 @@ class topisto_spline2
|
||||
//
|
||||
public static function DrawBlock($the_block, $vImage, $parametres)
|
||||
{
|
||||
|
||||
return topisto_spline2::DrawLine($the_block, $vImage, $parametres);
|
||||
|
||||
$somme = 0;
|
||||
$min =-1;
|
||||
$max = 0;
|
||||
|
||||
@@ -1,118 +0,0 @@
|
||||
<?php
|
||||
|
||||
use codeagent\treemap\Treemap;
|
||||
use codeagent\treemap\presenter\ImagePresenter;
|
||||
use codeagent\treemap\presenter\NodeInfo;
|
||||
use codeagent\treemap\Gradient;
|
||||
|
||||
// ---
|
||||
// --- Local fonctions
|
||||
// ---
|
||||
function rgb2hex($rgb) {
|
||||
$hex = "#";
|
||||
$hex .= str_pad(dechex($rgb[0]), 2, "0", STR_PAD_LEFT);
|
||||
$hex .= str_pad(dechex($rgb[1]), 2, "0", STR_PAD_LEFT);
|
||||
$hex .= str_pad(dechex($rgb[2]), 2, "0", STR_PAD_LEFT);
|
||||
|
||||
return $hex; // returns the hex value including the number sign (#)
|
||||
}
|
||||
|
||||
function hex2rgb($color){
|
||||
$color = str_replace('#', '', $color);
|
||||
if (strlen($color) != 6){ return array(0,0,0); }
|
||||
$rgb = array();
|
||||
for ($x=0;$x<3;$x++){
|
||||
$rgb[$x] = hexdec(substr($color,(2*$x),2));
|
||||
}
|
||||
return $rgb;
|
||||
}
|
||||
|
||||
class topisto_treemap
|
||||
{
|
||||
private static function getRGB($methode, $gradient, $factor)
|
||||
{
|
||||
switch($methode)
|
||||
{
|
||||
case 0:
|
||||
$rgb = [rand(0,255),rand(0,255),rand(0,255)];
|
||||
break;
|
||||
|
||||
case 1:
|
||||
$rgb = [80,80,80];
|
||||
break;
|
||||
|
||||
case 2:
|
||||
$factor=rand(0,100);
|
||||
$rgb = [255,255,255];
|
||||
if ($factor < 50 ) $rgb = [255,0,0];
|
||||
if ($factor < 25 ) $rgb = [0,0,255];
|
||||
if ($factor < 10 ) $rgb = [255,255,0];
|
||||
break;
|
||||
|
||||
case 3:
|
||||
$rgb = hex2rgb($gradient[1]->color($factor));
|
||||
break;
|
||||
|
||||
case 4:
|
||||
$rgb = hex2rgb($gradient[2]->color($factor));
|
||||
break;
|
||||
|
||||
case 999:
|
||||
$rgb = hex2rgb($gradient[3]->color($factor));
|
||||
break;
|
||||
|
||||
default:
|
||||
$rgb = hex2rgb($gradient[0]->color($factor));
|
||||
}
|
||||
|
||||
return $rgb;
|
||||
}
|
||||
|
||||
public static function DrawBlock($the_block, $vImage, $parametres)
|
||||
{
|
||||
$type = 1;
|
||||
|
||||
if (isset($parametres['x'])) $x = $parametres['x'];
|
||||
if (isset($parametres['y'])) $y = $parametres['y'];
|
||||
if (isset($parametres['width'])) $width = $parametres['width'];
|
||||
if (isset($parametres['height'])) $height = $parametres['height'];
|
||||
if (isset($parametres['methode'])) $mode = $parametres['methode'];
|
||||
if (isset($parametres['type'])) $type = $parametres['type'];
|
||||
if (isset($parametres['font_color'])) $vBgColor = $parametres['font_color'];
|
||||
if (isset($parametres['background_color'])) $vFgColor = $parametres['background_color'];
|
||||
|
||||
imagefilledrectangle($vImage, $x, $y, $x+$width, $y+$height, $vFgColor);
|
||||
|
||||
$full_area = $width * $height;
|
||||
if ($full_area == 0) $full_area = 1;
|
||||
|
||||
$data = blockchain::getTransactionData($the_block, $type);
|
||||
|
||||
$treemap = new Treemap($data, $width, $height);
|
||||
$map = $treemap->getMap();
|
||||
$m = count($map);
|
||||
$flag_contour = true;
|
||||
for($mm = 0; $mm < $m; $mm++)
|
||||
{
|
||||
$tx = $map[$mm];
|
||||
$factor = (($tx['_rectangle']->width * $tx['_rectangle']->height) / $full_area)*100.0;
|
||||
|
||||
$x1 = $x + $tx['_rectangle']->left;
|
||||
$y1 = $y + $tx['_rectangle']->top;
|
||||
|
||||
$x2 = $x1 + $tx['_rectangle']->width;
|
||||
$y2 = $y1 + $tx['_rectangle']->height;
|
||||
|
||||
if ($x1 > ($x+$width)) $x1 = ($x+$width);
|
||||
if ($y1 > ($y+$height)) $y1 = ($y+$height);
|
||||
if ($x2 > ($x+$width)) $x2 = ($x+$width);
|
||||
if ($y2 > ($y+$height)) $y2 = ($y+$height);
|
||||
|
||||
imagerectangle($vImage, $x1, $y1, $x2, $y2, $vBgColor);
|
||||
}
|
||||
|
||||
imagerectangle($vImage, $x, $y, $x+$width-1, $y+$height, $vBgColor);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,81 +0,0 @@
|
||||
<?php
|
||||
|
||||
// ---
|
||||
// --- Listening to blockchain.info to get the last block
|
||||
// ---
|
||||
|
||||
// ---
|
||||
// --- La config globale
|
||||
// ---
|
||||
require_once '../../global/inc/config.php';
|
||||
|
||||
// ---
|
||||
// --- External dependances
|
||||
// ---
|
||||
require TOPISTO_PATH.'/ressources/vendor/autoload.php';
|
||||
|
||||
// ---
|
||||
// --- Internal dependances
|
||||
// ---
|
||||
require_once APP_PATH.'/blockchain/inc/block.php';
|
||||
require_once 'inc/treemap.php';
|
||||
|
||||
// ---
|
||||
// --- Par défaut on cherche le dernier block
|
||||
// ---
|
||||
$block_hash = 'LAST';
|
||||
|
||||
// ---
|
||||
// --- Le cas échéant, on cherche block passé en argument
|
||||
// ---
|
||||
if (isset($argv[1])) $block_hash = $argv[1];
|
||||
|
||||
$mode=rand(0, 5);
|
||||
if (isset($argv[2])) $mode=intval($argv[2]);
|
||||
|
||||
$the_block = blockchain::getBlockWithHash($block_hash);
|
||||
if ($the_block === FALSE) die();
|
||||
|
||||
$the_name = blockchain::hash2SpecialName($the_block->hash);
|
||||
if ($the_name == $the_block->hash) $the_name ='';
|
||||
|
||||
$bandeau = 50;
|
||||
$marge = 25;
|
||||
$text_border = 20;
|
||||
$width = GRAPH_WIDTH;
|
||||
$height = GRAPH_HEIGHT;
|
||||
|
||||
// Pour que l'image simple ait les proportions que l'image full
|
||||
$width = $marge + ($width*2) + (2*$text_border);
|
||||
$height = $marge + ($height*2);
|
||||
|
||||
$img_w = $width;
|
||||
$img_h = $height+(2*$bandeau);
|
||||
|
||||
// création d'une image plus haute pour inclure bandeaux haut et bas
|
||||
$img = imagecreatetruecolor($img_w, $img_h);
|
||||
|
||||
$type=2;
|
||||
if (count($the_block->tx)==1) $type=4;
|
||||
|
||||
$param0 = blockchain::DrawBlockHeaderFooter($the_block, $img, $bandeau);
|
||||
|
||||
$parametres = [];
|
||||
$parametres['x'] = 0;
|
||||
$parametres['y'] = $bandeau;
|
||||
$parametres['width'] = $width;
|
||||
$parametres['height'] = $height;
|
||||
$parametres['methode'] = $mode;
|
||||
$parametres['type'] = $type;
|
||||
$parametres['transparent_color'] = $param0[0];
|
||||
$parametres['background_color'] = $param0[1];
|
||||
$parametres['font_color'] = $param0[2];
|
||||
$parametres['fontname'] = $param0[3];
|
||||
|
||||
topisto_treemap::DrawBlock($the_block, $img, $parametres);
|
||||
|
||||
imagepng($img, DATA_PATH.'/treemapV2/'.$the_block->hash.'.png');
|
||||
|
||||
imagedestroy($img);
|
||||
|
||||
?>
|
||||
@@ -1,32 +0,0 @@
|
||||
#!/bin/bash
|
||||
flag=$TMP_PATH/treemapV2_bot.flag
|
||||
date=`date +%Y%m%d0000`
|
||||
|
||||
if [ -f $flag ];
|
||||
then
|
||||
echo "treemap_bot is already running !"
|
||||
exit 0
|
||||
fi
|
||||
touch $flag
|
||||
|
||||
cd $APPS_PATH/methode/treemapV2
|
||||
for BLOCK in `awk '{print $2}' $DATA_PATH/block_list.txt`
|
||||
do
|
||||
if [ ! -f $DATA_PATH/treemapV2/$BLOCK.png ]
|
||||
then
|
||||
php robot.php $BLOCK $((RANDOM % 6))
|
||||
fi
|
||||
|
||||
BNAME=`grep $BLOCK $DATA_PATH/block_list.txt | awk '{print $1}'`
|
||||
if [ "$BNAME" == "LAST" ]
|
||||
then
|
||||
touch $DATA_PATH/treemapV2/$BLOCK.png
|
||||
else
|
||||
touch -t $date $DATA_PATH/treemapV2/$BLOCK.png
|
||||
fi
|
||||
|
||||
rm -f $DATA_PATH/hasard/$BLOCK.png
|
||||
ln $DATA_PATH/treemapV2/$BLOCK.png $DATA_PATH/hasard/$BLOCK.png
|
||||
done
|
||||
|
||||
rm -f $flag
|
||||
@@ -1,103 +0,0 @@
|
||||
<?php
|
||||
|
||||
use codeagent\treemap\Treemap;
|
||||
use codeagent\treemap\presenter\ImagePresenter;
|
||||
use codeagent\treemap\presenter\NodeInfo;
|
||||
use codeagent\treemap\Gradient;
|
||||
|
||||
function rgb2hex($rgb)
|
||||
{
|
||||
return "#0203FF";
|
||||
}
|
||||
|
||||
class topisto_veraMolnar
|
||||
{
|
||||
public static function DrawBlock($the_block, $vImage, $parametres)
|
||||
{
|
||||
$type = 1;
|
||||
|
||||
if (isset($parametres['x'])) $x = $parametres['x'];
|
||||
if (isset($parametres['y'])) $y = $parametres['y'];
|
||||
if (isset($parametres['width'])) $width = $parametres['width'];
|
||||
if (isset($parametres['height'])) $height = $parametres['height'];
|
||||
if (isset($parametres['methode'])) $mode = $parametres['methode'];
|
||||
if (isset($parametres['type'])) $type = $parametres['type'];
|
||||
if (isset($parametres['font_color'])) $vFgColor = $parametres['font_color'];
|
||||
if (isset($parametres['background_color'])) $vBgColor = $parametres['background_color'];
|
||||
if (isset($parametres['font_RGB'])) $vFgRGB = $parametres['font_RGB'];
|
||||
if (isset($parametres['background_RGB'])) $vBgRGB = $parametres['background_RGB'];
|
||||
|
||||
$min =-1;
|
||||
$max = 0;
|
||||
$data = blockchain::getTransactionData($the_block, $type);
|
||||
|
||||
// Inverser foreground et Background
|
||||
imagefilledrectangle($vImage, $x, $y, $x+$width, $y+$height, $vFgColor);
|
||||
$vFgColor = imagecolorallocatealpha($vImage, $vBgRGB[0], $vBgRGB[1], $vBgRGB[2], 125);
|
||||
//$vBgColor = imagecolorallocate($vImage, 10, 10, 10);
|
||||
//imagefilledrectangle($vImage, $x, $y, $x+$width, $y+$height, $vBgColor);
|
||||
|
||||
// Calcul des min max
|
||||
foreach($data as $v)
|
||||
{
|
||||
if ($v['value'] > $max) $max = $v['value'];
|
||||
if (($v['value'] < $min)||($min == -1)) $min = $v['value'];
|
||||
}
|
||||
if ($min == $max) $max = $min + 1;
|
||||
|
||||
$treemap = new Treemap($data, $width, $height);
|
||||
$map = $treemap->getMap();
|
||||
$mm = count($map);
|
||||
$mmax = $mm - 30;
|
||||
foreach($map as $tx)
|
||||
{
|
||||
$x1 = $x + $tx['_rectangle']->left;
|
||||
$y1 = $y + $tx['_rectangle']->top;
|
||||
|
||||
if (($tx['_rectangle']->height < 2)&&($tx['_rectangle']->width < 2))
|
||||
{
|
||||
imagesetpixel($vImage, $x1, $y1, $vFgColor);
|
||||
} else {
|
||||
$x2 = $x1;
|
||||
$y2 = $y1 + $tx['_rectangle']->height;
|
||||
// if ($y2 >= ($height-$bandeau)) $y2 = ($height - $bandeau) - 1;
|
||||
|
||||
$x3 = $x1 + $tx['_rectangle']->width;
|
||||
$y3 = $y2;
|
||||
|
||||
$x4 = $x3;
|
||||
$y4 = $y1;
|
||||
|
||||
// ----
|
||||
$w = floor($tx['_rectangle']->width / 4);
|
||||
$h = floor($tx['_rectangle']->height / 4);
|
||||
|
||||
$ww = floor(200*($mm/$mmax));
|
||||
$ww = floor(($h * $w)*0.8);
|
||||
if ($ww < 1) $ww = 1;
|
||||
for($i=0;$i<$ww;$i++)
|
||||
{
|
||||
$x1_1 = $x1 + floor($w*( rand(0, 100) / 100));
|
||||
$y1_1 = $y1 + floor($h*( rand(0, 100) / 100));
|
||||
|
||||
$x2_1 = $x2 + floor($w*( rand(0, 100) / 100));
|
||||
$y2_1 = $y2 - floor($h*( rand(0, 100) / 100));
|
||||
|
||||
$x3_1 = $x3 - floor($w*( rand(0, 100) / 100));
|
||||
$y3_1 = $y3 - floor($h*( rand(0, 100) / 100));
|
||||
|
||||
$x4_1 = $x4 - floor($w*( rand(0, 100) / 100));
|
||||
$y4_1 = $y4 + floor($h*( rand(0, 100) / 100));
|
||||
|
||||
imageline($vImage, $x1_1, $y1_1, $x2_1, $y2_1, $vFgColor);
|
||||
imageline($vImage, $x2_1, $y2_1, $x3_1, $y3_1, $vFgColor);
|
||||
imageline($vImage, $x3_1, $y3_1, $x4_1, $y4_1, $vFgColor);
|
||||
imageline($vImage, $x4_1, $y4_1, $x1_1, $y1_1, $vFgColor);
|
||||
}
|
||||
}
|
||||
$mm -= 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@@ -1,83 +0,0 @@
|
||||
<?php
|
||||
|
||||
// ---
|
||||
// --- Listening to blockchain.info to get the last block
|
||||
// ---
|
||||
|
||||
// ---
|
||||
// --- La config globale
|
||||
// ---
|
||||
require_once '../../global/inc/config.php';
|
||||
|
||||
// ---
|
||||
// --- External dependances
|
||||
// ---
|
||||
require TOPISTO_PATH.'/ressources/vendor/autoload.php';
|
||||
|
||||
// ---
|
||||
// --- Internal dependances
|
||||
// ---
|
||||
require_once APP_PATH.'/blockchain/inc/block.php';
|
||||
require_once 'inc/treemap.php';
|
||||
|
||||
// ---
|
||||
// --- Par défaut on cherche le dernier block
|
||||
// ---
|
||||
$block_hash = 'LAST';
|
||||
|
||||
// ---
|
||||
// --- Le cas échéant, on cherche block passé en argument
|
||||
// ---
|
||||
if (isset($argv[1])) $block_hash = $argv[1];
|
||||
|
||||
$mode=8;
|
||||
if (isset($argv[2])) $mode=intval($argv[2]);
|
||||
|
||||
$the_block = blockchain::getBlockWithHash($block_hash);
|
||||
if ($the_block === FALSE) die();
|
||||
|
||||
$the_name = blockchain::hash2SpecialName($the_block->hash);
|
||||
if ($the_name == $the_block->hash) $the_name ='';
|
||||
|
||||
$bandeau = 50;
|
||||
$marge = 25;
|
||||
$text_border = 20;
|
||||
$width = GRAPH_WIDTH;
|
||||
$height = GRAPH_HEIGHT;
|
||||
|
||||
// Pour que l'image simple ait les proportions que l'image full
|
||||
$width = $marge + ($width*2) + (2*$text_border);
|
||||
$height = $marge + ($height*2);
|
||||
|
||||
$img_w = $width;
|
||||
$img_h = $height+(2*$bandeau);
|
||||
|
||||
// création d'une image plus haute pour inclure bandeaux haut et bas
|
||||
$img = imagecreatetruecolor($img_w, $img_h);
|
||||
|
||||
$type=2;
|
||||
if (count($the_block->tx)==1) $type = 4;
|
||||
|
||||
$param0 = blockchain::DrawBlockHeaderFooter($the_block, $img, $bandeau);
|
||||
|
||||
$parametres = [];
|
||||
$parametres['x'] = 0;
|
||||
$parametres['y'] = $bandeau;
|
||||
$parametres['width'] = $width;
|
||||
$parametres['height'] = $height;
|
||||
$parametres['methode'] = $mode;
|
||||
$parametres['type'] = $type;
|
||||
$parametres['transparent_color'] = $param0[0];
|
||||
$parametres['background_color'] = $param0[1];
|
||||
$parametres['font_color'] = $param0[2];
|
||||
$parametres['fontname'] = $param0[3];
|
||||
$parametres['font_RGB'] = $param0[4];
|
||||
$parametres['background_RGB'] = $param0[5];
|
||||
|
||||
topisto_veraMolnar::DrawBlock($the_block, $img, $parametres);
|
||||
|
||||
imagepng($img, DATA_PATH.'/veraMolnar/'.$the_block->hash.'.png');
|
||||
|
||||
imagedestroy($img);
|
||||
|
||||
?>
|
||||
@@ -1,33 +0,0 @@
|
||||
#!/bin/bash
|
||||
flag=$TMP_PATH/veraMolnar_bot.flag
|
||||
date=`date +%Y%m%d0000`
|
||||
|
||||
if [ -f $flag ];
|
||||
then
|
||||
echo "veraMolnar_bot is already running !"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
touch $flag
|
||||
|
||||
cd $APPS_PATH/methode/veraMolnar
|
||||
for BLOCK in `awk '{print $2}' $DATA_PATH/block_list.txt`
|
||||
do
|
||||
if [ ! -f $DATA_PATH/veraMolnar/$BLOCK.png ]
|
||||
then
|
||||
php robot.php $BLOCK $(( RANDOM % 6))
|
||||
fi
|
||||
|
||||
BNAME=`grep $BLOCK $DATA_PATH/block_list.txt | awk '{print $1}'`
|
||||
if [ "$BNAME" == "LAST" ]
|
||||
then
|
||||
touch $DATA_PATH/veraMolnar/$BLOCK.png
|
||||
else
|
||||
touch -t $date $DATA_PATH/veraMolnar/$BLOCK.png
|
||||
fi
|
||||
|
||||
rm -f $DATA_PATH/hasard/$BLOCK.png
|
||||
ln $DATA_PATH/veraMolnar/$BLOCK.png $DATA_PATH/hasard/$BLOCK.png
|
||||
done
|
||||
|
||||
rm -f $flag
|
||||
Reference in New Issue
Block a user