Sha256: 2a232866a369c15d86a785957b8f130bfffe6b1297ee4ab6213ed2d68dbab8d7

Contents?: true

Size: 1.2 KB

Versions: 21

Compression:

Stored size: 1.2 KB

Contents

#ifndef GOSUIMPL_LARGEIMAGEDATA_HPP
#define GOSUIMPL_LARGEIMAGEDATA_HPP

#include <Gosu/Fwd.hpp>
#include <Gosu/ImageData.hpp>
#include <Gosu/TR1.hpp>
#include <Gosu/Platform.hpp>
#include <stdexcept>
#include <vector>

namespace Gosu
{
    class LargeImageData : public ImageData
    {
        unsigned fullWidth, fullHeight, partsX, partsY, partWidth, partHeight;
        std::vector<std::tr1::shared_ptr<ImageData> > parts;

    public:
        LargeImageData(Graphics& graphics, const Bitmap& source,
            unsigned partWidth, unsigned partHeight, unsigned borderFlags);

        int width() const;
        int height() const;

        void draw(double x1, double y1, Color c1,
            double x2, double y2, Color c2,
            double x3, double y3, Color c3,
            double x4, double y4, Color c4,
            ZPos z, AlphaMode mode) const;
            
        const GLTexInfo* glTexInfo() const
        {
            return 0;
        }
        
        GOSU_UNIQUE_PTR<ImageData> subimage(int x, int y, int w, int h) const
        {
            return GOSU_UNIQUE_PTR<ImageData>();
        }
        
        Bitmap toBitmap() const;
        void insert(const Bitmap& bitmap, int x, int y);
    };
}

#endif

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
gosu-0.8.7.2 src/Graphics/LargeImageData.hpp
gosu-0.8.7.1 src/Graphics/LargeImageData.hpp
gosu-0.8.7 src/Graphics/LargeImageData.hpp
gosu-0.8.6 src/Graphics/LargeImageData.hpp
gosu-0.8.6.pre1 src/Graphics/LargeImageData.hpp
gosu-0.8.5 src/Graphics/LargeImageData.hpp
gosu-0.8.5.pre1 src/Graphics/LargeImageData.hpp
gosu-0.8.4 src/Graphics/LargeImageData.hpp
gosu-0.8.3 src/Graphics/LargeImageData.hpp
gosu-0.8.2 src/Graphics/LargeImageData.hpp
gosu-0.8.1 src/Graphics/LargeImageData.hpp
gosu-0.8.0 src/Graphics/LargeImageData.hpp
gosu-0.8.0.pre7 src/Graphics/LargeImageData.hpp
gosu-0.8.0.pre6 src/Graphics/LargeImageData.hpp
gosu-0.8.0.pre5 src/Graphics/LargeImageData.hpp
gosu-0.8.0.pre4 src/Graphics/LargeImageData.hpp
gosu-0.8.0.pre3 GosuImpl/Graphics/LargeImageData.hpp
gosu-0.8.0.pre2 GosuImpl/Graphics/LargeImageData.hpp
gosu-0.8.0.pre1 GosuImpl/Graphics/LargeImageData.hpp
gosu-0.7.50 GosuImpl/Graphics/LargeImageData.hpp