Class: PlatoDSL

Inherits:
Object
  • Object
show all
Defined in:
lib/huella/plato_dsl.rb

Instance Method Summary collapse

Constructor Details

#initialize(nombre, &block) ⇒ PlatoDSL

Returns a new instance of PlatoDSL.



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/huella/plato_dsl.rb', line 3

def initialize(nombre, &block)

    @nombre = nombre
    @listaAlimentos = []
    @listaCantidades = []

    if block_given?

        # Baja y sube para analizar cada linea
        if block.arity == 1
            yield self
        # Solo sube una vez, todo el bloque se interpreta
        else
            instance_eval(&block)
        end

    end

end

Instance Method Details

#alimento(alim = {}) ⇒ Object

Crea un alimento a partir de un DLS



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/huella/plato_dsl.rb', line 47

def alimento(alim = {})

    # Alimento valido
    if alimentoValido(alim) == 1
        nom = alim[:nombre]
        pro = alim[:proteinas]        
        car = alim[:carbohidratos]        
        lip = alim[:lipidos]      
        gei = alim[:gei]      
        ter = alim[:terreno]

        alimento = Alimento.new(nom, pro, car, lip, gei, ter)
        @listaAlimentos << alimento

        @listaCantidades << alim[:gramos]
    end

end

#alimentoValido(alim) ⇒ Object

Valida que un hash tenga todos los atributos para crear un alimento valido



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/huella/plato_dsl.rb', line 24

def alimentoValido(alim)

    if !alim[:nombre]
        return 0
    elsif !alim[:proteinas]
        return 0
    elsif !alim[:carbohidratos]
        return 0
    elsif !alim[:lipidos]
        return 0
    elsif !alim[:gei]
        return 0
    elsif !alim[:terreno]
        return 0
    elsif !alim[:gramos]
        return 0
    end

    return 1

end

#to_sObject

Formatea el menĂº en un string



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/huella/plato_dsl.rb', line 67

def to_s 

    cantDecimales = '%.2f'
    
    output = "#{@nombre}\n"
    output << "#{'=' * @nombre.size}\n\n"

    output << "Ingedientes:\n\n"

    @listaAlimentos.each_with_index do |alim, index|
        energia = alim.getValorEnergeticoConGramos(@listaCantidades[index])

        output << "#{index + 1}) #{alim.nombre}\n"
        output << "Cantidad: #{cantDecimales % @listaCantidades[index]}\n"
        output << "Valor Nutricional: #{cantDecimales % energia} kcal\n"
        output << "Valor Ambiental: #{cantDecimales % alim.gei} kgCO2\n\n"
    end

    output

end