#! /usr/bin/env python3
#
# Este script dibuja el perfil exterior de corte la caja en un solo 
# path cerrado y añade despues los otros flejes necesarios con colores
# diferentes para identificarlos.
#     rojo > para cortes y perfil exterior
#     azul > para hendidos
#     verde > para taladros
#     amarillo > medios cortes
#
# TODO:
#     agregar opción de dibujo en cm/in
#     mover dibujo al centro del documento.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#

__version__ = "0.2"

import inkex

class GenerarEstuche(inkex.EffectExtension):

    def add_arguments(self, pars):
        pars.add_argument("--width", type=float, default=25.0, help="Ancho de la caja")
        pars.add_argument("--height", type=float, default=25.0, help="Alto de la caja")
        pars.add_argument("--depth", type=float, default=25.0, help="Largo de la caja")
        pars.add_argument("--glue_tab", type=float, default=5.0, help="Ancho pestaña de engomado")
        pars.add_argument("--close_tab", type=float, default=5.0, help="Alto pestaña de cierre")
        pars.add_argument("--side_tabs", type=float, default=5.0, help="Alto pestañas laterales de cierre")
        pars.add_argument("--unit", default="mm", help="Tipo de unidades")

    def effect(self):
        centro_ancho_documento = self.svg.unittouu(self.document.getroot().get('width'))/2
        centro_alto_documento = self.svg.unittouu(self.document.getroot().get('height'))/2

        medida_pestana1=5
        medida_pestana2=1
        medida_pestana3=4
        medida_pestana4=3
        medida_pestana5=10

        ancho_caja = self.svg.unittouu(str(self.options.width) + self.options.unit)
        alto_caja = self.svg.unittouu(str(self.options.height) + self.options.unit)
        largo_caja = self.svg.unittouu(str(self.options.depth) + self.options.unit)
        ancho_pestana_cola = self.svg.unittouu(str(self.options.glue_tab) + self.options.unit)
        alto_pestana_cierre = self.svg.unittouu(str(self.options.close_tab) + self.options.unit)
        alto_pestana = self.svg.unittouu(str(self.options.side_tabs) + self.options.unit)

        if self.options.unit=="cm":
            medida_pestana1=0.5
            medida_pestana2=0.1
            medida_pestana3=0.4
            medida_pestana3=0.3
            medida_pestana5=1.0
            
        if self.options.unit=="in":
            medida_pestana1=0.196
            medida_pestana2=0.039
            medida_pestana3=0.157
            medida_pestana3=0.118
            medida_pestana5=0.393

        medida1_pestanas_laterales=self.svg.unittouu(str(medida_pestana1) + self.options.unit)
        medida2_pestanas_laterales=self.svg.unittouu(str(medida_pestana2) + self.options.unit)
        medida3_pestanas_laterales=self.svg.unittouu(str(medida_pestana3) + self.options.unit)
        medida4_pestanas_laterales=self.svg.unittouu(str(medida_pestana4) + self.options.unit)
        medida1_pestanas_cierre=self.svg.unittouu(str(medida_pestana5) + self.options.unit)
        
        id_caja = self.svg.get_unique_id('estuche-fondosuizo')
        group = self.svg.get_current_layer().add(inkex.Group(id=id_caja))
        estilo_linea_cortes = {'stroke': '#FF0000', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
        estilo_linea_hendidos = {'stroke': '#0000FF', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
        estilo_linea_taladros = {'stroke': '#00FF00', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}
        estilo_linea_medioscortes = {'stroke': '#00FFFF', 'fill': 'none', 'stroke-width': str(self.svg.unittouu('1px'))}

        # line.path --> M = coordenadas absolutas
        # line.path --> l = dibuja una linea desde el punto actual a las coordenadas especificadas
        # line.path --> c = dibuja una curva beizer desde el punto actual a las coordenadas especificadas
        # line.path --> q = dibuja un arco desde el punto actual a las coordenadas especificadas usando un punto como referencia
        # line.path --> Z = cierra path
        
        #Perfil Exterior de la caja
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-exterior'))
        line.path = [
            ['M', [0, 0]],
            ['l', [ancho_caja, 0]],
            ['l', [0,0]],
            ['l', [0, 0]],
            ['l', [0, 0-medida1_pestanas_laterales]],
            ['l', [medida2_pestanas_laterales, 0-medida2_pestanas_laterales]],
            ['l', [medida3_pestanas_laterales, 0-(alto_pestana-medida2_pestanas_laterales-medida1_pestanas_laterales)]], 
            ['l', [(largo_caja-medida2_pestanas_laterales-medida3_pestanas_laterales-medida4_pestanas_laterales), 0]],
            ['l', [0,alto_pestana-medida4_pestanas_laterales]],
            ['l', [medida4_pestanas_laterales, medida4_pestanas_laterales]],
            ['l', [0, 0-largo_caja]],
            ['l', [0, 0]],
            ['q', [0,0-alto_pestana_cierre,alto_pestana_cierre, 0-alto_pestana_cierre]],
            ['l', [ancho_caja-(alto_pestana_cierre*2), 0]],
            ['q', [alto_pestana_cierre,0,alto_pestana_cierre,alto_pestana_cierre]],
            ['l', [0, 0]],
            ['l', [0, (largo_caja)]],
            ['l', [medida4_pestanas_laterales, 0-medida4_pestanas_laterales]],
            ['l', [0,0-(alto_pestana-medida4_pestanas_laterales)]],
            ['l', [(largo_caja-medida2_pestanas_laterales-medida3_pestanas_laterales-medida4_pestanas_laterales), 0]],
            ['l', [medida3_pestanas_laterales, (alto_pestana-medida2_pestanas_laterales-medida1_pestanas_laterales)]],
            ['l', [medida2_pestanas_laterales, medida2_pestanas_laterales]],
            ['l', [0, medida1_pestanas_laterales]],
            ['l', [0,0]],
            ['l', [0, alto_caja]],
            ['l', [0,(largo_caja*0.5)+medida1_pestanas_cierre]],
            ['l', [0-(largo_caja)*0.5,0]],
            ['l', [0,0-medida1_pestanas_cierre]],
            ['l', [0-(largo_caja)*0.5,0-((largo_caja)*0.5)]],
            ['l', [0,(largo_caja*0.5)+medida1_pestanas_cierre]],
            ['l', [0-(ancho_caja)*0.25,0]],
            ['l', [0, 0-medida1_pestanas_cierre]],
            ['l', [0-(ancho_caja)*0.5,0]],
            ['l', [0, medida1_pestanas_cierre]],
            ['l', [0-(ancho_caja)*0.25,0]],
            ['l', [0,0-((largo_caja*0.5)+medida1_pestanas_cierre)]],
            ['l', [0-(largo_caja)*0.5,((largo_caja*0.5))]],
            ['l', [0,medida1_pestanas_cierre]],
            ['l', [0-(largo_caja)*0.5,0]],
            ['l', [0,0-((largo_caja*0.5)+medida1_pestanas_cierre)]],
            ['l', [0-ancho_caja*0.25,(largo_caja*0.5)]],
            ['l', [0,medida1_pestanas_cierre]],
            ['l', [0-ancho_caja*0.5,0]],
            ['l', [0,0-medida1_pestanas_cierre]],
            ['l', [0-ancho_caja*0.25,0-(largo_caja*0.5)]],
            ['l', [0, 0]],
            ['l', [0, 0]],
            ['l', [0, 0-medida2_pestanas_laterales]],
            ['l', [0-ancho_pestana_cola, 0-(ancho_pestana_cola/2)]],
            ['l', [0, 0-(alto_caja-ancho_pestana_cola-(medida2_pestanas_laterales*2))]],
            ['l', [ancho_pestana_cola, 0-(ancho_pestana_cola/2)]],
            ['Z', []]
        ]
        line.style = estilo_linea_cortes
        
        #Hendidos
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-1'))
        line.path = [
            ['M', [0,0]],
            ['l', [0,alto_caja]]
        ]
        line.style = estilo_linea_hendidos

        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-2'))
        line.path = [
            ['M', [ancho_caja,0]],
            ['l', [0,alto_caja]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-3'))
        line.path = [
            ['M', [ancho_caja+largo_caja,0]],
            ['l', [0,alto_caja]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-4'))
        line.path = [
            ['M', [ancho_caja+ancho_caja+largo_caja,0]],
            ['l', [0,alto_caja]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-5'))
        line.path = [
            ['M', [ancho_caja,0]],
            ['l', [largo_caja,0]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-6'))
        line.path = [
            ['M', [largo_caja+ancho_caja,0]],
            ['l', [ancho_caja,0]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-7'))
        line.path = [
            ['M', [(ancho_caja*2)+largo_caja,0]],
            ['l', [largo_caja,0]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-8'))
        line.path = [
            ['M', [ancho_caja+largo_caja,0-largo_caja]],
            ['l', [ancho_caja,0]]
        ]
        line.style = estilo_linea_hendidos
        
        line = group.add(inkex.PathElement(id=id_caja + '-perfil-hendidos-9'))
        line.path = [
            ['M', [0,alto_caja]],
            ['l', [(ancho_caja+largo_caja)*2,0]]
        ]
        line.style = estilo_linea_hendidos

if __name__ == '__main__':
    GenerarEstuche().run()