-
Notifications
You must be signed in to change notification settings - Fork 0
/
golosinas.wlk
168 lines (124 loc) · 3.14 KB
/
golosinas.wlk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
object bombon {
var property precio = 5
var property peso = 15
const property gusto = "frutilla"
var property gluten = true
method mordisco() {
peso = (peso*0.8) -1
}
}
object alfajor {
var property precio = 12
var property peso = 300
const property gusto = "chocolate"
var property gluten = false
method mordisco() {
peso = (peso*0.8)
}
}
object caramelo {
var property precio = 1
var property peso = 5
const property gusto = "frutilla"
var property gluten = true
method mordisco() {
peso -= 1
}
}
object chupetin {
var property precio = 2
var property peso = 7
const property gusto = "naranja"
var property gluten = true
method mordisco() {
if(peso >= 2){
peso = (peso*0.90)
}
}
}
object oblea {
var property precio = 5
var property peso = 250
const property gusto = "vainilla"
var property gluten = false
method mordisco() {
if(peso >= 70){
peso = (peso/2)
}
else {
peso = (peso*0.75)
}
}
}
object chocolatin {
method precio() = peso*0.5
var property peso = 0
const property gusto = "chocolate"
var property gluten = false
method mordisco(){ peso -= 2
}
}
object golosinaBaniada {
var property baniochocolate = 4
var property golosinaBase = null
method peso() = golosinaBase.peso() + baniochocolate
method precio() = golosinaBase.precio() + 2
method gusto() = golosinaBase.gusto()
method gluten()= golosinaBase.gluten()
method mordisco(){
golosinaBase.mordisco()
if(baniochocolate>0){
baniochocolate-=2
}
}
}
object pastilla {
var property peso = 5
var property precio = 0
var property gluten = null
var property gustos = ["frutilla","chocolate","naranja"]
method glutenSON(valor) {
gluten=valor
}
method esLibreono(){
if(gluten==1){
precio = 7
}
else if (gluten==0) {
precio = 10
}
}
method mordisco() {
gustos.add(gustos.first())
gustos.remove(gustos.first())
}
method gusto() = gustos.first()
}
//parte 2
object mariano {
const property bolsa = []
method comprar(golosina){
bolsa.add(golosina)
}
method desechar(golosina) {
bolsa.remove(golosina)
}
method probar() {
bolsa.forEach({golosina=> golosina.mordisco()})
}
method hayGolosinaSinTACC() {
bolsa.any({golosina => golosina.gluten()})
}
method precioCuidado() = bolsa.all({golosina => golosina.precio()<10})
method golosinaDeSabor()= bolsa.first().gusto()
method golosinasDeSabor(unSabor)= bolsa.filter({golosina => golosina.gusto()== unSabor})
method sabores() = bolsa.map({golosina=>golosina.gusto()}).asSet()
method golosinaMasCara()= bolsa.max({golosina=>golosina.precio()})
method pesoGolosinas()= bolsa.sum({golosina=>golosina.peso()})
method golosinasFaltantes() = juliana.golosinasDeseadas().filter({golosina=>!bolsa.contains(golosina)})
method saboresFaltantes(saborDeseado) = saborDeseado.filter({sabor=>!(bolsa.contains{golosina => golosina.gusto()==sabor})})
}
object juliana {
var property golosinasDeseadas = #{}
var property saborDeseado = #{}
}