-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathshop.js
185 lines (165 loc) · 7.6 KB
/
shop.js
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
var shop = {
// Variables
buy10LollipopsButtonShown : false, // True if the buy 10 lollipops button should be shown
shown : false, // True if the shop is currently shown
ticklingStep : 0, // Tickling step (increase when we click on the merchant's hat
clickingOnLollipopStep : 0, // Clicking on lollipop step (increase when we clicked on the top of the lollipop sold at the shop)
oneLollipopPrice : 0, // Price of one lollipop, calculated depending on the clicking on lollipop step
tenLollipopsPrice : 0, // Price of ten lollipops, calculated the same way as above
currentSwordButtonId : "none", // Contains the id of the current sword buying button
currentSwordPrice : 0, // Contains the price of the current sword being sold by the merchant
// Functions
onload : function(){
lollipops.delivery(); // The merchant must have some lollipops in stock at the beginning, so we make a delivery
this.setClickingOnLollipopStep(0); // This also set the lollipops price !
},
check : function(){
if(candies.nbrOwned >= this.oneLollipopPrice){
this.setShown(true);
}
if(candies.nbrOwned >= 150){
// If we don't have any sword and there's no sword to sell yet, we show the wooden sword
if(sword.name == "none" && this.currentSwordButtonId == "none"){
this.showProduct("wooden_sword");
}
}
},
setBuy10LollipopsButtonShown : function(value){
this.buy10LollipopsButtonShown = value;
},
clickedOnHat : function(){
switch(this.ticklingStep){
case 0:
this.setMerchantSpeech("Hey ! You touched my hat !");
break;
case 1:
this.setMerchantSpeech("Stop that, stop that ! You're tickling me !");
break;
case 2:
this.setMerchantSpeech("Hahahaha ! I'm so ticklish !");
break;
case 3:
this.setMerchantSpeech("Listen, listen : I give you 100 candies ! But stop that please !");
candies.setNbrOwned(candies.nbrOwned + 100);
break;
}
this.setTicklingStep(this.ticklingStep + 1);
},
setTicklingStep : function(value){
this.ticklingStep = value;
},
setClickingOnLollipopStep : function(value){
this.clickingOnLollipopStep = value;
// Set the buttons value if the step is 0 or the price is reducing or is reduced
if(this.clickingOnLollipopStep <= 4){
this.oneLollipopPrice = 60;
this.tenLollipopsPrice = 500;
htmlInteraction.setInnerHtml("buy_1_lollipop", "Buy a lollipop (60 candies)");
htmlInteraction.setInnerHtml("buy_10_lollipops", "Buy 10 lollipop (500 candies)");
}
else if(this.clickingOnLollipopStep >= 5 && this.clickingOnLollipopStep < 15){
this.oneLollipopPrice = 60 - (this.clickingOnLollipopStep - 4);
this.tenLollipopsPrice = 500 - (this.clickingOnLollipopStep - 4) * 5;
htmlInteraction.setInnerHtml("buy_1_lollipop", "Buy a lollipop (" + this.oneLollipopPrice + " candies)");
htmlInteraction.setInnerHtml("buy_10_lollipops", "Buy 10 lollipop (" + this.tenLollipopsPrice + " candies)");
}
else{
this.oneLollipopPrice = 60 - (14 - 4);
this.tenLollipopsPrice = 500 - (14 - 4) * 5;
htmlInteraction.setInnerHtml("buy_1_lollipop", "Buy a lollipop (" + this.oneLollipopPrice + " candies)");
htmlInteraction.setInnerHtml("buy_10_lollipops", "Buy 10 lollipop (" + this.tenLollipopsPrice + " candies)");
}
},
clickedOnLollipop : function(){
this.setClickingOnLollipopStep(this.clickingOnLollipopStep + 1);
// Possibly change the merchant speech
switch(this.clickingOnLollipopStep){
case 1:
this.setMerchantSpeech("Hey ! Don't touch the products !");
break;
case 2:
this.setMerchantSpeech("Seriously, don't touch this lollipop.");
break;
case 3:
this.setMerchantSpeech("Don't touch it ! Other customers may lick it after that, that's gross !");
break;
case 4:
this.setMerchantSpeech("Stop now or I'll be force to do something.");
break;
case 15:
this.setMerchantSpeech("I can't make a lower price... Please stop.");
break;
}
if(this.clickingOnLollipopStep >= 5 && this.clickingOnLollipopStep < 15){
this.setMerchantSpeech("Okay, okay, I lower the price, but stop touching it !");
}
},
showProduct : function(id){
switch(id){
// If it's a special product
case "wooden_sword":
htmlInteraction.setInnerHtml("sword_with_button", sword.asciiWoodenSwordWithButton);
this.currentSwordButtonId = "buy_wooden_sword";
this.currentSwordPrice = 150;
break;
case "copper_sword":
htmlInteraction.setInnerHtml("sword_with_button", sword.asciiCopperSwordWithButton);
this.currentSwordButtonId = "buy_copper_sword";
this.currentSwordPrice = 300;
break;
case "iron_sword":
htmlInteraction.setInnerHtml("sword_with_button", sword.asciiIronSwordWithButton);
this.currentSwordButtonId = "buy_iron_sword";
this.currentSwordPrice = 500;
break;
case "silver_sword":
htmlInteraction.setInnerHtml("sword_with_button", sword.asciiSilverSwordWithButton);
this.currentSwordButtonId = "buy_silver_sword";
this.currentSwordPrice = 1000;
break;
case "diamond_sword":
htmlInteraction.setInnerHtml("sword_with_button", sword.asciiDiamondSwordWithButton);
this.currentSwordButtonId = "buy_diamond_sword";
this.currentSwordPrice = 2000;
break;
// Else, we just show the html element corresponding to the received id
default:
htmlInteraction.setElementVisibility(id, true);
htmlInteraction.setElementDisplay(id, "block");
break;
}
},
show : function(){
// We show the shop
if(htmlInteraction.isElementVisible("shop") == false){ // If the shop isn't already visible
htmlInteraction.setElementVisibility("shop", true);
this.setMerchantSpeech("Hello, I'm the candy merchant. I would do anything for candies. My lollipops are delicious!");
}
// And the lollipop we can buy :)
this.showProduct("lollipop");
},
setShown : function(value){
// If the new value is true but it was false before, we show the shop
if(value == true && this.shown == false)
{
this.show();
}
// We change the value
this.shown = value;
},
hideProduct : function(id){
// If it's a special product
if(id == "sword"){
this.currentSwordButtonId = "none";
htmlInteraction.setInnerHtml("sword_with_button", "");
}
// Else
else{
htmlInteraction.setElementVisibility(id, false);
htmlInteraction.setElementDisplay(id, "none");
}
},
setMerchantSpeech : function(text){
htmlInteraction.setInnerHtml("merchant_speech", speech.makeSpeechFromText(text, 20, " "));
}
};