ScummVM API documentation
hoc_intro.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 DGDS_HOC_INTRO_H
23 #define DGDS_HOC_INTRO_H
24 
25 #include "common/ptr.h"
26 #include "dgds/image.h"
27 
28 namespace Dgds {
29 
33 class HocIntro {
34 public:
35  HocIntro();
36  void init();
37  void tick();
38  void end();
39 
40 private:
41  void clean1(int16 xoff);
42  void clean2(int16 xoff);
43  void draw1(int16 xoff);
44  void draw2(int16 xoff);
45 
46  void doCopy(int16 x1, int16 y1, int16 x2, int16 y2);
47  void doScroll();
48 
49  int16 _scrollCountdown1;
50  int16 _xOffset2042;
51  int16 _xOffset203e;
52  int16 _scrollCountdown2;
53  Common::SharedPtr<Image> _noMaskImg;
54  Common::SharedPtr<Image> _maskImg;
55  Common::Rect _drawWin;
56 };
57 
58 } // end namespace Dgds
59 
60 #endif // DGDS_HOC_INTRO_H
Definition: ads.h:28
Definition: rect.h:144
Definition: hoc_intro.h:33
Definition: ptr.h:159