wargroundscanberra:character_sheet
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
wargroundscanberra:character_sheet [2024/08/18 01:21] – curufea | wargroundscanberra:character_sheet [2024/08/30 15:32] (current) – curufea | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Character Sheets ====== | ====== Character Sheets ====== | ||
^ Go back to [[start|Wargrounds Canberra]] | ^ Go back to [[start|Wargrounds Canberra]] | ||
+ | |||
+ | |||
+ | ===== No Longer Used ===== | ||
+ | This project has been superseded by NanDeck (makes it much easier). But I'll keep it on my website just because it was fun to do. | ||
+ | |||
+ | ==== Forms ==== | ||
* Working Form: [[form|Fill in Character Sheet]] | * Working Form: [[form|Fill in Character Sheet]] | ||
* Working Location: [[https:// | * Working Location: [[https:// | ||
- | * Test (Unchained, Fletching) | + | * Test (same as working) |
* Form: [[form test|Fill in Character Sheet]] | * Form: [[form test|Fill in Character Sheet]] | ||
* Location: [[https:// | * Location: [[https:// | ||
+ | |||
+ | ==== Code ==== | ||
<code php> | <code php> | ||
<?php | <?php | ||
// Character Sheet creator for Wargrounds Canberra | // Character Sheet creator for Wargrounds Canberra | ||
- | // Version 1.4 18/8/24 - curufea@yahoo.com (faction fix) | + | // Version 1.5 20/8/24 - curufea@yahoo.com (character backgorunds) |
// Currently hosted at www.curufea.com | // Currently hosted at www.curufea.com | ||
Line 33: | Line 41: | ||
$borderwidth = round($width/ | $borderwidth = round($width/ | ||
$fontborder = round($borderwidth/ | $fontborder = round($borderwidth/ | ||
+ | $textlength = 30; | ||
// default placeholder photo to be replaced by image from form url | // default placeholder photo to be replaced by image from form url | ||
Line 47: | Line 56: | ||
// array of default field names | // array of default field names | ||
$names = array( | $names = array( | ||
- | " | + | " |
// the field names used in the form | // the field names used in the form | ||
$getnames = array( | $getnames = array( | ||
- | " | + | " |
+ | // 0 | ||
+ | |||
// 400px x 400px jpeg images stored on the image path (in the Dokuwiki media area) for faction logos | // 400px x 400px jpeg images stored on the image path (in the Dokuwiki media area) for faction logos | ||
Line 58: | Line 69: | ||
// 2987px x 4250px jpeg images stored on the image path (in the Dokuwiki media area) for faction backgrounds | // 2987px x 4250px jpeg images stored on the image path (in the Dokuwiki media area) for faction backgrounds | ||
$factions_backgrounds = array(" | $factions_backgrounds = array(" | ||
+ | |||
// count number of field names | // count number of field names | ||
Line 66: | Line 78: | ||
for ($x1=($start_x-$font_border); | for ($x1=($start_x-$font_border); | ||
for ($y1=($start_y-$font_border); | for ($y1=($start_y-$font_border); | ||
- | imagettftext($im, | + | // imagettftext($im, |
}; | }; | ||
}; | }; | ||
Line 75: | Line 87: | ||
| | ||
// Convert the text of the selection for faction to a number | // Convert the text of the selection for faction to a number | ||
- | if ($count==9) { | + | if ($count==6) { |
| | ||
- | | + | |
}; | }; | ||
}; | }; | ||
Line 106: | Line 118: | ||
$showstuff = true; // by default show all fields | $showstuff = true; // by default show all fields | ||
- | // Add weapons to the character Sheet | + | // Add weapons to the character Sheet if there' |
- | $im6 = imageCreateFromPng($weapons); | + | if (strlen($player_data[9])+strlen($player_data[10])==0) { |
- | imagecopyresized($image, | + | $im6 = imageCreateFromPng($weapons); |
- | imagedestroy($im6); | + | imagecopyresized($image, |
+ | imagedestroy($im6); | ||
+ | }; | ||
// Add coin piles to the character Sheet | // Add coin piles to the character Sheet | ||
$im5 = imageCreateFromPng($coins); | $im5 = imageCreateFromPng($coins); | ||
- | if (strlen($player_data[10])>15) { // Move the coin piles down to fit long warband names | + | if (strlen($player_data[7])>15) { // Move the coin piles down to fit long warband names |
imagecopyresized($image, | imagecopyresized($image, | ||
} else { | } else { | ||
Line 119: | Line 133: | ||
}; | }; | ||
imagedestroy($im5); | imagedestroy($im5); | ||
+ | |||
+ | // Add the large W | ||
+ | imagettftext($image, | ||
for ($count=0; | for ($count=0; | ||
$y=$y+$linespacing; | $y=$y+$linespacing; | ||
- | // Clunky bit to do positioning. | + | // Clunky bit to do positioning. |
- | if ($count==3||$count==7) $y=$y+$linespacing; | + | if ($count==3||$count==4) $y=$y+$linespacing; |
- | if ($count==9) { // right column | + | if ($count==6) { // right column |
$y= $linespacing*5; | $y= $linespacing*5; | ||
$x= round($width/ | $x= round($width/ | ||
}; | }; | ||
- | if ($count==$numnames-1) { // centre the last text in the right column | + | if ($count==8) { // centre the last text in the right column |
$text = $names[$count] . " 999"; // add possible length | $text = $names[$count] . " 999"; // add possible length | ||
$text_box = imagettfbbox($fontsize, | $text_box = imagettfbbox($fontsize, | ||
Line 139: | Line 156: | ||
}; | }; | ||
- | if ($count==$numnames) { // Do the new Fletching field | + | if ($count==9) { // Do the new Fletching field |
- | $y=$fontsize+($linespacing*15); | + | $y=$fontsize+($linespacing*10); |
+ | $x = $fontsize; | ||
+ | }; | ||
+ | |||
+ | if ($count==10) { // Do the new background field | ||
+ | $y=$fontsize+($linespacing*12); | ||
$x = $fontsize; | $x = $fontsize; | ||
}; | }; | ||
Line 149: | Line 171: | ||
$text = $player_data[$count]; | $text = $player_data[$count]; | ||
- | // Hide the magic and fletching fields if it isn't filled in | + | // Hide the magic, fletching |
- | if (($count==8) and strlen($text)< | + | if (($count==5) and strlen($text)< |
- | if (($count==$numnames) and strlen($text)< | + | if (($count==9) and strlen($text)<1) $showstuff = false; |
+ | if (($count==10) and strlen($text)< | ||
// Do the border for the field names | // Do the border for the field names | ||
Line 162: | Line 185: | ||
// Change the selected faction to readable text (and add faction logo) | // Change the selected faction to readable text (and add faction logo) | ||
- | if ($count==9) { | + | if ($count==6) { |
$text = $factions_titles[intval($player_data[$count])]; | $text = $factions_titles[intval($player_data[$count])]; | ||
$faction= $imagepath.$factions_images[intval($player_data[$count])]; | $faction= $imagepath.$factions_images[intval($player_data[$count])]; | ||
Line 173: | Line 196: | ||
// Print the data | // Print the data | ||
- | // Put titles, magic type and fletching on the next line so it fits | + | // Put titles, magic type, fletching |
- | if (($count==8) or ($count==$numnames)) { | + | if (($count==5) or ($count==9)or ($count==10)) { |
- | DoFontBorder ($image, | + | if ($count==10) { |
- | imagettftext($image, | + | $maxlen=25; |
+ | $shorter = explode(" | ||
+ | $currentlength=0; | ||
+ | $currentline=1; | ||
+ | $currentword=0; | ||
+ | $text=""; | ||
+ | for ($wordcount=0; | ||
+ | $currentlength=$currentlength+strlen($shorter[$wordcount]); | ||
+ | $text=$text.$shorter[$wordcount]." | ||
+ | if ($currentlength> | ||
+ | $currentlength=0; | ||
+ | if ($currentline< | ||
+ | DoFontBorder ($image,round($fontsize*3/4),$x,$y+(round($linespacing/ | ||
+ | imagettftext($image, | ||
+ | }; | ||
+ | $text=""; | ||
+ | $currentline++; | ||
+ | }; | ||
+ | }; | ||
+ | } else { | ||
+ | DoFontBorder ($image, | ||
+ | imagettftext($image, | ||
+ | }; | ||
} else { | } else { | ||
- | if (($count==2) or ($count==7) or ($count==10)) { // make class and tier smaller to fit for magic type and warband name | + | if (($count==2) or ($count==4) or ($count==7)) { // make titles, |
$maxlen=15; | $maxlen=15; | ||
if ($count==2) $maxlen=25; | if ($count==2) $maxlen=25; | ||
Line 198: | Line 243: | ||
}; | }; | ||
}; | }; | ||
- | |||
// Add the photo to the character Sheet | // Add the photo to the character Sheet | ||
$im4 = imagecreatefromjpeg($photo); | $im4 = imagecreatefromjpeg($photo); | ||
$ratio = imagesy($im4)/ | $ratio = imagesy($im4)/ | ||
+ | |||
+ | $start_x=round($width/ | ||
+ | $start_y= round($width/ | ||
+ | |||
+ | $i_width= round($width*0.4); | ||
+ | $i_height= round($i_width*$ratio); | ||
+ | |||
+ | $end_x= $start_x+$i_width; | ||
+ | $end_y= $start_y+$i_height; | ||
+ | |||
+ | |||
// Draw border | // Draw border | ||
- | imagefilledrectangle($image, | + | imagefilledrectangle($image, |
// Resize and place in character Sheet | // Resize and place in character Sheet | ||
- | imagecopyresized($image, | + | imagecopyresized($image, |
imagedestroy($im4); | imagedestroy($im4); | ||
- | |||
- | |||
- | |||
- | // Add the large W | ||
- | imagettftext($image, | ||
// tell the browser that the content is an image | // tell the browser that the content is an image | ||
Line 225: | Line 275: | ||
</ | </ | ||
- | ===== To do ===== | ||
- | |||
- | * Possibly API use for wherever photos get stored (or just upload them) - may need to edit photos to fit | ||
wargroundscanberra/character_sheet.1723969273.txt.gz · Last modified: 2024/08/18 01:21 by curufea