ScummVM API documentation
rxyfile.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  * This file is dual-licensed.
22  * In addition to the GPLv3 license mentioned above, this code is also
23  * licensed under LGPL 2.1. See LICENSES/COPYING.LGPL file for the
24  * full text of the license.
25  *
26  */
27 
28 #ifndef GOB_RXYFILE_H
29 #define GOB_RXYFILE_H
30 
31 #include "common/system.h"
32 #include "common/array.h"
33 
34 namespace Common {
35  class SeekableReadStream;
36  class SeekableReadStreamEndian;
37 }
38 
39 namespace Gob {
40 
45 class RXYFile {
46 public:
47  struct Coordinates {
48  uint16 left;
49  uint16 top;
50  uint16 right;
51  uint16 bottom;
52  };
53 
56  RXYFile(uint16 width, uint16 height);
57  ~RXYFile();
58 
59  uint size() const;
60 
61  uint16 getWidth () const;
62  uint16 getHeight() const;
63 
64  uint16 getRealCount() const;
65 
66  const Coordinates &operator[](uint i) const;
67 
68  uint16 add(uint16 left, uint16 top, uint16 right, uint16 bottom);
69 
70 private:
72 
73  CoordArray _coords;
74 
75  uint16 _realCount;
76 
77  uint16 _width;
78  uint16 _height;
79 
80 
81  void load(Common::SeekableReadStreamEndian &rxy);
82 };
83 
84 } // End of namespace Gob
85 
86 #endif // GOB_RXYFILE_H
Definition: rxyfile.h:47
Definition: stream.h:745
Definition: rxyfile.h:45
Definition: anifile.h:40
Definition: algorithm.h:29
Definition: stream.h:944