-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcobra-climate.py
656 lines (564 loc) · 21.1 KB
/
cobra-climate.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
# COBRA CLIMATE
# Sign in
def signin():
global uname
global passw
# ENTER USERNAME
print("+", "-" * 30, "+")
print(("|" + " " * 30 + "|\n") * 1, end="")
uname = input("| Enter your username: ")
print(("|" + " " * 30 + "|\n") * 1, end="")
print("+", "-" * 30, "+")
# ENTER PASSWORD
print(("|" + " " * 30 + "|\n") * 1, end="")
passw = input("| Enter your password: ")
print(("|" + " " * 30 + "|\n") * 1, end="")
print("+", "-" * 30, "+")
# WHITELIST (valid user)
for credentials in uname and passw:
if uname == "acochez" and passw == "1234":
print("Welcome, " + uname)
print("+", "-" * 30, "+")
print("You are now using the Cobra Climate program.")
print("~ Typos can cause loss of progress, consider copy & pasting options. ~")
menu()
break
# BLACKLIST
else:
print("Incorrect credentials! Try again")
signin()
break
# SOLUTIONS
def solution():
# SELECT
for solution in cobraMenu:
if cobraMenu == "solutions":
global sol
sol = input('Type:\nPLACEHOLDER;\nback;\n')
# BACK
if sol == "back":
print("Leaving the solutions page...")
menu()
break
# FALSE OPTION
else:
print(sol, "is not an option! Try again.")
solution()
break
# FOOTPRINT
def footprint():
# SELECT
for footprint in cobraMenu:
if cobraMenu == "footprint":
global fp
fp = input('Type:\nPLACEHOLDER;\nback;\n')
# BACK
if fp == "back":
print("Leaving the footprint page...")
menu()
break
# FALSE OPTION
else:
print(fp, "is not an option! Try again.")
solution()
break
# TUTORIAL
def tutorial():
# SELECT
for tutorial in cobraMenu:
if cobraMenu == "tutorial":
global tut
tut = input('Type:\nfullTut;\nsearchTut;\nback;\n')
# BACK
if tut == "back":
print("Leaving the tutorial page...")
menu()
break
# FALSE OPTION
else:
print(tut, "is not an option! Try again.")
tutorial()
break
# ESTIMATOR
def estimate():
for estimator in calc:
print("-" * 30)
print("Welcome to the emission estimator")
print("-" * 30)
# SELECT
print("Device used (type one):")
estdevice = input("\npc;\nmobile;\nback;")
# PC ESTIMATOR
if estdevice == "pc":
estfp = int(500)
print("PC/Laptop")
# HOURS
print("\nHours spent:")
esttime = input("Hrs: ")
try:
pcest = estfp * int(esttime)
print("The estimated footprint of spending", esttime,\
"hours on a", estdevice, "is", pcest, "g CO2e")
print("-" * 30)
estimate()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
estimate()
break
# MOBILE ESTIMATOR
if estdevice == "mobile":
estfp = int(300)
print("Mobile device")
# HOURS
print("\nHours spent:")
esttime = input("Hrs: ")
try:
mbest = estfp * int(esttime)
print("The estimated footprint of spending", esttime,\
"hours on a", estdevice, "device is", mbest, "g CO2e")
print("-" * 30)
estimate()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
estimate()
break
# BACK
if estdevice == "back":
print("Leaving the Emission Estimator page...")
print("-" * 30)
calcPage()
break
# FALSE OPTION
else:
print(estdevice, "is not an option! Try again.")
print("-" * 30)
estimate()
break
# INFORMATION
def information():
for info in cobraMenu:
# SELECT
if cobraMenu == "info":
global inf
inf = input('Type:\ndocuments;\nback;\n')
# DOCUMENTATION
if inf == "documents":
print("\nDocumentation")
docs = input("Type to view:\ndata;\ncalcs;\nback;\n")
# DATA DOCUMENTATION
if docs == "data":
print("\nWhich data would you like to view?")
# DATA DICTIONARY
datadict = {"estimates" : "Avg CO2e/hr device use (mobile): 300g \
\nAvg CO2e/hr device use (PC): 500g",
"mobileData" : "CO2/hr phone call: 80g \
\nCO2/hr messaging: 20g \
\nCO2/hr instagram: 90g \
\nCO2/hr tiktok: 180g \
\nCO2/hr other social media: 110g",
"pcData" : "CO2/hr watching videos: 55g \
\nCO2/hr online work: 330g \
\nCO2/hr gaming: 500g"
}
# SELECT DATA
data = input("Type to view:\nestimates;\nmobileData;\npcData;\nall;\nback;\n")
# ESTIMATES DATA DOCS
if data == "estimates":
print("-" * 30)
print(datadict['estimates'])
print("-" * 30)
information()
break
# MOBILE DATA DOCS
if data == "mobileData":
print("-" * 30)
print(datadict['mobileData'])
print("-" * 30)
information()
break
# PC DATA DOCS
if data == "pcData":
print("-" * 30)
print(datadict['pcData'])
print("-" * 30)
information()
break
# BACK
if data == "back":
print("Returning to information home page...")
information()
break
# ALL DATA DOCS
if data == "all":
print("-" * 30)
print("Estimates\n")
print(datadict['estimates'])
print("-" * 30)
print("Mobile Device data\n")
print(datadict['mobileData'])
print("-" * 30)
print("PC/Laptop data\n")
print(datadict['pcData'])
print("-" * 30)
information()
break
# FALSE OPTION
else:
print(data, "is not an option! Try again.")
information()
break
# CALCULATIONS
if docs == "calcs":
# CALCULATIONS DICTIONARY
calcdict = {"calculator": "(based on device) ACTION FOOTPRINT * HOURS SPENT = TOTAL FOOTPRINT",
"estimator": "AVG DEVICE FOOTPRINT * HOURS SPENT = TOTAL FOOTPRINT"
}
# SELECT CALCULATIONS
calcs = input("Type to view:\ncalculator;\nestimator;\nall;\nback;\n")
# CARBONCALC CALCULATIONS
if calcs == "calculator":
print("-" * 30)
print(calcdict['calculator'])
print("-" * 30)
information()
break
# ESTIMATOR CALCULATIONS
if calcs == "estimator":
print("-" * 30)
print(calcdict['estimator'])
print("-" * 30)
information()
break
# BACK
if calcs == "back":
print("Leaving the calcs documentation...")
information()
break
# VIEW ALL CALCULATIONS
if calcs == "all":
print("-" * 30)
print("The calculators formulas\n")
print(calcdict['calculator'])
print("-" * 30)
print("The estimators formulas\n")
print(calcdict['estimator'])
print("-" * 30)
information()
break
# FALSE OPTION
else:
print(calcs, "is not an option! Try again.")
information()
break
# BACK
if docs == "back":
print("Returning to Information page...")
information()
break
# BACK
if inf == "back":
print("Leaving the information page...")
menu()
break
# SELECT CALCULATOR
def calcPage():
for carbonCalc in cobraMenu:
# CALCULATOR SELECTOR
if cobraMenu == "carbonCalc":
global calc
print("Cobra Climate's Carbon Calculator!")
calc = input('\nType one:\ncalculate;\nestimate;\nback;\n')
# USE ESTIMATOR
if calc == "estimate":
estimate()
break
# USE CARBON CALCULATOR
if calc == "calculate":
calculator()
break
# BACK
if calc == "back":
print("Leaving the carbonCalc page...")
menu()
break
# FALSE OPTION
else:
print(calc, "is not an option. Try again.")
menu()
break
# CARBON CALCULATOR
def calculator():
for calculator in calc:
print("-" * 30)
print("You are now using the Carbon Calculator")
print("-" * 30)
# SELECT DEVICE
print("\nDevice used:")
device = input("Type one of the following\npc;\nmobile;\n")
# PC DEVICE CALCULATOR
if device == "pc":
print("-" * 30)
print("PC/Laptop")
# ACTION
print("\nAction (type one):")
action = input("videos;\nwork;\ngaming;\n")
# VIDEOS
if action == "videos":
use = int(55)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
global pcvid
pcvid = use * int(time)
print("The footprint of spending", time, "hours watching", action,\
"using a", device, "is", pcvid, "g CO2e.")
print("-" * 30)
# STORE FOOTPRINT
# script wants the writing to be a string
print("Would you like to store this footprint?")
sconf = input("Type: yes; no;\n")
if sconf == "yes":
stpcvid = str((pcvid))
store = open("footprint.txt", "w")
store.write(stpcvid)
store.close()
open1 = open("footprint.txt", "r")
print(open1.store())
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# FALSE OPTION
else:
print("Sorry,", action, "is not an option. Try again.")
calcPage()
break
# WORK
if action == "work":
use = int(330)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
pcwork = use * int(time)
print("The footprint of spending", time, "hours doing", action,\
"using a", device, "is", pcwork, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# FALSE OPTION
else:
print("Sorry,", action, "is not an option. Try again.")
calcPage()
break
# GAMING
if action == "gaming":
use = int(500)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
pcgame = use * int(time)
print("The footprint of spending", time, "hours", action,\
"using a", device, "is", pcgame, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# FALSE OPTION
else:
print("Sorry,", action, "is not an option. Try again.")
calcPage()
break
# MOBILE DEVICE CALCULATOR
if device == "mobile":
print("-" * 30)
print("Phone/Tablet")
# ACTION
print("\nAction (type one):")
action = input("calling;\ntexting;\nsocialMedia;\n")
# CALLING
if action == "calling":
use = int(80)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
mbcall = use * int(time)
print("The footprint of spending", time, "hours", action,\
"using a", device, "is", mbcall, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# TEXTING
if action == "texting":
use = int(20)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
mbtext = use * int(time)
print("The footprint of spending", time, "hours", action,\
"using a", device, "is", mbtext, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# SOCIAL MEDIA
if action == "socialMedia":
# SELECT SOCIAL MEDIA APP
print("\nWhich Social Media?")
media = input("Type one:\ninstagram;\ntiktok;\nother;\n")
# INSTAGRAM
if media == "instagram":
use = int(90)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
mbtext = use * int(time)
print("The footprint of spending", time, "hours on", media,\
"using a", device, "is", mbtext, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# TIKTOK
if media == "tiktok":
use = int(180)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
mbtext = use * int(time)
print("The footprint of spending", time, "hours on", media,\
"using a", device, "is", mbtext, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# OTHER
if media == "other":
use = int(110)
# HOURS
print("\nHours spent:")
time = input("Hrs: ")
try:
mbtext = use * int(time)
print("The footprint of spending", time, "hours on", media,\
"using a", device, "is", mbtext, "g CO2e.")
print("-" * 30)
calcPage()
break
# INVALID INPUT
except:
print("Invalid input! Try again.")
calcPage()
break
# FALSE OPTION
else:
print("Sorry,", action, "is not an option. Try again.")
calcPage()
break
# FALSE OPTION
else:
print(device, "is not an option. Try again.")
calcPage()
break
# MENU
def menu():
global cobraMenu
print("-" * 30)
# SELECT
print("Type one of the following to view:\n")
cobraMenu = input("tutorial;\ninfo;\ncarbonCalc\nfootprint;\nsolutions;\nsignout;\n")
for select in cobraMenu:
# SELECT TUTORIAL
if cobraMenu == "tutorial":
print("-" * 30)
print("Tutorial")
print("-" * 30)
tutorial()
break
# SELECT INFORMATION
if cobraMenu == "info":
print("-" * 30)
print("Information Interface")
print("-" * 30)
information()
break
# SELECT CALCULATOR
if cobraMenu == "carbonCalc":
print("-" * 30)
print("Carbon Calculator")
print("-" * 30)
calcPage()
break
# SELECT ESTIMATOR
if cobraMenu == "emissionEst":
print("-" * 30)
print("Emission Estimator")
print("-" * 30)
estimate()
break
# SELECT FOOTPRINT
if cobraMenu == "footprint":
print("-" * 30)
print("Footprint Focus")
print("-" * 30)
footprint()
break
# SELECT SOLUTIONS
if cobraMenu == "solutions":
print("-" * 30)
print("Simple Solutions")
print("-" * 30)
solution()
break
# SIGN OUT
if cobraMenu == "signout":
print("-" * 30)
print("Signing out of", uname + "...")
signin()
break
# FALSE OPTION
else:
print(cobraMenu, "is not an option. Try again")
menu()
break
# LAUNCH PROGRAM
signin()