User Tools

Site Tools


wargroundscanberra:character_sheet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wargroundscanberra:character_sheet [2024/07/31 22:45] curufeawargroundscanberra: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://www.curufea.com/image.php]]    * Working Location: [[https://www.curufea.com/image.php]] 
-  * Test (Unchained, Fletching)+  * Test (same as working)
     * Form: [[form test|Fill in Character Sheet]]     * Form: [[form test|Fill in Character Sheet]]
     * Location: [[https://www.curufea.com/image_test.php]]     * Location: [[https://www.curufea.com/image_test.php]]
 +
 +==== Code ====
  
 <code php> <code php>
 <?php <?php
 // Character Sheet creator for Wargrounds Canberra // Character Sheet creator for Wargrounds Canberra
-// Version 1.2 1/8/24 - curufea@yahoo.com (faction logo and photo ratio 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/100); $borderwidth = round($width/100);
 $fontborder = round($borderwidth/2); $fontborder = round($borderwidth/2);
 +$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(
- "Player Name:", "Character's Name:", "Titles/Nicknames:", "Race/Species:", "Hair Colour:", "Eye Colour:", "Skin Colour:",  "Class & Tier:", "School of Magic-", "Faction:", "Warband:", "Marx:", "Arrow Fletching Colours-");+ "Player Name:", "Character's Name:", "Titles/Nicknames:", "Race/Species:",  "Class & Tier:", "School of Magic-", "Faction:", "Warband:", "Marx:", "Fletching Colours-", "Character Background-");
 // the field names used in the form // the field names used in the form
 $getnames = array( $getnames = array(
- "name", "character", "title", "species", "hair", "eye", "skin", "class", "magic", "faction", "warband", "marx", "fletching");+ "name", "character", "title", "species", "class", "magic", "faction", "warband", "marx", "fletching", "background"); 
 +//    0                            3        4        5          6              8        9            10 
 +
   
 // 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
-$factions_images = array("greyscales.png", "empire.png", "horde.png", "clans.png");+$factions_images = array("greyscales.png", "clans.png", "empire.png", "horde.png", "wardens.png" );
 // used to cross reference the form data to the image name (the Bureaucracy plugin for the Dokuwiki doesn't send selection number chosen) // used to cross reference the form data to the image name (the Bureaucracy plugin for the Dokuwiki doesn't send selection number chosen)
-$factions_titles = array("Greyscales", "The Empire", "The Horde", "The Clans", "The Wardens");+$factions_titles = array("Greyscales", "The Clans", "The Empire", "The Horde", "The Wardens");
 // 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("2background.jpg", "1background.jpg", "3background.jpg", "0background.jpg","4background.jpg");+$factions_backgrounds = array("2background.jpg", "0background.jpg", "1background.jpg", "3background.jpg","4background.jpg"); 
 +
   
 // count number of field names // count number of field names
Line 66: Line 78:
  for ($x1=($start_x-$font_border);$x1<=($start_x+$font_border);$x1++) {  for ($x1=($start_x-$font_border);$x1<=($start_x+$font_border);$x1++) {
  for ($y1=($start_y-$font_border);$y1<=($start_y+$font_border);$y1++) {  for ($y1=($start_y-$font_border);$y1<=($start_y+$font_border);$y1++) {
- imagettftext($im, $font_size, 0, $x1, $y1, $colour, $font, $text);+// imagettftext($im, $font_size, 0, $x1, $y1, $colour, $font, $text);
  };  };
  };  };
Line 75: Line 87:
    $player_data[$count]= $_GET[$getnames[$count]];    $player_data[$count]= $_GET[$getnames[$count]];
    // 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) {
     $player_data[$count]= array_search($_GET[$getnames[$count]],$factions_titles);     $player_data[$count]= array_search($_GET[$getnames[$count]],$factions_titles);
     $bgimage=$factions_backgrounds [$player_data[$count]];     $bgimage=$factions_backgrounds [$player_data[$count]];
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's no character background 
-$im6 = imageCreateFromPng($weapons); +if (strlen($player_data[9])+strlen($player_data[10])==0) { 
-imagecopyresized($image,$im6, $linespacing*2, $linespacing*13,0,0,round($width/3.5),round($width/3), imagesx($im6), imagesy($im6)); + $im6 = imageCreateFromPng($weapons); 
-imagedestroy($im6);+ imagecopyresized($image,$im6, $linespacing*2, $linespacing*13,0,0,round($width/3.5),round($width/3), imagesx($im6), imagesy($im6)); 
 + 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,$im5, round($width/2), $linespacing*7,0,0,round($width/2),round($width/8), imagesx($im5), imagesy($im5));  imagecopyresized($image,$im5, round($width/2), $linespacing*7,0,0,round($width/2),round($width/8), imagesx($im5), imagesy($im5));
  } else {  } else {
Line 119: Line 133:
  };  };
 imagedestroy($im5); imagedestroy($im5);
 +
 +// Add the large W
 +imagettftext($image, $fontsize*3, 0, round($width*0.8), round($width/6), $fontcolour, $font_wargrounds, "W");
  
 for ($count=0;$count<=$numnames;$count++) { for ($count=0;$count<=$numnames;$count++) {
  $y=$y+$linespacing;  // increment by estimated line separation height  $y=$y+$linespacing;  // increment by estimated line separation height
   
-// Clunky bit to do positioning.  I'll just generate an array next time  +// Clunky bit to do positioning.   
- if ($count==3||$count==7) $y=$y+$linespacing;  // blank lines to separate+ if ($count==3||$count==4) $y=$y+$linespacing;  // blank lines to separate
   
- if ($count==9) { // right column+ if ($count==6) { // right column
  $y= $linespacing*5;  $y= $linespacing*5;
  $x= round($width/2);  $x= round($width/2);
  };  };
- 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,0,$font,$text); // makes an array of co-ordinates for the text box  $text_box = imagettfbbox($fontsize,0,$font,$text); // makes an array of co-ordinates for the text box
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 magicfletching and background fields if they aren't filled in 
- if (($count==8) and strlen($text)<1) $showstuff = false; + if (($count==5) and strlen($text)<1) $showstuff = false; 
- if (($count==$numnames) and strlen($text)<1) $showstuff = false;+ if (($count==9) and strlen($text)<1) $showstuff = false; 
 + if (($count==10) and strlen($text)<1) $showstuff = false;
   
 // 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 magic type and fletching on the next line so it fits  +// Put titles, magic typefletching and background on the next line so it fits  
