summaryrefslogtreecommitdiffstats
path: root/nfsw/scenes.py
blob: 09601160a68040fb9479c627b6200e11d554d152 (plain) (blame)
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
# -*- coding: utf-8 -*-
#
#   SPDX-License-Identifier: ISC
#
#   Copyright (C) 2019 rsiddharth <s@ricketyspace.net>
#
#   This file is part of nfsw.
#

import os.path
import subprocess

from flask import current_app, g, session

from nfsw.redis import redis
from nfsw.util import read_junk


def get_scene(name):
    scenes = {
        'sexshop': sexshop,
        'garden': garden,
        'nymphomaniac': nymphomaniac,
        'coitus': coitus,
        'strayed': strayed,
        'xkcd': xkcd,
        'bedroom': bedroom,
        'thanks': thanks
    }

    return scenes.get(name, None)


def current_scene():
    r = redis()

    return get_scene(
        r.get('scene').decode()
    )


def sexshop(o):
    r = redis()

    gobbledygook = [
        'I just got raped in the'
        '\narse by 9238 sentinels.'
        '\nPlease don\'t fuck with me like that'
        '\n\nIt\'s easy.'
        ]


    def rj(name):
        return read_junk('sexshop/{}'.format(name))


    def gg():
        l = len(gobbledygook)

        for i in range(0, l):
            if r.sismember('scene:sexshop:gg', i):
                continue

            r.sadd('scene:sexshop:gg', i)
            return gobbledygook[i]

        return 'I\'m outta words.'


    def intro():
        return rj('intro')


    def p_done(q):
        if r.sismember('scenes:done', 'sexshop'):
            return rj('done')

        # Set player type.
        type = '{}{}'.format(r.get('player:type:body').decode(),
                             r.get('player:type:mind').decode())
        r.set('player:type', type)

        # Mark scene done
        r.sadd('scenes:done', 'sexshop')

        # Move to next scene
        r.set('scene', 'garden')

        return garden({'intro': 1})


    def p_body(q):
        if 'female' in q:
            r.set('player:type:body', 'f')

            return '\n\n'.join([
                rj('body-f-done'),
                rj('mind-q')
            ])

        if 'male' in q:
            r.set('player:type:body', 'm')

            return '\n\n'.join([
                rj('body-m-done'),
                rj('mind-q')
            ])

        return '\n'.join([gg(), rj('body-q')])


    def p_mind(q):
        if 'women' in q:
            r.set('player:type:mind', 'w')

            return '\n\n'.join([
                rj('mind-f-done'),
                p_done(q)
            ])

        if 'men' in q:
            r.set('player:type:mind', 'm')

            return '\n\n'.join([
                rj('mind-m-done'),
                p_done(q)
            ])

        return '\n'.join([gg(), rj('mind-q')])


    def p(q):
        if r.exists('player:type'):
            return p_done(q)

        if not r.exists('player:type:body'):
            return p_body(q)

        if not r.exists('player:type:mind'):
            return p_mind(q)

        return p_done(q)


    if 'intro' in o:
        return intro()

    if 'q' in o:
        return p(o['q'])


def garden(o):
    r = redis()

    gobbledygook = [
        'You\'re such a hot mess.'
        '\nCome on, talk some sense.',
        'The tulips in the garden'
        '\nget fucked by bees everyday'
        '\nYou can too.',
        'There is nothing much you can'
        '\ndo in the garden.'
        '\nYou do see the building right?'
        '\nThe building\'s door looks open'
        '\nto me',
        'I get bit by mosquitos all the time'
        '\nin this garden at night.'
        '\nYou\'re the last thing I want here'
        '\nCan you please figure a way'
        '\nto get the fuck outta here?'
    ]


    def rj(name):
        return read_junk('garden/{}'.format(name))


    def gg():
        l = len(gobbledygook)

        for i in range(0, l):
            if r.sismember('scene:garden:gg', i):
                continue

            r.sadd('scene:garden:gg', i)
            return gobbledygook[i]

        return '\n'.join(['Your concierge is busy sucking',
                          'his dog\'s gonads.',
                          'It\'s gonna take forever.',
                          'He is unable to answer at this moment'])


    def intro():
        return rj('intro')


    def verb_in(q):
        if 'go' in q:
            return True

        if 'enter' in q:
            return True

        return False


    def object_in(q):
        if 'building' in q:
            return True

        return False


    def p_done(q):
        # Mark scene done
        r.sadd('scenes:done', 'garden')

        # Move to next scene
        r.set('scene', 'nymphomaniac')

        return  '\n\n'.join([
            rj('to-the-building'),
            nymphomaniac({'intro': 1})
        ])


    def p(q):

        if verb_in(q) and object_in(q):
            return p_done(q)

        return gg()


    if 'intro' in o:
        return rj('intro')

    if 'q' in o:
        return p(o['q'])


