Coverage - Test going back when you can't.
[open-adventure.git] / init.c
1 #include <unistd.h>
2 #include <stdlib.h>
3 #include <stdio.h>
4 #include <stdbool.h>
5
6 #include "advent.h"
7 #include "database.h"
8
9 /*
10  * Initialisation
11  */
12
13 void initialise(void)
14 {
15     if (oldstyle)
16         printf("Initialising...\n");
17
18     for (int i = 1; i <= NOBJECTS; i++) {
19         game.place[i] = LOC_NOWHERE;
20         game.prop[i] = 0;
21         game.link[i + NOBJECTS] = game.link[i] = 0;
22     }
23
24     for (int i = 1; i <= NLOCATIONS; i++) {
25         game.abbrev[i] = 0;
26         if (!(locations[i].description.big == 0 || tkey[i] == 0)) {
27             int k = tkey[i];
28             if (T_TERMINATE(travel[k]))
29                 conditions[i] |= (1 << COND_FORCED);
30         }
31         game.atloc[i] = 0;
32     }
33
34     /*  Set up the game.atloc and game.link arrays.
35      *  We'll use the DROP subroutine, which prefaces new objects on the
36      *  lists.  Since we want things in the other order, we'll run the
37      *  loop backwards.  If the object is in two locs, we drop it twice.
38      *  This also sets up "game.place" and "fixed" as copies of "PLAC" and
39      *  "FIXD".  Also, since two-placed objects are typically best
40      *  described last, we'll drop them first. */
41     for (int i = NOBJECTS; i >= 1; i--) {
42         if (objects[i].fixd > 0) {
43             drop(i + NOBJECTS, objects[i].fixd);
44             drop(i, objects[i].plac);
45         }
46     }
47
48     for (int i = 1; i <= NOBJECTS; i++) {
49         int k = NOBJECTS + 1 - i;
50         game.fixed[k] = objects[k].fixd;
51         if (objects[k].plac != 0 && objects[k].fixd <= 0)
52             drop(k, objects[k].plac);
53     }
54
55     /*  Treasure props are initially -1, and are set to 0 the first time
56      *  they are described.  game.tally keeps track of how many are
57      *  not yet found, so we know when to close the cave. */
58     game.tally = 0;
59     for (int treasure = 1; treasure <= NOBJECTS; treasure++) {
60         if (objects[treasure].is_treasure) {
61             if (objects[treasure].inventory != 0)
62                 game.prop[treasure] = -1;
63             game.tally = game.tally - game.prop[treasure];
64         }
65     }
66
67     /*  Clear the hint stuff.  game.hintlc[i] is how long he's been at LOC
68      *  with cond bit i.  game.hinted[i] is true iff hint i has been
69      *  used. */
70     for (int i = 0; i < NHINTS; i++) {
71         game.hinted[i] = false;
72         game.hintlc[i] = 0;
73     }
74
75     /*  Initialise the dwarves.  game.dloc is loc of dwarves,
76      *  hard-wired in.  game.odloc is prior loc of each dwarf,
77      *  initially garbage.  DALTLC is alternate initial loc for dwarf,
78      *  in case one of them starts out on top of the adventurer.  (No
79      *  2 of the 5 initial locs are adjacent.)  game.dseen is true if
80      *  dwarf has seen him.  game.dflag controls the level of
81      *  activation of all this:
82      *  0       No dwarf stuff yet (wait until reaches Hall Of Mists)
83      *  1       Reached Hall Of Mists, but hasn't met first dwarf
84      *  2       Met first dwarf, others start moving, no knives thrown yet
85      *  3       A knife has been thrown (first set always misses)
86      *  3+      Dwarves are mad (increases their accuracy)
87      *  Sixth dwarf is special (the pirate).  He always starts at his
88      *  chest's eventual location inside the maze.  This loc is saved
89      *  in game.chloc for ref.  the dead end in the other maze has its
90      *  loc stored in game.chloc2. */
91     game.chloc = LOC_DEADEND12;
92     game.chloc2 = LOC_DEADEND13;
93     for (int i = 1; i <= NDWARVES; i++) {
94         game.dseen[i] = false;
95     }
96     game.dflag = 0;
97     game.dloc[1] = LOC_KINGHALL;
98     game.dloc[2] = LOC_WESTBANK;
99     game.dloc[3] = LOC_Y2;
100     game.dloc[4] = LOC_ALIKE3;
101     game.dloc[5] = LOC_COMPLEX;
102     game.dloc[6] = game.chloc;
103
104     game.turns = 0;
105     game.trnluz = 0;
106     game.lmwarn = false;
107     game.iwest = 0;
108     game.knfloc = 0;
109     game.detail = 0;
110     game.abbnum = 5;
111     game.numdie = 0;
112     game.holdng = 0;
113     game.dkill = 0;
114     game.foobar = 0;
115     game.bonus = 0;
116     game.clock1 = WARNTIME;
117     game.clock2 = FLASHTIME;
118     game.conds = setbit(11);
119     game.saved = 0;
120     game.closng = false;
121     game.panic = false;
122     game.closed = false;
123     game.clshnt = false;
124     game.novice = false;
125     game.blklin = true;
126 }