- if (($count==8) or ($count==$numnames)) { + if (($count==5) or ($count==9)or ($count==10)) { 
- DoFontBorder ($image,$fontsize,$x,$y+$linespacing,$bordercolour,$font_data,$text,$fontborder); + if ($count==10) { 
- imagettftext($image, $fontsize, 0, $x, $y+$linespacing, $fontcolour, $font_data, $text);+ $maxlen=25; // when to go to the next line 
 + $shorter = explode(" ",$text); 
 + $currentlength=0; // running total of the line length 
 + $currentline=1; 
 + $currentword=0; 
 + $text=""; 
 + for ($wordcount=0;$wordcount<count($shorter);$wordcount++) { 
 + $currentlength=$currentlength+strlen($shorter[$wordcount]); 
 + $text=$text.$shorter[$wordcount]." "; 
 + if ($currentlength>$maxlen){ 
 + $currentlength=0; 
 + if ($currentline<12) { 
 + DoFontBorder ($image,round($fontsize*3/4),$x,$y+(round($linespacing/2)*$currentline),$bordercolour,$font_data,$text,$fontborder); 
 + imagettftext($image, round($fontsize*3/4), 0, $x, $y+(round($linespacing/2)*$currentline), $fontcolour, $font_data,$text)
 + }; 
 + $text=""; 
 + $currentline++; 
 + }; 
 + }; 
 + } else { 
 + DoFontBorder ($image,$fontsize,$x,$y+$linespacing,$bordercolour,$font_data,$text,$fontborder); 
 + imagettftext($image, $fontsize, 0, $x, $y+$linespacing, $fontcolour, $font_data, $text); 
 + };
  } else {  } else {
- if (($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, class and background smaller to fit 
- if (strlen($text)>15) { // split long lines in two + $maxlen=15; 
- $string_break=stripos($text," ",12);  // look for the first space after the 12th character+ if ($count==2) $maxlen=25; 
 + if (strlen($text)>$maxlen) { // split long lines in two 
 + $string_break=stripos($text," ",$maxlen-3);  // look for the first space after the $maxlen-3 character 
 + if (strlen($text)>$maxlen*2) $text=substr($text,0,stripos($text,",",$maxlen*2));  // truncate ludicrously long strings
  DoFontBorder ($image,round($fontsize*3/4),$x+$text_width,$y,$bordercolour,$font_data,substr($text,0,$string_break),$fontborder);  DoFontBorder ($image,round($fontsize*3/4),$x+$text_width,$y,$bordercolour,$font_data,substr($text,0,$string_break),$fontborder);
- DoFontBorder ($image,round($fontsize*3/4),$x+$text_width,$y+$linespacing,$bordercolour,$font_data,substr($text,$string_break-strlen($text)),$fontborder);+ DoFontBorder ($image,round($fontsize*3/4),$x+$text_width-($text_width*($count==2)),$y+($linespacing/1.5),$bordercolour,$font_data,substr($text,$string_break-strlen($text)),$fontborder);
  imagettftext($image, round($fontsize*3/4), 0, $x+$text_width, $y, $fontcolour, $font_data,substr($text,0,$string_break));  imagettftext($image, round($fontsize*3/4), 0, $x+$text_width, $y, $fontcolour, $font_data,substr($text,0,$string_break));
- imagettftext($image, round($fontsize*3/4), 0, $x+$text_width, $y+$linespacing, $fontcolour, $font_data,substr($text,$string_break-strlen($text)));+ imagettftext($image, round($fontsize*3/4), 0, $x+$text_width-($text_width*($count==2)), $y+($linespacing/1.5), $fontcolour, $font_data,substr($text,$string_break-strlen($text)));
  } else {  } else {
  DoFontBorder ($image,round($fontsize*3/4),$x+$text_width,$y,$bordercolour,$font_data,$text,$fontborder);  DoFontBorder ($image,round($fontsize*3/4),$x+$text_width,$y,$bordercolour,$font_data,$text,$fontborder);
Line 199: Line 247:
 $im4 = imagecreatefromjpeg($photo); $im4 = imagecreatefromjpeg($photo);
 $ratio = imagesy($im4)/imagesx($im4); // Try to keep the photo in the same aspect ratio $ratio = imagesy($im4)/imagesx($im4); // Try to keep the photo in the same aspect ratio
 +
 +$start_x=round($width/1.8);
 +$start_y= round($width/1.5);
 +
 +$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, round($width/1.8), round($width/1.5)round($width*31/32)round($width*6/16/$ratio+$width), $fontcolour);+imagefilledrectangle($image,$start_x-$borderwidth,$start_y-$borderwidth,$end_x+$borderwidth,$end_y+$borderwidth, $fontcolour);
  
 // Resize and place in character Sheet // Resize and place in character Sheet
-imagecopyresized($image, $im4, round($width/1.8)+$borderwidthround($width/1.5)+$borderwidth, 0,0, round($width*31/32)-round($width/1.8)-$borderwidth-$borderwidthround($width*6/16/$ratio+$width)-round($width/1.5)-$borderwidth-$borderwidth, imagesx($im4), imagesy($im4));+imagecopyresized($image, $im4, $start_x, $start_y, 0,0, $i_width, $i_height, imagesx($im4), imagesy($im4));
 imagedestroy($im4); imagedestroy($im4);
- 
- 
- 
-// Add the large W 
-imagettftext($image, $fontsize*3, 0, round($width*0.8), round($width/6), $fontcolour, $font_wargrounds, "W"); 
  
 // tell the browser that the content is an image // tell the browser that the content is an image
Line 221: Line 275:
 </code> </code>
  
-===== To do ===== 
- 
-  * Possibly API use for wherever photos get stored (or just upload them) - may need to edit photos to fit 
  
  
wargroundscanberra/character_sheet.1722491130.txt.gz · Last modified: 2024/07/31 22:45 by curufea