Sha256: b266d517c0028a781f484ce4adb5d5b4a89a0bd104ada9501357ca88933dff4e

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 KB

Contents

#ifndef GOSUIMPL_GRAPHICS_TEXCHUNK_HPP
#define GOSUIMPL_GRAPHICS_TEXCHUNK_HPP

#include <Gosu/Fwd.hpp>
#include <Gosu/ImageData.hpp>
#include <Gosu/TR1.hpp>
#include "Common.hpp"
#include <memory>
#include <vector>
#include <stdexcept>

class Gosu::TexChunk : public Gosu::ImageData
{
    std::tr1::shared_ptr<Texture> texture;
    int x, y, w, h, padding;
    
    // Cached for faster access.
    GLTexInfo info;
    
    void setTexInfo();
    
public:
    TexChunk(std::tr1::shared_ptr<Texture> texture, int x, int y, int w, int h, int padding);
    TexChunk(const TexChunk& parentChunk, int x, int y, int w, int h);
    ~TexChunk();

    int width() const
    {
        return w;
    }
    
    int height() const
    {
        return h;
    }
    
    GLuint texName() const
    {
        return info.texName;
    }
    
    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;
    Gosu::Bitmap toBitmap() const;
    GOSU_UNIQUE_PTR<ImageData> subimage(int x, int y, int width, int height) const;
    void insert(const Bitmap& bitmap, int x, int y);
};

#endif

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gosu-0.9.2 src/Graphics/TexChunk.hpp
gosu-0.9.2.pre1 src/Graphics/TexChunk.hpp
gosu-0.9.1 src/Graphics/TexChunk.hpp
gosu-0.9.0 src/Graphics/TexChunk.hpp
gosu-0.9.0.pre1 src/Graphics/TexChunk.hpp