-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSEEN0050.ke
1009 lines (834 loc) · 14.1 KB
/
SEEN0050.ke
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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{-# cp utf8 #- Disassembled with Kprl 1.40 -}
#file 'SEEN0050.TXT'
#resource 'SEEN0050.utf'
#kidoku_type 2
#entrypoint 000
title (#res<0000>)
intF[2] = 0
intA[1000] = 1000
intA[1000] = 0
bgmLoop ('BGM16')
msgHide
intF[1107] = 1
grpOpenBg ('BG053', 0)
#res<0001>
strS[1900] = 'It\'s snowing.'
gosub @147
goto_unless (intC[0]) @1
gosub @162
goto @2
@1
pause
@2
#res<0002>
strS[1900] = 'Pure white snow swirls down from the overcast sky.'
gosub @147
goto_unless (intC[0]) @3
gosub @162
goto @4
@3
pause
@4
#res<0003>
strS[1900] = 'A damp wooden bench... cold, clear air...'
gosub @147
goto_unless (intC[0]) @5
gosub @162
goto @6
@5
pause
@6
#res<0004>
strS[1900] = '__......'
gosub @147
goto_unless (intC[0]) @7
gosub @162
goto @8
@7
pause
@8
#res<0005>
strS[1900] = 'I rouse my body, slumped on the bench, and correct my posture yet again.'
gosub @147
goto_unless (intC[0]) @9
gosub @162
goto @10
@9
pause
@10
#res<0006>
strS[1900] = 'The stream of people leaving the snow-covered station has slowed to a trickle.'
gosub @147
goto_unless (intC[0]) @11
gosub @162
goto @12
@11
pause
@12
#res<0007>
strS[1900] = 'Sighing white vapor, I glance at the town clock in the station plaza. It\'s three o\'clock.'
gosub @147
goto_unless (intC[0]) @13
gosub @162
goto @14
@13
pause
@14
#res<0008>
strS[1900] = 'It\'s still daylight, but I can only guess at the position of the sun beyond the thick clouds.'
gosub @147
goto_unless (intC[0]) @15
gosub @162
goto @16
@15
pause
@16
#res<0009>
strS[1900] = '__...late.'
gosub @147
goto_unless (intC[0]) @17
gosub @162
goto @18
@17
pause
@18
#res<0010>
strS[1900] = 'I slump back into my seat and cast the single word into the sky.'
gosub @147
goto_unless (intC[0]) @19
gosub @162
goto @20
@19
pause
@20
#res<0011>
strS[1900] = 'I\'m briefly blinded by the white mist of my frozen breath before the north wind sends it streaming away.'
gosub @147
goto_unless (intC[0]) @21
gosub @162
goto @22
@21
pause
@22
#res<0012>
strS[1900] = 'A winter wind, piercing my skin...'
gosub @147
goto_unless (intC[0]) @23
gosub @162
goto @24
@23
pause
@24
#res<0013>
strS[1900] = 'The ever-present snow, falling without end...'
gosub @147
goto_unless (intC[0]) @25
gosub @162
goto @26
@25
pause
@26
#res<0014>
strS[1900] = 'The curtain of white flakes which hides the sky seems to be thickening out of spite.'
gosub @147
goto_unless (intC[0]) @27
gosub @162
goto @28
@27
pause
@28
#res<0015>
strS[1900] = 'Once more I disturb the air with a sigh.'
gosub @147
goto_unless (intC[0]) @29
gosub @162
goto @30
@29
pause
@30
#res<0016>
strS[1900] = 'This time, however, the puff of steam this evokes is not the only thing that obscures my vision.'
gosub @147
goto_unless (intC[0]) @31
gosub @162
goto @32
@31
pause
@32
msgHide
intF[1107] = 1
grpOpenBg ('FGNY02A', 0)
#res<0017>
strS[1900] = 'Girl......'
gosub @147
goto_unless (intC[0]) @33
gosub @162
goto @34
@33
pause
@34
#res<0018>
strS[1900] = 'A girl is bending over to peer at my face; her head now separates me from the snowy clouds above.'
gosub @147
goto_unless (intC[0]) @35
gosub @162
goto @36
@35
pause
@36
koePlay (0)
#res<0019>
strS[1900] = 'GirlYou\'ve got snow on your head.'
gosub @147
goto_unless (intC[0]) @37
gosub @162
goto @38
@37
pause
@38
#res<0020>
strS[1900] = 'I breathe out sharply through tight lips, expelling another cloud of vapor.'
gosub @147
goto_unless (intC[0]) @39
gosub @162
goto @40
@39
pause
@40
#res<0021>
strS[1900] = '__That might be because I\'ve been sitting here for two hours...'
gosub @147
goto_unless (intC[0]) @41
gosub @162
goto @42
@41
pause
@42
#res<0022>
strS[1900] = 'Under the circumstances, it\'s a miracle I\'m not buried up to my neck.'
gosub @147
goto_unless (intC[0]) @43
gosub @162
goto @44
@43
pause
@44
koePlay (1)
#res<0023>
strS[1900] = 'Girl...oh?'
gosub @147
goto_unless (intC[0]) @45
gosub @162
goto @46
@45
pause
@46
#res<0024>
strS[1900] = 'The girl tilts her head curiously at my words.'
gosub @147
goto_unless (intC[0]) @47
gosub @162
goto @48
@47
pause
@48
koePlay (2)
#res<0025>
strS[1900] = 'GirlWhat time is it?'
gosub @147
goto_unless (intC[0]) @49
gosub @162
goto @50
@49
pause
@50
#res<0026>
strS[1900] = '__Three o\'clock.'
gosub @147
goto_unless (intC[0]) @51
gosub @162
goto @52
@51
pause
@52
koePlay (3)
#res<0027>
strS[1900] = 'GirlReally? Already?'
gosub @147
goto_unless (intC[0]) @53
gosub @162
goto @54
@53
pause
@54
#res<0028>
strS[1900] = 'Despite her words, she doesn\'t look at all surprised.'
gosub @147
goto_unless (intC[0]) @55
gosub @162
goto @56
@55
pause
@56
#res<0029>
strS[1900] = 'Her voice is slow, feminine, and sleepy.'
gosub @147
goto_unless (intC[0]) @57
gosub @162
goto @58
@57
pause
@58
koePlay (4)
#res<0030>
strS[1900] = 'GirlI thought it was still about two.'
gosub @147
goto_unless (intC[0]) @59
gosub @162
goto @60
@59
pause
@60
#res<0031>
strS[1900] = '...which would only have been one hour late.'
gosub @147
goto_unless (intC[0]) @61
gosub @162
goto @62
@61
pause
@62
koePlay (5)
#res<0032>
strS[1900] = 'GirlCan I ask you something?'
gosub @147
goto_unless (intC[0]) @63
gosub @162
goto @64
@63
pause
@64
#res<0033>
strS[1900] = '__Go ahead.'
gosub @147
goto_unless (intC[0]) @65
gosub @162
goto @66
@65
pause
@66
koePlay (6)
#res<0034>
strS[1900] = 'GirlAren\'t you cold?'
gosub @147
goto_unless (intC[0]) @67
gosub @162
goto @68
@67
pause
@68
#res<0035>
strS[1900] = '__I sure am.'
gosub @147
goto_unless (intC[0]) @69
gosub @162
goto @70
@69
pause
@70
#res<0036>
strS[1900] = 'The snow was a novelty at first, but now it\'s just depressing me.'
gosub @147
goto_unless (intC[0]) @71
gosub @162
goto @72
@71
pause
@72
koePlay (7)
#res<0037>
strS[1900] = 'GirlHere.'
gosub @147
goto_unless (intC[0]) @73
gosub @162
goto @74
@73
pause
@74
#res<0038>
strS[1900] = 'She hands me a can of coffee.'
gosub @147
goto_unless (intC[0]) @75
gosub @162
goto @76
@75
pause
@76
koePlay (8)
#res<0039>
strS[1900] = 'GirlTo make up for me being late.'
gosub @147
goto_unless (intC[0]) @77
gosub @162
goto @78
@77
pause
@78
koePlay (9)
#res<0040>
strS[1900] = 'Girl...and...'
gosub @147
goto_unless (intC[0]) @79
gosub @162
goto @80
@79
pause
@80
koePlay (10)
#res<0041>
strS[1900] = 'Girl...to celebrate us meeting again.'
gosub @147
goto_unless (intC[0]) @81
gosub @162
goto @82
@81
pause
@82
#res<0042>
strS[1900] = '__Is a reunion after seven years only worth one can of coffee?'
gosub @147
goto_unless (intC[0]) @83
gosub @162
goto @84
@83
pause
@84
#res<0043>
strS[1900] = 'I look again into the girl\'s face as I take the coffee.'
gosub @147
goto_unless (intC[0]) @85
gosub @162
goto @86
@85
pause
@86
#res<0044>
strS[1900] = 'The can is still too hot to hold with bare hands.'
gosub @147
goto_unless (intC[0]) @87
gosub @162
goto @88
@87
pause
@88
#res<0045>
strS[1900] = 'My numb fingertips appreciate the warmth though.'
gosub @147
goto_unless (intC[0]) @89
gosub @162
goto @90
@89
pause
@90
koePlay (11)
#res<0046>
strS[1900] = 'GirlSeven years... has it been that long?'
gosub @147
goto_unless (intC[0]) @91
gosub @162
goto @92
@91
pause
@92
#res<0047>
strS[1900] = '__Yeah.'
gosub @147
goto_unless (intC[0]) @93
gosub @162
goto @94
@93
pause
@94
#res<0048>
strS[1900] = 'Rolling the warm can between my hands...'
gosub @147
goto_unless (intC[0]) @95
gosub @162
goto @96
@95
pause
@96
#res<0049>
strS[1900] = 'Comparing the snowy landscape around me with the few scraps of memory I retain from my early childhood...'
gosub @147
goto_unless (intC[0]) @97
gosub @162
goto @98
@97
pause
@98
koePlay (12)
#res<0050>
strS[1900] = 'GirlDo you remember my name?'
gosub @147
goto_unless (intC[0]) @99
gosub @162
goto @100
@99
pause
@100
#res<0051>
strS[1900] = '__Do you remember mine?'
gosub @147
goto_unless (intC[0]) @101
gosub @162
goto @102
@101
pause
@102
koePlay (13)
#res<0052>
strS[1900] = 'GirlOf course!'
gosub @147
goto_unless (intC[0]) @103
gosub @162
goto @104
@103
pause
@104
#res<0053>
strS[1900] = 'In the snow...'
gosub @147
goto_unless (intC[0]) @105
gosub @162
goto @106
@105
pause
@106
#res<0054>
strS[1900] = 'In the snow-covered streets...'
gosub @147
goto_unless (intC[0]) @107
gosub @162
goto @108
@107
pause
@108
#res<0055>
strS[1900] = 'Those memories of seven years ago... they seem only to be a breath away.'
gosub @147
goto_unless (intC[0]) @109
gosub @162
goto @110
@109
pause
@110
koePlay (14)
#res<0056>
strS[1900] = 'Girl__.'
gosub @147
goto_unless (intC[0]) @111
gosub @162
goto @112
@111
pause
@112
#res<0057>
strS[1900] = '__Hanako'
gosub @147
strS[1900] = 'A generic girls\' name.'
CallDLL (0, 22, 1181548)
FontColour
strS[1900] = '.'
gosub @147
goto_unless (intC[0]) @113
gosub @162
goto @114
@113
pause
@114
koePlay (15)
#res<0058>
strS[1900] = 'GirlNo~!'
gosub @147
goto_unless (intC[0]) @115
gosub @162
goto @116
@115
pause
@116
#res<0059>
strS[1900] = '__Jiro'
gosub @147
strS[1900] = 'A generic boys\' name.'
CallDLL (0, 22, 1181548)
FontColour
strS[1900] = '?'
gosub @147
goto_unless (intC[0]) @117
gosub @162
goto @118
@117
pause
@118
koePlay (16)
#res<0060>
strS[1900] = 'GirlI\'m a girl...'
gosub @147
goto_unless (intC[0]) @119
gosub @162
goto @120
@119
pause
@120
#res<0061>
strS[1900] = 'She adopts a worried frown.'
gosub @147
goto_unless (intC[0]) @121
gosub @162
goto @122
@121
pause
@122
#res<0062>
strS[1900] = 'Each word, like the snow which covers the ground, is filling the blank spaces of my memory.'
gosub @147
goto_unless (intC[0]) @123
gosub @162
goto @124
@123
pause
@124
#res<0063>
strS[1900] = 'The snow falling past the girl\'s shoulders is getting even heavier.'
gosub @147
goto_unless (intC[0]) @125
gosub @162
goto @126
@125
pause
@126
#res<0064>
strS[1900] = '__Okay, I think we\'ve wasted enough time chatting.'
gosub @147
goto_unless (intC[0]) @127
gosub @162
goto @128
@127
pause
@128
koePlay (17)
#res<0065>
strS[1900] = 'GirlBut... my name...'
gosub @147
goto_unless (intC[0]) @129
gosub @162
goto @130
@129
pause
@130
#res<0066>
strS[1900] = '__Shall we get moving?'
gosub @147
goto_unless (intC[0]) @131
gosub @162
goto @132
@131
pause
@132
koePlay (18)
#res<0067>
strS[1900] = 'GirlMy name...'
gosub @147
goto_unless (intC[0]) @133
gosub @162
goto @134
@133
pause
@134
#res<0068>
strS[1900] = 'The town of seven years ago...'
gosub @147
goto_unless (intC[0]) @135
gosub @162
goto @136
@135
pause
@136
#res<0069>
strS[1900] = 'Surrounded by the snow of seven years ago...'
gosub @147
goto_unless (intC[0]) @137
gosub @162
goto @138
@137
pause
@138
#res<0070>
strS[1900] = '__Let\'s go, Nayuki.'
gosub @147
goto_unless (intC[0]) @139
gosub @162
goto @140
@139
pause
@140
#res<0071>
strS[1900] = 'My new life, caught like a flag in the winter wind, spreads out before me.'
gosub @147
goto_unless (intC[0]) @141
gosub @162
goto @142
@141
pause
@142
koePlay (19)
#res<0072>
strS[1900] = 'NayukiEh...?'
gosub @147
goto_unless (intC[0]) @143
gosub @162
goto @144
@143
pause
@144
msgHide
intF[1107] = 1
grpOpenBg ('FGNY02B', 0)
koePlay (20)
#res<0073>
strS[1900] = 'NayukiOkay!'
gosub @147
goto_unless (intC[0]) @145
gosub @162
goto @146
@145
pause
@146
intB[1000] = 1
bgmFadeOut (1200)
msgHide
intF[1107] = 1
grpOpenBg ('SIRO', 26)
wait (2000)
farcall (8502)
jump (70)
halt
CallDLL (0, 10, intC[1] | 1179648)
goto @148
@147
CallDLL (0, 10, 1181548)
@148
DisableAutoSavepoints
store = 8
strS[1900] = ' '
@149
goto_unless (store < 512) @150
strS[1900] += strS[1900]
store *= 2
goto @149
@150
CallDLL (0, 12, 1181548, 131073)
goto_on store { @159, @160, @158, @151, @152, @155, @156, @157 }
goto @160
@151
br
goto @150
@152
goto_unless (intC[0]) @153
gosub @161
goto @154
@153
page
@154
TextPos (0, 0)
CallDLL (0, 13, 1181548)
goto @150
@155
SetIndent
goto @150
@156
ClearIndent
goto @150
@157
FontColour (6)
CallDLL (0, 21)
intC[0] += 1
@158
#res<0074>
goto @150
@159
strS[1901] = strS[1900]
strS[1900] = 'Error: '
strS[1900] += strS[1901]
strS[1900] += '. Unable to format text.'
strclear (strS[1901])
FastText
#res<0075>
NormalText
@160
EnableAutoSavepoints
ret
goto @150
intC[1] = 0
goto @163
@161
intC[1] = 1
goto @163
@162
intC[1] = 2
@163
store = 8
strS[1902] = ' '
@164
goto_unless (store < 2048) @165
strS[1902] += strS[1902]
store *= 2
goto @164
@165
FlushClick
spause
GetCursorPos (intC[3], intC[4], intC[2], store)
goto_if (intC[2] != 2) @170
GetWakuAll
CallDLL (0, 23, intC[3], intC[4], 1181550, store)
goto_if (!store) @170
TextWindow (1)
#res<0076>
CallDLL (0, 10, -1)
CallDLL (0, 11, 1181550)
gosub @148
goto_unless (intC[0]) @166
gosub @162
goto @167
@166
pause
@167
msgHide
TextWindow (0)
goto_unless (intC[0]) @168
gosub @162
goto @169
@168
pause
@169
goto @170
goto @165
@170
goto_on intC[1] { @173, @172, @171 }
goto @173
@171
CallDLL (0, 104, -1)
goto_unless (store) @172
#res<0077>
strS[1900] = ''
gosub @147
goto @173