ScummVM API documentation
section5.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef M4_BURGER_ROOMS_SECTION5_H
23 #define M4_BURGER_ROOMS_SECTION5_H
24 
25 #include "m4/burger/rooms/room.h"
26 #include "m4/burger/rooms/section.h"
27 #include "m4/burger/rooms/section5/room501.h"
28 #include "m4/burger/rooms/section5/room502.h"
29 #include "m4/burger/rooms/section5/room503.h"
30 #include "m4/burger/rooms/section5/room504.h"
31 #include "m4/burger/rooms/section5/room505.h"
32 #include "m4/burger/rooms/section5/room505.h"
33 #include "m4/burger/rooms/section5/room506.h"
34 #include "m4/burger/rooms/section5/room507.h"
35 #include "m4/burger/rooms/section5/room508.h"
36 #include "m4/burger/rooms/section5/room509.h"
37 #include "m4/burger/rooms/section5/room510.h"
38 #include "m4/burger/rooms/section5/room511.h"
39 #include "m4/burger/rooms/section5/room512.h"
40 #include "m4/burger/rooms/section5/room513.h"
41 
42 namespace M4 {
43 namespace Burger {
44 namespace Rooms {
45 
46 class Section5 : public Rooms::Section {
47 private:
48  Room501 _room501;
49  Room502 _room502;
50  Room503 _room503;
51  Room504 _room504;
52  Room505 _room505;
53  Room506 _room506;
54  Room507 _room507;
55  Room508 _room508;
56  Room509 _room509;
57  Room510 _room510;
58  Room511 _room511;
59  Room512 _room512;
60  Room513 _room513;
61 
62  void takeGizmo(RGB8 *pal);
63 
64 public:
65  static const char *PARSER[];
66  static const seriesPlayBreak PLAY1[];
67  static machine *_bork;
68  static const char *_digiName;
69  static const char *_bgDigiName;
70 
71  static bool checkFlags();
72  static void flagsTrigger();
73 
74 public:
75  Section5();
76  virtual ~Section5() {}
77 
78  void init() override;
79  void daemon() override;
80  void parser() override;
81 };
82 
83 } // namespace Rooms
84 } // namespace Burger
85 } // namespace M4
86 
87 #endif
Definition: ws_machine.h:153
Definition: room512.h:31
Definition: section5.h:46
Definition: section.h:31
Definition: room503.h:31
Definition: room507.h:31
Definition: room504.h:31
Definition: m4_types.h:88
Definition: room513.h:31
Definition: room501.h:31
Definition: room510.h:34
Definition: database.h:28
Definition: room508.h:31
Definition: room505.h:31
Definition: play_break.h:32
Definition: room502.h:31
Definition: room511.h:31
Definition: room509.h:31
Definition: room506.h:31