GCC Code Coverage Report
Directory: src/ Exec Total Coverage
File: src/resources/imageset.h Lines: 7 7 100.0 %
Date: 2021-03-17 Branches: 0 0 0.0 %

Line Branch Exec Source
1
/*
2
 *  The ManaPlus Client
3
 *  Copyright (C) 2004-2009  The Mana World Development Team
4
 *  Copyright (C) 2009-2010  The Mana Developers
5
 *  Copyright (C) 2011-2019  The ManaPlus Developers
6
 *  Copyright (C) 2019-2021  Andrei Karas
7
 *
8
 *  This file is part of The ManaPlus Client.
9
 *
10
 *  This program is free software; you can redistribute it and/or modify
11
 *  it under the terms of the GNU General Public License as published by
12
 *  the Free Software Foundation; either version 2 of the License, or
13
 *  any later version.
14
 *
15
 *  This program is distributed in the hope that it will be useful,
16
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 *  GNU General Public License for more details.
19
 *
20
 *  You should have received a copy of the GNU General Public License
21
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 */
23
24
#ifndef RESOURCES_IMAGESET_H
25
#define RESOURCES_IMAGESET_H
26
27
#include "resources/resource.h"
28
29
#include "utils/vector.h"
30
31
#include "localconsts.h"
32
33
class Image;
34
35
/**
36
 * Stores a set of subimages originating from a single image.
37
 */
38
class ImageSet notfinal : public Resource
39
{
40
    public:
41
        /**
42
         * Cuts the passed image in a grid of sub images.
43
         */
44
        ImageSet(Image *const img,
45
                 const int w,
46
                 const int h,
47
                 const int margin,
48
                 const int spacing);
49
50
        A_DELETE_COPY(ImageSet)
51
52
        /**
53
         * Destructor.
54
         */
55
        ~ImageSet() override;
56
57
        /**
58
         * Returns the width of the images in the image set.
59
         */
60
        int getWidth() const noexcept2 A_WARN_UNUSED
61
3931
        { return mWidth; }
62
63
        /**
64
         * Returns the height of the images in the image set.
65
         */
66
        int getHeight() const noexcept2 A_WARN_UNUSED
67
3931
        { return mHeight; }
68
69
        typedef STD_VECTOR<Image*>::size_type size_type;
70
71
        Image* get(const size_type i) const A_WARN_UNUSED;
72
73
        size_type size() const noexcept2 A_WARN_UNUSED
74
1
        { return mImages.size(); }
75
76
        int getOffsetX() const noexcept2 A_WARN_UNUSED
77
3931
        { return mOffsetX; }
78
79
        void setOffsetX(const int n) noexcept2
80
1293
        { mOffsetX = n; }
81
82
        int getOffsetY() const noexcept2 A_WARN_UNUSED
83
3931
        { return mOffsetY; }
84
85
        void setOffsetY(const int n) noexcept2
86
1293
        { mOffsetY = n; }
87
88
        const STD_VECTOR<Image*> &getImages() const noexcept2 A_WARN_UNUSED
89
        { return mImages; }
90
91
        int calcMemoryLocal() const override;
92
93
    private:
94
        STD_VECTOR<Image*> mImages;
95
96
        int mWidth;  /**< Width of the images in the image set. */
97
        int mHeight; /**< Height of the images in the image set. */
98
        int mOffsetX;
99
        int mOffsetY;
100
};
101
102
#endif  // RESOURCES_IMAGESET_H