def nymphomaniac(o):
    r =  redis()

    gobbledygook = [
        'I don\'t have time for your gobbledygook'
        '\nCan we just focus on your fucking task'
        '\nplease.',
        'Blood starts trickling from the corners'
        '\nof the big screen',
        'You feel your gonads spurt and blot'
        '\nyour underwear. You sample it with your'
        '\nindex finger, smell it and lick it.'
        '\nIt\'s blood.'
    ]
    gobbledygook_hunk = [
        'Can\'t do nothin\' with hunk.'
        '\nBetter luck next time',
        'Next time you try to do anything with the hunk'
        '\nI\'m going to force you to eat his dingle berries.',
        'Stop your infatuation with the hunk.'
        '\nForget his dingle berries.'
        '\nEven better.'
        '\nI might be forced to feed you the skinned'
        '\ncat for lunch today, if you persist.'
    ]

    def rj(name):
        return read_junk('nymphomaniac/{}'.format(name))


    def gg_hunk():
        l = len(gobbledygook_hunk)

        for i in range(0, l):
            if r.sismember('scene:nymphomaniac:gg-hunk', i):
                continue

            r.sadd('scene:nymphomaniac:gg-hunk', i)
            return gobbledygook_hunk[i]

        return '\n'.join([
        'An invisible hand forces your mouth open.',
        'A squishy chunk of the skinned cat\'s',
        'fried meat forces it\'s way through your',
        'mouth, to your esophagus and into your stomach.'
        ])


    def gg():
        l = len(gobbledygook)

        for i in range(0, l):
            if r.sismember('scene:nymphomaniac:gg', i):
                continue

            r.sadd('scene:nymphomaniac:gg', i)
            return gobbledygook[i]

        return '\n'.join(['For fuck sake answer the question.'])


    def hunk_in(q):
        if 'hunk' in q:
            return True

        if 'water' in q and 'fountain' in q:
            return True

        return False


    def ans_in(q):
        if 'she leaked':
            return True

        if 'vaginal' in q and 'fluid' in q:
            return True

        return False


    def p_done(q):
        # Mark scene done
        r.sadd('scenes:done', 'nymphomaniac')

        # Move to next scene
        r.set('scene', 'coitus')

        return '\n\n'.join([
            rj('door-opens'),
            coitus({'intro': 1})
        ])


    def p(q):
        if hunk_in(q):
            return gg_hunk()

        if ans_in(q):
            return p_done(q)

        return gg()


    if 'intro' in o:
        return rj('intro')


    if 'q' in o:
        return p(o['q'])


def coitus(o):
    r =  redis()

    type = r.get('player:type').decode()
    gobbledygook = [
        'Really?'
        '\nWhen cat Tom sees rat Jerry'
        '\nTom chases Jerry'
        '\nThat\'s basic instinct'
        '\nDon\'t you have one?',
        'Come on'
        '\nA chipmunk would know'
        '\nwhat to do when it sees'
        '\nan attractive partner'
        '\nchipping away at an acorn'
    ]


    def rj(name):
        return read_junk('coitus/{}'.format(name))


    def gg():
        gg_last =  '\n'.join([
            'Your concierge is busy',
            'masturbating. He his unable',
            'to respond to you at the moment'
        ])

        if fucked():
            return gg_last


        l = len(gobbledygook)

        for i in range(0, l):
            if r.sismember('scene:coitus:gg', i):
                continue

            r.sadd('scene:coitus:gg', i)
            return gobbledygook[i]

        return gg_last


    def intro():
        if fucked():
            return rj('mirror-intro')

        return rj('intro-{}'.format(type))


    def colloquial():
        return '\n'.join([
            'Use the colloquial term',
            'Pretty please'
        ])


    def fucked():
        if r.get('scene:coitus:fucked'):
            return True

        return False


    def fuck(q):
        r.set('scene:coitus:fucked', 1)

        return '\n\n'.join([
            rj('fuck-{}'.format(type)),
            rj('mirror-intro')
        ])


    def mirror(q):
        if not r.get('scene:coitus:fucked'):
            return False

        if 'touch' in q and 'mirror' in q:
            return True

        return False


    def p_done(q):
        # Mark scene done
        r.sadd('scenes:done', 'coitus')

        # Move to next scene
        r.set('scene', 'strayed')

        return '\n\n'.join([
            rj('mirror'),
            strayed({'intro': 1})
        ])


    def p(q):
        if mirror(q):
            return p_done(q)

        if not fucked() and 'fuck' in q:
            return fuck(q)

        if not fucked() and ('sex' in q or 'coitus' in q):
            return colloquial()

        return gg()


    if 'intro' in o:
        return intro()


    if 'q' in o:
        return p(o['q'])


