-
Notifications
You must be signed in to change notification settings - Fork 1
/
LemonadeMain.py
801 lines (650 loc) · 26 KB
/
LemonadeMain.py
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
# Lemonade stand is Licensed under the Don't Be A Dick License
# (dbad-license). This license is an extension of the Apache License.
#
# If you do not wish to comply with the restrictions of the Don't Be A Dick
# License, this software is also available 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.
#
# The text of the Don't Be A Dick License is available at at
# <http://dbad-license.org/license>, while the GNU General Public License
# is available at <http://www.gnu.org/licenses/>.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Authors:
# Justin Lewis <jlew.blackout@gmail.com>
# Nathaniel Case <Qalthos@gmail.com>
from __future__ import unicode_literals
from random import randint
from constants import constants
from constants import format_money, CURRENCY
from operator import itemgetter
import gettext
from badges import badges
class LemonadeMain:
"""
The main class for the Lemonade Game.
This class holds all the logic of the game
"""
def __init__(self, difficulty_level=0):
self.splash = True
self.__day = 1
self.__difficulty = difficulty_level
self.version = "lemonade"
self.language = 'LemonadeEnglish'
self.constants = constants(self.language)
self.__resources = {
'money': 0,
'day_start_money': 0,
'last_income': 0,
'last_profit': 0,
'last_spent': 0,
'price': self.constants.recipes[self.version]['basic']['cost'],
'recipe': self.constants.recipes[self.version]['basic'],
'upgrades': [0,
{
'name': [],
'level': [],
'capacity': [],
'saves': []
}]
}
# Populate resources with item keys
for item_key in self.constants.items[self.version].keys():
self.__resources[item_key] = []
# Populate the upgrade resource
for i in range(0, len(self.constants.upgrades[self.version])):
self.__resources['upgrades'][1]['name'].append(
self.constants.upgrades[self.version][i]['name'])
self.__resources['upgrades'][1]['level'].append(0)
self.__resources['upgrades'][1]['capacity'].append(0)
self.__resources['upgrades'][1]['saves'].append(
self.constants.upgrades[self.version][i]['saves'])
self.__resources['upgrades'][0] += 1
self.first_upgrade = True
self.first_correct_change = True
self.first_ten_sales = True
self.__weather = 1
self.__msg_queue = []
self.challenge_mode = False
self.challenge_completed = False
self.__reputation = {
'neighborhood': 0
}
self.location = "neighborhood"
# run weather
self.weather_change()
self.event_messages = []
self.badges = badges("Lemonade", "org.laptop.Lemonade")
@property
def language(self):
return self.language
@property
def badges(self):
return self.badges
@property
def upgrades(self):
return self.__resources['upgrades']
@property
def reputation(self):
return self.__reputation
@property
def location(self):
return self.location
@property
def version(self):
return self.version
@property
def challenge_completed(self):
return self.challenge_completed
@property
def challenge(self):
return self.challenge_mode
@property
def event_messages(self):
return self.event_messages
@property
def difficulty(self):
return self.__difficulty
@property
def start_money(self):
return self.__resources['day_start_money']
@property
def spent(self):
return self.__resources['spent']
@property
def prices(self):
return self.__resources['price']
@property
def price(self):
return self.prices[self.difficulty]
@property
def income(self):
return self.__resources['last_income']
@property
def current_recipe(self):
return self.__resources['recipe']
@property
def money(self):
return self.__resources['money']
@property
def profit(self):
return self.__resources['last_profit']
@property
def day(self):
return self.__day
@property
def weather(self):
return self.__weather
@property
def weather_name(self):
return self.constants.weather[self.weather]
@property
def resource_list(self):
resources = {}
for item_key in self.constants.items[self.version].keys():
resources[item_key] = self.count_item(item_key)
return resources
@property
def messages(self):
return self.__msg_queue
def recipe(self, ingredient):
return self.current_recipe.get(ingredient, 0)
def get_resource(self, key):
return self.count_item(key)
def process_buy_upgrade(self, info):
"""
Checks to see if the player can afford a specific upgrade.
:type info: list
:param info: A list of information about the upgrade
"""
name = info[0]
base_price = info[1]
base_capacity = info[2]
upgrade_index = self.upgrades[1]['name'].index(name)
price = base_price + base_price * 1.5 * \
self.upgrades[1]['level'][upgrade_index]
if self.money >= price:
self.money -= price
self.upgrades[1]['level'][upgrade_index] += 1
self.upgrades[1]['capacity'][upgrade_index] += base_capacity
return True
return False
def reset_game(self):
"""
Resets the game to its beginning game states
"""
self.day = 1
self.challenge = False
self.challenge_completed = False
def populate_resources(self, difficulty):
"""
Populates the player's resources depending on the difficulty
:type difficulty: int
:param difficulty: The difficulty setting
"""
# Set the new difficulty
self.difficulty = difficulty
# Populate the player's inventory with the starting
# items for this specific difficulty
for item_key in self.constants.items[self.version].keys():
self.add_item(item_key,
self.constants.starting_items[self.version].get(
item_key, [0, 0, 0, 0])[difficulty])
# Give the player starting money depending on the difficulty
self.money = self.constants.starting_money[difficulty]
self.start_money = self.constants.starting_money[difficulty]
def add_msg(self, mesg):
self.__msg_queue.append(mesg)
if len(self.__msg_queue) > self.constants.max_msg:
self.__msg_queue.pop(0)
def clear_queue(self):
self.__msg_queue = []
def weather_change(self):
"""
Randomly change the weather, but not more than one unit away
"""
self.__weather += randint(-1, 1)
# It looks like its going to rain tomorrow
if self.__weather <= 0:
self.__weather = 0
# Tomorrow looks to be very hot
elif self.__weather >= 2:
self.__weather = 2
def event_select(self, events):
"""
Randomly selects an event based on the weight
"""
# Generate a random value
rand_num = randint(1, 100)
# Loop through all the weights starting with the lowest
for key in self.constants.event_keys:
# Once you found which weight value you are using,
# return a random event with that weight
if rand_num <= int(key):
# 100% absolutely necissary.
# Do not remove
# while there are events in the list
# loop through untill a valid event is found
while len(events[key].get(self.version, [])) > 0:
index = randint(0, len(events[key][self.version]) - 1)
event = events[key][self.version][index]
if self.constants.items[self.version].get(
event['item'], None) is None:
events[key][self.version].remove(event)
else:
return event
# If while loop concluded without returning
# Then no events matched the items in version
return None
def random_event(self):
"""
Attempt to run random events
"""
lang = gettext.translation(
'org.laptop.Lemonade',
'locale/',
languages=[self.language])
_ = lang.ugettext
# Adds a event free buffer for the first few days
if self.day < 5:
return
# Create a message list and a random number for checking
# if you got a good, bad, or no event
self.event_messages = []
event_num = randint(1, 100)
# Check if you got a bad event
if event_num <= self.constants.bad_odds[self.difficulty]:
# Generate a bad event
event = self.event_select(self.constants.bad_event_dict)
# Checks if an event was found
if event is None:
return
# Get the amount of the item you have
itemcount = self.count_item(event['item'])
# If you have none of that item, return
if itemcount == 0:
return
# Check if the player has an upgrade that prevents the event
upgrade_capacity = 0
for upgrade in range(0, self.upgrades[0]):
level = self.upgrades[1]['level'][upgrade]
saves = self.upgrades[1]['saves'][upgrade]
capacity = self.upgrades[1]['capacity'][upgrade]
if level > 0:
if saves == event['item']:
if level >= event['level']:
chance = randint(0, event['level'] + level)
if chance > event['level']:
return
else:
upgrade_capacity = capacity
# Check if event scales
if event['change'] < 0:
# Find the amount of items to remove based on the scale
remove = int(abs(event['change']) + (itemcount *
self.constants.scale[self.difficulty]))
# Else remove a flat amount
else:
remove = event['change']
# If you lose more items than you have, remove all your items
if itemcount < remove:
remove = itemcount
# Save some of the player's resources if the player has the
# appropriate upgrade available
remove -= upgrade_capacity
if remove <= 0:
return
# Create a message
msg = _(" You lost {} {}").format(
str(remove), event['item'])
# Remove the items from your inventory
self.remove_item(event['item'], remove)
# Adds s to pluralise nouns that need it
if (event['item'] == 'cup' or event['item'] == 'lemon') \
and itemcount > 1:
msg += "s"
# Add the messages to the event message list
self.event_messages.append(event['text'])
self.event_messages.append(msg)
# Check if you got a good event
elif event_num > self.constants.bad_odds[self.difficulty] \
and event_num <= (self.constants.good_odds[self.difficulty] +
self.constants.bad_odds[self.difficulty]):
# Generate a good event
event = self.event_select(self.constants.good_event_dict)
# Checks if an event was foud
if event is None:
print "No Event found!"
return
# Checks if event scales
if event['change'] < 0:
# Get the amount of the item you have
itemcount = self.count_item(event['item'])
# Find the amount of items to add based on the scale
add = int(abs(event['change']) +
(itemcount * self.constants.scale[
3 - self.difficulty]))
# Else add a flat amount
else:
add = event['change']
# Create a message
msg = _(" You gained {} {}").format(
str(add), event['item'])
# Add your new supplies to your inventory
self.add_item(event['item'], add)
# Adds s to pluralise nouns that need it
if event['item'] == 'cup' or event['item'] == 'lemon':
msg += "s"
# Add the messages to the event message list
self.event_messages.append(event['text'])
self.event_messages.append(msg)
def process_day_logic(self):
self.clear_queue()
# Check if any profit was made
if self.profit > 0:
return True
# If no profit is made, go to the end of the day
else:
self.money += self.profit
if self.money < 0:
self.money = 0
return False
def process_sales(self, max_sales):
sales = self.constants.locations[self.location]['base'] + \
self.constants.locations[self.location]['multiple'] * \
self.reputation[self.location]
if self.reputation != 100:
if self.weather == 0:
sales *= .5
elif self.weather == 1:
sales *= .75
if sales > max_sales:
sales = max_sales
return int(sales)
def update_day_log(self, items):
lang = gettext.translation(
'org.laptop.Lemonade',
'locale/',
languages=[self.language])
_ = lang.ugettext
self.clear_queue()
self.spent = 0
self.start_money = self.money
# Display the current day
self.add_msg(_("--Day {} Log--").format(self.day))
self.add_msg("")
self.add_msg(_("Today's weather: {}").format(
self.weather_name.upper()))
self.add_msg("")
# Display the amount of each item you bought and for how much
self.add_msg(_("Purchased:"))
for item in items:
total_bought = self.buy_item(item, items[item])
if total_bought != 1:
self.add_msg(_("{} {}s for {}").format(
total_bought,
self.constants.items[self.version][item]['name'],
format_money(total_bought *
self.constants.items[self.version][
item]['cost'][self.difficulty])))
else:
self.add_msg(_("{} {} for {}").format(
total_bought,
self.constants.items[self.version][item]['name'],
format_money(total_bought *
self.constants.items[self.version][
item]['cost'][self.difficulty])))
self.spent += total_bought * \
self.constants.items[
self.version][item]['cost'][self.difficulty]
self.add_msg("------------------------------")
self.add_msg(_("Total Spent: {}").format(
format_money(self.spent)))
self.add_msg("")
# Chance of a random event to occur
self.random_event()
# Calculate the max number of cups of lemonade you can sell
inventory_hold = []
for item_key in self.constants.items[self.version].keys():
if self.recipe(item_key) == 0:
continue
inventory_hold.append(
self.count_item(item_key) / self.recipe(item_key))
max_sales = min(inventory_hold)
sales = self.process_sales(max_sales)
# Calculates how much reputation you acquired today
if sales > 0 and max_sales > sales:
self.reputation[self.location] += \
self.constants.rep_values['gain'][self.difficulty]
if self.reputation[self.location] > 100:
self.reputation[self.location] = 100
else:
self.reputation[self.location] -= \
self.constants.rep_values['lose'][self.difficulty]
if self.reputation[self.location] < 0:
self.reputation[self.location] = 0
# Calculate the money you made from sales
self.income = sales * self.price
# Display the number of cups you sold, at what price, and the
# total amount of money that you made
self.add_msg(_("Sales:"))
if sales != 1:
self.add_msg(_("{} {}s of {} sold").format(
sales,
self.constants.serving_item[self.version], _(self.version)))
else:
self.add_msg(_("{} {} of {} sold").format(
sales,
self.constants.serving_item[self.version], _(self.version)))
self.add_msg(_(" @ {} each").format(format_money(self.price)))
self.add_msg("------------------------------")
self.add_msg(_("Total Made: {}").format(format_money(self.income)))
# Remove supplies required to make your number of sales
for item_key in self.constants.items[self.version].keys():
self.remove_item(item_key, sales * self.recipe(item_key))
self.profit = self.income - self.spent
def process_change(self, mini_game_key):
"""
Processes the counting game effects
@param mini_game_key: A dictionary of keys and values of the
mini game
"""
lang = gettext.translation(
'org.laptop.Lemonade',
'locale/',
languages=[self.language])
_ = lang.ugettext
if self.profit > 0:
mini_game_success = self.count_game(mini_game_key, self.profit)
if mini_game_success:
# Give them the money if they added
self.money += self.profit
else:
self.add_msg(
_("That is the incorrect amount of money. Try again."))
return False
return True
def process_day_end(self):
"""
Processes the end of the day events.
"""
lang = gettext.translation(
'org.laptop.Lemonade',
'locale/',
languages=[self.language])
_ = lang.ugettext
self.clear_queue()
# Decay items
self.decay_items()
# Weather
self.weather_change()
# Award badges
if self.day == 1:
self.badges.award('So It Begins', 'Make your very first sale')
# Seasonal badges
if self.day == 90:
self.badges.award('90 Days', 'Completed one season')
if self.day == 180:
self.badges.award('180 Days', 'Completed two seasons')
if self.day == 270:
self.badges.award('270 Days', 'Completed three seasons')
if self.day == 360:
self.badges.award('Here to Stay', 'Completed all four seasons')
if self.difficulty == 0 and self.profit >= 2000:
self.badges.award('Novice',
'Made more than $20.00 of profit ' +
'in a single day on Easy')
if self.difficulty == 1 and self.profit >= 5000:
self.badges.award('Entreprenuer',
'Made more than $50.00 of profit ' +
'in a single day on Normal')
if self.difficulty == 2 and self.profit >= 20000:
self.badges.award('Businessman',
'Made more than $200.00 of profit ' +
'in a single day on Hard')
if self.difficulty == 3 and self.profit >= 50000:
self.badges.award('CEO',
'Made more than $500.00 of profit ' +
'in a single day on Impossible')
self.add_msg(_("Time to get some rest."))
self.add_msg(
_("It looks like it will be {} tomorrow.").format(
self.weather_name))
def buy_item(self, key, quanity):
"""
Attempts to buy as many (up to max quantity) items from
the inventory.
@param key: The key of the item being added
@param quanity: The number of units to buy (before bulk)
@return: Returns total bought, -1 if you can't
afford any
"""
the_item = self.constants.items[self.version][key]
total = quanity * the_item['bulk']
cost = the_item['cost'][self.difficulty] * total
if cost < self.money:
self.add_item(key, total)
return total
else:
bulk_price = the_item['bulk'] * the_item['cost'][self.difficulty]
# Lets try to buy as many as we can
can_buy = self.money / bulk_price
if can_buy != 0:
total = can_buy * the_item['bulk']
self.add_item(key, total)
return total
else:
return 0
def add_item(self, key, quantity):
"""
Adds item to inventory with correct decay flag
@param key: The key of the item being added
@param quantity: The total quantity to add
"""
total = quantity
self.__resources[key].append(
[self.constants.items[self.version][key]['decay'], total])
# Award badges
if key == 'lemon' and int(self.resource_list[key]) >= 150:
self.badges.award('When Life Gives You Lemons',
'Get more than 150 lemons')
if key == 'cup' and int(self.resource_list[key]) >= 200:
self.badges.award('Cup Pyramid',
'Get more than 200 cups')
if key == 'sugar' and int(self.resource_list[key]) >= 150:
self.badges.award('Sweet Tooth',
'Get more than 150 sugar')
def remove_item(self, key, quantity):
"""
Removes item from inventory
@param key: The key of the items to remove
@param quantity: The amount to remove
@return: Returns true if successful, false if
they don't have enough to remove.
"""
to_remove = quantity
# Make copy of resource in case fail
resource = self.__resources[key][:]
while to_remove > 0:
try:
item = resource.pop(0)
except:
return False
if item[1] > to_remove:
item[1] -= to_remove
resource.insert(0, item)
break
else:
to_remove -= item[1]
self.__resources[key] = resource
return True
def decay_items(self):
"""
Decays items and removes expired items.
"""
lang = gettext.translation(
'org.laptop.Lemonade',
'locale/',
languages=[self.language])
_ = lang.ugettext
# Loop through all items
for item_key in self.constants.items[self.version].keys():
new_list = []
# Loops through all items stored in item list
for item in self.__resources[item_key]:
# Decrement decay and add to new list
# ignore it if has expired
if item[0] != 1:
# If item is 0, then it doesn't decay
if item[0] == 0:
new_list.append([item[0], item[1]])
else:
new_list.append([item[0]-1, item[1]])
elif item[1] != 0:
index = self.upgrades[1]['saves'].index(item_key)
remove = item[1]
remove -= self.upgrades[1]['capacity'][index]
if remove > 0:
self.add_msg(_("{} {}s have gone bad").format(
item[1], item_key))
# Place item back into resource list
self.__resources[item_key] = new_list
def count_item(self, key):
"""
Returns the items owned under the given key
@param key: The key of the item to lookup
@return: Returns the items in inventory
"""
count = 0
for item in self.__resources[key]:
count += item[1]
return count
def count_game(self, values, target):
"""
Verifies the values of the counting game.
@param values: A dictionary (keys must match CURRENCY) and
values are how many of each currency type
are required to make the optimum change
@return: Returns true if they pass the mini-game
"""
currency_values = sorted(CURRENCY.items(), key=itemgetter(1),
reverse=True)
# Set previous_value to target so it always accepts the first key
previous_value = target
for key, value in currency_values:
cal_val = (value * values[key])
if cal_val > previous_value:
return False
target -= cal_val
previous_value = value
if target == 0:
return True
else:
return False