-
Notifications
You must be signed in to change notification settings - Fork 540
Expand file tree
/
Copy pathallmain.c
More file actions
1362 lines (1206 loc) · 42 KB
/
allmain.c
File metadata and controls
1362 lines (1206 loc) · 42 KB
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
/* NetHack 3.7 allmain.c $NHDT-Date: 1771213100 2026/02/15 19:38:20 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.286 $ */
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/*-Copyright (c) Robert Patrick Rankin, 2012. */
/* NetHack may be freely redistributed. See license for details. */
/* various code that was replicated in *main.c */
#include "hack.h"
#ifndef NO_SIGNAL
#include <signal.h>
#endif
staticfn void moveloop_preamble(boolean);
staticfn void u_calc_moveamt(int);
staticfn void maybe_do_tutorial(void);
#ifdef POSITIONBAR
staticfn void do_positionbar(void);
#endif
staticfn void regen_pw(int);
staticfn void regen_hp(int);
staticfn void interrupt_multi(const char *);
staticfn void debug_fields(const char *);
#ifndef NODUMPENUMS
staticfn void dump_enums(void);
#endif
#ifdef CRASHREPORT
#define USED_FOR_CRASHREPORT
#else
#define USED_FOR_CRASHREPORT UNUSED
#endif
/*ARGSUSED*/
void
early_init(int argc USED_FOR_CRASHREPORT, char *argv[] USED_FOR_CRASHREPORT)
{
#ifdef CRASHREPORT
/* Do this as early as possible, but let ports do other things first. */
crashreport_init(argc, argv);
#endif
decl_globals_init();
objects_globals_init();
monst_globals_init();
sys_early_init();
runtime_info_init();
}
staticfn void
moveloop_preamble(boolean resuming)
{
/* if a save file created in normal mode is now being restored in
explore mode, treat it as normal restore followed by 'X' command
to use up the save file and require confirmation for explore mode */
if (resuming && iflags.deferred_X)
(void) enter_explore_mode();
/* side-effects from the real world */
flags.moonphase = phase_of_the_moon();
if (flags.moonphase == FULL_MOON) {
You("are lucky! Full moon tonight.");
change_luck(1);
} else if (flags.moonphase == NEW_MOON) {
pline("Be careful! New moon tonight.");
}
flags.friday13 = friday_13th();
if (flags.friday13) {
pline("Watch out! Bad things can happen on Friday the 13th.");
change_luck(-1);
}
if (!resuming) { /* new game */
program_state.beyond_savefile_load = 1; /* for TTY_PERM_INVENT */
svc.context.rndencode = rnd(9000);
set_wear((struct obj *) 0); /* for side-effects of starting gear */
reset_justpicked(gi.invent);
(void) pickup(1); /* autopickup at initial location */
/* only matters if someday a character is able to start with
clairvoyance (wizard with cornuthaum perhaps?); without this,
first "random" occurrence would always kick in on turn 1 */
svc.context.seer_turn = (long) rnd(30);
/* give hero initial movement points; new game only--for restore,
pending movement points were included in the save file */
u.umovement = NORMAL_SPEED;
initrack();
}
disp.botlx = TRUE; /* for STATUS_HILITES */
if (resuming) { /* restoring old game */
read_engr_at(u.ux, u.uy); /* subset of pickup() */
fix_shop_damage();
}
encumber_msg(); /* in case they auto-picked up something */
if (gd.defer_see_monsters) {
gd.defer_see_monsters = FALSE;
see_monsters();
}
u.uz0.dlevel = u.uz.dlevel;
svc.context.move = 0;
/* finish processing "--debug:fuzzer" from the command line */
if (iflags.fuzzerpending) {
iflags.debug_fuzzer = fuzzer_impossible_panic;
iflags.fuzzerpending = FALSE;
}
program_state.in_moveloop = 1;
/* for perm_invent preset at startup, display persistent inventory after
invent is fully populated and the in_moveloop flag has been set */
if (iflags.perm_invent)
update_inventory();
}
staticfn void
u_calc_moveamt(int wtcap)
{
int moveamt = 0;
/* calculate how much time passed. */
if (u.usteed && u.umoved) {
/* your speed doesn't augment steed's speed */
moveamt = mcalcmove(u.usteed, TRUE);
} else {
moveamt = gy.youmonst.data->mmove;
if (Very_fast) { /* speed boots, potion, or spell */
/* gain a free action on 2/3 of turns */
if (rn2(3) != 0)
moveamt += NORMAL_SPEED;
} else if (Fast) { /* intrinsic */
/* gain a free action on 1/3 of turns */
if (rn2(3) == 0)
moveamt += NORMAL_SPEED;
}
}
switch (wtcap) {
case UNENCUMBERED:
break;
case SLT_ENCUMBER:
moveamt -= (moveamt / 4);
break;
case MOD_ENCUMBER:
moveamt -= (moveamt / 2);
break;
case HVY_ENCUMBER:
moveamt -= ((moveamt * 3) / 4);
break;
case EXT_ENCUMBER:
moveamt -= ((moveamt * 7) / 8);
break;
default:
break;
}
u.umovement += moveamt;
if (u.umovement < 0)
u.umovement = 0;
}
#if defined(MICRO) || defined(WIN32)
static int mvl_abort_lev;
#endif
static int mvl_wtcap = 0;
static int mvl_change = 0;
void
moveloop_core(void)
{
boolean monscanmove = FALSE;
#ifdef SAFERHANGUP
if (program_state.done_hup)
end_of_input();
#endif
get_nh_event();
#ifdef POSITIONBAR
do_positionbar();
#endif
if (iflags.pending_customizations)
maybe_shuffle_customizations();
dobjsfree();
if (svc.context.bypasses)
clear_bypasses();
if (iflags.sanity_check || iflags.debug_fuzzer)
sanity_check();
if (svc.context.resume_wish)
makewish(); /* clears resume_wish */
if (svc.context.move) {
/* actual time passed */
u.umovement -= NORMAL_SPEED;
do { /* hero can't move this turn loop */
encumber_msg();
svc.context.mon_moving = TRUE;
gu.uhp_at_start_of_monster_turn = u.uhp;
do {
monscanmove = movemon();
if (u.umovement >= NORMAL_SPEED)
break; /* it's now your turn */
} while (monscanmove);
svc.context.mon_moving = FALSE;
/* this needs to be after the monster movement loop in
case monster actions affected burden, e.g. rehumanize */
mvl_wtcap = near_capacity();
if (!monscanmove && u.umovement < NORMAL_SPEED) {
/* both hero and monsters are out of steam this round */
struct monst *mtmp;
/* set up for a new turn */
gw.were_changes = 0L;
mcalcdistress(); /* adjust monsters' trap, blind, etc */
/* reallocate movement rations to monsters; don't need
to skip dead monsters here because they will have
been purged at end of their previous round of moving */
for (mtmp = fmon; mtmp; mtmp = mtmp->nmon)
mtmp->movement += mcalcmove(mtmp, TRUE);
/* occasionally add another monster; since this takes
place after movement has been allotted, the new
monster effectively loses its first turn */
if (!rn2(u.uevent.udemigod ? 25
: (depth(&u.uz) > depth(&stronghold_level)) ? 50
: 70))
(void) makemon((struct permonst *) 0, 0, 0,
NO_MM_FLAGS);
u_calc_moveamt(mvl_wtcap);
settrack();
svm.moves++;
/*
* Never allow 'moves' to grow big enough to wrap.
* We don't care what the maximum possible 'long int'
* is for the current configuration, we want a value
* that is the same for all viable configurations.
* When imposing the limit, use a mystic decimal value
* instead of a magic binary one such as 0x7fffffffL.
*/
if (svm.moves >= 1000000000L) {
display_nhwindow(WIN_MESSAGE, TRUE);
urgent_pline("The dungeon capitulates.");
done(ESCAPED);
}
/* 'moves' is misnamed; it represents turns; hero_seq is
a value that is distinct every time the hero moves */
gh.hero_seq = svm.moves << 3;
if (flags.time && !svc.context.run)
disp.time_botl = TRUE; /* 'moves' just changed */
/********************************/
/* once-per-turn things go here */
/********************************/
l_nhcore_call(NHCORE_MOVELOOP_TURN);
if (Glib)
glibr();
nh_timeout();
run_regions();
if (u.ublesscnt)
u.ublesscnt--;
gs.saving_grace_turn = FALSE;
/* One possible result of prayer is healing. Whether or
* not you get healed depends on your current hit points.
* If you are allowed to regenerate during the prayer,
* the end-of-prayer calculation messes up on this.
* Another possible result is rehumanization, which
* requires that encumbrance and movement rate be
* recalculated.
*/
if (u.uinvulnerable) {
/* for the moment at least, you're in tiptop shape */
mvl_wtcap = UNENCUMBERED;
} else if (!Upolyd ? (u.uhp < u.uhpmax)
: (u.mh < u.mhmax
|| gy.youmonst.data->mlet == S_EEL)) {
/* maybe heal */
regen_hp(mvl_wtcap);
}
/* moving around while encumbered is hard work */
if (mvl_wtcap > MOD_ENCUMBER && u.umoved) {
if (!(mvl_wtcap < EXT_ENCUMBER ? svm.moves % 30
: svm.moves % 10)) {
overexert_hp();
}
}
regen_pw(mvl_wtcap);
if (!u.uinvulnerable) {
if (Teleportation && !rn2(85)) {
coordxy old_ux = u.ux, old_uy = u.uy;
tele();
if (u.ux != old_ux || u.uy != old_uy) {
if (!next_to_u()) {
check_leash(old_ux, old_uy);
}
/* clear doagain keystrokes */
cmdq_clear(CQ_CANNED);
cmdq_clear(CQ_REPEAT);
}
}
/* delayed change may not be valid anymore */
if ((mvl_change == 1 && !Polymorph)
|| (mvl_change == 2 && u.ulycn == NON_PM))
mvl_change = 0;
if (Polymorph && !rn2(100))
mvl_change = 1;
else if (ismnum(u.ulycn) && !Upolyd
&& !rn2(80 - (20 * night())))
mvl_change = 2;
if (mvl_change && !Unchanging) {
if (gm.multi >= 0) {
stop_occupation();
if (mvl_change == 1)
polyself(POLY_NOFLAGS);
else
you_were();
mvl_change = 0;
}
}
}
if (Searching && !svl.level.flags.noautosearch
&& gm.multi >= 0)
(void) dosearch0(1);
if (Warning)
warnreveal();
if (gw.were_changes) {
/* update innate intrinsics (mainly Drain_resistance) */
set_uasmon();
}
mkot_trap_warn();
dosounds();
do_storms();
gethungry();
age_spells();
exerchk();
invault();
if (u.uhave.amulet)
amulet();
if (!rn2(40 + (int) (ACURR(A_DEX) * 3)))
u_wipe_engr(rnd(3));
if (u.uevent.udemigod && !u.uinvulnerable) {
if (u.udg_cnt)
u.udg_cnt--;
if (!u.udg_cnt) {
intervene();
u.udg_cnt = rn1(200, 50);
}
}
/* XXX This should be recoded to use something like regions - a list of
* things that are active and need to be handled that is dynamically
* maintained and not a list of special cases. */
/* vision will be updated as bubbles move */
if (Is_waterlevel(&u.uz) || Is_airlevel(&u.uz))
movebubbles();
else if (svl.level.flags.fumaroles)
fumaroles();
/* when immobile, count is in turns */
if (gm.multi < 0) {
runmode_delay_output();
if (++gm.multi == 0) { /* finished yet? */
unmul((char *) 0);
/* if unmul caused a level change, take it now */
if (u.utotype)
deferred_goto();
}
}
}
} while (u.umovement < NORMAL_SPEED); /* hero can't move */
/******************************************/
/* once-per-hero-took-time things go here */
/******************************************/
gh.hero_seq++; /* moves*8 + n for n == 1..7 */
/* although we checked for encumbrance above, we need to
check again for message purposes, as the weight of
inventory may have changed in, e.g., nh_timeout(); we do
need two checks here so that the player gets feedback
immediately if their own action encumbered them */
encumber_msg();
#ifdef STATUS_HILITES
if (iflags.hilite_delta)
status_eval_next_unhilite();
#endif
if (svm.moves >= svc.context.seer_turn) {
if ((u.uhave.amulet || Clairvoyant) && !In_endgame(&u.uz)
&& !BClairvoyant)
do_vicinity_map((struct obj *) 0);
/* we maintain this counter even when clairvoyance isn't
taking place; on average, go again 30 turns from now */
svc.context.seer_turn = svm.moves + (long) rn1(31, 15); /*15..45*/
/* [it used to be that on every 15th turn, there was a 50%
chance of farsight, so it could happen as often as every
15 turns or theoretically never happen at all; but when
a fast hero got multiple moves on that 15th turn, it
could actually happen more than once on the same turn!] */
}
/* [fast hero who gets multiple moves per turn ends up sinking
multiple times per turn; is that what we really want?] */
if (u.utrap && u.utraptype == TT_LAVA)
sink_into_lava();
/* when/if hero escapes from lava, he can't just stay there */
else if (!u.umoved)
(void) pooleffects(FALSE);
gs.saving_grace_turn = FALSE;
/* vision while buried or underwater is updated here */
if (Underwater)
under_water(0);
else if (u.uburied)
under_ground(0);
see_nearby_monsters();
} /* actual time passed */
/****************************************/
/* once-per-player-input things go here */
/****************************************/
clear_splitobjs();
/* the Amulet of Yendor gives a wish when initially picked up */
if (u.uhave.amulet && !u.uevent.amulet_wish) {
u.uevent.amulet_wish = 1;
display_nhwindow(WIN_MESSAGE, TRUE);
urgent_pline("The Amulet is bestowing a wish upon you!");
makewish();
}
find_ac();
if (!svc.context.mv || Blind) {
/* redo monsters if hallu or wearing a helm of telepathy */
if (Hallucination) { /* update screen randomly */
see_monsters();
see_objects();
see_traps();
if (u.uswallow)
swallowed(0);
} else if (Unblind_telepat || Warning || Warn_of_mon
/* this is needed for the case where you saw a monster
due to being next to it while it's in a gas cloud
and then you moved away; it should no longer be seen
when that happens, even if it hasn't moved */
|| any_visible_region()) { /* TODO: optimize this */
see_monsters();
}
if (gv.vision_full_recalc)
vision_recalc(0); /* vision! */
}
if (disp.botl || disp.botlx) {
bot();
curs_on_u();
} else if (disp.time_botl) {
timebot();
curs_on_u();
}
m_everyturn_effect(&gy.youmonst);
svc.context.move = 1;
if (gm.multi >= 0 && go.occupation) {
#if defined(MICRO) || defined(WIN32CON)
mvl_abort_lev = 0;
if (kbhit()) {
char ch;
if ((ch = pgetchar()) == ABORT)
mvl_abort_lev++;
else
cmdq_add_key(CQ_CANNED, ch);
}
if (!mvl_abort_lev && (*go.occupation)() == 0)
#else
if ((*go.occupation)() == 0)
#endif
go.occupation = 0;
if (
#if defined(MICRO) || defined(WIN32)
mvl_abort_lev ||
#endif
monster_nearby()) {
stop_occupation();
reset_eat();
}
runmode_delay_output();
return;
}
#ifdef CLIPPING
/* just before rhack */
cliparound(u.ux, u.uy);
#endif
u.umoved = FALSE;
if (gm.multi > 0) {
lookaround();
runmode_delay_output();
if (!gm.multi) {
/* lookaround may clear multi */
svc.context.move = 0;
return;
}
if (svc.context.mv) {
if (gm.multi < COLNO && !--gm.multi)
end_running(TRUE);
domove();
} else {
--gm.multi;
nhassert(gc.command_count != 0);
rhack(gc.cmd_key);
}
} else if (gm.multi == 0) {
#ifdef MAIL
ckmailstatus();
#endif
rhack(0);
}
if (u.utotype) /* change dungeon level */
deferred_goto(); /* after rhack() */
if (gv.vision_full_recalc)
vision_recalc(0); /* vision! */
/* when running in non-tport mode, this gets done through domove() */
if ((!svc.context.run || flags.runmode == RUN_TPORT)
&& (gm.multi && (!svc.context.travel ? !(gm.multi % 7)
: !(svm.moves % 7L)))) {
if (flags.time && svc.context.run)
disp.botl = TRUE;
/* [should this be flush_screen() instead?] */
display_nhwindow(WIN_MAP, FALSE);
}
if (gl.luacore && nhcb_counts[NHCB_END_TURN]) {
lua_getglobal(gl.luacore, "nh_callback_run");
lua_pushstring(gl.luacore, nhcb_name[NHCB_END_TURN]);
nhl_pcall_handle(gl.luacore, 1, 0, "moveloop_core", NHLpa_panic);
lua_settop(gl.luacore, 0);
}
}
staticfn void
maybe_do_tutorial(void)
{
s_level *sp = find_level("tut-1");
if (!sp)
return;
if (ask_do_tutorial()) {
assign_level(&u.ucamefrom, &u.uz);
iflags.nofollowers = TRUE;
schedule_goto(&sp->dlevel, UTOTYPE_NONE,
"Entering the tutorial.", (char *) 0);
deferred_goto();
vision_recalc(0);
docrt();
iflags.nofollowers = FALSE;
}
}
void
moveloop(boolean resuming)
{
moveloop_preamble(resuming);
if (!resuming)
maybe_do_tutorial();
for (;;) {
moveloop_core();
}
}
staticfn void
regen_pw(int wtcap)
{
if (u.uen < u.uenmax
&& ((wtcap < MOD_ENCUMBER
&& (!(svm.moves % ((MAXULEV + 8 - u.ulevel)
* (Role_if(PM_WIZARD) ? 3 : 4)
/ 6)))) || Energy_regeneration)) {
int upper = (int) (ACURR(A_WIS) + ACURR(A_INT)) / 15 + 1;
u.uen += rn1(upper, 1);
if (u.uen > u.uenmax)
u.uen = u.uenmax;
disp.botl = TRUE;
if (u.uen == u.uenmax)
interrupt_multi("You feel full of energy.");
}
}
#define U_CAN_REGEN() (Regeneration || (Sleepy && u.usleep))
/* maybe recover some lost health (or lose some when an eel out of water) */
staticfn void
regen_hp(int wtcap)
{
int heal = 0;
boolean reached_full = FALSE,
encumbrance_ok = (wtcap < MOD_ENCUMBER || !u.umoved);
if (Upolyd) {
if (u.mh < 1) { /* shouldn't happen... */
rehumanize();
} else if (gy.youmonst.data->mlet == S_EEL
&& !is_pool(u.ux, u.uy) && !Is_waterlevel(&u.uz)
&& !Breathless) {
/* eel out of water loses hp, similar to monster eels;
as hp gets lower, rate of further loss slows down */
if (u.mh > 1 && !Regeneration && rn2(u.mh) > rn2(8)
&& (!Half_physical_damage || !(svm.moves % 2L)))
heal = -1;
} else if (u.mh < u.mhmax) {
if (U_CAN_REGEN() || (encumbrance_ok && !(svm.moves % 20L)))
heal = 1;
}
if (heal) {
disp.botl = TRUE;
u.mh += heal;
reached_full = (u.mh == u.mhmax);
}
/* !Upolyd */
} else {
/* [when this code was in-line within moveloop(), there was
no !Upolyd check here, so poly'd hero recovered lost u.uhp
once u.mh reached u.mhmax; that may have been convenient
for the player, but it didn't make sense for gameplay...] */
if (u.uhp < u.uhpmax && (encumbrance_ok || U_CAN_REGEN())) {
heal = (u.ulevel + (int)ACURR(A_CON)) > rn2(100);
if (U_CAN_REGEN())
heal += 1;
if (Sleepy && u.usleep)
heal++;
if (heal) {
disp.botl = TRUE;
u.uhp += heal;
if (u.uhp > u.uhpmax)
u.uhp = u.uhpmax;
/* stop voluntary multi-turn activity if now fully healed */
reached_full = (u.uhp == u.uhpmax);
}
}
}
if (reached_full)
interrupt_multi("You are in full health.");
}
#undef U_CAN_REGEN
void
stop_occupation(void)
{
if (go.occupation) {
if (!maybe_finished_meal(TRUE))
You("stop %s.", go.occtxt);
go.occupation = (int (*)(void)) 0;
disp.botl = TRUE; /* in case u.uhs changed */
nomul(0);
} else if (gm.multi >= 0) {
nomul(0);
}
cmdq_clear(CQ_CANNED);
}
void
init_sound_disp_gamewindows(void)
{
int menu_behavior = MENU_BEHAVE_STANDARD;
activate_chosen_soundlib();
if (iflags.wc_splash_screen && !flags.randomall) {
SoundAchievement(0, sa2_splashscreen, 0);
/* ToDo: new splash screen invocation will go here */
} else {
SoundAchievement(0, sa2_newgame_nosplash, 0);
}
#ifdef CHANGE_COLOR
/* init_nhwindows() has already been called, so before
creating the windows, check to see if there are any
palette entries to alter */
change_palette();
#endif
WIN_MESSAGE = create_nhwindow(NHW_MESSAGE);
if (VIA_WINDOWPORT()) {
status_initialize(FALSE);
} else {
WIN_STATUS = create_nhwindow(NHW_STATUS);
}
WIN_MAP = create_nhwindow(NHW_MAP);
WIN_INVEN = create_nhwindow(NHW_MENU);
if (WIN_INVEN != WIN_ERR)
adjust_menu_promptstyle(WIN_INVEN, &iflags.menu_headings);
#ifdef TTY_PERM_INVENT
if (WINDOWPORT(tty) && WIN_INVEN != WIN_ERR) {
menu_behavior = MENU_BEHAVE_PERMINV;
prepare_perminvent(WIN_INVEN);
}
#endif
/* in case of early quit where WIN_INVEN could be destroyed before
ever having been used, use it here to pacify the Qt interface */
start_menu(WIN_INVEN, menu_behavior), end_menu(WIN_INVEN, (char *) 0);
#ifdef MAC
/* This _is_ the right place for this - maybe we will
* have to split init_sound_disp_gamewindows into
* create_gamewindows and show_gamewindows to get rid of this ifdef...
*/
if (!strcmp(windowprocs.name, "mac"))
SanePositions();
#endif
/*
* The mac port is not DEPENDENT on the order of these
* displays, but it looks a lot better this way...
*/
#ifndef STATUS_HILITES
display_nhwindow(WIN_STATUS, FALSE);
#endif
display_nhwindow(WIN_MESSAGE, FALSE);
clear_glyph_buffer();
display_nhwindow(WIN_MAP, FALSE);
#ifdef TTY_PERM_INVENT
if (iflags.perm_invent_pending)
check_perm_invent_again();
#endif
}
void
newgame(void)
{
int i;
/* make sure welcome messages are given before noticing monsters */
notice_mon_off();
disp.botlx = TRUE;
svc.context.ident = 2; /* id 1 is reserved for gy.youmonst */
svc.context.warnlevel = 1;
svc.context.next_attrib_check = 600L; /* arbitrary first setting */
svc.context.tribute.enabled = TRUE; /* turn on 3.6 tributes */
svc.context.tribute.tributesz = sizeof(struct tribute_info);
for (i = LOW_PM; i < NUMMONS; i++)
svm.mvitals[i].mvflags = mons[i].geno & G_NOCORPSE;
init_objects(); /* must be before u_init() */
flags.pantheon = -1; /* role_init() will reset this */
role_init(); /* must be before init_dungeons(), u_init(),
* and init_artifacts() */
init_dungeons(); /* must be before u_init() to avoid rndmonst()
* creating odd monsters for any tins and eggs
* in hero's initial inventory */
init_artifacts(); /* before u_init() in case $WIZKIT specifies
* any artifacts */
u_init_misc();
l_nhcore_init(); /* create a Lua state that lasts until end of game */
reset_glyphmap(gm_newgame);
#ifndef NO_SIGNAL
(void) signal(SIGINT, (SIG_RET_TYPE) done1);
#endif
#ifdef NEWS
if (iflags.news)
display_file(NEWS, FALSE);
#endif
/* quest_init(); -- Now part of role_init() */
mklev();
u_on_upstairs();
vision_reset(); /* set up internals for level (after mklev) */
check_special_room(FALSE);
if (MON_AT(u.ux, u.uy))
mnexto(m_at(u.ux, u.uy), RLOC_NOMSG);
(void) makedog();
u_init_inventory_attrs();
docrt();
flush_screen(1);
bot();
while (u.uroleplay.reroll && reroll_menu()) {
u_init_inventory_attrs();
bot();
}
u_init_skills_discoveries();
if (wizard) {
read_wizkit();
obj_delivery(FALSE); /* finish wizkit */
}
if (flags.legacy) {
com_pager(u.uroleplay.pauper ? "pauper_legacy" : "legacy");
}
urealtime.realtime = 0L;
urealtime.start_timing = getnow();
#ifdef INSURANCE
save_currentstate();
#endif
program_state.something_worth_saving++; /* useful data now exists */
/* Success! */
welcome(TRUE);
notice_mon_on(); /* now we can notice monsters */
if (a11y.glyph_updates)
(void) dolookaround();
else
notice_all_mons(TRUE);
return;
}
/* show "welcome [back] to NetHack" message at program startup */
void
welcome(boolean new_game) /* false => restoring an old game */
{
char buf[BUFSZ];
boolean currentgend = Upolyd ? u.mfemale : flags.female;
l_nhcore_call(new_game ? NHCORE_START_NEW_GAME : NHCORE_RESTORE_OLD_GAME);
/* skip "welcome back" if restoring a doomed character */
if (!new_game && Upolyd && ugenocided()) {
/* death via self-genocide is pending */
pline("You're back, but you still feel %s inside.", udeadinside());
return;
}
if (Hallucination)
pline("NetHack is filmed in front of an undead studio audience.");
/*
* The "welcome back" message always describes your innate form
* even when polymorphed or wearing a helm of opposite alignment.
* Alignment is shown unconditionally for new games; for restores
* it's only shown if it has changed from its original value.
* Sex is shown for new games except when it is redundant; for
* restores it's only shown if different from its original value.
*/
*buf = '\0';
if (new_game || u.ualignbase[A_ORIGINAL] != u.ualignbase[A_CURRENT])
Sprintf(eos(buf), " %s", align_str(u.ualignbase[A_ORIGINAL]));
if (!gu.urole.name.f
&& (new_game
? (gu.urole.allow & ROLE_GENDMASK) == (ROLE_MALE | ROLE_FEMALE)
: currentgend != flags.initgend))
Sprintf(eos(buf), " %s", genders[currentgend].adj);
Sprintf(eos(buf), " %s %s", gu.urace.adj,
(currentgend && gu.urole.name.f) ? gu.urole.name.f
: gu.urole.name.m);
pline(new_game ? "%s %s, welcome to NetHack! You are a%s."
: "%s %s, the%s, welcome back to NetHack!",
Hello((struct monst *) 0), svp.plname, buf);
if (new_game) {
/* guarantee that 'major' event category is never empty */
livelog_printf(LL_ACHIEVE, "%s the%s entered the dungeon",
svp.plname, buf);
} else {
/* if restoring in Gehennom, give same hot/smoky message as when
first entering it */
hellish_smoke_mesg();
/* remind player of the level annotation, like in goto_level() */
print_level_annotation();
}
}
#ifdef POSITIONBAR
staticfn void
do_positionbar(void)
{
/* FIXME: this will break if any coordinate is too big for (char);
the sys/msdos/vid*.c code uses (unsigned char) which is less
vulnerable but not guaranteed to be able to hold coordxy values;
also, there doesn't appear to be any need for this to be static,
nor to contain pairs of (> or <) and x; it could just be a full
line of spaces and > or < characters with update_positionbar()
revised to reconstruct the x values for non-space characters */
static char pbar[COLNO];
char *p;
stairway *stway;
coordxy x, y;
int glyph, symbol;
p = pbar;
/* TODO: use the same method as getpos() so objects don't cover stairs */
/* FIXME: traversing 'stairs' list ignores mimics that pose as stairs */
for (stway = gs.stairs; stway; stway = stway->next) {
x = stway->sx;
y = stway->sy;
glyph = levl[x][y].glyph;
symbol = glyph_to_cmap(glyph);
if (is_cmap_stairs(symbol)) {
*p++ = (stway->up ? '<' : '>');
*p++ = (char) x;
}
}
/* hero location */
if (u.ux) {
*p++ = '@';
*p++ = u.ux;
}
/* fence post */
*p = 0;
update_positionbar(pbar);
}
#endif
staticfn void
interrupt_multi(const char *msg)
{
if (gm.multi > 0 && !svc.context.travel && !svc.context.run) {
nomul(0);
if (flags.verbose && msg)
Norep("%s", msg);
}
}
/*
* Argument processing helpers - for xxmain() to share
* and call.
*
* These should return TRUE if the argument matched,
* whether the processing of the argument was
* successful or not.
*
* Most of these do their thing, then after returning
* to xxmain(), the code exits without starting a game.
*
*/
static const struct early_opt earlyopts[] = {
{ ARG_DEBUG, "debug", 5, TRUE },
{ ARG_VERSION, "version", 4, TRUE },
{ ARG_SHOWPATHS, "showpaths", 8, FALSE },
#ifndef NODUMPENUMS
{ ARG_DUMPENUMS, "dumpenums", 9, FALSE },
#endif
{ ARG_DUMPGLYPHIDS, "dumpglyphids", 12, FALSE },
{ ARG_DUMPMONGEN, "dumpmongen", 10, FALSE },
{ ARG_DUMPWEIGHTS, "dumpweights", 11, FALSE },
#ifdef WIN32
{ ARG_WINDOWS, "windows", 4, TRUE },
#endif
#if defined(CRASHREPORT)
{ ARG_BIDSHOW, "bidshow", 7, FALSE },
#endif
};
#ifdef WIN32
extern int windows_early_options(const char *);
#endif
/*
* Returns:
* 0 = no match
* 1 = found and skip past this argument
* 2 = found and trigger immediate exit
*/
int