def strayed(o):
    r = redis()

    gobbledygook = [
        'You know one of Sugar\'s books was'
        '\nselected for Oprah\'s Book Club 2.0.',
        'Also the book was adapted into a'
        '\nbiographical drama film.',
        'Ok, this is the last one.'
        '\nChuck Palahniuk mentions about Sugar'
        '\nin Joe Rogan\'s podcast.'
    ]

    def rj(name):
        return read_junk('strayed/{}'.format(name))


    def gg():
        l = len(gobbledygook)

        for i in range(0, l):
            if r.sismember('scene:strayed:gg', i):
                continue

            r.sadd('scene:strayed:gg', i)
            return gobbledygook[i]

        return rj('passed-out')


    def p_done():
        # Mark scene done
        r.sadd('scenes:done', 'strayed')

        # Move to next scene
        r.set('scene', 'xkcd')

        return '\n\n'.join([
            rj('into-white'),
            xkcd({'intro': 1})
        ])


    def p(q):
        if 'fuck' in q:
            return rj('fuck')

        if 'masturbate' in q:
            return rj('masturbate')

        if 'cheryl strayed' in q:
            return p_done()

        return gg()


    if 'intro' in o:
        return rj('intro')


    if 'q' in o:
        return p(o['q'])


def xkcd(o):
    r = redis()

    gobbledygook = [
        'A flock of warblers cruise through'
        '\nthe wondrous blue white atmosphere'
        '\nand dwindle out of view to their'
        '\nwinter recluse',
        'You know.'
        '\nRandall Munroe likes oglaf!',
        'It\'s dusk now.'
        '\nThe space around you is'
        '\nin a welter of crimson.'
    ]

    def rj(name):
        return read_junk('xkcd/{}'.format(name))


    def gg():
        l = len(gobbledygook)

        for i in range(0, l):
            if r.sismember('scene:xkcd:gg', i):
                continue

            r.sadd('scene:xkcd:gg', i)
            return gobbledygook[i]

        return 'The space\'s outta words.'


    def p_done():
        # Mark scene done
        r.sadd('scenes:done', 'xkcd')

        # Move to next scene
        r.set('scene', 'bedroom')

        return '\n\n'.join([
            rj('pass-out'),
            bedroom({'intro': 1})
        ])


    def p(q):

        if 'people are complicated' in q:
            return p_done()

        return gg()


    if 'intro' in o:
        return rj('intro')

    if 'q' in o:
        return p(o['q'])


def bedroom(o):
    r = redis()

    def rj(name):
        return read_junk('bedroom/{}'.format(name))


    def cow():
        return os.path.join(
            current_app.root_path,
            'cow/sodomized.cow'
        )


    def wish():
        u = g.user['username']
        return 'merry fucking christmas {}.'.format(u)


    def sodomize():
        r = subprocess.run(
            'cowsay -s -f {} "{}"'.format(cow(), wish()),
            stdout=subprocess.PIPE,
            shell=True,
            universal_newlines=True
        )

        return r.stdout


    # Mark scene done
    r.sadd('scenes:done', 'bedroom')

    # Move to next scene
    r.set('scene', 'thanks')

    return '\n\n'.join([
        rj('merry-christmas'),
        sodomize(),
        thanks({})
    ])


def thanks(o):
    r = redis()

    def stats():
        k = 'players:finished'
        id = session['user_id']

        if r.r.sismember(k, id):
            return ''

        r.r.sadd(k, id)

        place = r.r.scard(k)

        # Record place
        r.set('player:place', place)

        unit = place % 10
        hund = place % 100

        th = 'th'
        if place == 1 or (unit == 1 and hund != 1):
            th = 'st'
        elif unit == 2 and hund != 1:
            th = 'nd'
        elif unit == 3 and hund != 1:
            th = 'rd'

        return '   You\'re the {}{} person to finish this game!'.format(
            place, th
        )

    if r.sismember('scenes:done', 'thanks'):
        return 'You\'ve finished the game!'

    # Mark scene done
    r.sadd('scenes:done', 'thanks')

    return '\n'.join([
        stats(),
        '\n   - Santa'
    ])