blob: c16fd05fb4ed98dca394517e631331f791300f3f (
plain)
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
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/*
* This code is based on the original source code of Lord Avalot d'Argent version 1.3.
* Copyright (c) 1994-1995 Mike, Mark and Thomas Thurman.
*/
#ifndef ROOMNUMS_H
#define ROOMNUMS_H
#include "common/system.h"
namespace Avalanche {
namespace Gyro {
const byte r__nowhere = 0;
const byte r__yours = 1;
const byte r__outsideyours = 2;
/*{ a corridor in your castle. = 3 }
{ outside your castle = 5; }*/
const byte r__musicroom = 7;
const byte r__outsideargentpub = 9;
const byte r__argentroad = 10;
const byte r__wisewomans = 11;
const byte r__spludwicks = 12;
const byte r__insideabbey = 13;
const byte r__outsideabbey = 14; /*{ assumed }*/
const byte r__avvysgarden = 15;
const byte r__aylesoffice = 16;
const byte r__argentpub = 19;
const byte r__brummieroad = 20;
const byte r__lusties = 21; /*{ ? not sure }*/
const byte r__entrancehall = 22;
const byte r__lustiesroom = 23;
const byte r__westhall = 25;
const byte r__easthall = 26;
const byte r__oubliette = 27;
const byte r__geidas = 28;
const byte r__catacombs = 29;
//{ -------------- }
const byte r__bridge = 40;
const byte r__robins = 42;
const byte r__outsidenottspub = 46;
const byte r__nottspub = 47;
//{ -------------- }
const byte r__outsideducks = 50;
const byte r__ducks = 51;
//{ -------------- }
const byte r__outsidecardiffcastle = 70;
const byte r__insidecardiffcastle = 71;
//{ -------------- }
/*{ place80 appears to be bogus }*/
//{ -------------- }
const byte r__bosskey = 98; /*{ assumed }*/
const byte r__map = 99;
} // End of namespace Gyro
} // End of namespace Avalanche
#endif // ROOMNUMS_H
|