mirror of
https://github.com/Tailszefox/Pony-Fusion.git
synced 2024-11-23 06:17:59 +01:00
Re-added ability to make a fusion with the same pony, with an easter egg.
This commit is contained in:
parent
7ba31ac22e
commit
d43da44ba7
4 changed files with 148 additions and 4 deletions
|
@ -26,7 +26,14 @@ for($i = 0; $i < imagecolorstotal($from); $i++)
|
|||
echo "\n";
|
||||
}
|
||||
|
||||
imagecolorset($from, $i, $colorFrom["red"], $colorFrom["green"], $colorFrom["blue"]);
|
||||
if($getFrom == $getTo)
|
||||
{
|
||||
imagecolorset($from, $i, 255 - $colorFrom["red"], 255 - $colorFrom["green"], 255 - $colorFrom["blue"]);
|
||||
}
|
||||
else
|
||||
{
|
||||
imagecolorset($from, $i, $colorFrom["red"], $colorFrom["green"], $colorFrom["blue"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -30,7 +30,19 @@ if(!empty($from) && !empty($to))
|
|||
|
||||
?>
|
||||
<div id="resultDiv" class="well">
|
||||
<p id="name"><?php echo ucfirst($ponies[$from]["first"]) ?><?php echo $ponies[$to]["second"] ?></p>
|
||||
<?php
|
||||
if($from == $to)
|
||||
{
|
||||
require("zalgo.php");
|
||||
$name = ucfirst($ponies[$from]["first"]) . $ponies[$to]["second"];
|
||||
|
||||
?><p id="name"><?php echo zalgo($name); ?></p><?php
|
||||
}
|
||||
else
|
||||
{
|
||||
?><p id="name"><?php echo ucfirst($ponies[$from]["first"]) ?><?php echo $ponies[$to]["second"] ?></p><?php
|
||||
}
|
||||
?>
|
||||
|
||||
<p><a href="<?php echo $imgUrl ?>"><img id="resultImage" src="<?php echo $imgUrl ?>" /></a></p>
|
||||
|
||||
|
|
|
@ -194,9 +194,9 @@ else
|
|||
var fromSelected = $("#from")[0].selectedIndex;
|
||||
var toSelected = $("#to")[0].selectedIndex;
|
||||
|
||||
$("#to")[0].options[fromSelected].disabled = true;
|
||||
//$("#to")[0].options[fromSelected].disabled = true;
|
||||
|
||||
$("#from")[0].options[toSelected].disabled = true;
|
||||
//$("#from")[0].options[toSelected].disabled = true;
|
||||
|
||||
jQuery.get('fusion_ajax.php', {from: from, to: to}, function(data, textStatus, xhr) {
|
||||
$("#resultDivContent").html(data);
|
||||
|
|
125
zalgo.php
Normal file
125
zalgo.php
Normal file
|
@ -0,0 +1,125 @@
|
|||
<?php
|
||||
// Script adapted from Javascript, used for an easter egg.
|
||||
|
||||
//============================================================
|
||||
// ZALGO text script by tchouky
|
||||
//============================================================
|
||||
|
||||
// data set of leet unicode chars
|
||||
//---------------------------------------------------
|
||||
|
||||
//those go UP
|
||||
$zalgo_up = array(
|
||||
'\u030d', /* ̍ */ '\u030e', /* ̎ */ '\u0304', /* ̄ */ '\u0305', /* ̅ */
|
||||
'\u033f', /* ̿ */ '\u0311', /* ̑ */ '\u0306', /* ̆ */ '\u0310', /* ̐ */
|
||||
'\u0352', /* ͒ */ '\u0357', /* ͗ */ '\u0351', /* ͑ */ '\u0307', /* ̇ */
|
||||
'\u0308', /* ̈ */ '\u030a', /* ̊ */ '\u0342', /* ͂ */ '\u0343', /* ̓ */
|
||||
'\u0344', /* ̈́ */ '\u034a', /* ͊ */ '\u034b', /* ͋ */ '\u034c', /* ͌ */
|
||||
'\u0303', /* ̃ */ '\u0302', /* ̂ */ '\u030c', /* ̌ */ '\u0350', /* ͐ */
|
||||
'\u0300', /* ̀ */ '\u0301', /* ́ */ '\u030b', /* ̋ */ '\u030f', /* ̏ */
|
||||
'\u0312', /* ̒ */ '\u0313', /* ̓ */ '\u0314', /* ̔ */ '\u033d', /* ̽ */
|
||||
'\u0309', /* ̉ */ '\u0363', /* ͣ */ '\u0364', /* ͤ */ '\u0365', /* ͥ */
|
||||
'\u0366', /* ͦ */ '\u0367', /* ͧ */ '\u0368', /* ͨ */ '\u0369', /* ͩ */
|
||||
'\u036a', /* ͪ */ '\u036b', /* ͫ */ '\u036c', /* ͬ */ '\u036d', /* ͭ */
|
||||
'\u036e', /* ͮ */ '\u036f', /* ͯ */ '\u033e', /* ̾ */ '\u035b', /* ͛ */
|
||||
'\u0346', /* ͆ */ '\u031a' /* ̚ */
|
||||
);
|
||||
|
||||
//those go DOWN
|
||||
$zalgo_down = array(
|
||||
'\u0316', /* ̖ */ '\u0317', /* ̗ */ '\u0318', /* ̘ */ '\u0319', /* ̙ */
|
||||
'\u031c', /* ̜ */ '\u031d', /* ̝ */ '\u031e', /* ̞ */ '\u031f', /* ̟ */
|
||||
'\u0320', /* ̠ */ '\u0324', /* ̤ */ '\u0325', /* ̥ */ '\u0326', /* ̦ */
|
||||
'\u0329', /* ̩ */ '\u032a', /* ̪ */ '\u032b', /* ̫ */ '\u032c', /* ̬ */
|
||||
'\u032d', /* ̭ */ '\u032e', /* ̮ */ '\u032f', /* ̯ */ '\u0330', /* ̰ */
|
||||
'\u0331', /* ̱ */ '\u0332', /* ̲ */ '\u0333', /* ̳ */ '\u0339', /* ̹ */
|
||||
'\u033a', /* ̺ */ '\u033b', /* ̻ */ '\u033c', /* ̼ */ '\u0345', /* ͅ */
|
||||
'\u0347', /* ͇ */ '\u0348', /* ͈ */ '\u0349', /* ͉ */ '\u034d', /* ͍ */
|
||||
'\u034e', /* ͎ */ '\u0353', /* ͓ */ '\u0354', /* ͔ */ '\u0355', /* ͕ */
|
||||
'\u0356', /* ͖ */ '\u0359', /* ͙ */ '\u035a', /* ͚ */ '\u0323' /* ̣ */
|
||||
);
|
||||
|
||||
//those always stay in the middle
|
||||
$zalgo_mid = array(
|
||||
'\u0315', /* ̕ */ '\u031b', /* ̛ */ '\u0340', /* ̀ */ '\u0341', /* ́ */
|
||||
'\u0358', /* ͘ */ '\u0321', /* ̡ */ '\u0322', /* ̢ */ '\u0327', /* ̧ */
|
||||
'\u0328', /* ̨ */ '\u0334', /* ̴ */ '\u0335', /* ̵ */ '\u0336', /* ̶ */
|
||||
'\u034f', /* ͏ */ '\u035c', /* ͜ */ '\u035d', /* ͝ */ '\u035e', /* ͞ */
|
||||
'\u035f', /* ͟ */ '\u0360', /* ͠ */ '\u0362', /* ͢ */ '\u0338', /* ̸ */
|
||||
'\u0337', /* ̷ */ '\u0361', /* ͡ */ '\u0489' /* ҉_ */
|
||||
);
|
||||
|
||||
function rand_zalgo($array)
|
||||
{
|
||||
$ind = rand(0, count($array) - 1);
|
||||
$unicodeChar = $array[$ind];
|
||||
return json_decode('"'.$unicodeChar.'"');
|
||||
}
|
||||
|
||||
function is_zalgo_char($c)
|
||||
{
|
||||
global $zalgo_up;
|
||||
global $zalgo_down;
|
||||
global $zalgo_mid;
|
||||
|
||||
for($i=0; $i < count($zalgo_up); $i++)
|
||||
{
|
||||
if($c == json_decode('"'.$zalgo_up[$i].'"'))
|
||||
return true;
|
||||
}
|
||||
for($i=0; $i < count($zalgo_down); $i++)
|
||||
{
|
||||
if($c == json_decode('"'.$zalgo_down[$i].'"'))
|
||||
return true;
|
||||
}
|
||||
for($i=0; $i < count($zalgo_mid); $i++)
|
||||
{
|
||||
if($c == json_decode('"'.$zalgo_mid[$i].'"'))
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function zalgo($txt)
|
||||
{
|
||||
global $zalgo_up;
|
||||
global $zalgo_down;
|
||||
global $zalgo_mid;
|
||||
|
||||
$newtxt = '';
|
||||
|
||||
for($i = 0; $i < strlen($txt); $i++)
|
||||
{
|
||||
if(is_zalgo_char(substr($txt, $i, 1)))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
//add the normal character
|
||||
$newtxt .= substr($txt, $i, 1);
|
||||
|
||||
$num_up = rand(0, 16) / 2 + 1;
|
||||
$num_mid = rand(0, 6) / 2;
|
||||
$num_down = rand(0, 16) / 2 + 1;
|
||||
|
||||
for($j = 0; $j < $num_up; $j++)
|
||||
{
|
||||
$add = rand_zalgo($zalgo_up);
|
||||
$newtxt .= $add;
|
||||
}
|
||||
for($j = 0; $j < $num_mid; $j++)
|
||||
{
|
||||
$add = rand_zalgo($zalgo_mid);
|
||||
$newtxt .= $add;
|
||||
}
|
||||
for($j = 0; $j < $num_down; $j++)
|
||||
{
|
||||
$add = rand_zalgo($zalgo_down);
|
||||
$newtxt .= $add;
|
||||
}
|
||||
}
|
||||
|
||||
return $newtxt;
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in a new issue