HOME


Mini Shell 1.0
DIR: /home/dhnidqcz/pragmaticsng.org/wp-content/plugins/e2pdf/vendors/svggraph/
Upload File :
Current File : /home/dhnidqcz/pragmaticsng.org/wp-content/plugins/e2pdf/vendors/svggraph/Figures.php
<?php
/**
 * Copyright (C) 2018-2023 Graham Breach
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
/**
 * For more information, please contact <[email protected]>
 */

namespace Goat1000\SVGGraph;

class Figures {

  private $graph;
  private $settings;
  private $loaded = false;
  private $figure_map = [];

  public function __construct(&$graph, &$settings)
  {
    $this->graph =& $graph;
    $this->settings =& $settings;
  }

  /**
   * Load figures from options list
   */
  public function load()
  {
    if($this->loaded)
      return;
    $this->loaded = true;

    if(!isset($this->settings['figure']))
      return;

    if(!is_array($this->settings['figure']) ||
      !isset($this->settings['figure'][0]))
      throw new \Exception('Malformed figure option.');

    if(!is_array($this->settings['figure'][0])) {
      $this->addFigure($this->settings['figure']);
    } else {
      foreach($this->settings['figure'] as $figure) {
        $this->addFigure($figure);
      }
    }
  }

  /**
   * Adds a figure to the list
   */
  private function addFigure($figure_array)
  {
    $name = array_shift($figure_array);
    if(isset($this->figure_map[$name]))
      throw new \Exception('Figure [' . $name . '] defined more than once.');
    $content = '';
    $shapes = $this->graph->getShapeList();
    if(!is_array($figure_array[0])) {
      $shape = $shapes->getShape($figure_array);
      $content .= $shape->draw($this->graph);
    } else {
      foreach($figure_array as $s) {
        $shape = $shapes->getShape($s);
        $content .= $shape->draw($this->graph);
      }
    }
    $id = $this->graph->defs->defineSymbol($content);
    $this->figure_map[$name] = $id;
  }

  /**
   * Returns a figure's symbol ID by name
   */
  public function getFigure($name)
  {
    $this->load();
    if(isset($this->figure_map[$name]))
      return $this->figure_map[$name];
    return null;
  }
}